]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Fixed trailing ,s in italian verb tenses.
authorthadh <thadh@192.168.1.44>
Wed, 3 Oct 2012 23:12:33 +0000 (16:12 -0700)
committerthadh <thadh@192.168.1.44>
Wed, 3 Oct 2012 23:12:33 +0000 (16:12 -0700)
Hotlink to URL at bottom of HTMLEntry page.
Parsing an only-English dictionary for the first time, yay!

src/com/hughes/android/dictionary/engine/DictionaryBuilder.java
src/com/hughes/android/dictionary/engine/DictionaryBuilderMain.java
src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
src/com/hughes/android/dictionary/parser/wiktionary/EnFunctionCallbacks.java
src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
testdata/goldens/testItConj.html
testdata/goldens/wiktionary.WholeSection.EN.quickdic.text
testdata/goldens/wiktionary.WholeSection.IT.quickdic.text
testdata/outputs/testItConj.html
todo.txt

index d010cdb77748a461b90dc8c67d3a5e2806bb80d2..48f611962616ad49afa6c669159cf5332d0f2e8d 100644 (file)
@@ -46,8 +46,12 @@ public class DictionaryBuilder {
   
   public DictionaryBuilder(final String dictInfoString, final Language lang0, final Language lang1, final String normalizerRules1, final String normalizerRules2, final Set<String> lang1Stoplist, final Set<String> lang2Stoplist) {
     dictionary = new Dictionary(dictInfoString);
-    indexBuilders.add(new IndexBuilder(this, lang0.getIsoCode(), lang0.getIsoCode() + "->" + lang1.getIsoCode(), lang0, normalizerRules1, lang1Stoplist, false));
-    indexBuilders.add(new IndexBuilder(this, lang1.getIsoCode(), lang1.getIsoCode() + "->" + lang0.getIsoCode(), lang1, normalizerRules2, lang2Stoplist, true));
+    if (lang1 != null) {
+        indexBuilders.add(new IndexBuilder(this, lang0.getIsoCode(), lang0.getIsoCode() + "->" + lang1.getIsoCode(), lang0, normalizerRules1, lang1Stoplist, false));
+        indexBuilders.add(new IndexBuilder(this, lang1.getIsoCode(), lang1.getIsoCode() + "->" + lang0.getIsoCode(), lang1, normalizerRules2, lang2Stoplist, true));
+    } else {
+        indexBuilders.add(new IndexBuilder(this, lang0.getIsoCode(), lang0.getIsoCode(), lang0, normalizerRules1, lang1Stoplist, false));
+    }
   }
   
   void build() {
@@ -65,11 +69,16 @@ public class DictionaryBuilder {
     
     final Map<String,String> keyValueArgs = Args.keyValueArgs(args);
     
-    if (!keyValueArgs.containsKey("lang1") || !keyValueArgs.containsKey("lang2")) {
-      fatalError("--lang1= and --lang2= must both be specified.");
+    if (!keyValueArgs.containsKey("lang1")) {
+      fatalError("--lang1= must be specified.");
     }
     final Language lang1 = Language.lookup(keyValueArgs.remove("lang1"));
-    final Language lang2 = Language.lookup(keyValueArgs.remove("lang2"));
+    final Language lang2;
+    if (keyValueArgs.containsKey("lang2")) {
+        lang2 = Language.lookup(keyValueArgs.remove("lang2"));
+    } else {
+        lang2 = null;
+    }
 
     final Set<String> lang1Stoplist = new LinkedHashSet<String>();
     final Set<String> lang2Stoplist = new LinkedHashSet<String>();
@@ -88,7 +97,7 @@ public class DictionaryBuilder {
       normalizerRules1 = lang1.getDefaultNormalizerRules();
     }
     if (normalizerRules2 == null) {
-      normalizerRules2 = lang2.getDefaultNormalizerRules();
+      normalizerRules2 = lang2 == null ? null : lang2.getDefaultNormalizerRules();
     }
     
     final String dictOutFilename = keyValueArgs.remove("dictOut");
@@ -161,8 +170,11 @@ public class DictionaryBuilder {
           } else if ("EnForeign".equals(type)) {
             parser = new EnForeignParser(dictionaryBuilder.indexBuilders.get(enIndex), dictionaryBuilder.indexBuilders.get(1-enIndex),
                 langPattern, langCodePattern, enIndex != 0);
+          } else if ("EnEnglish".equals(type)) {
+              parser = new EnForeignParser(dictionaryBuilder.indexBuilders.get(enIndex), dictionaryBuilder.indexBuilders.get(enIndex),
+                  langPattern, langCodePattern, true);
           } else {
-            fatalError("Invalid WiktionaryType (use EnToTranslation or EnForeign): " + type);
+            fatalError("Invalid WiktionaryType (use EnToTranslation or EnForeign or EnEnglish): " + type);
             return;
           }
           parser.parse(file, entrySource, pageLimit);
@@ -179,9 +191,10 @@ public class DictionaryBuilder {
         } else if (WholeSectionToHtmlParser.NAME.equals(inputFormat)) {
           final int titleIndex = Integer.parseInt(keyValueArgs.remove(prefix + "TitleIndex")) - 1;
           final String wiktionaryLang = keyValueArgs.remove(prefix + "WiktionaryLang");
+          final String webUrlTemplate = keyValueArgs.remove(prefix + "WebUrlTemplate");
           String skipLang = keyValueArgs.remove(prefix + "SkipLang");
           if (skipLang == null) skipLang = "";
-          new WholeSectionToHtmlParser(dictionaryBuilder.indexBuilders.get(titleIndex), null, wiktionaryLang, skipLang).parse(file, entrySource, pageLimit);
+          new WholeSectionToHtmlParser(dictionaryBuilder.indexBuilders.get(titleIndex), null, wiktionaryLang, skipLang, webUrlTemplate).parse(file, entrySource, pageLimit);
         } else {
           fatalError("Invalid or missing input format: " + inputFormat);
         }
index ea9e1a72f1e6446264057eb9746f315103deb751..5fc5b3c41fe580dd93ac3d8fb17a4fd4d3b51b70 100644 (file)
@@ -75,7 +75,48 @@ public class DictionaryBuilderMain extends TestCase {
   }
   
   static List<String> getMainArgs(final String[] pair) {
-    final List<String> result = new ArrayList<String>();
+      final List<String> result = new ArrayList<String>();
+      
+    int i = 1;
+    
+    if (pair.length == 1) {
+        final String lang1 = pair[0];
+        final String dictFile = String.format("%s/%s.quickdic", OUTPUTS, lang1);
+        result.add(String.format("--dictOut=%s", dictFile));
+        result.add(String.format("--lang1=%s", lang1));
+        result.add(String.format("--lang1Stoplist=%s", STOPLISTS + getStoplist(lang1)));
+        result.add(String.format("--dictInfo=Wikitionary-based %s dictionary.", lang1));
+
+        
+        final String wikiSplitFile = String.format("%s/wikiSplit/%s/%s.data", INPUTS, lang1.toLowerCase(), lang1);
+        if (new File(wikiSplitFile).canRead()) {
+            result.add(String.format("--input%d=%s", i, wikiSplitFile));
+            result.add(String.format("--input%dName=%s.wiktionary.org", i, lang1.toLowerCase()));
+            result.add(String.format("--input%dFormat=%s", i, WholeSectionToHtmlParser.NAME));
+            result.add(String.format("--input%dTitleIndex=%d", i, 1));
+            result.add(String.format("--input%dWiktionaryLang=%s", i, lang1));
+            result.add(String.format("--input%dSkipLang=%s", i, lang1));
+            result.add(String.format("--input%dWebUrlTemplate=http://%s.wiktionary.org/wiki/%%s", i, lang1.toLowerCase()));
+            result.add(String.format("--input%dPageLimit=100", i));
+            ++i;
+        } else {
+            System.err.println("Can't read file: " + wikiSplitFile);
+        }
+        
+        if (lang1.equals("EN")) {
+            result.add(String.format("--input%d=%s/wikiSplit/en/%s.data", i, INPUTS, lang1));
+            result.add(String.format("--input%dName=ENWiktionary.%s", i, lang1)) ;
+            result.add(String.format("--input%dFormat=enwiktionary", i));
+            result.add(String.format("--input%dWiktionaryType=EnEnglish", i));
+            result.add(String.format("--input%dLangPattern=%s", i, "English"));
+            result.add(String.format("--input%dLangCodePattern=%s", i, lang1.toLowerCase()));
+            result.add(String.format("--input%dEnIndex=%d", i, 1));
+            result.add(String.format("--input%dPageLimit=100", i));
+            ++i;
+        }
+        
+        return result;
+    }  // Single-lang dictionaries.
     
     final String lang1 = pair[0];
     final String lang2 = pair[1];
@@ -87,8 +128,6 @@ public class DictionaryBuilderMain extends TestCase {
     result.add(String.format("--lang1Stoplist=%s", STOPLISTS + getStoplist(lang1)));
     result.add(String.format("--lang2Stoplist=%s", STOPLISTS + getStoplist(lang2)));
 
-    int i = 1;
-    
     // For a few langs, put the defs of the other language in DE/IT/FR using WholeSection.
     for (final String wikitionaryLang : Arrays.asList("EN", "DE", "IT", "FR")) {
         if (!Arrays.asList(pair).contains(wikitionaryLang)) {
@@ -101,11 +140,12 @@ public class DictionaryBuilderMain extends TestCase {
             continue;
         }
         result.add(String.format("--input%d=%s", i, wikiSplitFile));
-        result.add(String.format("--input%dName=%s.wiktionary.org (%s)", i, wikitionaryLang, foreignIso));
+        result.add(String.format("--input%dName=%s.wiktionary.org", i, wikitionaryLang.toLowerCase()));
         result.add(String.format("--input%dFormat=%s", i, WholeSectionToHtmlParser.NAME));
         result.add(String.format("--input%dTitleIndex=%d", i, Arrays.asList(pair).indexOf(foreignIso) + 1));
         result.add(String.format("--input%dWiktionaryLang=%s", i, wikitionaryLang));
         result.add(String.format("--input%dSkipLang=%s", i, foreignIso));
+        result.add(String.format("--input%dWebUrlTemplate=http://%s.wiktionary.org/wiki/%%s", i, wikitionaryLang.toLowerCase()));
         ++i;
     }
     
@@ -172,7 +212,11 @@ public class DictionaryBuilderMain extends TestCase {
     
     // Build the non EN ones.
     final String[][] nonEnPairs = new String[][] {
-
+        {"EN"},
+        {"DE"},
+        {"IT"},
+        {"FR"},
+            
         // The 3 I use most:
         {"IT", "EN" },
         {"DE", "EN" },
index c33b62650b2dd9168380c435c622ed57865d961a..3fcd13cca3204830d676486d06095904a5acc32b 100644 (file)
@@ -60,10 +60,11 @@ public class DictionaryBuilderTest extends TestCase {
               "{{it-conj-cire|ricuc|avere}}\n" +
               "{{it-conj-iarsi-b|riavvi|essere}}" +
               "{{it-conj-fare|putre|avere}}\n" + 
-              "{{it-conj-cirsi|cuc|essere}}\n"
+              "{{it-conj-cirsi|cuc|essere}}\n" +
+              "{{it-conj-ere|smett|avere|pastp=smesso|prem1s=smisi|prem3s=smise|prem3s2=''|prem3p=smisero|prem3p2=''}}\n"
               ;
       final DictionaryBuilder db = new DictionaryBuilder("", Language.en, Language.it,  "", "", Collections.singleton("X"), Collections.singleton("X"));
-      WholeSectionToHtmlParser parser = new WholeSectionToHtmlParser(db.indexBuilders.get(0), null, "EN", "IT");
+      WholeSectionToHtmlParser parser = new WholeSectionToHtmlParser(db.indexBuilders.get(0), null, "EN", "IT", "http://en.wiktionary.org/wiki/%s");
       parser.title = "dummyTitle";
       parser.entrySource = new EntrySource(0, "dummySource", 0);
       parser.parseSection("dummyHeading", toParse);
index 60de2fc82c6c1c1e9ff481ae48aa1843f907d128..3161f4abeec1d832f32b63a98f2623064e22ba05 100644 (file)
@@ -66,7 +66,13 @@ class EnFunctionCallbacks {
       callbacks.put("zh-attention", callback);
       callbacks.put("top2", callback);
       callbacks.put("mid2", callback);
+      callbacks.put("top3", callback);
+      callbacks.put("mid3", callback);
       callbacks.put("bottom", callback);
+      callbacks.put("rel-mid", callback);
+      callbacks.put("rel-mid3", callback);
+      callbacks.put("rel-mid4", callback);
+      callbacks.put("rel-bottom", callback);
       
       callback = new AppendName<T>();
       callbacks.put("...", callback);
@@ -659,49 +665,6 @@ class EnFunctionCallbacks {
   // Italian stuff
   // -----------------------------------------------------------------------
   
-  static void passThroughOrFillIn(final Map<String,String> namedArgs, final String key, final String fillIn, final boolean quoteToEmpty) {
-      final String value = namedArgs.get(key);
-      if (quoteToEmpty && "''".equals(value)) {
-          namedArgs.put(key, "");
-          return;
-      }
-      if (value == null || value.equals("")) {
-          namedArgs.put(key, fillIn);
-      }
-  }
-  
-  static final List<String> it_number_s_p = Arrays.asList("s", "p");
-  static final List<String> it_person_1_2_3 = Arrays.asList("1", "2", "3");
-  static final List<String> it_reflexive_pronouns = Arrays.asList("mi ", "ti ", "si ", "ci ", "vi ", "si ");
-  static final List<String> it_empty = Arrays.asList("", "", "", "", "", "");
-  static void it_conj_passMood(final Map<String,String> namedArgs, final String moodName, final boolean quoteToEmpty, final String root, final List<String> suffixes) {
-      assert suffixes.size() == 6;
-      int i = 0;
-      for (final String number : it_number_s_p) {
-          for (final String person : it_person_1_2_3) {
-              passThroughOrFillIn(namedArgs, String.format("%s%s%s", moodName, person, number), root + suffixes.get(i), quoteToEmpty);
-              ++i;
-          }
-      }
-  }
-
-  private static <T extends AbstractWiktionaryParser> void outputKeyVariations(AppendAndIndexWikiCallback<T> appendAndIndexWikiCallback,
-        final StringBuilder builder, final String keyBase, Map<String, String> namedArgs, boolean isForm) {
-    for (int suffix = 0; suffix <= 4; ++suffix) {
-        final String key = suffix == 0 ? keyBase : keyBase + suffix;
-        final String val = namedArgs.remove(key);
-        if (val != null) {
-            if (suffix > 0) {
-                builder.append(", ");
-            }
-            appendAndIndexWikiCallback.dispatch(val, null);
-            if (isForm) {
-                appendAndIndexWikiCallback.parser.addLinkToCurrentEntry(val, EntryTypeName.WIKTIONARY_INFLECTED_FORM_MULTI);
-            }
-        }
-    }
-  }
-
 static final class it_conj_are<T extends AbstractWiktionaryParser> implements FunctionCallback<T> {
     final it_conj<T> dest;
     it_conj_are(it_conj<T> dest) {
@@ -1112,4 +1075,49 @@ static final class it_conj_are<T extends AbstractWiktionaryParser> implements Fu
             builder.append("</tr>\n");
         }
     }
+  
+  static void passThroughOrFillIn(final Map<String,String> namedArgs, final String key, final String fillIn, final boolean quoteToEmpty) {
+      final String value = namedArgs.get(key);
+      if (quoteToEmpty && "''".equals(value)) {
+          namedArgs.put(key, "");
+          return;
+      }
+      if (value == null || value.equals("")) {
+          namedArgs.put(key, fillIn);
+      }
+  }
+  
+  static final List<String> it_number_s_p = Arrays.asList("s", "p");
+  static final List<String> it_person_1_2_3 = Arrays.asList("1", "2", "3");
+  static final List<String> it_reflexive_pronouns = Arrays.asList("mi ", "ti ", "si ", "ci ", "vi ", "si ");
+  static final List<String> it_empty = Arrays.asList("", "", "", "", "", "");
+  static void it_conj_passMood(final Map<String,String> namedArgs, final String moodName, final boolean quoteToEmpty, final String root, final List<String> suffixes) {
+      assert suffixes.size() == 6;
+      int i = 0;
+      for (final String number : it_number_s_p) {
+          for (final String person : it_person_1_2_3) {
+              passThroughOrFillIn(namedArgs, String.format("%s%s%s", moodName, person, number), root + suffixes.get(i), quoteToEmpty);
+              ++i;
+          }
+      }
+  }
+
+  private static <T extends AbstractWiktionaryParser> void outputKeyVariations(AppendAndIndexWikiCallback<T> appendAndIndexWikiCallback,
+        final StringBuilder builder, final String keyBase, Map<String, String> namedArgs, boolean isForm) {
+    for (int suffix = 0; suffix <= 4; ++suffix) {
+        final String key = suffix == 0 ? keyBase : keyBase + suffix;
+        final String val = namedArgs.remove(key);
+        if (val != null && !val.trim().equals("")) {
+            if (suffix > 0) {
+                builder.append(", ");
+            }
+            appendAndIndexWikiCallback.dispatch(val, null);
+            if (isForm) {
+                appendAndIndexWikiCallback.parser.addLinkToCurrentEntry(val, EntryTypeName.WIKTIONARY_INFLECTED_FORM_MULTI);
+            }
+        }
+    }
+  }
+
+
 }
\ No newline at end of file
index 0f7ae2d1cef8d94876a6b97ad0627a7633ee4562..c2ddd56d1d3991dc11a414c45adf0d6c10bd7d29 100644 (file)
@@ -1,7 +1,6 @@
 
 package com.hughes.android.dictionary.parser.wiktionary;
 
-import com.hughes.android.dictionary.HtmlDisplayActivity;
 import com.hughes.android.dictionary.engine.EntryTypeName;
 import com.hughes.android.dictionary.engine.HtmlEntry;
 import com.hughes.android.dictionary.engine.IndexBuilder;
@@ -9,6 +8,7 @@ import com.hughes.android.dictionary.engine.IndexBuilder.TokenData;
 import com.hughes.android.dictionary.engine.IndexedEntry;
 import com.hughes.android.dictionary.parser.WikiTokenizer;
 import com.hughes.util.StringUtil;
+import com.sun.xml.internal.rngom.util.Uri;
 
 import org.apache.commons.lang3.StringEscapeUtils;
 
@@ -123,14 +123,17 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
     final IndexBuilder defIndexBuilder;
     final String skipLangIso;
     final LangConfig langConfig;
+    final String webUrlTemplate;
     
 
-    public WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder, final IndexBuilder defIndexBuilder, final String wiktionaryIso, final String skipLangIso) {
+    public WholeSectionToHtmlParser(final IndexBuilder titleIndexBuilder, final IndexBuilder defIndexBuilder, final String wiktionaryIso, final String skipLangIso,
+            final String webUrlTemplate) {
         this.titleIndexBuilder = titleIndexBuilder;
         this.defIndexBuilder = defIndexBuilder;
         assert isoToLangConfig.containsKey(wiktionaryIso): wiktionaryIso;
         this.langConfig = isoToLangConfig.get(wiktionaryIso);
         this.skipLangIso = skipLangIso;
+        this.webUrlTemplate = webUrlTemplate;
     }
     
     IndexedEntry indexedEntry = null;
@@ -149,6 +152,10 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
         callback.indexedEntry = indexedEntry;
         callback.dispatch(text, null);
 
+        if (webUrlTemplate != null) {
+            final String webUrl = String.format(webUrlTemplate, title);
+            callback.builder.append(String.format("<p> <a href=\"%s\">%s</a>", Uri.escapeDisallowedChars(webUrl), escapeHtmlLiteral(webUrl)));
+        }
         htmlEntry.html = callback.builder.toString();
         indexedEntry.isValid = true;
 
@@ -170,6 +177,16 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
     public void addLinkToCurrentEntry(String token, EntryTypeName entryTypeName) {
         titleIndexBuilder.addEntryWithString(indexedEntry, token, entryTypeName);
     }
+    
+    public static String escapeHtmlLiteral(final String plainText) {
+        final String htmlEscaped = StringEscapeUtils.escapeHtml3(plainText);
+        if (StringUtil.isAscii(htmlEscaped)) {
+            return htmlEscaped;
+        } else { 
+            return StringUtil.escapeToPureHtmlUnicode(plainText);
+        }
+
+    }
 
 
 
@@ -180,12 +197,7 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
 
         @Override
         public void onPlainText(String plainText) {
-            final String htmlEscaped = StringEscapeUtils.escapeHtml3(plainText);
-            if (StringUtil.isAscii(htmlEscaped)) {
-                super.onPlainText(htmlEscaped);
-            } else { 
-                super.onPlainText(StringUtil.escapeToPureHtmlUnicode(plainText));
-            }
+            super.onPlainText(escapeHtmlLiteral(plainText));
         }
 
         @Override
index 8fd715949f451b74eaff59d47e0805e9833d0fb2..807279d1655ec71880f709874ddfab9f94ca7c76 100644 (file)
@@ -2,745 +2,745 @@ dictInfo=
 
 Index: EN EN->IT
 ===abbatta===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatte===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatté===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattendosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattentesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatterono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattette===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattettero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatteva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbatto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattuto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===abbattutosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusa===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuseranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuseremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuseremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuseresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuserò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accuso===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===accusò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacceranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacceremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacceremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacceresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccerò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciandosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciantesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciatosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affaccio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===affacciò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiandosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiantesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiatosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoieranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoieremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoieremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoieresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoierò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===annoiò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvieranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvieremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvieremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvieresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvierò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avvio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===avviò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniuga===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugandosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugantesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugatosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugheranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugheremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugheremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniughereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugheresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugherò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniughi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniughiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniughiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniughino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coniugò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coperse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copersero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copersi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coperto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copra===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copre===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copri===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copristi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copriva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===copro===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===coprono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucé===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucendosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucentesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucerono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucisti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucito===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucitosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cuciva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===cucivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===danno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===daranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===daremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===daremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dareste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===daresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===darò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===date===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===davamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===davano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===davate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===davi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===davo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===demmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===desse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===deste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===desti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dette===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dettero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===detti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diede===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diedero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===diedi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===do===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===dummyTitle===
 HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">dare</td></tr>
 <tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">dando</td></tr>
@@ -860,7 +860,7 @@ HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0"><tr><th colspan="1" s
 <tr><th colspan="1" style="background:#c0cfe4">indicativo</th><th style="background:#c0cfe4">io</th><th style="background:#c0cfe4">tu</th><th style="background:#c0cfe4">lui/lei</th><th style="background:#c0cfe4">noi</th><th style="background:#c0cfe4">voi</th><th style="background:#c0cfe4">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#c0cfe4">presente</th><td>persuado</td><td>persuadi</td><td>persuade</td><td>persuadiamo</td><td>persuadete</td><td>persuadono</td></tr>
 <tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>persuadevo</td><td>persuadevi</td><td>persuadeva</td><td>persuadevamo</td><td>persuadevate</td><td>persuadevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>persuasi</td><td>persuadesti</td><td>persuase, </td><td>persuademmo</td><td>persuadeste</td><td>persuasero, </td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>persuasi</td><td>persuadesti</td><td>persuase</td><td>persuademmo</td><td>persuadeste</td><td>persuasero</td></tr>
 <tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>persuader&ograve;</td><td>persuaderai</td><td>persuader&agrave;</td><td>persuaderemo</td><td>persuaderete</td><td>persuaderanno</td></tr>
 <tr><th colspan="1" style="background:#c0d8e4">condizionale</th><th style="background:#c0d8e4">io</th><th style="background:#c0d8e4">tu</th><th style="background:#c0d8e4">lui/lei</th><th style="background:#c0d8e4">noi</th><th style="background:#c0d8e4">voi</th><th style="background:#c0d8e4">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#c0d8e4">presente</th><td>persuaderei</td><td>persuaderesti</td><td>persuaderebbe</td><td>persuaderemmo</td><td>persuadereste</td><td>persuaderebbero</td></tr>
@@ -1126,1173 +1126,1269 @@ HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0"><tr><th colspan="1" s
 <tr><th colspan="1" style="background:#e4d4c0">imperativo</th><th style="background:#e4d4c0">-</th><th style="background:#e4d4c0">tu</th><th style="background:#e4d4c0">lui/lei</th><th style="background:#e4d4c0">noi</th><th style="background:#e4d4c0">voi</th><th style="background:#e4d4c0">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#e4d4c0"></th><td></td><td>cuciti</td><td>si cucia</td><td>cuciamoci</td><td>cucitevi</td><td>si cuciano</td></tr>
 </table>
->>>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">smettere</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">smettendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">smettente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">smesso</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">indicativo</th><th style="background:#c0cfe4">io</th><th style="background:#c0cfe4">tu</th><th style="background:#c0cfe4">lui/lei</th><th style="background:#c0cfe4">noi</th><th style="background:#c0cfe4">voi</th><th style="background:#c0cfe4">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0cfe4">presente</th><td>smetto</td><td>smetti</td><td>smette</td><td>smettiamo</td><td>smettete</td><td>smettono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>smettevo</td><td>smettevi</td><td>smetteva</td><td>smettevamo</td><td>smettevate</td><td>smettevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>smisi</td><td>smettesti</td><td>smise</td><td>smettemmo</td><td>smetteste</td><td>smisero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>smetter&ograve;</td><td>smetterai</td><td>smetter&agrave;</td><td>smetteremo</td><td>smetterete</td><td>smetteranno</td></tr>
+<tr><th colspan="1" style="background:#c0d8e4">condizionale</th><th style="background:#c0d8e4">io</th><th style="background:#c0d8e4">tu</th><th style="background:#c0d8e4">lui/lei</th><th style="background:#c0d8e4">noi</th><th style="background:#c0d8e4">voi</th><th style="background:#c0d8e4">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0d8e4">presente</th><td>smetterei</td><td>smetteresti</td><td>smetterebbe</td><td>smetteremmo</td><td>smettereste</td><td>smetterebbero</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">congiuntivo</th><th style="background:#c0e4c0">che io</th><th style="background:#c0e4c0">che tu</th><th style="background:#c0e4c0">che lui/lei</th><th style="background:#c0e4c0">che noi</th><th style="background:#c0e4c0">che voi</th><th style="background:#c0e4c0">che essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0e4c0">presente</th><td>smetta</td><td>smetta</td><td>smetta</td><td>smettiamo</td><td>smettiate</td><td>smettano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>smettessi</td><td>smettessi</td><td>smettesse</td><td>smettessimo</td><td>smetteste</td><td>smettessero</td></tr>
+<tr><th colspan="1" style="background:#e4d4c0">imperativo</th><th style="background:#e4d4c0">-</th><th style="background:#e4d4c0">tu</th><th style="background:#e4d4c0">lui/lei</th><th style="background:#e4d4c0">noi</th><th style="background:#e4d4c0">voi</th><th style="background:#e4d4c0">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#e4d4c0"></th><td></td><td>smetti</td><td>smetta</td><td>smettiamo</td><td>smettete</td><td>smettano</td></tr>
+</table>
+<p> <a href="http://en.wiktionary.org/wiki/dummyTitle">http://en.wiktionary.org/wiki/dummyTitle</a>>>>
 ===feré===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferendosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferentesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===fererono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferisca===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriscano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferisce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferisci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferisco===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriscono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feristi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferito===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feritosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===feriva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ferivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavandosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavantesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavatosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laveranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laveremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laveremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laveresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laverò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laviamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===laviate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===lavò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paga===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagheranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagheremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagheremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paghereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagheresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagherò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paghi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paghiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paghiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===paghino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pago===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pagò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuada===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuade===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuademmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderanno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderemo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaderò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadeste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadeva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuado===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuadono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuase===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuasero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuasi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===persuaso===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferé===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===prefererono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisca===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiscano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisco===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiscono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferisti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferito===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferiva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===preferivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===prodotto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produca===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produceste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produceva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produco===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===producono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrreste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produrrò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produsse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produssero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===produssi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunceranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunceremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunceremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunceresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncerò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronuncio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===pronunciò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaccia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacciano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaccio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaceste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaceva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefacevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefanno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefareste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefaresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefarò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefatto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefece===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefecero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefeci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===putrefò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviandosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviantesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviatosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvieranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvieremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvieremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvieresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvierò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavvio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riavviò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucé===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucerono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucisti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucito===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricuciva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ricucivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridotto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridottosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduca===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduce===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducendosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducentesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduceste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduceva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduci===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduciamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduciate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riduco===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===riducono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurreste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridurrò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridusse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridussero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===ridussi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedé===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedendo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedente===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederanno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederemo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sederono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedesse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedessero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedessi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedessimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedeste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedette===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedettero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedeva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedevamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedevano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedevate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedevi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sedevo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sediamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sediate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===seduto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===seggo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===seggono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===sieda===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siedano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siede===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederanno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederemmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederemo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siedereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siederò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siedi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siedo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===siedono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
+===smesso===
+See also HtmlEntry:dummyTitle
+===smetta===
+See also HtmlEntry:dummyTitle
+===smettano===
+See also HtmlEntry:dummyTitle
+===smette===
+See also HtmlEntry:dummyTitle
+===smettemmo===
+See also HtmlEntry:dummyTitle
+===smettendo===
+See also HtmlEntry:dummyTitle
+===smettente===
+See also HtmlEntry:dummyTitle
+===smetterà===
+See also HtmlEntry:dummyTitle
+===smetterai===
+See also HtmlEntry:dummyTitle
+===smetteranno===
+See also HtmlEntry:dummyTitle
+===smetterebbe===
+See also HtmlEntry:dummyTitle
+===smetterebbero===
+See also HtmlEntry:dummyTitle
+===smetterei===
+See also HtmlEntry:dummyTitle
+===smetteremmo===
+See also HtmlEntry:dummyTitle
+===smetteremo===
+See also HtmlEntry:dummyTitle
+===smettereste===
+See also HtmlEntry:dummyTitle
+===smetteresti===
+See also HtmlEntry:dummyTitle
+===smetterete===
+See also HtmlEntry:dummyTitle
+===smetterò===
+See also HtmlEntry:dummyTitle
+===smettesse===
+See also HtmlEntry:dummyTitle
+===smettessero===
+See also HtmlEntry:dummyTitle
+===smettessi===
+See also HtmlEntry:dummyTitle
+===smettessimo===
+See also HtmlEntry:dummyTitle
+===smetteste===
+See also HtmlEntry:dummyTitle
+===smettesti===
+See also HtmlEntry:dummyTitle
+===smettete===
+See also HtmlEntry:dummyTitle
+===smetteva===
+See also HtmlEntry:dummyTitle
+===smettevamo===
+See also HtmlEntry:dummyTitle
+===smettevano===
+See also HtmlEntry:dummyTitle
+===smettevate===
+See also HtmlEntry:dummyTitle
+===smettevi===
+See also HtmlEntry:dummyTitle
+===smettevo===
+See also HtmlEntry:dummyTitle
+===smetti===
+See also HtmlEntry:dummyTitle
+===smettiamo===
+See also HtmlEntry:dummyTitle
+===smettiate===
+See also HtmlEntry:dummyTitle
+===smetto===
+See also HtmlEntry:dummyTitle
+===smettono===
+See also HtmlEntry:dummyTitle
+===smise===
+See also HtmlEntry:dummyTitle
+===smisero===
+See also HtmlEntry:dummyTitle
+===smisi===
+See also HtmlEntry:dummyTitle
 ===studi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studia===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiammo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiando===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiante===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiarono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiasse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiassero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiassi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiassimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiaste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiasti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiato===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiava===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiavamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiavano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiavate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiavi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiavo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studieranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studieremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studieremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiereste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studieresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studierò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studino===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studio===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===studiò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vesta===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===veste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vesté===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestendosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestentesi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vesterono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vesti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestì===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestii===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestimmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirà===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirai===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiranno===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirebbe===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirebbero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirei===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiremmo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiremo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestireste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiresti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirete===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirò===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestirono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestisse===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestissero===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestissi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestissimo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiste===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestisti===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestite===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestito===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestitosi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestiva===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestivamo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestivano===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestivate===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestivi===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestivo===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vesto===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 ===vestono===
-HtmlEntry (shortened): dummyTitle
+See also HtmlEntry:dummyTitle
 
 Index: IT IT->EN
 
index a26f9fed231fd9a5490360e90c14e2f1902ad418..75e6fb69e8caf28d576d8db25211191caef6a989 100644 (file)
@@ -85,34 +85,31 @@ Runic letter {{term|&#x16ab;|ansuz|tr=a}}, source for Anglo-Saxon Futhorc letter
 <li> <a href="qd::triple A">triple A</a></li>
 <li> <a href="qd::A cup">A cup</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::A game">A game</a></li>
 <li> <a href="qd::A levels">A levels</a></li>
 <li> <a href="qd::A list">A list</a></li>
 <li> <a href="qd::A team">A team</a></li>
 <li> <a href="qd::grade A">grade A</a></li>
 </ul>
-{rel-bottom}{{rel-top|Letter grade}}
+{{rel-top|Letter grade}}
 <ul><li> <a href="qd::straight A's">straight A's</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::A minus">A minus</a></li>
 <li> <a href="qd::A plus">A plus</a></li>
 </ul>
-{rel-bottom}{{rel-top|(music) tone three fifths above C}}
+{{rel-top|(music) tone three fifths above C}}
 <ul><li> <a href="qd::A-flat">A-flat</a></li>
 <li> <a href="qd::A major">A major</a></li>
 <li> <a href="qd::A-minor">A-minor</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::A-sharp">A-sharp</a></li>
 <li> <a href="qd::concert A">concert A</a></li>
 </ul>
-{rel-bottom}{{rel-top|Blood type}}
+{{rel-top|Blood type}}
 <ul><li> <a href="qd::A positive">A positive</a></li>
 <li> <a href="qd::A negative">A negative</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Abbreviation</h4>
 {en-abbr}
 <ol><li> {{context|Webster 1913}} <a href="qd::adjective">Adjective</a>.</li>
@@ -340,17 +337,15 @@ circa 1870: {{confix|ant|onym}}
 <li> <a href="qd::antonymic">antonymic</a></li>
 <li> <a href="qd::antonymous">antonymous</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::antonymy">antonymy</a></li>
 <li> <a href="qd::binary antonym">binary antonym</a></li>
 <li> <a href="qd::complementary antonym">complementary antonym</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::gradable antonym">gradable antonym</a></li>
 <li> <a href="qd::polar antonym">polar antonym</a></li>
 <li> <a href="qd::relational antonym">relational antonym</a></li>
 </ul>
-{rel-bottom}
+
 <h3>See also</h3>
 <ul><li> <a href="qd::thesaurus">thesaurus</a></li>
 </ul>
@@ -397,7 +392,6 @@ From {{etyl|enm}} {{term|apprile|lang=enm}}, re-<a href="qd::Latinize">Latinize<
 </ol>
 
 <h4>Derived terms</h4>
-{top3}
 <ul><li> <a href="qd::Aprilesque">Aprilesque</a></li>
 <li> <a href="qd::April-esquire">April-esquire</a></li>
 <li> <a href="qd::April-fish">April-fish</a></li>
@@ -407,7 +401,6 @@ From {{etyl|enm}} {{term|apprile|lang=enm}}, re-<a href="qd::Latinize">Latinize<
 <li> <a href="qd::April-gowk">April-gowk</a></li>
 <li> <a href="qd::Aprilian">Aprilian</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Aprilish">Aprilish</a></li>
 <li> {{w|April Constitution of Poland}}</li>
 <li> <a href="qd::April Fifth Action">April Fifth Action</a></li>
@@ -415,7 +408,6 @@ From {{etyl|enm}} {{term|apprile|lang=enm}}, re-<a href="qd::Latinize">Latinize<
 <li> <a href="qd::April 19 Revolution">April 19 Revolution</a>, <a href="qd::April Revolution">April Revolution</a></li>
 <li> <a href="qd::April showers">April showers</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::April showers bring May flowers">April showers bring May flowers</a></li>
 <li> <a href="qd::April Theses">April Theses</a></li>
 <li> <a href="qd::April Uprising">April Uprising</a></li>
@@ -667,7 +659,6 @@ A hard-cover book{en-noun}
 <li> <a href="qd::bookmaking">bookmaking</a></li>
 <li> <a href="qd::bookman">bookman</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::bookmark">bookmark</a>, <a href="qd::bookmarker">bookmarker</a></li>
 <li> <a href="qd::book match">book match</a></li>
 <li> <a href="qd::book-mate">book-mate</a></li>
@@ -729,7 +720,6 @@ A hard-cover book{en-noun}
 <li> <a href="qd::bookwise">bookwise</a></li>
 <li> <a href="qd::bookwork">bookwork</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::book-world">book-world</a></li>
 <li> <a href="qd::bookworm">bookworm</a></li>
 <li> <a href="qd::book-wright">book-wright</a></li>
@@ -787,7 +777,7 @@ A hard-cover book{en-noun}
 <li> <a href="qd::workbook">workbook</a></li>
 <li> <a href="qd::yearbook">yearbook</a></li>
 </ul>
-{rel-bottom}
+
 <h5>See also</h5>
 <ul><li> <a href="qd::incunable">incunable</a></li>
 <li> <a href="qd::scroll">scroll</a></li>
@@ -832,12 +822,11 @@ A hard-cover book{en-noun}
 <li> <a href="qd::double-book">double-book</a></li>
 <li> <a href="qd::overbook">overbook</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::rebook">rebook</a></li>
 <li> <a href="qd::unbook">unbook</a></li>
 <li> <a href="qd::underbook">underbook</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Statistics</h3>
 <ul><li> {{rank|taking|information|seem|468|book|story|deep|meet}}</li>
 </ul>
@@ -928,7 +917,6 @@ HtmlEntry: brown <<<<a href="qd::File:Color icon brown v2.svg">Various shades of
 <li> <a href="qd::brown sauce">brown sauce</a></li>
 <li> <a href="qd::Brown Shirt">Brown Shirt</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::brown sugar">brown sugar</a></li>
 <li> <a href="qd::Brown Swiss">Brown Swiss</a></li>
 <li> <a href="qd::brown thrasher">brown thrasher</a></li>
@@ -951,7 +939,7 @@ HtmlEntry: brown <<<<a href="qd::File:Color icon brown v2.svg">Various shades of
 <li> <a href="qd::nut-borwn">nut-borwn</a></li>
 <li> <a href="qd::Vandyke brown">Vandyke brown</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Related terms</h3>
 <ul><li> <a href="qd::brunet">brunet</a></li>
 <li> <a href="qd::burnet">burnet</a></li>
@@ -1123,7 +1111,6 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 <li> <a href="qd::cat's whisker">&#x63;&#x61;&#x74;&#x2019;&#x73;&#x20;&#x77;&#x68;&#x69;&#x73;&#x6b;&#x65;&#x72;</a></li>
 <li> <a href="qd::cat's whiskers">&#x63;&#x61;&#x74;&#x2019;&#x73;&#x20;&#x77;&#x68;&#x69;&#x73;&#x6b;&#x65;&#x72;&#x73;</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::cattish">cattish</a></li>
 </ul>
 <ul><li> <a href="qd::cat-trap">cat-trap</a></li>
@@ -1180,7 +1167,7 @@ From {{etyl|enm}} {{term|cat|lang=enm}}, {{term|catte|lang=enm}}, from {{etyl|an
 <li> <a href="qd::wildcat">wildcat</a>, <a href="qd::wild cat">wild cat</a></li>
 <li> <a href="qd::when the cat's away the mice will play">when the cat's away the mice will play</a></li>
 </ul>
-{rel-bottom}
+
 <h5>See also</h5>
 <ul><li> <a href="qd::Burmese">Burmese</a></li>
 <li> <a href="qd::feline">feline</a></li>
@@ -1422,13 +1409,12 @@ HtmlEntry: crow <<<A bird; a crow: <em>American crow</em>
 <li> <a href="qd::eat crow">eat crow</a></li>
 <li> <a href="qd::grey crow">grey crow</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::hooded crow">hooded crow</a></li>
 <li> <a href="qd::hoodiecrow">hoodiecrow</a></li>
 <li> <a href="qd::Scotch crow">Scotch crow</a></li>
 <li> <a href="qd::stone the crows">stone the crows</a></li>
 </ul>
-{rel-bottom}
+
 <h5>Related terms</h5>
 <ul><li> <a href="qd::crow eater">crow eater</a></li>
 </ul>
@@ -1530,7 +1516,6 @@ From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;g|&#x6
 <li> <a href="qd::day-neutral">day-neutral</a></li>
 <li> <a href="qd::day nursery">day nursery</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::day off">day off</a></li>
 <li> <a href="qd::day of reckoning">day of reckoning</a></li>
 <li> <a href="qd::day one">day one</a></li>
@@ -1547,7 +1532,6 @@ From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;g|&#x6
 <li> <a href="qd::degree-day">degree-day</a></li>
 <li> <a href="qd::dollar day">dollar day</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::every dog has its day">every dog has its day</a></li>
 <li> <a href="qd::field day">field day</a></li>
 <li> <a href="qd::flag day">flag day</a>, <a href="qd::Flag Day">Flag Day</a></li>
@@ -1572,7 +1556,7 @@ From {{etyl|enm}} {{term|day|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;g|&#x6
 <li> <a href="qd::Victoria day">Victoria day</a></li>
 <li> <a href="qd::Wednesday">Wednesday</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Verb</h3>
 {en-verb}
 <ol><li> {rare} To <a href="qd::spend">spend</a> a <a href="qd::day">day</a> (in a place).</li>
@@ -1754,13 +1738,11 @@ From {{etyl|enm}} {{term|delen|lang=enm}}, from {{etyl|ang}} {{term|d&aelig;lan|
 <ul><li> <a href="qd::no deal">no deal</a></li>
 <li> <a href="qd::package deal">package deal</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::raw deal">raw deal</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::sweetheart deal">sweetheart deal</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Etymology 3</h3>
 {{etyl|gml}} {{term|dele|lang=gml}}, cognate with Old English {{term|&thorn;ille|lang=ang}}.
 <h4>Noun</h4>
@@ -2193,7 +2175,6 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 <li> <a href="qd::doggone">doggone</a></li>
 <li> <a href="qd::doggoned">doggoned</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::doggonedest">doggonedest</a></li>
 <li> <a href="qd::doggrel">doggrel</a></li>
 <li> <a href="qd::dog groomer">dog groomer</a></li>
@@ -2336,7 +2317,6 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 <li> <a href="qd::dog track">dog track</a></li>
 <li> <a href="qd::dog train">dog train</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::dog trainer">dog trainer</a></li>
 <li> <a href="qd::dog training">dog training</a></li>
 <li> <a href="qd::dog training school">dog training school</a></li>
@@ -2474,7 +2454,7 @@ From {{etyl|enm}} {{term|dogge|lang=enm}}, from {{etyl|ang}} {{term|docga|hound,
 <li> <a href="qd::you can't teach an old dog new tricks">you can't teach an old dog new tricks</a></li>
 <li> <a href="qd::young dog">young dog</a></li>
 </ul>
-{rel-bottom}
+
 <h4>See also</h4>
 <ul><li> {{specieslite|Canis}}</li>
 <li> {{commonslite|Dog}}</li>
@@ -2562,7 +2542,6 @@ HtmlEntry: eagle <<<Golden eagle (bird).
 <li> <a href="qd::eagle owl">eagle owl</a></li>
 <li> <a href="qd::fish eagle">fish eagle</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::golden eagle">golden eagle</a></li>
 <li> <a href="qd::Haast's eagle">&#x48;&#x61;&#x61;&#x73;&#x74;&#x2019;&#x73;&#x20;&#x65;&#x61;&#x67;&#x6c;&#x65;</a></li>
 <li> <a href="qd::sea eagle">sea eagle</a></li>
@@ -2570,13 +2549,12 @@ HtmlEntry: eagle <<<Golden eagle (bird).
 <li> <a href="qd::white-tailed eagle">white-tailed eagle</a></li>
 <li> <a href="qd::Eagle Scout">Eagle Scout</a></li>
 </ul>
-{rel-bottom}{{rel-top|terms derived from U.S. coin}}
+{{rel-top|terms derived from U.S. coin}}
 <ul><li> <a href="qd::double eagle">double eagle</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::half eagle">half eagle</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Synonyms</h4>
 <ul><li> <a href="qd::erne">erne</a></li>
 <li> <a href="qd::broadwing">broadwing</a></li>
@@ -2645,7 +2623,6 @@ HtmlEntry: elephant <<<
 <li> <a href="qd::elephant-gravel">elephant-gravel</a></li>
 <li> <a href="qd::elephant-gray">elephant-gray</a>, <a href="qd::elephant-grey">elephant-grey</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::elephant gun">elephant gun</a></li>
 <li> Elephant Hall</li>
 <li> <a href="qd::elephant hawk moth">elephant hawk moth</a></li>
@@ -2671,7 +2648,6 @@ HtmlEntry: elephant <<<
 <li> <a href="qd::elephant's breath">elephant's breath</a></li>
 <li> <a href="qd::elephant seal">elephant seal</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::elephant's ear">elephant's ear</a>, <a href="qd::elephant's ears">elephant's ears</a></li>
 <li> <a href="qd::elephant's foot">elephant's foot</a></li>
 <li> <a href="qd::elephant's foot umbrella stand">elephant's foot umbrella stand</a></li>
@@ -2698,7 +2674,6 @@ HtmlEntry: elephant <<<
 <li> <a href="qd::elephant-tusk">elephant-tusk</a></li>
 <li> <a href="qd::elephant yam">elephant yam</a></li>
 </ul>
-{rel-mid4}
 <ul><li> Flying Elephant</li>
 <li> <a href="qd::forest elephant">forest elephant</a></li>
 <li> <a href="qd::get a look at the elephant">get a look at the elephant</a></li>
@@ -2725,29 +2700,26 @@ HtmlEntry: elephant <<<
 <li> <a href="qd::water elephant">water elephant</a></li>
 <li> <a href="qd::white elephant">white elephant</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Related terms</h4>
 {rel-top4}
 <ul><li> <a href="qd::chryselephantine">chryselephantine</a></li>
 <li> <a href="qd::elephancy">elephancy</a></li>
 <li> <a href="qd::elephanta">elephanta</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::elephanter">elephanter</a></li>
 <li> <a href="qd::elephantiac">elephantiac</a></li>
 <li> <a href="qd::elephantiasis">elephantiasis</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::elephantic">elephantic</a></li>
 <li> <em><a href="qd::Elephantidae">Elephantidae</a></em></li>
 <li> <a href="qd::elephantine">elephantine</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::elephantoid">elephantoid</a></li>
 <li> <a href="qd::Elephantopus">Elephantopus</a></li>
 <li> <em><a href="qd::Elephas">Elephas</a></em></li>
 </ul>
-{rel-bottom}
+
 <h3>External links</h3>
 <ul><li> {pedia}</li>
 <li> {{pedia|Elephant (disambiguation)}}</li>
@@ -2813,11 +2785,10 @@ The spelling <em>encyclopedia</em> is standard in American English, preferred in
 <li> <a href="qd::encyclopedic">encyclopedic</a></li>
 <li> <a href="qd::encyclopedic fiction">encyclopedic fiction</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::encyclopedist">encyclopedist</a></li>
 <li> <a href="qd::encyclopedic dictionary">encyclopedic dictionary</a></li>
 </ul>
-{rel-bottom}
+
 <h4>See also</h4>
 <ul><li> <a href="qd::dictionary">dictionary</a></li>
 </ul>
@@ -3206,7 +3177,6 @@ HtmlEntry: free <<<{{wikipedia|dab=free}}
 <li> {{l|en|freeloader}}</li>
 <li> {{l|en|free lunch}}</li>
 </ul>
-{rel-mid3}
 <ul><li> {{l|en|freely}}</li>
 <li> {{l|en|free market}}</li>
 <li> {{l|en|free marketeer}}</li>
@@ -3219,7 +3189,6 @@ HtmlEntry: free <<<{{wikipedia|dab=free}}
 <li> {{l|en|free rider}}</li>
 <li> {{l|en|free semigroup}}</li>
 </ul>
-{rel-mid3}
 <ul><li> {{l|en|free spirit}}</li>
 <li> {{l|en|free-thinker}}</li>
 <li> {{l|en|free time}}</li>
@@ -3231,7 +3200,7 @@ HtmlEntry: free <<<{{wikipedia|dab=free}}
 <li> {{l|en|free will}}</li>
 <li> {{l|en|unfree}}</li>
 </ul>
-{rel-bottom}
+
 <h4>Related terms</h4>
 <ul><li> {{l|en|freedom}}</li>
 <li> {{l|en|friend}}</li>
@@ -3348,7 +3317,6 @@ HtmlEntry: Friday <<<
 <li> <a href="qd::Friday Eve">Friday Eve</a></li>
 <li> <a href="qd::Friday-face">Friday-face</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Friday-faced">Friday-faced</a></li>
 <li> <a href="qd::Friday-fare">Friday-fare</a></li>
 <li> <a href="qd::Friday fast">Friday fast</a></li>
@@ -3361,7 +3329,6 @@ HtmlEntry: Friday <<<
 <li> <a href="qd::Friday Prayer">Friday Prayer</a></li>
 <li> <a href="qd::Fridays">Fridays</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Friday the thirteenth">Friday the thirteenth</a></li>
 <li> <a href="qd::Friday tree">Friday tree</a></li>
 <li> <a href="qd::gal Friday">gal Friday</a></li>
@@ -3374,7 +3341,6 @@ HtmlEntry: Friday <<<
 <li> <a href="qd::Hollywood Black Friday">Hollywood Black Friday</a></li>
 <li> <a href="qd::Holy Friday">Holy Friday</a></li>
 </ul>
-{rel-mid4}
 <ul><li> the <a href="qd::Long Friday">Long Friday</a></li>
 <li> <a href="qd::man Friday">man Friday</a>, <a href="qd::Man Friday">Man Friday</a></li>
 <li> <a href="qd::Marlboro Friday">Marlboro Friday</a></li>
@@ -3385,7 +3351,7 @@ HtmlEntry: Friday <<<
 <li> <a href="qd::virtual Friday">virtual Friday</a></li>
 <li> <a href="qd::when two Fridays come together">when two Fridays come together</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Adverb</h3>
 {{en-adv|-}}
 <ol><li> on Friday</li>
@@ -3690,7 +3656,6 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 <li> <a href="qd::headcase">head case</a></li>
 <li> <a href="qd::head cold">head cold</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::headcount">headcount</a></li>
 <li> <a href="qd::head down, bum up">head down, bum up</a></li>
 <li> <a href="qd::headdress">headdress</a></li>
@@ -3720,7 +3685,6 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 <li> <a href="qd::headstand">headstand</a></li>
 <li> <a href="qd::head start">headstart</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::headstone">headstone</a></li>
 <li> <a href="qd::headstrong">headstrong</a></li>
 <li> <a href="qd::heads will roll">heads will roll</a></li>
@@ -3749,7 +3713,7 @@ From {{etyl|enm}} {{term|hed|lang=enm}}, {{term|heed|lang=enm}}, {{term|heved|la
 <li> <a href="qd::turn heads">turn heads</a></li>
 <li> <a href="qd::turn someone's head">turn someone's head</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Adjective</h3>
 {{en-adj|-}}
 <ol><li> Of, relating to, or intended for the head.</li>
@@ -3890,7 +3854,6 @@ HtmlEntry: hour <<<
 <li> <a href="qd::hourglass">hourglass</a>/<a href="qd::hour glass">hour glass</a>/<a href="qd::hour-glass">hour-glass</a></li>
 <li> <a href="qd::hourless">hourless</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::hour hand">hour hand</a></li>
 <li> <a href="qd::hourly">hourly</a></li>
 <li> <a href="qd::kilowatt-hour">kilowatt-hour</a></li>
@@ -3903,7 +3866,7 @@ HtmlEntry: hour <<<
 <li> <a href="qd::witching hour">witching hour</a></li>
 <li> <a href="qd::zero hour">zero hour</a></li>
 </ul>
-{rel-bottom}{{lookfrom|hour}}
+{{lookfrom|hour}}
 <h3>Statistics</h3>
 <ul><li> {{rank|thousand|looking|John|366|hour|air|reason|feel}}</li>
 </ul>
@@ -3996,7 +3959,6 @@ Re-<a href="qd::Latinize">Latinize</a>d from {{etyl|enm}} {{term|Ieneuer|lang=en
 <li> <a href="qd::January indicator">January indicator</a></li>
 <li> <a href="qd::January Massacre">January Massacre</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::January Rebellion">January Rebellion</a></li>
 <li> <a href="qd::January sales">January sales</a></li>
 <li> <a href="qd::January thaw">January thaw</a></li>
@@ -4004,7 +3966,7 @@ Re-<a href="qd::Latinize">Latinize</a>d from {{etyl|enm}} {{term|Ieneuer|lang=en
 <li> <a href="qd::May and January">May and January</a></li>
 <li> <a href="qd::mid-January">mid-January</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Related terms</h4>
 <ul><li> <a href="qd::Janus">Janus</a></li>
 </ul>
@@ -4092,7 +4054,6 @@ From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-<a href="
 <li> <a href="qd::June bug">June bug</a></li>
 <li> <a href="qd::June cold">June cold</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::June Days">June Days</a></li>
 <li> <a href="qd::June Days Uprising">June Days Uprising</a></li>
 <li> <a href="qd::June drop">June drop</a></li>
@@ -4101,7 +4062,6 @@ From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-<a href="
 <li> <a href="qd::June List">June List</a></li>
 <li> <a href="qd::June Movement">June Movement</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::June solstice">June solstice</a></li>
 <li> <a href="qd::June sucker">June sucker</a></li>
 <li> <a href="qd::Juneteenth">Juneteenth</a></li>
@@ -4111,7 +4071,7 @@ From {{etyl|enm|en}} {{term|jun|lang=enm}}, {{term|june|lang=enm}}, re-<a href="
 <li> <a href="qd::mid-June">mid-June</a></li>
 <li> {{w|Movement 2 June}}</li>
 </ul>
-{rel-bottom}
+
 <h4>See also</h4>
 <ul><li> {{list|en|Gregorian calendar months}}</li>
 </ul>
@@ -4257,7 +4217,6 @@ HtmlEntry: march <<<
 <li> Horsemeat March</li>
 <li> <a href="qd::hour of march">hour of march</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::hunger march">hunger march</a></li>
 <li> <a href="qd::in a full march">in a full march</a></li>
 <li> <a href="qd::in march">in march</a></li>
@@ -4286,7 +4245,6 @@ HtmlEntry: march <<<
 <li> March of the Soviet Tankmen</li>
 <li> The March of the Volunteers</li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::march-on">march-on</a></li>
 <li> March on Rome</li>
 <li> March on Washington for Jobs and Freedom</li>
@@ -4313,7 +4271,6 @@ HtmlEntry: march <<<
 <li> <a href="qd::peace march">peace march</a></li>
 <li> People on the March</li>
 </ul>
-{rel-mid4}
 <ul><li> Persian March</li>
 <li> <a href="qd::Pride march">Pride march</a></li>
 <li> The Prince of Denmark's March</li>
@@ -4341,7 +4298,7 @@ HtmlEntry: march <<<
 <li> <a href="qd::wedding march">wedding march</a></li>
 <li> Women's March to Versailles</li>
 </ul>
-{rel-bottom}
+
 <h5>Related terms</h5>
 <ul><li> <a href="qd::démarche">d&eacute;marche</a></li>
 <li> <a href="qd::volksmarch">volksmarch</a></li>
@@ -4361,13 +4318,12 @@ HtmlEntry: march <<<
 <li> <a href="qd::march off">march off</a></li>
 <li> <a href="qd::march on">march on</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::march to the beat of a different drum">march to the beat of a different drum</a></li>
 <li> <a href="qd::outmarch">outmarch</a></li>
 <li> <a href="qd::overmarch">overmarch</a></li>
 <li> <a href="qd::remarch">remarch</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Etymology 2</h3>
 From {{etyl|enm}} {{term|marche|tract of land along a country's border|lang=enm}}, from {{etyl|fro}} {{term|marche|boundary, frontier}}, from {{etyl|frk}} {{recons|marka}}, from {{proto|Germanic|&#x6d;&#x61;&#x72;&#x6b;&#x14d;}}, from {{proto|Indo-European|mereg-|edge, boundary}}.
 <h4>Noun</h4>
@@ -4495,7 +4451,6 @@ HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}
 <li> <a href="qd::it may well with">it may well with</a>, <a href="qd::may well with">may well with</a></li>
 <li> <a href="qd::let the chips fall where they may">let the chips fall where they may</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::may as well">may as well</a></li>
 <li> <a href="qd::maybe">maybe</a></li>
 <li> <a href="qd::may chance">may chance</a></li>
@@ -4505,7 +4460,6 @@ HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}
 <li> <a href="qd::mayhappen">mayhappen</a></li>
 <li> <a href="qd::may I">may I</a>?</li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::may-issue">may-issue</a></li>
 <li> <a href="qd::mayn't">mayn't</a></li>
 <li> <a href="qd::may you live in interesting times">may you live in interesting times</a></li>
@@ -4513,7 +4467,7 @@ HtmlEntry: may <<<{{slim-wikipedia|May (disambiguation)}}
 <li> <a href="qd::those who will not when they may, when they will they shall have nay">those who will not when they may, when they will they shall have nay</a></li>
 <li> <a href="qd::what-you-may-call-it">what-you-may-call-it</a></li>
 </ul>
-{rel-bottom}
+
 <h4>See also</h4>
 <ul><li> <a href="qd::Appendix:English tag questions">Appendix:English tag questions</a></li>
 </ul>
@@ -4737,7 +4691,6 @@ HtmlEntry: Monday <<<
 <li> <a href="qd::Fat Monday">Fat Monday</a></li>
 <li> <a href="qd::Gang-Monday">Gang-Monday</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Green Monday">Green Monday</a></li>
 <li> <a href="qd::Handsel Monday">Handsel Monday</a></li>
 <li> <a href="qd::Hock Monday">Hock Monday</a></li>
@@ -4750,7 +4703,6 @@ HtmlEntry: Monday <<<
 <li> <a href="qd::Monday effect">Monday effect</a></li>
 <li> <a href="qd::Monday fever">Monday fever</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Monday hammer">Monday hammer</a></li>
 <li> <a href="qd::Mondayish">Mondayish</a></li>
 <li> <a href="qd::Mondayitis">Mondayitis</a></li>
@@ -4762,7 +4714,6 @@ HtmlEntry: Monday <<<
 <li> <a href="qd::Pentecost Monday">Pentecost Monday</a></li>
 <li> <a href="qd::Plough-Monday">Plough-Monday</a>, <a href="qd::Plow-Monday">Plow-Monday</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Pure Monday">Pure Monday</a></li>
 <li> <a href="qd::Rope Monday">Rope Monday</a></li>
 <li> <a href="qd::Saint Monday">Saint Monday</a></li>
@@ -4774,7 +4725,7 @@ HtmlEntry: Monday <<<
 <li> <a href="qd::Whit Monday">Whit Monday</a>, <a href="qd::Whit-Monday">Whit-Monday</a></li>
 <li> <a href="qd::Whitsun Monday">Whitsun Monday</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Adverb</h3>
 {{en-adv|-}}
 <ol><li> on Monday</li>
@@ -4929,7 +4880,6 @@ From {{etyl|ang}} {{term|nama|lang=ang}}, from {{proto|Germanic|nam&ocirc;}}, fr
 <li> <a href="qd::forename">forename</a></li>
 <li> <a href="qd::given name">given name</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::last name">last name</a></li>
 <li> <a href="qd::maiden name">maiden name</a></li>
 <li> <a href="qd::middle name">middle name</a></li>
@@ -4941,7 +4891,6 @@ From {{etyl|ang}} {{term|nama|lang=ang}}, from {{proto|Germanic|nam&ocirc;}}, fr
 <li> <a href="qd::on first name terms">on first name terms</a></li>
 <li> <a href="qd::pen name">pen name</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::personal name">personal name</a></li>
 <li> <a href="qd::prename">prename</a></li>
 <li> <a href="qd::put one's name in the hat">put one's name in the hat</a></li>
@@ -4952,7 +4901,7 @@ From {{etyl|ang}} {{term|nama|lang=ang}}, from {{proto|Germanic|nam&ocirc;}}, fr
 <li> <a href="qd::true name">true name</a></li>
 <li> <a href="qd::zoological name">zoological name</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Verb</h3>
 {{en-verb|nam|ing}}
 <ol><li> {transitive} To <a href="qd::give">give</a> a name to.</li>
@@ -4977,14 +4926,12 @@ From {{etyl|ang}} {{term|nama|lang=ang}}, from {{proto|Germanic|nam&ocirc;}}, fr
 {{rel-top3|Terms derived from <em>name</em> (verb)}}
 <ul><li> <a href="qd::misname">misname</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::name after">name after</a></li>
 <li> <a href="qd::name names">name names</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::you name it">you name it</a></li>
 </ul>
-{rel-bottom}
+
 <h3>See also</h3>
 <ul><li> <a href="qd::christen">christen</a></li>
 <li> <a href="qd::cognomen">cognomen</a></li>
@@ -5051,13 +4998,11 @@ HtmlEntry: nonsense <<<
 {{rel-top3|Terms derived from the noun &quot;nonsense&quot;}}
 <ul><li> <a href="qd::nonsensical">nonsensical</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::nonsensification">nonsensification</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::nonsensify">nonsensify</a></li>
 </ul>
-{rel-bottom}
+
 <h3>See also</h3>
 <ul><li> {{sense|biology}} <a href="qd::missense">missense</a></li>
 </ul>
@@ -5136,7 +5081,6 @@ From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang
 <li> <a href="qd::countable noun">countable noun</a></li>
 <li> <a href="qd::mass noun">mass noun</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::non-count noun">non-count noun</a></li>
 <li> <a href="qd::noun adjunct">noun adjunct</a></li>
 <li> <a href="qd::noun clause">noun clause</a></li>
@@ -5148,7 +5092,7 @@ From {{etyl|xno}} {{term|noun|lang=xno}}, {{term|non|lang=xno}}, {{term|nom|lang
 <li> <a href="qd::proper noun">proper noun</a></li>
 <li> <a href="qd::uncountable noun">uncountable noun</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Related terms</h4>
 <ul><li> <a href="qd::nominal">nominal</a></li>
 </ul>
@@ -5379,7 +5323,6 @@ From {{etyl|enm}}, unknown origin.
 <li> <a href="qd::meat pie">meat pie</a></li>
 <li> <a href="qd::mince pie">mince pie</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::mud pie">mud pie</a></li>
 <li> <a href="qd::pie chart">pie chart</a></li>
 <li> <a href="qd::pie-eater">pie-eater</a></li>
@@ -5389,7 +5332,6 @@ From {{etyl|enm}}, unknown origin.
 <li> <a href="qd::piehole">piehole</a></li>
 <li> <a href="qd::pie in the sky">pie in the sky</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::pieing">pieing</a></li>
 <li> <a href="qd::party pie">party pie</a></li>
 <li> <a href="qd::piemaker">piemaker</a></li>
@@ -5400,7 +5342,7 @@ From {{etyl|enm}}, unknown origin.
 <li> <a href="qd::sweet as pie">sweet as pie</a></li>
 <li> <a href="qd::who ate all the pies">who ate all the pies</a></li>
 </ul>
-{rel-bottom}
+
 <h5>See also</h5>
 <ul><li> <a href="qd::pastie">pastie</a></li>
 <li> <a href="qd::pasty">pasty</a></li>
@@ -5487,7 +5429,7 @@ Coined by Everett K Smith, President of the &#x4e;&#x61;&#x74;&#x69;&#x6f;&#x6e;
 <li> Hyphenation</li>
 <li> pneu<b>&middot;</b>mon<b>&middot;</b>o<b>&middot;</b>ul<b>&middot;</b>tra<b>&middot;</b>mi<b>&middot;</b>cro<b>&middot;</b>scop<b>&middot;</b>ic<b>&middot;</b>sil<b>&middot;</b>i<b>&middot;</b>co<b>&middot;</b>vol<b>&middot;</b>ca<b>&middot;</b>no<b>&middot;</b>co<b>&middot;</b>ni<b>&middot;</b>o<b>&middot;</b>sis</li>
 </ul>
-{rel-bottom}
+
 <h3>Noun</h3>
 {{en-noun|pneumonoultramicroscopicsilicovolcanoconioses}}
 <ol><li> {{context|nonce}} A <a href="qd::factitious">factitious</a> <a href="qd::disease">disease</a> of the lungs, allegedly caused by inhaling <a href="qd::microscopic">microscopic</a> <a href="qd::silicate">silicate</a> <a href="qd::particle">particles</a> originating from eruption of a volcano.</li>
@@ -5524,7 +5466,7 @@ Coined by Everett K Smith, President of the &#x4e;&#x61;&#x74;&#x69;&#x6f;&#x6e;
 <li> <a href="qd::floccinaucinihilipilification">floccinaucinihilipilification</a>&#x20;&#x2014;&#x20;&#x32;&#x39;&#x20;&#x6c;&#x65;&#x74;&#x74;&#x65;&#x72;&#x73;</li>
 <li> <a href="qd::antidisestablishmentarianism">antidisestablishmentarianism</a>&#x20;&#x2014;&#x20;&#x32;&#x38;&#x20;&#x6c;&#x65;&#x74;&#x74;&#x65;&#x72;&#x73;</li>
 </ul>
-{rel-bottom}>>>
+>>>
 ===poecilonym===
 See also HtmlEntry:synonym
 ===point===
@@ -6261,7 +6203,6 @@ Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from La
 </ol>
 
 <h4>Derived terms</h4>
-{top3}
 <ul><li> Black September</li>
 <li> <a href="qd::endless September">endless September</a></li>
 <li> <a href="qd::eternal September">eternal September</a></li>
@@ -6273,7 +6214,6 @@ Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from La
 <li> <a href="qd::September 10th">September 10th</a></li>
 <li> <a href="qd::September 11">September 11</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::September call-up">September call-up</a></li>
 <li> {{w|September Campaign}}</li>
 <li> {{w|September Convention}}</li>
@@ -6284,7 +6224,6 @@ Late {{etyl|ang}}, {{etyl|la}} {{term|september|seventh month|lang=la}}, from La
 <li> <a href="qd::Septemberer">Septemberer</a></li>
 <li> {{w|September Group}}</li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Septemberish">Septemberish</a>, <a href="qd::Septembrish">Septembrish</a></li>
 <li> <a href="qd::Septemberism">Septemberism</a></li>
 <li> {{w|September Massacres}}</li>
@@ -6488,7 +6427,6 @@ HtmlEntry: Sunday <<<
 <li> <a href="qd::Jubilate Sunday">Jubilate Sunday</a></li>
 <li> <a href="qd::Judica Sunday">Judica Sunday</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Justice Sunday">Justice Sunday</a></li>
 <li> <a href="qd::Laetare Sunday">Laetare Sunday</a></li>
 <li> <a href="qd::Low Sunday">Low Sunday</a></li>
@@ -6521,7 +6459,6 @@ HtmlEntry: Sunday <<<
 <li> <a href="qd::Stir-up Sunday">Stir-up Sunday</a></li>
 <li> <a href="qd::Suicide Sunday">Suicide Sunday</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Sun">Sun</a>, <a href="qd::Sun.">Sun.</a></li>
 <li> <a href="qd::sundae">sundae</a></li>
 <li> <a href="qd::Sunday baby">Sunday baby</a></li>
@@ -6553,7 +6490,6 @@ HtmlEntry: Sunday <<<
 <li> <a href="qd::Sunday out">Sunday out</a></li>
 <li> <a href="qd::Sunday painter">Sunday painter</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::Sunday paper">Sunday paper</a></li>
 <li> <a href="qd::Sunday punch">Sunday punch</a></li>
 <li> <a href="qd::Sunday roast">Sunday roast</a></li>
@@ -6582,7 +6518,7 @@ HtmlEntry: Sunday <<<
 <li> <a href="qd::Whit Sunday">Whit Sunday</a>, <a href="qd::Whitsunday">Whitsunday</a></li>
 <li> <a href="qd::World Communion Sunday">World Communion Sunday</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Adverb</h3>
 {{en-adv|-}}
 <ol><li> On Sunday</li>
@@ -6792,7 +6728,6 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|&thorn;ursd&aelig;g|&#xfe;&#x75;&#x7
 </ol>
 
 <h4>Derived terms</h4>
-{top3}
 <ul><li> <a href="qd::Ascension Thursday">Ascension Thursday</a></li>
 <li> <a href="qd::Black Thursday">Black Thursday</a></li>
 <li> <a href="qd::Bounds Thursday">Bounds Thursday</a></li>
@@ -6803,7 +6738,6 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|&thorn;ursd&aelig;g|&#xfe;&#x75;&#x7
 <li> <a href="qd::Fat Thursday">Fat Thursday</a></li>
 <li> <a href="qd::Great and Holy Thursday">Great and Holy Thursday</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Great Thursday">Great Thursday</a></li>
 <li> <a href="qd::Green Thursday">Green Thursday</a></li>
 <li> <a href="qd::Hallow Thursday">Hallow Thursday</a></li>
@@ -6814,7 +6748,6 @@ From {{etyl|enm}}, from {{etyl|ang}} {{term|&thorn;ursd&aelig;g|&#xfe;&#x75;&#x7
 <li> <a href="qd::Sheer Thursday">Sheer Thursday</a></li>
 <li> <a href="qd::Shore Thursday">Shore Thursday</a>, <a href="qd::Shorpthursday">Shorpthursday</a>, <a href="qd::Shorthursday">Shorthursday</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Shrove Thursday">Shrove Thursday</a></li>
 <li> <a href="qd::Silver Thursday">Silver Thursday</a></li>
 <li> <a href="qd::Skire Thursday">Skire Thursday</a>, <a href="qd::Skis Thursday">Skis Thursday</a></li>
@@ -6944,7 +6877,6 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi
 <li> <a href="qd::reverse of trade">reverse of trade</a></li>
 <li> <a href="qd::slave trade">slave trade</a></li>
 </ul>
-{rel-mid}
 <ul><li> <a href="qd::spot trade">spot trade</a></li>
 <li> <a href="qd::stock-in-trade">stock-in-trade</a></li>
 <li> <a href="qd::terms of trade">terms of trade</a></li>
@@ -6973,7 +6905,7 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi
 <li> <a href="qd::uptick trade">uptick trade</a></li>
 <li> <a href="qd::visible trade">visible trade</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Synonyms</h4>
 <ul><li> {{sense|the commercial exchange of goods and services}} <a href="qd::commerce">commerce</a></li>
 <li> {{sense|the collective people who perform a particular kind of skilled work}} <a href="qd::business">business</a></li>
@@ -7004,13 +6936,11 @@ From {{etyl|enm|en}} {{term|trade|path, course of conduct|lang=enm}}, cognate wi
 {{rel-top3|Terms derived from the verb &quot;trade&quot;}}
 <ul><li> <a href="qd::insider trading">insider trading</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::trade in">trade in</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::tradable">tradable</a></li>
 </ul>
-{rel-bottom}
+
 <h4>Synonyms</h4>
 <ul><li> {{sense|engage in the trade of}} <a href="qd::deal">deal</a></li>
 <li> {{sense|be traded at a certain price or under certain conditions}}</li>
@@ -7078,7 +7008,6 @@ From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesd&ae
 </ol>
 
 <h4>Derived terms</h4>
-{top3}
 <ul><li> <a href="qd::Black Tuesday">Black Tuesday</a></li>
 <li> <a href="qd::ecstasy Tuesday">ecstasy Tuesday</a></li>
 <li> <a href="qd::Fasten-Tuesday">Fasten-Tuesday</a>, <a href="qd::Fastens-Tuesday">Fastens-Tuesday</a></li>
@@ -7087,7 +7016,6 @@ From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesd&ae
 <li> <a href="qd::Hock Tuesday">Hock Tuesday</a></li>
 <li> <a href="qd::Holy Tuesday">Holy Tuesday</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Mini-Tuesday">Mini-Tuesday</a></li>
 <li> <a href="qd::Pancake Tuesday">Pancake Tuesday</a></li>
 <li> <a href="qd::Patch Tuesday">Patch Tuesday</a></li>
@@ -7097,7 +7025,6 @@ From {{etyl|enm}} {{term|Tewesday|lang=enm}}, from {{etyl|ang}} {{term|Tiwesd&ae
 <li> <a href="qd::Shrove Tuesday">Shrove Tuesday</a></li>
 <li> <a href="qd::suicide Tuesday">suicide Tuesday</a></li>
 </ul>
-{mid3}
 <ul><li> <a href="qd::Super Tuesday">Super Tuesday</a></li>
 <li> Terrible Tuesday</li>
 <li> <a href="qd::Tue">Tue</a>, <a href="qd::Tues">Tues</a></li>
@@ -7273,7 +7200,7 @@ HtmlEntry: Wednesday <<<{{wikipedia|wednesday|dab=wednesday (disambiguation)}}
 From {{etyl|enm}} {{term|Wednesdai|lang=enm}}, {{term|Wodnesdei|lang=enm}}, from {{etyl|ang}} {{term|wodnesd&aelig;g|&#x77;&#x14d;&#x64;&#x6e;&#x65;&#x73;&#x64;&#xe6;&#x121;|Wednesday|lang=ang}}, from a Germanic calque of {{etyl|la}} {{term|dies|day|lang=la}} {{term|Mercurii|of Mercurii|lang=la}} and Koine {{etyl|grc|-}} {{term|&#x1f21;&#x3bc;&#x3ad;&#x3c1;&#x3b1;|day|tr=hemera|lang=grc}} {{term|&#x1f1d;&#x3c1;&#x3bc;&#x3bf;&#x3c5;|of Hermes|lang=grc|tr=Hermou}}, via an association of the god <a href="qd::Odin">Odin</a> (Woden) with <a href="qd::Mercury">Mercury</a> and <a href="qd::Hermes">Hermes</a>.{{rel-top|additional etymological information}}
 <ul><li>Cognate with {{etyl|fy|-}} {{term|woansdei|Wednesday|lang=fy}}, {{etyl|nl|-}} {{term|woensdag|Wednesday|lang=nl}}, {{etyl|de|-}} dialectal {{term|Wodenstag|Wednesday|lang=de}}, {{etyl|da|-}} {{term|onsdag|Wednesday|lang=da}}, {{etyl|sv|-}} {{term|onsdag|Wednesday|lang=sv}}.</li>
 </ul>
-{rel-bottom}
+
 <h3>Pronunciation</h3>
 <ul><li> {{a|UK}} IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x64;&#x259;&#x6e;&#x7a;&#x64;&#x65;&#x26a;&#x2f;, {{X-SAMPA|/&quot;wEd@nzdeI/}} <em>or</em> IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x6e;&#x7a;&#x64;&#x65;&#x26a;&#x2f;, {{X-SAMPA|/&quot;wEnzdeI/}} <em>or</em> IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x64;&#x259;&#x6e;&#x7a;&#x64;&#x69;&#x2f;, {{X-SAMPA|/&quot;wEd@nzdi/}} <em>or</em> IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x6e;&#x7a;&#x64;&#x69;&#x2f;, {{X-SAMPA|/&quot;wEnzdi/}}</li>
 <li> {{a|US}} IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x6e;&#x7a;&#x64;&#x65;&#x26a;&#x2f;, {{X-SAMPA|/&quot;wEnzdeI/}} <em>or</em> IPA: &#x2f;&#x2c8;&#x77;&#x25b;&#x6e;&#x7a;&#x64;&#x69;&#x2f;, {{X-SAMPA|/&quot;wEnzdi/}}</li>
@@ -7467,7 +7394,6 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 <li> <a href="qd::have words">have words</a></li>
 <li> <a href="qd::headword">headword</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::in so many words">in so many words</a></li>
 <li> <a href="qd::keyword">keyword</a></li>
 <li> <a href="qd::last word">last word</a> / <a href="qd::last words">last words</a></li>
@@ -7485,7 +7411,6 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 <li> <a href="qd::word-building">word-building</a></li>
 <li> <a href="qd::word for word">word for word</a></li>
 </ul>
-{rel-mid3}
 <ul><li> <a href="qd::word game">word game</a></li>
 <li> <a href="qd::wordish">wordish</a></li>
 <li> <a href="qd::wordless">wordless</a></li>
@@ -7503,7 +7428,7 @@ From {{etyl|enm}} {{term|word|lang=enm}}, from {{etyl|ang|en}} {{term|word|word,
 <li> <a href="qd::wordpool">wordpool</a></li>
 <li> <a href="qd::wordy">wordy</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Quotations</h3>
 <ul><li> {seeCites}</li>
 </ul>
index a2d4972c444e871c79b9ce8f5e2cf4621661ff29..6bb0285adb97bf667b396deb0a0e76680e32aca3 100644 (file)
@@ -3492,25 +3492,22 @@ The imperative forms of the second-person singular are compounded with pronouns
 <li> <a href="qd::dare il benservito">dare il benservito</a></li>
 <li> <a href="qd::dare il la">dare il la</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::dare per scontato">dare per scontato</a></li>
 <li> <a href="qd::dare rifugio">dare rifugio</a></li>
 <li> <a href="qd::dare spettacolo">dare spettacolo</a></li>
 <li> <a href="qd::dare un'occhiata">dare un'occhiata</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::dare un pugno">dare un pugno</a></li>
 <li> <a href="qd::data">data</a></li>
 <li> <a href="qd::dato">dato</a></li>
 <li> <a href="qd::datore">datore</a></li>
 </ul>
-{rel-mid4}
 <ul><li> <a href="qd::darsela">darsela</a></li>
 <li> <a href="qd::darsele">darsele</a></li>
 <li> <a href="qd::darsi">darsi</a></li>
 <li> <a href="qd::ridare">ridare</a></li>
 </ul>
-{rel-bottom}
+
 <h3>Noun</h3>
 {{it-noun|dar|m|e|i}}
 <ol><li> <a href="qd::debit">debit</a></li>
index 902eacd941e7e4d5ebeca8c0a220804fede9cf1b..807279d1655ec71880f709874ddfab9f94ca7c76 100644 (file)
@@ -860,7 +860,7 @@ HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0"><tr><th colspan="1" s
 <tr><th colspan="1" style="background:#c0cfe4">indicativo</th><th style="background:#c0cfe4">io</th><th style="background:#c0cfe4">tu</th><th style="background:#c0cfe4">lui/lei</th><th style="background:#c0cfe4">noi</th><th style="background:#c0cfe4">voi</th><th style="background:#c0cfe4">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#c0cfe4">presente</th><td>persuado</td><td>persuadi</td><td>persuade</td><td>persuadiamo</td><td>persuadete</td><td>persuadono</td></tr>
 <tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>persuadevo</td><td>persuadevi</td><td>persuadeva</td><td>persuadevamo</td><td>persuadevate</td><td>persuadevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>persuasi</td><td>persuadesti</td><td>persuase, </td><td>persuademmo</td><td>persuadeste</td><td>persuasero, </td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>persuasi</td><td>persuadesti</td><td>persuase</td><td>persuademmo</td><td>persuadeste</td><td>persuasero</td></tr>
 <tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>persuader&ograve;</td><td>persuaderai</td><td>persuader&agrave;</td><td>persuaderemo</td><td>persuaderete</td><td>persuaderanno</td></tr>
 <tr><th colspan="1" style="background:#c0d8e4">condizionale</th><th style="background:#c0d8e4">io</th><th style="background:#c0d8e4">tu</th><th style="background:#c0d8e4">lui/lei</th><th style="background:#c0d8e4">noi</th><th style="background:#c0d8e4">voi</th><th style="background:#c0d8e4">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#c0d8e4">presente</th><td>persuaderei</td><td>persuaderesti</td><td>persuaderebbe</td><td>persuaderemmo</td><td>persuadereste</td><td>persuaderebbero</td></tr>
@@ -1126,7 +1126,23 @@ HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0"><tr><th colspan="1" s
 <tr><th colspan="1" style="background:#e4d4c0">imperativo</th><th style="background:#e4d4c0">-</th><th style="background:#e4d4c0">tu</th><th style="background:#e4d4c0">lui/lei</th><th style="background:#e4d4c0">noi</th><th style="background:#e4d4c0">voi</th><th style="background:#e4d4c0">essi/esse</th></tr>
 <tr><th colspan="1" style="background:#e4d4c0"></th><td></td><td>cuciti</td><td>si cucia</td><td>cuciamoci</td><td>cucitevi</td><td>si cuciano</td></tr>
 </table>
->>>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">smettere</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">smettendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">smettente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">smesso</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">indicativo</th><th style="background:#c0cfe4">io</th><th style="background:#c0cfe4">tu</th><th style="background:#c0cfe4">lui/lei</th><th style="background:#c0cfe4">noi</th><th style="background:#c0cfe4">voi</th><th style="background:#c0cfe4">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0cfe4">presente</th><td>smetto</td><td>smetti</td><td>smette</td><td>smettiamo</td><td>smettete</td><td>smettono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>smettevo</td><td>smettevi</td><td>smetteva</td><td>smettevamo</td><td>smettevate</td><td>smettevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>smisi</td><td>smettesti</td><td>smise</td><td>smettemmo</td><td>smetteste</td><td>smisero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>smetter&ograve;</td><td>smetterai</td><td>smetter&agrave;</td><td>smetteremo</td><td>smetterete</td><td>smetteranno</td></tr>
+<tr><th colspan="1" style="background:#c0d8e4">condizionale</th><th style="background:#c0d8e4">io</th><th style="background:#c0d8e4">tu</th><th style="background:#c0d8e4">lui/lei</th><th style="background:#c0d8e4">noi</th><th style="background:#c0d8e4">voi</th><th style="background:#c0d8e4">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0d8e4">presente</th><td>smetterei</td><td>smetteresti</td><td>smetterebbe</td><td>smetteremmo</td><td>smettereste</td><td>smetterebbero</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">congiuntivo</th><th style="background:#c0e4c0">che io</th><th style="background:#c0e4c0">che tu</th><th style="background:#c0e4c0">che lui/lei</th><th style="background:#c0e4c0">che noi</th><th style="background:#c0e4c0">che voi</th><th style="background:#c0e4c0">che essi/esse</th></tr>
+<tr><th colspan="1" style="background:#c0e4c0">presente</th><td>smetta</td><td>smetta</td><td>smetta</td><td>smettiamo</td><td>smettiate</td><td>smettano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>smettessi</td><td>smettessi</td><td>smettesse</td><td>smettessimo</td><td>smetteste</td><td>smettessero</td></tr>
+<tr><th colspan="1" style="background:#e4d4c0">imperativo</th><th style="background:#e4d4c0">-</th><th style="background:#e4d4c0">tu</th><th style="background:#e4d4c0">lui/lei</th><th style="background:#e4d4c0">noi</th><th style="background:#e4d4c0">voi</th><th style="background:#e4d4c0">essi/esse</th></tr>
+<tr><th colspan="1" style="background:#e4d4c0"></th><td></td><td>smetti</td><td>smetta</td><td>smettiamo</td><td>smettete</td><td>smettano</td></tr>
+</table>
+<p> <a href="http://en.wiktionary.org/wiki/dummyTitle">http://en.wiktionary.org/wiki/dummyTitle</a>>>>
 ===feré===
 See also HtmlEntry:dummyTitle
 ===ferendosi===
@@ -2131,6 +2147,86 @@ See also HtmlEntry:dummyTitle
 See also HtmlEntry:dummyTitle
 ===siedono===
 See also HtmlEntry:dummyTitle
+===smesso===
+See also HtmlEntry:dummyTitle
+===smetta===
+See also HtmlEntry:dummyTitle
+===smettano===
+See also HtmlEntry:dummyTitle
+===smette===
+See also HtmlEntry:dummyTitle
+===smettemmo===
+See also HtmlEntry:dummyTitle
+===smettendo===
+See also HtmlEntry:dummyTitle
+===smettente===
+See also HtmlEntry:dummyTitle
+===smetterà===
+See also HtmlEntry:dummyTitle
+===smetterai===
+See also HtmlEntry:dummyTitle
+===smetteranno===
+See also HtmlEntry:dummyTitle
+===smetterebbe===
+See also HtmlEntry:dummyTitle
+===smetterebbero===
+See also HtmlEntry:dummyTitle
+===smetterei===
+See also HtmlEntry:dummyTitle
+===smetteremmo===
+See also HtmlEntry:dummyTitle
+===smetteremo===
+See also HtmlEntry:dummyTitle
+===smettereste===
+See also HtmlEntry:dummyTitle
+===smetteresti===
+See also HtmlEntry:dummyTitle
+===smetterete===
+See also HtmlEntry:dummyTitle
+===smetterò===
+See also HtmlEntry:dummyTitle
+===smettesse===
+See also HtmlEntry:dummyTitle
+===smettessero===
+See also HtmlEntry:dummyTitle
+===smettessi===
+See also HtmlEntry:dummyTitle
+===smettessimo===
+See also HtmlEntry:dummyTitle
+===smetteste===
+See also HtmlEntry:dummyTitle
+===smettesti===
+See also HtmlEntry:dummyTitle
+===smettete===
+See also HtmlEntry:dummyTitle
+===smetteva===
+See also HtmlEntry:dummyTitle
+===smettevamo===
+See also HtmlEntry:dummyTitle
+===smettevano===
+See also HtmlEntry:dummyTitle
+===smettevate===
+See also HtmlEntry:dummyTitle
+===smettevi===
+See also HtmlEntry:dummyTitle
+===smettevo===
+See also HtmlEntry:dummyTitle
+===smetti===
+See also HtmlEntry:dummyTitle
+===smettiamo===
+See also HtmlEntry:dummyTitle
+===smettiate===
+See also HtmlEntry:dummyTitle
+===smetto===
+See also HtmlEntry:dummyTitle
+===smettono===
+See also HtmlEntry:dummyTitle
+===smise===
+See also HtmlEntry:dummyTitle
+===smisero===
+See also HtmlEntry:dummyTitle
+===smisi===
+See also HtmlEntry:dummyTitle
 ===studi===
 See also HtmlEntry:dummyTitle
 ===studia===
index 3bea956de0f70c99136eda0cc34ca671f4525a3e..085a52a2b35881344ebdc4a8252311c077eee1c0 100644 (file)
--- a/todo.txt
+++ b/todo.txt
@@ -1,3 +1,10 @@
+EN dictionaries.
+Spaces in links are done wrong: "perche mai",click "why on earth", see "why%20..."
+De verbs.
+Delete it conjugation of entries.
+
+
+
 delete these entries:
 # {{conjugation of|abalienare||2|p|pres|ind|lang=it}}
 # {{conjugation of|abalienare||2|p|imp|lang=it}}
@@ -115,5 +122,9 @@ publish 2.0 dictionary
 test email
 dict manager
 get rid of Appendix:....  sections from EN.data in split.
-
+Smise, in chart
+long click on see also works to link
+Links in HTML work: mostly, they don't open with the keyboard open
+when edit text loses focus, all highlighted: impossible if it's not focused.
+Web view search works.
   
\ No newline at end of file