]> gitweb.fperrin.net Git - DictionaryPC.git/commitdiff
Put links into HtmlEntry.
authorthadh <thadh@thadh-macbookpro>
Tue, 25 Sep 2012 04:43:16 +0000 (21:43 -0700)
committerthadh <thadh@thadh-macbookpro>
Tue, 25 Sep 2012 04:43:16 +0000 (21:43 -0700)
src/com/hughes/android/dictionary/engine/DictionaryBuilderTest.java
src/com/hughes/android/dictionary/parser/wiktionary/AbstractWiktionaryParser.java
src/com/hughes/android/dictionary/parser/wiktionary/EnFunctionCallbacks.java
src/com/hughes/android/dictionary/parser/wiktionary/WholeSectionToHtmlParser.java
testdata/goldens/testItConj.html
testdata/outputs/testItConj.html

index 23a483fb39d6e11cb6d1cdad1a5044add74f4976..68c3ce57b7f2f92f5dca680460bb36843b520be9 100644 (file)
@@ -52,8 +52,8 @@ public class DictionaryBuilderTest extends TestCase {
               "{{it-conj-arsi|lav}}\n" +
               "{{it-conj-ersi|abbatt}}\n" +
               "{{it-conj-iarsi|annoi}}\n" +
-              "{{it-conj-carsi|coniug}\n" +
-              "{{it-conj-ciarsi|affacc}\n" +
+              "{{it-conj-carsi|coniug}}\n" +
+              "{{it-conj-ciarsi|affacc}}\n" +
               "{{it-conj-irsi|vest}}\n" +
               "{{it-conj-irsi-b|fer}}\n" +
               "{{it-conj-ursi|rid|essere}}\n" +
@@ -65,6 +65,7 @@ public class DictionaryBuilderTest extends TestCase {
       final DictionaryBuilder db = new DictionaryBuilder("", Language.en, Language.it,  "", "", Collections.singleton("X"), Collections.singleton("X"));
       WholeSectionToHtmlParser parser = new WholeSectionToHtmlParser(db.indexBuilders.get(0), "EN", "IT");
       parser.title = "dummyTitle";
+      parser.entrySource = new EntrySource(0, "dummySource", 0);
       parser.parseSection("dummyHeading", toParse);
       db.build();
       
index 8d03bff4c004418df51fd0a8a63d86399d9ac6be..7fff4b7d89228ab2facd7187be58135a90192269 100644 (file)
@@ -47,7 +47,7 @@ public abstract class AbstractWiktionaryParser implements Parser {
   final SortedMap<String, AtomicInteger> counters = new TreeMap<String, AtomicInteger>();
   final Set<String> pairsAdded = new LinkedHashSet<String>();
   
-  EntrySource entrySource;
+  public EntrySource entrySource;
   public String title;
 
 
@@ -108,6 +108,10 @@ public abstract class AbstractWiktionaryParser implements Parser {
     }
     counter.incrementAndGet();
   }
+  
+  public void addLinkToCurrentEntry(final String token, final EntryTypeName entryTypeName) {
+      assert false;
+  }
 
   
   // -------------------------------------------------------------------------
@@ -228,6 +232,7 @@ public abstract class AbstractWiktionaryParser implements Parser {
     public void onListItem(WikiTokenizer wikiTokenizer) {
       assert false;
     }
+
   }
   
   // --------------------------------------------------------------------
index 38598f3ef29fc38a4bd7ac56aad46093ae12272c..b7e1994f0464eb23c343b2ababa301c54f8a2113 100644 (file)
@@ -679,6 +679,7 @@ class EnFunctionCallbacks {
                 builder.append(", ");
             }
             appendAndIndexWikiCallback.dispatch(val, null);
+            appendAndIndexWikiCallback.parser.addLinkToCurrentEntry(val, EntryTypeName.WIKTIONARY_IS_FORM_OF_SOMETHING_ELSE);
         }
     }
   }
@@ -989,32 +990,32 @@ static final class it_conj_are<T extends AbstractWiktionaryParser> implements Fu
         final String inf = namedArgs.get("inf");
         
         // TODO: center everything horizontally.
-        builder.append("<table style=\"background:#F0F0F0;border-collapse:separate;border-spacing:2px\">");
+        builder.append("<table style=\"background:#F0F0F0\">");
         
         builder.append("<tr>");
-        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">infinitive</th>");
+        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">infinito</th>");
         builder.append("<td colspan=\"1\">");
         appendAndIndexWikiCallback.dispatch(MapUtil.safeRemove(namedArgs, "inf", "-"), null);
         builder.append("</td>");
         builder.append("</tr>\n");
 
         builder.append("<tr>");
-        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">auxiliary verb</th>");
+        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">verbo ausiliare</th>");
         builder.append("<td colspan=\"1\">");
         appendAndIndexWikiCallback.dispatch(MapUtil.safeRemove(namedArgs, "aux", "-"), null);
         builder.append("</td>");
-        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">gerund</th>");
+        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">gerundio</th>");
         builder.append("<td colspan=\"1\">");
         outputKeyVariations(appendAndIndexWikiCallback, builder, "ger", namedArgs);
         builder.append("</td>");
         builder.append("</tr>\n");
 
         builder.append("<tr>");
-        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">present participle</th>");
+        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">participio presente</th>");
         builder.append("<td colspan=\"1\">");
         outputKeyVariations(appendAndIndexWikiCallback, builder, "presp", namedArgs);
         builder.append("</td>");
-        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">past participle</th>");
+        builder.append("<th colspan=\"1\" style=\"background:#e2e4c0\">participio passato</th>");
         builder.append("<td colspan=\"1\">");
         outputKeyVariations(appendAndIndexWikiCallback, builder, "pastp", namedArgs);
         builder.append("</td>");
@@ -1023,18 +1024,18 @@ static final class it_conj_are<T extends AbstractWiktionaryParser> implements Fu
         final List<String> prefixes = (inf != null && inf.endsWith("si")) ? it_reflexive_pronouns : it_empty; 
 
         String style = " style=\"background:#c0cfe4\"";
-        outputDataRow(appendAndIndexWikiCallback, style, "indicative", style, "th", "", new LinkedHashMap<String, String>(it_indicativePronouns), it_empty);
-        outputDataRow(appendAndIndexWikiCallback, style, "present", "", "td", "pres", namedArgs, prefixes);
-        outputDataRow(appendAndIndexWikiCallback, style, "imperfect", "", "td", "imperf", namedArgs, prefixes);
-        outputDataRow(appendAndIndexWikiCallback, style, "past historic", "", "td", "prem", namedArgs, prefixes);
-        outputDataRow(appendAndIndexWikiCallback, style, "future", "", "td", "fut", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "indicativo", style, "th", "", new LinkedHashMap<String, String>(it_indicativePronouns), it_empty);
+        outputDataRow(appendAndIndexWikiCallback, style, "presente", "", "td", "pres", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "imperfetto", "", "td", "imperf", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "passato remoto", "", "td", "prem", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "futuro", "", "td", "fut", namedArgs, prefixes);
 
         style = " style=\"background:#c0d8e4\"";
-        outputDataRow(appendAndIndexWikiCallback, style, "conditional", style, "th", "", new LinkedHashMap<String, String>(it_indicativePronouns), it_empty);
-        outputDataRow(appendAndIndexWikiCallback, style, "present", "", "td", "cond", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "condizionale", style, "th", "", new LinkedHashMap<String, String>(it_indicativePronouns), it_empty);
+        outputDataRow(appendAndIndexWikiCallback, style, "presente", "", "td", "cond", namedArgs, prefixes);
 
         style = " style=\"background:#c0e4c0\"";
-        outputDataRow(appendAndIndexWikiCallback, style, "subjuntive", style, "th", "", new LinkedHashMap<String, String>(it_subjunctivePronouns), it_empty);
+        outputDataRow(appendAndIndexWikiCallback, style, "congiuntivo", style, "th", "", new LinkedHashMap<String, String>(it_subjunctivePronouns), it_empty);
         namedArgs.put("sub3s2", namedArgs.remove("sub3s"));
         namedArgs.put("sub1s", namedArgs.get("sub123s"));
         namedArgs.put("sub2s", namedArgs.get("sub123s"));
@@ -1042,15 +1043,15 @@ static final class it_conj_are<T extends AbstractWiktionaryParser> implements Fu
         namedArgs.put("sub1s2", namedArgs.get("sub123s2"));
         namedArgs.put("sub2s2", namedArgs.get("sub123s2"));
         namedArgs.put("sub3s2", namedArgs.remove("sub123s2"));
-        outputDataRow(appendAndIndexWikiCallback, style, "present", "", "td", "sub", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "presente", "", "td", "sub", namedArgs, prefixes);
         namedArgs.put("impsub1s", namedArgs.get("impsub12s"));
         namedArgs.put("impsub2s", namedArgs.remove("impsub12s"));
         namedArgs.put("impsub1s2", namedArgs.get("impsub12s2"));
         namedArgs.put("impsub2s2", namedArgs.remove("impsub12s2"));
-        outputDataRow(appendAndIndexWikiCallback, style, "imperfect", "", "td", "impsub", namedArgs, prefixes);
+        outputDataRow(appendAndIndexWikiCallback, style, "imperfetto", "", "td", "impsub", namedArgs, prefixes);
 
         style = " style=\"background:#e4d4c0\"";
-        outputDataRow(appendAndIndexWikiCallback, style, "imperative", style, "th", "", new LinkedHashMap<String, String>(it_imperativePronouns), it_empty);
+        outputDataRow(appendAndIndexWikiCallback, style, "imperativo", style, "th", "", new LinkedHashMap<String, String>(it_imperativePronouns), it_empty);
         outputDataRow(appendAndIndexWikiCallback, style, "", "", "td", "imp", namedArgs, it_empty);  // these are attached to the stem.
 
         builder.append("</table>\n");
index 57f4d587010c6d66d722f26acd8afb640daf293c..0a702d0bcb30125cd9872a244118cdfb0b3f0abc 100644 (file)
@@ -1,6 +1,7 @@
 
 package com.hughes.android.dictionary.parser.wiktionary;
 
+import com.hughes.android.dictionary.engine.EntryTypeName;
 import com.hughes.android.dictionary.engine.HtmlEntry;
 import com.hughes.android.dictionary.engine.IndexBuilder;
 import com.hughes.android.dictionary.engine.IndexBuilder.TokenData;
@@ -9,7 +10,6 @@ import com.hughes.android.dictionary.parser.WikiTokenizer;
 import com.hughes.util.StringUtil;
 
 import org.apache.commons.lang3.StringEscapeUtils;
-import org.apache.commons.lang3.StringUtils;
 
 import java.util.ArrayList;
 import java.util.LinkedHashMap;
@@ -70,11 +70,14 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
         this.langConfig = isoToLangConfig.get(wiktionaryIso);
         this.skipLangIso = skipLangIso;
     }
+    
+    IndexedEntry indexedEntry = null;
 
     @Override
     public void parseSection(String heading, String text) {
-        HtmlEntry htmlEntry = new HtmlEntry(entrySource, StringEscapeUtils.escapeHtml3(title));
-        IndexedEntry indexedEntry = new IndexedEntry(htmlEntry);
+        assert entrySource != null;
+        final HtmlEntry htmlEntry = new HtmlEntry(entrySource, StringEscapeUtils.escapeHtml3(title));
+        indexedEntry = new IndexedEntry(htmlEntry);
 
         final AppendAndIndexWikiCallback<WholeSectionToHtmlParser> callback = new AppendCallback(
                 this);
@@ -93,12 +96,21 @@ public class WholeSectionToHtmlParser extends AbstractWiktionaryParser {
         tokenData.htmlEntries.add(htmlEntry);
         // titleIndexBuilder.addEntryWithString(indexedEntry, title,
         // EntryTypeName.WIKTIONARY_TITLE_MULTI_DETAIL);
+        
+        indexedEntry = null;
     }
 
     @Override
     void removeUselessArgs(Map<String, String> namedArgs) {
     }
     
+    @Override
+    public void addLinkToCurrentEntry(String token, EntryTypeName entryTypeName) {
+        titleIndexBuilder.addEntryWithString(indexedEntry, token, entryTypeName);
+    }
+
+
+
     static final Pattern ALL_ASCII = Pattern.compile("[\\p{ASCII}]*");
 
     class AppendCallback extends AppendAndIndexWikiCallback<WholeSectionToHtmlParser> {
index d8bdb2d993fd7fd490687522bbf01baa7ab83d45..252caa8986540311df27ec5acbe812c78c002b69 100644 (file)
 dictInfo=
 
 Index: EN EN->IT
+===abbatta===
+HtmlEntry (shortened): dummyTitle
+===abbattano===
+HtmlEntry (shortened): dummyTitle
+===abbatte===
+HtmlEntry (shortened): dummyTitle
+===abbatté===
+HtmlEntry (shortened): dummyTitle
+===abbattei===
+HtmlEntry (shortened): dummyTitle
+===abbattemmo===
+HtmlEntry (shortened): dummyTitle
+===abbattendo===
+HtmlEntry (shortened): dummyTitle
+===abbattendosi===
+HtmlEntry (shortened): dummyTitle
+===abbattente===
+HtmlEntry (shortened): dummyTitle
+===abbattentesi===
+HtmlEntry (shortened): dummyTitle
+===abbatterà===
+HtmlEntry (shortened): dummyTitle
+===abbatterai===
+HtmlEntry (shortened): dummyTitle
+===abbatteranno===
+HtmlEntry (shortened): dummyTitle
+===abbatterebbe===
+HtmlEntry (shortened): dummyTitle
+===abbatterebbero===
+HtmlEntry (shortened): dummyTitle
+===abbatterei===
+HtmlEntry (shortened): dummyTitle
+===abbatteremmo===
+HtmlEntry (shortened): dummyTitle
+===abbatteremo===
+HtmlEntry (shortened): dummyTitle
+===abbattereste===
+HtmlEntry (shortened): dummyTitle
+===abbatteresti===
+HtmlEntry (shortened): dummyTitle
+===abbatterete===
+HtmlEntry (shortened): dummyTitle
+===abbatterò===
+HtmlEntry (shortened): dummyTitle
+===abbatterono===
+HtmlEntry (shortened): dummyTitle
+===abbattesse===
+HtmlEntry (shortened): dummyTitle
+===abbattessero===
+HtmlEntry (shortened): dummyTitle
+===abbattessi===
+HtmlEntry (shortened): dummyTitle
+===abbattessimo===
+HtmlEntry (shortened): dummyTitle
+===abbatteste===
+HtmlEntry (shortened): dummyTitle
+===abbattesti===
+HtmlEntry (shortened): dummyTitle
+===abbattete===
+HtmlEntry (shortened): dummyTitle
+===abbattetevi===
+HtmlEntry (shortened): dummyTitle
+===abbattette===
+HtmlEntry (shortened): dummyTitle
+===abbattettero===
+HtmlEntry (shortened): dummyTitle
+===abbatteva===
+HtmlEntry (shortened): dummyTitle
+===abbattevamo===
+HtmlEntry (shortened): dummyTitle
+===abbattevano===
+HtmlEntry (shortened): dummyTitle
+===abbattevate===
+HtmlEntry (shortened): dummyTitle
+===abbattevi===
+HtmlEntry (shortened): dummyTitle
+===abbattevo===
+HtmlEntry (shortened): dummyTitle
+===abbatti===
+HtmlEntry (shortened): dummyTitle
+===abbattiamo===
+HtmlEntry (shortened): dummyTitle
+===abbattiamoci===
+HtmlEntry (shortened): dummyTitle
+===abbattiate===
+HtmlEntry (shortened): dummyTitle
+===abbattiti===
+HtmlEntry (shortened): dummyTitle
+===abbatto===
+HtmlEntry (shortened): dummyTitle
+===abbattono===
+HtmlEntry (shortened): dummyTitle
+===abbattuto===
+HtmlEntry (shortened): dummyTitle
+===abbattutosi===
+HtmlEntry (shortened): dummyTitle
+===accusa===
+HtmlEntry (shortened): dummyTitle
+===accusai===
+HtmlEntry (shortened): dummyTitle
+===accusammo===
+HtmlEntry (shortened): dummyTitle
+===accusando===
+HtmlEntry (shortened): dummyTitle
+===accusano===
+HtmlEntry (shortened): dummyTitle
+===accusante===
+HtmlEntry (shortened): dummyTitle
+===accusarono===
+HtmlEntry (shortened): dummyTitle
+===accusasse===
+HtmlEntry (shortened): dummyTitle
+===accusassero===
+HtmlEntry (shortened): dummyTitle
+===accusassi===
+HtmlEntry (shortened): dummyTitle
+===accusassimo===
+HtmlEntry (shortened): dummyTitle
+===accusaste===
+HtmlEntry (shortened): dummyTitle
+===accusasti===
+HtmlEntry (shortened): dummyTitle
+===accusate===
+HtmlEntry (shortened): dummyTitle
+===accusato===
+HtmlEntry (shortened): dummyTitle
+===accusava===
+HtmlEntry (shortened): dummyTitle
+===accusavamo===
+HtmlEntry (shortened): dummyTitle
+===accusavano===
+HtmlEntry (shortened): dummyTitle
+===accusavate===
+HtmlEntry (shortened): dummyTitle
+===accusavi===
+HtmlEntry (shortened): dummyTitle
+===accusavo===
+HtmlEntry (shortened): dummyTitle
+===accuserà===
+HtmlEntry (shortened): dummyTitle
+===accuserai===
+HtmlEntry (shortened): dummyTitle
+===accuseranno===
+HtmlEntry (shortened): dummyTitle
+===accuserebbe===
+HtmlEntry (shortened): dummyTitle
+===accuserebbero===
+HtmlEntry (shortened): dummyTitle
+===accuserei===
+HtmlEntry (shortened): dummyTitle
+===accuseremmo===
+HtmlEntry (shortened): dummyTitle
+===accuseremo===
+HtmlEntry (shortened): dummyTitle
+===accusereste===
+HtmlEntry (shortened): dummyTitle
+===accuseresti===
+HtmlEntry (shortened): dummyTitle
+===accuserete===
+HtmlEntry (shortened): dummyTitle
+===accuserò===
+HtmlEntry (shortened): dummyTitle
+===accusi===
+HtmlEntry (shortened): dummyTitle
+===accusiamo===
+HtmlEntry (shortened): dummyTitle
+===accusiate===
+HtmlEntry (shortened): dummyTitle
+===accusino===
+HtmlEntry (shortened): dummyTitle
+===accuso===
+HtmlEntry (shortened): dummyTitle
+===accusò===
+HtmlEntry (shortened): dummyTitle
+===affaccerà===
+HtmlEntry (shortened): dummyTitle
+===affaccerai===
+HtmlEntry (shortened): dummyTitle
+===affacceranno===
+HtmlEntry (shortened): dummyTitle
+===affaccerebbe===
+HtmlEntry (shortened): dummyTitle
+===affaccerebbero===
+HtmlEntry (shortened): dummyTitle
+===affaccerei===
+HtmlEntry (shortened): dummyTitle
+===affacceremmo===
+HtmlEntry (shortened): dummyTitle
+===affacceremo===
+HtmlEntry (shortened): dummyTitle
+===affaccereste===
+HtmlEntry (shortened): dummyTitle
+===affacceresti===
+HtmlEntry (shortened): dummyTitle
+===affaccerete===
+HtmlEntry (shortened): dummyTitle
+===affaccerò===
+HtmlEntry (shortened): dummyTitle
+===affacci===
+HtmlEntry (shortened): dummyTitle
+===affaccia===
+HtmlEntry (shortened): dummyTitle
+===affacciai===
+HtmlEntry (shortened): dummyTitle
+===affacciammo===
+HtmlEntry (shortened): dummyTitle
+===affacciamo===
+HtmlEntry (shortened): dummyTitle
+===affacciamoci===
+HtmlEntry (shortened): dummyTitle
+===affacciandosi===
+HtmlEntry (shortened): dummyTitle
+===affacciano===
+HtmlEntry (shortened): dummyTitle
+===affacciantesi===
+HtmlEntry (shortened): dummyTitle
+===affacciarono===
+HtmlEntry (shortened): dummyTitle
+===affacciasse===
+HtmlEntry (shortened): dummyTitle
+===affacciassero===
+HtmlEntry (shortened): dummyTitle
+===affacciassi===
+HtmlEntry (shortened): dummyTitle
+===affacciassimo===
+HtmlEntry (shortened): dummyTitle
+===affacciaste===
+HtmlEntry (shortened): dummyTitle
+===affacciasti===
+HtmlEntry (shortened): dummyTitle
+===affacciate===
+HtmlEntry (shortened): dummyTitle
+===affacciatevi===
+HtmlEntry (shortened): dummyTitle
+===affacciati===
+HtmlEntry (shortened): dummyTitle
+===affacciato===
+HtmlEntry (shortened): dummyTitle
+===affacciatosi===
+HtmlEntry (shortened): dummyTitle
+===affacciava===
+HtmlEntry (shortened): dummyTitle
+===affacciavamo===
+HtmlEntry (shortened): dummyTitle
+===affacciavano===
+HtmlEntry (shortened): dummyTitle
+===affacciavate===
+HtmlEntry (shortened): dummyTitle
+===affacciavi===
+HtmlEntry (shortened): dummyTitle
+===affacciavo===
+HtmlEntry (shortened): dummyTitle
+===affaccino===
+HtmlEntry (shortened): dummyTitle
+===affaccio===
+HtmlEntry (shortened): dummyTitle
+===affacciò===
+HtmlEntry (shortened): dummyTitle
+===annoi===
+HtmlEntry (shortened): dummyTitle
+===annoia===
+HtmlEntry (shortened): dummyTitle
+===annoiai===
+HtmlEntry (shortened): dummyTitle
+===annoiammo===
+HtmlEntry (shortened): dummyTitle
+===annoiamo===
+HtmlEntry (shortened): dummyTitle
+===annoiamoci===
+HtmlEntry (shortened): dummyTitle
+===annoiandosi===
+HtmlEntry (shortened): dummyTitle
+===annoiano===
+HtmlEntry (shortened): dummyTitle
+===annoiantesi===
+HtmlEntry (shortened): dummyTitle
+===annoiarono===
+HtmlEntry (shortened): dummyTitle
+===annoiasse===
+HtmlEntry (shortened): dummyTitle
+===annoiassero===
+HtmlEntry (shortened): dummyTitle
+===annoiassi===
+HtmlEntry (shortened): dummyTitle
+===annoiassimo===
+HtmlEntry (shortened): dummyTitle
+===annoiaste===
+HtmlEntry (shortened): dummyTitle
+===annoiasti===
+HtmlEntry (shortened): dummyTitle
+===annoiate===
+HtmlEntry (shortened): dummyTitle
+===annoiatevi===
+HtmlEntry (shortened): dummyTitle
+===annoiati===
+HtmlEntry (shortened): dummyTitle
+===annoiato===
+HtmlEntry (shortened): dummyTitle
+===annoiatosi===
+HtmlEntry (shortened): dummyTitle
+===annoiava===
+HtmlEntry (shortened): dummyTitle
+===annoiavamo===
+HtmlEntry (shortened): dummyTitle
+===annoiavano===
+HtmlEntry (shortened): dummyTitle
+===annoiavate===
+HtmlEntry (shortened): dummyTitle
+===annoiavi===
+HtmlEntry (shortened): dummyTitle
+===annoiavo===
+HtmlEntry (shortened): dummyTitle
+===annoierà===
+HtmlEntry (shortened): dummyTitle
+===annoierai===
+HtmlEntry (shortened): dummyTitle
+===annoieranno===
+HtmlEntry (shortened): dummyTitle
+===annoierebbe===
+HtmlEntry (shortened): dummyTitle
+===annoierebbero===
+HtmlEntry (shortened): dummyTitle
+===annoierei===
+HtmlEntry (shortened): dummyTitle
+===annoieremmo===
+HtmlEntry (shortened): dummyTitle
+===annoieremo===
+HtmlEntry (shortened): dummyTitle
+===annoiereste===
+HtmlEntry (shortened): dummyTitle
+===annoieresti===
+HtmlEntry (shortened): dummyTitle
+===annoierete===
+HtmlEntry (shortened): dummyTitle
+===annoierò===
+HtmlEntry (shortened): dummyTitle
+===annoino===
+HtmlEntry (shortened): dummyTitle
+===annoio===
+HtmlEntry (shortened): dummyTitle
+===annoiò===
+HtmlEntry (shortened): dummyTitle
+===avvia===
+HtmlEntry (shortened): dummyTitle
+===avviai===
+HtmlEntry (shortened): dummyTitle
+===avviammo===
+HtmlEntry (shortened): dummyTitle
+===avviamo===
+HtmlEntry (shortened): dummyTitle
+===avviando===
+HtmlEntry (shortened): dummyTitle
+===avviano===
+HtmlEntry (shortened): dummyTitle
+===avviante===
+HtmlEntry (shortened): dummyTitle
+===avviarono===
+HtmlEntry (shortened): dummyTitle
+===avviasse===
+HtmlEntry (shortened): dummyTitle
+===avviassero===
+HtmlEntry (shortened): dummyTitle
+===avviassi===
+HtmlEntry (shortened): dummyTitle
+===avviassimo===
+HtmlEntry (shortened): dummyTitle
+===avviaste===
+HtmlEntry (shortened): dummyTitle
+===avviasti===
+HtmlEntry (shortened): dummyTitle
+===avviate===
+HtmlEntry (shortened): dummyTitle
+===avviato===
+HtmlEntry (shortened): dummyTitle
+===avviava===
+HtmlEntry (shortened): dummyTitle
+===avviavamo===
+HtmlEntry (shortened): dummyTitle
+===avviavano===
+HtmlEntry (shortened): dummyTitle
+===avviavate===
+HtmlEntry (shortened): dummyTitle
+===avviavi===
+HtmlEntry (shortened): dummyTitle
+===avviavo===
+HtmlEntry (shortened): dummyTitle
+===avvierà===
+HtmlEntry (shortened): dummyTitle
+===avvierai===
+HtmlEntry (shortened): dummyTitle
+===avvieranno===
+HtmlEntry (shortened): dummyTitle
+===avvierebbe===
+HtmlEntry (shortened): dummyTitle
+===avvierebbero===
+HtmlEntry (shortened): dummyTitle
+===avvierei===
+HtmlEntry (shortened): dummyTitle
+===avvieremmo===
+HtmlEntry (shortened): dummyTitle
+===avvieremo===
+HtmlEntry (shortened): dummyTitle
+===avviereste===
+HtmlEntry (shortened): dummyTitle
+===avvieresti===
+HtmlEntry (shortened): dummyTitle
+===avvierete===
+HtmlEntry (shortened): dummyTitle
+===avvierò===
+HtmlEntry (shortened): dummyTitle
+===avvii===
+HtmlEntry (shortened): dummyTitle
+===avviiamo===
+HtmlEntry (shortened): dummyTitle
+===avviino===
+HtmlEntry (shortened): dummyTitle
+===avvio===
+HtmlEntry (shortened): dummyTitle
+===avviò===
+HtmlEntry (shortened): dummyTitle
+===che===
+HtmlEntry (shortened): dummyTitle
+===coniuga===
+HtmlEntry (shortened): dummyTitle
+===coniugai===
+HtmlEntry (shortened): dummyTitle
+===coniugammo===
+HtmlEntry (shortened): dummyTitle
+===coniugandosi===
+HtmlEntry (shortened): dummyTitle
+===coniugano===
+HtmlEntry (shortened): dummyTitle
+===coniugantesi===
+HtmlEntry (shortened): dummyTitle
+===coniugarono===
+HtmlEntry (shortened): dummyTitle
+===coniugasse===
+HtmlEntry (shortened): dummyTitle
+===coniugassero===
+HtmlEntry (shortened): dummyTitle
+===coniugassi===
+HtmlEntry (shortened): dummyTitle
+===coniugassimo===
+HtmlEntry (shortened): dummyTitle
+===coniugaste===
+HtmlEntry (shortened): dummyTitle
+===coniugasti===
+HtmlEntry (shortened): dummyTitle
+===coniugate===
+HtmlEntry (shortened): dummyTitle
+===coniugatevi===
+HtmlEntry (shortened): dummyTitle
+===coniugati===
+HtmlEntry (shortened): dummyTitle
+===coniugato===
+HtmlEntry (shortened): dummyTitle
+===coniugatosi===
+HtmlEntry (shortened): dummyTitle
+===coniugava===
+HtmlEntry (shortened): dummyTitle
+===coniugavamo===
+HtmlEntry (shortened): dummyTitle
+===coniugavano===
+HtmlEntry (shortened): dummyTitle
+===coniugavate===
+HtmlEntry (shortened): dummyTitle
+===coniugavi===
+HtmlEntry (shortened): dummyTitle
+===coniugavo===
+HtmlEntry (shortened): dummyTitle
+===coniugherà===
+HtmlEntry (shortened): dummyTitle
+===coniugherai===
+HtmlEntry (shortened): dummyTitle
+===coniugheranno===
+HtmlEntry (shortened): dummyTitle
+===coniugherebbe===
+HtmlEntry (shortened): dummyTitle
+===coniugherebbero===
+HtmlEntry (shortened): dummyTitle
+===coniugherei===
+HtmlEntry (shortened): dummyTitle
+===coniugheremmo===
+HtmlEntry (shortened): dummyTitle
+===coniugheremo===
+HtmlEntry (shortened): dummyTitle
+===coniughereste===
+HtmlEntry (shortened): dummyTitle
+===coniugheresti===
+HtmlEntry (shortened): dummyTitle
+===coniugherete===
+HtmlEntry (shortened): dummyTitle
+===coniugherò===
+HtmlEntry (shortened): dummyTitle
+===coniughi===
+HtmlEntry (shortened): dummyTitle
+===coniughiamo===
+HtmlEntry (shortened): dummyTitle
+===coniughiamoci===
+HtmlEntry (shortened): dummyTitle
+===coniughiate===
+HtmlEntry (shortened): dummyTitle
+===coniughino===
+HtmlEntry (shortened): dummyTitle
+===coniugo===
+HtmlEntry (shortened): dummyTitle
+===coniugò===
+HtmlEntry (shortened): dummyTitle
+===coperse===
+HtmlEntry (shortened): dummyTitle
+===copersero===
+HtmlEntry (shortened): dummyTitle
+===copersi===
+HtmlEntry (shortened): dummyTitle
+===coperto===
+HtmlEntry (shortened): dummyTitle
+===copra===
+HtmlEntry (shortened): dummyTitle
+===coprano===
+HtmlEntry (shortened): dummyTitle
+===copre===
+HtmlEntry (shortened): dummyTitle
+===coprendo===
+HtmlEntry (shortened): dummyTitle
+===coprente===
+HtmlEntry (shortened): dummyTitle
+===copri===
+HtmlEntry (shortened): dummyTitle
+===coprì===
+HtmlEntry (shortened): dummyTitle
+===copriamo===
+HtmlEntry (shortened): dummyTitle
+===copriate===
+HtmlEntry (shortened): dummyTitle
+===coprii===
+HtmlEntry (shortened): dummyTitle
+===coprimmo===
+HtmlEntry (shortened): dummyTitle
+===coprirà===
+HtmlEntry (shortened): dummyTitle
+===coprirai===
+HtmlEntry (shortened): dummyTitle
+===copriranno===
+HtmlEntry (shortened): dummyTitle
+===coprirebbe===
+HtmlEntry (shortened): dummyTitle
+===coprirebbero===
+HtmlEntry (shortened): dummyTitle
+===coprirei===
+HtmlEntry (shortened): dummyTitle
+===copriremmo===
+HtmlEntry (shortened): dummyTitle
+===copriremo===
+HtmlEntry (shortened): dummyTitle
+===coprireste===
+HtmlEntry (shortened): dummyTitle
+===copriresti===
+HtmlEntry (shortened): dummyTitle
+===coprirete===
+HtmlEntry (shortened): dummyTitle
+===coprirò===
+HtmlEntry (shortened): dummyTitle
+===coprirono===
+HtmlEntry (shortened): dummyTitle
+===coprisse===
+HtmlEntry (shortened): dummyTitle
+===coprissero===
+HtmlEntry (shortened): dummyTitle
+===coprissi===
+HtmlEntry (shortened): dummyTitle
+===coprissimo===
+HtmlEntry (shortened): dummyTitle
+===copriste===
+HtmlEntry (shortened): dummyTitle
+===copristi===
+HtmlEntry (shortened): dummyTitle
+===coprite===
+HtmlEntry (shortened): dummyTitle
+===copriva===
+HtmlEntry (shortened): dummyTitle
+===coprivamo===
+HtmlEntry (shortened): dummyTitle
+===coprivano===
+HtmlEntry (shortened): dummyTitle
+===coprivate===
+HtmlEntry (shortened): dummyTitle
+===coprivi===
+HtmlEntry (shortened): dummyTitle
+===coprivo===
+HtmlEntry (shortened): dummyTitle
+===copro===
+HtmlEntry (shortened): dummyTitle
+===coprono===
+HtmlEntry (shortened): dummyTitle
+===cuce===
+HtmlEntry (shortened): dummyTitle
+===cucé===
+HtmlEntry (shortened): dummyTitle
+===cucendosi===
+HtmlEntry (shortened): dummyTitle
+===cucentesi===
+HtmlEntry (shortened): dummyTitle
+===cucerono===
+HtmlEntry (shortened): dummyTitle
+===cuci===
+HtmlEntry (shortened): dummyTitle
+===cucì===
+HtmlEntry (shortened): dummyTitle
+===cucia===
+HtmlEntry (shortened): dummyTitle
+===cuciamo===
+HtmlEntry (shortened): dummyTitle
+===cuciamoci===
+HtmlEntry (shortened): dummyTitle
+===cuciano===
+HtmlEntry (shortened): dummyTitle
+===cuciate===
+HtmlEntry (shortened): dummyTitle
+===cucii===
+HtmlEntry (shortened): dummyTitle
+===cucimmo===
+HtmlEntry (shortened): dummyTitle
+===cucio===
+HtmlEntry (shortened): dummyTitle
+===cuciono===
+HtmlEntry (shortened): dummyTitle
+===cucirà===
+HtmlEntry (shortened): dummyTitle
+===cucirai===
+HtmlEntry (shortened): dummyTitle
+===cuciranno===
+HtmlEntry (shortened): dummyTitle
+===cucirebbe===
+HtmlEntry (shortened): dummyTitle
+===cucirebbero===
+HtmlEntry (shortened): dummyTitle
+===cucirei===
+HtmlEntry (shortened): dummyTitle
+===cuciremmo===
+HtmlEntry (shortened): dummyTitle
+===cuciremo===
+HtmlEntry (shortened): dummyTitle
+===cucireste===
+HtmlEntry (shortened): dummyTitle
+===cuciresti===
+HtmlEntry (shortened): dummyTitle
+===cucirete===
+HtmlEntry (shortened): dummyTitle
+===cucirò===
+HtmlEntry (shortened): dummyTitle
+===cucirono===
+HtmlEntry (shortened): dummyTitle
+===cucisse===
+HtmlEntry (shortened): dummyTitle
+===cucissero===
+HtmlEntry (shortened): dummyTitle
+===cucissi===
+HtmlEntry (shortened): dummyTitle
+===cucissimo===
+HtmlEntry (shortened): dummyTitle
+===cuciste===
+HtmlEntry (shortened): dummyTitle
+===cucisti===
+HtmlEntry (shortened): dummyTitle
+===cucite===
+HtmlEntry (shortened): dummyTitle
+===cucitevi===
+HtmlEntry (shortened): dummyTitle
+===cuciti===
+HtmlEntry (shortened): dummyTitle
+===cucito===
+HtmlEntry (shortened): dummyTitle
+===cucitosi===
+HtmlEntry (shortened): dummyTitle
+===cuciva===
+HtmlEntry (shortened): dummyTitle
+===cucivamo===
+HtmlEntry (shortened): dummyTitle
+===cucivano===
+HtmlEntry (shortened): dummyTitle
+===cucivate===
+HtmlEntry (shortened): dummyTitle
+===cucivi===
+HtmlEntry (shortened): dummyTitle
+===cucivo===
+HtmlEntry (shortened): dummyTitle
+===da===
+HtmlEntry (shortened): dummyTitle
+===dà===
+HtmlEntry (shortened): dummyTitle
+===dai===
+HtmlEntry (shortened): dummyTitle
+===dando===
+HtmlEntry (shortened): dummyTitle
+===danno===
+HtmlEntry (shortened): dummyTitle
+===dante===
+HtmlEntry (shortened): dummyTitle
+===darà===
+HtmlEntry (shortened): dummyTitle
+===darai===
+HtmlEntry (shortened): dummyTitle
+===daranno===
+HtmlEntry (shortened): dummyTitle
+===darebbe===
+HtmlEntry (shortened): dummyTitle
+===darebbero===
+HtmlEntry (shortened): dummyTitle
+===darei===
+HtmlEntry (shortened): dummyTitle
+===daremmo===
+HtmlEntry (shortened): dummyTitle
+===daremo===
+HtmlEntry (shortened): dummyTitle
+===dareste===
+HtmlEntry (shortened): dummyTitle
+===daresti===
+HtmlEntry (shortened): dummyTitle
+===darete===
+HtmlEntry (shortened): dummyTitle
+===darò===
+HtmlEntry (shortened): dummyTitle
+===date===
+HtmlEntry (shortened): dummyTitle
+===dato===
+HtmlEntry (shortened): dummyTitle
+===dava===
+HtmlEntry (shortened): dummyTitle
+===davamo===
+HtmlEntry (shortened): dummyTitle
+===davano===
+HtmlEntry (shortened): dummyTitle
+===davate===
+HtmlEntry (shortened): dummyTitle
+===davi===
+HtmlEntry (shortened): dummyTitle
+===davo===
+HtmlEntry (shortened): dummyTitle
+===demmo===
+HtmlEntry (shortened): dummyTitle
+===desse===
+HtmlEntry (shortened): dummyTitle
+===dessero===
+HtmlEntry (shortened): dummyTitle
+===dessi===
+HtmlEntry (shortened): dummyTitle
+===dessimo===
+HtmlEntry (shortened): dummyTitle
+===deste===
+HtmlEntry (shortened): dummyTitle
+===desti===
+HtmlEntry (shortened): dummyTitle
+===dette===
+HtmlEntry (shortened): dummyTitle
+===dettero===
+HtmlEntry (shortened): dummyTitle
+===detti===
+HtmlEntry (shortened): dummyTitle
+===dia===
+HtmlEntry (shortened): dummyTitle
+===diamo===
+HtmlEntry (shortened): dummyTitle
+===diano===
+HtmlEntry (shortened): dummyTitle
+===diate===
+HtmlEntry (shortened): dummyTitle
+===diede===
+HtmlEntry (shortened): dummyTitle
+===diedero===
+HtmlEntry (shortened): dummyTitle
+===diedi===
+HtmlEntry (shortened): dummyTitle
+===do===
+HtmlEntry (shortened): dummyTitle
 ===dummyTitle===
-HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">dare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">dando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">dante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">dato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>do</td><td>dai</td><td>d&agrave;</td><td>diamo</td><td>date</td><td>danno</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>davo</td><td>davi</td><td>dava</td><td>davamo</td><td>davate</td><td>davano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>diedi, detti</td><td>desti</td><td>diede, dette</td><td>demmo</td><td>deste</td><td>diedero, dettero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>dar&ograve;</td><td>darai</td><td>dar&agrave;</td><td>daremo</td><td>darete</td><td>daranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>darei</td><td>daresti</td><td>darebbe</td><td>daremmo</td><td>dareste</td><td>darebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>dia</td><td>dia</td><td>dia</td><td>diamo</td><td>diate</td><td>diano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>dessi</td><td>dessi</td><td>desse</td><td>dessimo</td><td>deste</td><td>dessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+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>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">dante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">dato</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>do</td><td>dai</td><td>d&agrave;</td><td>diamo</td><td>date</td><td>danno</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>davo</td><td>davi</td><td>dava</td><td>davamo</td><td>davate</td><td>davano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>diedi, detti</td><td>desti</td><td>diede, dette</td><td>demmo</td><td>deste</td><td>diedero, dettero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>dar&ograve;</td><td>darai</td><td>dar&agrave;</td><td>daremo</td><td>darete</td><td>daranno</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>darei</td><td>daresti</td><td>darebbe</td><td>daremmo</td><td>dareste</td><td>darebbero</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>dia</td><td>dia</td><td>dia</td><td>diamo</td><td>diate</td><td>diano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>dessi</td><td>dessi</td><td>desse</td><td>dessimo</td><td>deste</td><td>dessero</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>d&agrave;, dai, da'</td><td>dia</td><td>diamo</td><td>date</td><td>diano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">accusare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">accusando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">accusante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">accusato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>accuso</td><td>accusi</td><td>accusa</td><td>accusiamo</td><td>accusate</td><td>accusano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>accusavo</td><td>accusavi</td><td>accusava</td><td>accusavamo</td><td>accusavate</td><td>accusavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>accusai</td><td>accusasti</td><td>accus&ograve;</td><td>accusammo</td><td>accusaste</td><td>accusarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>accuser&ograve;</td><td>accuserai</td><td>accuser&agrave;</td><td>accuseremo</td><td>accuserete</td><td>accuseranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>accuserei</td><td>accuseresti</td><td>accuserebbe</td><td>accuseremmo</td><td>accusereste</td><td>accuserebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>accusi</td><td>accusi</td><td>accusi</td><td>accusiamo</td><td>accusiate</td><td>accusino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>accusassi</td><td>accusassi</td><td>accusasse</td><td>accusassimo</td><td>accusaste</td><td>accusassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">accusare</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">accusando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">accusante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">accusato</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>accuso</td><td>accusi</td><td>accusa</td><td>accusiamo</td><td>accusate</td><td>accusano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>accusavo</td><td>accusavi</td><td>accusava</td><td>accusavamo</td><td>accusavate</td><td>accusavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>accusai</td><td>accusasti</td><td>accus&ograve;</td><td>accusammo</td><td>accusaste</td><td>accusarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>accuser&ograve;</td><td>accuserai</td><td>accuser&agrave;</td><td>accuseremo</td><td>accuserete</td><td>accuseranno</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>accuserei</td><td>accuseresti</td><td>accuserebbe</td><td>accuseremmo</td><td>accusereste</td><td>accuserebbero</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>accusi</td><td>accusi</td><td>accusi</td><td>accusiamo</td><td>accusiate</td><td>accusino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>accusassi</td><td>accusassi</td><td>accusasse</td><td>accusassimo</td><td>accusaste</td><td>accusassero</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>accusa</td><td>accusi</td><td>accusiamo</td><td>accusate</td><td>accusino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">pagare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere or essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">pagando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">pagante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">pagato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>pago</td><td>paghi</td><td>paga</td><td>paghiamo</td><td>pagate</td><td>pagano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>pagavo</td><td>pagavi</td><td>pagava</td><td>pagavamo</td><td>pagavate</td><td>pagavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>pagai</td><td>pagasti</td><td>pag&ograve;</td><td>pagammo</td><td>pagaste</td><td>pagarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>pagher&ograve;</td><td>pagherai</td><td>pagher&agrave;</td><td>pagheremo</td><td>pagherete</td><td>pagheranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>pagherei</td><td>pagheresti</td><td>pagherebbe</td><td>pagheremmo</td><td>paghereste</td><td>pagherebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>paghi</td><td>paghi</td><td>paghi</td><td>paghiamo</td><td>paghiate</td><td>paghino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>pagassi</td><td>pagassi</td><td>pagasse</td><td>pagassimo</td><td>pagaste</td><td>pagassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">pagare</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">avere or essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">pagando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">pagante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">pagato</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>pago</td><td>paghi</td><td>paga</td><td>paghiamo</td><td>pagate</td><td>pagano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>pagavo</td><td>pagavi</td><td>pagava</td><td>pagavamo</td><td>pagavate</td><td>pagavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>pagai</td><td>pagasti</td><td>pag&ograve;</td><td>pagammo</td><td>pagaste</td><td>pagarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>pagher&ograve;</td><td>pagherai</td><td>pagher&agrave;</td><td>pagheremo</td><td>pagherete</td><td>pagheranno</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>pagherei</td><td>pagheresti</td><td>pagherebbe</td><td>pagheremmo</td><td>paghereste</td><td>pagherebbero</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>paghi</td><td>paghi</td><td>paghi</td><td>paghiamo</td><td>paghiate</td><td>paghino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>pagassi</td><td>pagassi</td><td>pagasse</td><td>pagassimo</td><td>pagaste</td><td>pagassero</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>paga</td><td>paghi</td><td>paghiamo</td><td>pagate</td><td>paghino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">studiare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">studiando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">studiante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">studiato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>studio</td><td>studi</td><td>studia</td><td>studiamo</td><td>studiate</td><td>studiano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>studiavo</td><td>studiavi</td><td>studiava</td><td>studiavamo</td><td>studiavate</td><td>studiavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>studiai</td><td>studiasti</td><td>studi&ograve;</td><td>studiammo</td><td>studiaste</td><td>studiarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>studier&ograve;</td><td>studierai</td><td>studier&agrave;</td><td>studieremo</td><td>studierete</td><td>studieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>studierei</td><td>studieresti</td><td>studierebbe</td><td>studieremmo</td><td>studiereste</td><td>studierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>studi</td><td>studi</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>studiassi</td><td>studiassi</td><td>studiasse</td><td>studiassimo</td><td>studiaste</td><td>studiassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">studiare</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">studiando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">studiante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">studiato</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>studio</td><td>studi</td><td>studia</td><td>studiamo</td><td>studiate</td><td>studiano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>studiavo</td><td>studiavi</td><td>studiava</td><td>studiavamo</td><td>studiavate</td><td>studiavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>studiai</td><td>studiasti</td><td>studi&ograve;</td><td>studiammo</td><td>studiaste</td><td>studiarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>studier&ograve;</td><td>studierai</td><td>studier&agrave;</td><td>studieremo</td><td>studierete</td><td>studieranno</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>studierei</td><td>studieresti</td><td>studierebbe</td><td>studieremmo</td><td>studiereste</td><td>studierebbero</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>studi</td><td>studi</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>studiassi</td><td>studiassi</td><td>studiasse</td><td>studiassimo</td><td>studiaste</td><td>studiassero</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>studia</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">avviare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">avviando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">avviante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">avviato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>avvio</td><td>avvii</td><td>avvia</td><td>avviiamo</td><td>avviate</td><td>avviano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>avviavo</td><td>avviavi</td><td>avviava</td><td>avviavamo</td><td>avviavate</td><td>avviavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>avviai</td><td>avviasti</td><td>avvi&ograve;</td><td>avviammo</td><td>avviaste</td><td>avviarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>avvier&ograve;</td><td>avvierai</td><td>avvier&agrave;</td><td>avvieremo</td><td>avvierete</td><td>avvieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>avvierei</td><td>avvieresti</td><td>avvierebbe</td><td>avvieremmo</td><td>avviereste</td><td>avvierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>avvii</td><td>avvii</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>avviassi</td><td>avviassi</td><td>avviasse</td><td>avviassimo</td><td>avviaste</td><td>avviassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">avviare</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">avviando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">avviante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">avviato</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>avvio</td><td>avvii</td><td>avvia</td><td>avviiamo</td><td>avviate</td><td>avviano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>avviavo</td><td>avviavi</td><td>avviava</td><td>avviavamo</td><td>avviavate</td><td>avviavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>avviai</td><td>avviasti</td><td>avvi&ograve;</td><td>avviammo</td><td>avviaste</td><td>avviarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>avvier&ograve;</td><td>avvierai</td><td>avvier&agrave;</td><td>avvieremo</td><td>avvierete</td><td>avvieranno</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>avvierei</td><td>avvieresti</td><td>avvierebbe</td><td>avvieremmo</td><td>avviereste</td><td>avvierebbero</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>avvii</td><td>avvii</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>avviassi</td><td>avviassi</td><td>avviasse</td><td>avviassimo</td><td>avviaste</td><td>avviassero</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>avvia</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">pronunciare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">pronunciando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">pronunciante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">pronunciato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>pronuncio</td><td>pronunci</td><td>pronuncia</td><td>pronunciamo</td><td>pronunciate</td><td>pronunciano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>pronunciavo</td><td>pronunciavi</td><td>pronunciava</td><td>pronunciavamo</td><td>pronunciavate</td><td>pronunciavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>pronunciai</td><td>pronunciasti</td><td>pronunci&ograve;</td><td>pronunciammo</td><td>pronunciaste</td><td>pronunciarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>pronuncer&ograve;</td><td>pronuncerai</td><td>pronuncer&agrave;</td><td>pronunceremo</td><td>pronuncerete</td><td>pronunceranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>pronuncerei</td><td>pronunceresti</td><td>pronuncerebbe</td><td>pronunceremmo</td><td>pronuncereste</td><td>pronuncerebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>pronunci</td><td>pronunci</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>pronunciassi</td><td>pronunciassi</td><td>pronunciasse</td><td>pronunciassimo</td><td>pronunciaste</td><td>pronunciassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">pronunciare</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">pronunciando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">pronunciante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">pronunciato</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>pronuncio</td><td>pronunci</td><td>pronuncia</td><td>pronunciamo</td><td>pronunciate</td><td>pronunciano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>pronunciavo</td><td>pronunciavi</td><td>pronunciava</td><td>pronunciavamo</td><td>pronunciavate</td><td>pronunciavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>pronunciai</td><td>pronunciasti</td><td>pronunci&ograve;</td><td>pronunciammo</td><td>pronunciaste</td><td>pronunciarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>pronuncer&ograve;</td><td>pronuncerai</td><td>pronuncer&agrave;</td><td>pronunceremo</td><td>pronuncerete</td><td>pronunceranno</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>pronuncerei</td><td>pronunceresti</td><td>pronuncerebbe</td><td>pronunceremmo</td><td>pronuncereste</td><td>pronuncerebbero</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>pronunci</td><td>pronunci</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>pronunciassi</td><td>pronunciassi</td><td>pronunciasse</td><td>pronunciassimo</td><td>pronunciaste</td><td>pronunciassero</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>pronuncia</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">sedere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">sedendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">sedente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">seduto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>siedo, seggo</td><td>siedi</td><td>siede</td><td>sediamo</td><td>sedete</td><td>siedono, seggono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>sedevo</td><td>sedevi</td><td>sedeva</td><td>sedevamo</td><td>sedevate</td><td>sedevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>sedei</td><td>sedesti</td><td>sedette, sed&eacute;</td><td>sedemmo</td><td>sedeste</td><td>sedettero, sederono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>seder&ograve;, sieder&ograve;</td><td>sederai, siederai</td><td>seder&agrave;, sieder&agrave;</td><td>sederemo, siederemo</td><td>sederete, siederete</td><td>sederanno, siederanno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>sederei, siederei</td><td>sederesti, siederesti</td><td>sederebbe, siederebbe</td><td>sederemmo, siederemmo</td><td>sedereste, siedereste</td><td>sederebbero, siederebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>sieda</td><td>sieda</td><td>sieda</td><td>sediamo</td><td>sediate</td><td>siedano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>sedessi</td><td>sedessi</td><td>sedesse</td><td>sedessimo</td><td>sedeste</td><td>sedessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">sedere</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">sedendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">sedente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">seduto</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>siedo, seggo</td><td>siedi</td><td>siede</td><td>sediamo</td><td>sedete</td><td>siedono, seggono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>sedevo</td><td>sedevi</td><td>sedeva</td><td>sedevamo</td><td>sedevate</td><td>sedevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>sedei</td><td>sedesti</td><td>sedette, sed&eacute;</td><td>sedemmo</td><td>sedeste</td><td>sedettero, sederono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>seder&ograve;, sieder&ograve;</td><td>sederai, siederai</td><td>seder&agrave;, sieder&agrave;</td><td>sederemo, siederemo</td><td>sederete, siederete</td><td>sederanno, siederanno</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>sederei, siederei</td><td>sederesti, siederesti</td><td>sederebbe, siederebbe</td><td>sederemmo, siederemmo</td><td>sedereste, siedereste</td><td>sederebbero, siederebbero</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>sieda</td><td>sieda</td><td>sieda</td><td>sediamo</td><td>sediate</td><td>siedano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>sedessi</td><td>sedessi</td><td>sedesse</td><td>sedessimo</td><td>sedeste</td><td>sedessero</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>siedi</td><td>sieda, segga</td><td>sediamo</td><td>sedete</td><td>siedano, seggano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">persuadere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">persuadendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">persuadente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">persuaso</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</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">imperfect</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">past historic</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">future</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">conditional</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">present</th><td>persuaderei</td><td>persuaderesti</td><td>persuaderebbe</td><td>persuaderemmo</td><td>persuadereste</td><td>persuaderebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>persuada</td><td>persuada</td><td>persuada</td><td>persuadiamo</td><td>persuadiate</td><td>persuadano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>persuadessi</td><td>persuadessi</td><td>persuadesse</td><td>persuadessimo</td><td>persuadeste</td><td>persuadessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">persuadere</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">persuadendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">persuadente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">persuaso</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>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">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>
+<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>persuada</td><td>persuada</td><td>persuada</td><td>persuadiamo</td><td>persuadiate</td><td>persuadano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>persuadessi</td><td>persuadessi</td><td>persuadesse</td><td>persuadessimo</td><td>persuadeste</td><td>persuadessero</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>persuadi</td><td>persuada</td><td>persuadiamo</td><td>persuadete</td><td>persuadano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">abbattere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">abbattendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">abbattente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">abbattuto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>abbatto</td><td>abbatti</td><td>abbatte</td><td>abbattiamo</td><td>abbattete</td><td>abbattono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>abbattevo</td><td>abbattevi</td><td>abbatteva</td><td>abbattevamo</td><td>abbattevate</td><td>abbattevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>abbattei</td><td>abbattesti</td><td>abbattette, abbatt&eacute;</td><td>abbattemmo</td><td>abbatteste</td><td>abbattettero, abbatterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>abbatter&ograve;</td><td>abbatterai</td><td>abbatter&agrave;</td><td>abbatteremo</td><td>abbatterete</td><td>abbatteranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>abbatterei</td><td>abbatteresti</td><td>abbatterebbe</td><td>abbatteremmo</td><td>abbattereste</td><td>abbatterebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>abbatta</td><td>abbatta</td><td>abbatta</td><td>abbattiamo</td><td>abbattiate</td><td>abbattano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>abbattessi</td><td>abbattessi</td><td>abbattesse</td><td>abbattessimo</td><td>abbatteste</td><td>abbattessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">abbattere</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">abbattendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">abbattente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">abbattuto</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>abbatto</td><td>abbatti</td><td>abbatte</td><td>abbattiamo</td><td>abbattete</td><td>abbattono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>abbattevo</td><td>abbattevi</td><td>abbatteva</td><td>abbattevamo</td><td>abbattevate</td><td>abbattevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>abbattei</td><td>abbattesti</td><td>abbattette, abbatt&eacute;</td><td>abbattemmo</td><td>abbatteste</td><td>abbattettero, abbatterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>abbatter&ograve;</td><td>abbatterai</td><td>abbatter&agrave;</td><td>abbatteremo</td><td>abbatterete</td><td>abbatteranno</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>abbatterei</td><td>abbatteresti</td><td>abbatterebbe</td><td>abbatteremmo</td><td>abbattereste</td><td>abbatterebbero</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>abbatta</td><td>abbatta</td><td>abbatta</td><td>abbattiamo</td><td>abbattiate</td><td>abbattano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>abbattessi</td><td>abbattessi</td><td>abbattesse</td><td>abbattessimo</td><td>abbatteste</td><td>abbattessero</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>abbatti</td><td>abbatta</td><td>abbattiamo</td><td>abbattete</td><td>abbattano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">coprire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">coprendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">coprente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">coperto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>copro</td><td>copri</td><td>copre</td><td>copriamo</td><td>coprite</td><td>coprono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>coprivo</td><td>coprivi</td><td>copriva</td><td>coprivamo</td><td>coprivate</td><td>coprivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>coprii, copersi</td><td>copristi</td><td>copr&igrave;, coperse</td><td>coprimmo</td><td>copriste</td><td>coprirono, copersero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>coprir&ograve;</td><td>coprirai</td><td>coprir&agrave;</td><td>copriremo</td><td>coprirete</td><td>copriranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>coprirei</td><td>copriresti</td><td>coprirebbe</td><td>copriremmo</td><td>coprireste</td><td>coprirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>copra</td><td>copra</td><td>copra</td><td>copriamo</td><td>copriate</td><td>coprano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>coprissi</td><td>coprissi</td><td>coprisse</td><td>coprissimo</td><td>copriste</td><td>coprissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">coprire</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">coprendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">coprente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">coperto</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>copro</td><td>copri</td><td>copre</td><td>copriamo</td><td>coprite</td><td>coprono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>coprivo</td><td>coprivi</td><td>copriva</td><td>coprivamo</td><td>coprivate</td><td>coprivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>coprii, copersi</td><td>copristi</td><td>copr&igrave;, coperse</td><td>coprimmo</td><td>copriste</td><td>coprirono, copersero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>coprir&ograve;</td><td>coprirai</td><td>coprir&agrave;</td><td>copriremo</td><td>coprirete</td><td>copriranno</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>coprirei</td><td>copriresti</td><td>coprirebbe</td><td>copriremmo</td><td>coprireste</td><td>coprirebbero</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>copra</td><td>copra</td><td>copra</td><td>copriamo</td><td>copriate</td><td>coprano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>coprissi</td><td>coprissi</td><td>coprisse</td><td>coprissimo</td><td>copriste</td><td>coprissero</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>copri</td><td>copra</td><td>copriamo</td><td>coprite</td><td>coprano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">preferire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">preferendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">preferente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">preferito</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>preferisco</td><td>preferisci</td><td>preferisce</td><td>preferiamo</td><td>preferite</td><td>preferiscono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>preferivo</td><td>preferivi</td><td>preferiva</td><td>preferivamo</td><td>preferivate</td><td>preferivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>preferii</td><td>preferisti</td><td>prefer&igrave;, prefer&eacute;</td><td>preferimmo</td><td>preferiste</td><td>preferirono, prefererono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>preferir&ograve;</td><td>preferirai</td><td>preferir&agrave;</td><td>preferiremo</td><td>preferirete</td><td>preferiranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>preferirei</td><td>preferiresti</td><td>preferirebbe</td><td>preferiremmo</td><td>preferireste</td><td>preferirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>preferisca</td><td>preferisca</td><td>preferisca</td><td>preferiamo</td><td>preferiate</td><td>preferiscano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>preferissi</td><td>preferissi</td><td>preferisse</td><td>preferissimo</td><td>preferiste</td><td>preferissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">preferire</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">preferendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">preferente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">preferito</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>preferisco</td><td>preferisci</td><td>preferisce</td><td>preferiamo</td><td>preferite</td><td>preferiscono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>preferivo</td><td>preferivi</td><td>preferiva</td><td>preferivamo</td><td>preferivate</td><td>preferivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>preferii</td><td>preferisti</td><td>prefer&igrave;, prefer&eacute;</td><td>preferimmo</td><td>preferiste</td><td>preferirono, prefererono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>preferir&ograve;</td><td>preferirai</td><td>preferir&agrave;</td><td>preferiremo</td><td>preferirete</td><td>preferiranno</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>preferirei</td><td>preferiresti</td><td>preferirebbe</td><td>preferiremmo</td><td>preferireste</td><td>preferirebbero</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>preferisca</td><td>preferisca</td><td>preferisca</td><td>preferiamo</td><td>preferiate</td><td>preferiscano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>preferissi</td><td>preferissi</td><td>preferisse</td><td>preferissimo</td><td>preferiste</td><td>preferissero</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>preferisci</td><td>preferisca</td><td>preferiamo</td><td>preferite</td><td>preferiscano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">produrre</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">producendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">producente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">prodotto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>produco</td><td>produci</td><td>produce</td><td>produciamo</td><td>producete</td><td>producono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>producevo</td><td>producevi</td><td>produceva</td><td>producevamo</td><td>producevate</td><td>producevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>produssi</td><td>producesti</td><td>produsse</td><td>producemmo</td><td>produceste</td><td>produssero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>produrr&ograve;</td><td>produrrai</td><td>produrr&agrave;</td><td>produrremo</td><td>produrrete</td><td>produrranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>produrrei</td><td>produrresti</td><td>produrrebbe</td><td>produrremmo</td><td>produrreste</td><td>produrrebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>produca</td><td>produca</td><td>produca</td><td>produciamo</td><td>produciate</td><td>producano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>producessi</td><td>producessi</td><td>producesse</td><td>producessimo</td><td>produceste</td><td>producessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">produrre</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">producendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">producente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">prodotto</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>produco</td><td>produci</td><td>produce</td><td>produciamo</td><td>producete</td><td>producono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>producevo</td><td>producevi</td><td>produceva</td><td>producevamo</td><td>producevate</td><td>producevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>produssi</td><td>producesti</td><td>produsse</td><td>producemmo</td><td>produceste</td><td>produssero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>produrr&ograve;</td><td>produrrai</td><td>produrr&agrave;</td><td>produrremo</td><td>produrrete</td><td>produrranno</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>produrrei</td><td>produrresti</td><td>produrrebbe</td><td>produrremmo</td><td>produrreste</td><td>produrrebbero</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>produca</td><td>produca</td><td>produca</td><td>produciamo</td><td>produciate</td><td>producano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>producessi</td><td>producessi</td><td>producesse</td><td>producessimo</td><td>produceste</td><td>producessero</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>produci</td><td>produca</td><td>produciamo</td><td>producete</td><td>producano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">lavarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">lavandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">lavantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">lavato, lavatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi lavo</td><td>ti lavi</td><td>si lava</td><td>ci laviamo</td><td>vi lavate</td><td>si lavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi lavavo</td><td>ti lavavi</td><td>si lavava</td><td>ci lavavamo</td><td>vi lavavate</td><td>si lavavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi lavai</td><td>ti lavasti</td><td>si lav&ograve;</td><td>ci lavammo</td><td>vi lavaste</td><td>si lavarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi laver&ograve;</td><td>ti laverai</td><td>si laver&agrave;</td><td>ci laveremo</td><td>vi laverete</td><td>si laveranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi laverei</td><td>ti laveresti</td><td>si laverebbe</td><td>ci laveremmo</td><td>vi lavereste</td><td>si laverebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi lavi</td><td>ti lavi</td><td>si lavi</td><td>ci laviamo</td><td>vi laviate</td><td>si lavino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi lavassi</td><td>ti lavassi</td><td>si lavasse</td><td>ci lavassimo</td><td>vi lavaste</td><td>si lavassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">lavarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">lavandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">lavantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">lavato, lavatosi</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>mi lavo</td><td>ti lavi</td><td>si lava</td><td>ci laviamo</td><td>vi lavate</td><td>si lavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi lavavo</td><td>ti lavavi</td><td>si lavava</td><td>ci lavavamo</td><td>vi lavavate</td><td>si lavavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi lavai</td><td>ti lavasti</td><td>si lav&ograve;</td><td>ci lavammo</td><td>vi lavaste</td><td>si lavarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi laver&ograve;</td><td>ti laverai</td><td>si laver&agrave;</td><td>ci laveremo</td><td>vi laverete</td><td>si laveranno</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>mi laverei</td><td>ti laveresti</td><td>si laverebbe</td><td>ci laveremmo</td><td>vi lavereste</td><td>si laverebbero</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>mi lavi</td><td>ti lavi</td><td>si lavi</td><td>ci laviamo</td><td>vi laviate</td><td>si lavino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi lavassi</td><td>ti lavassi</td><td>si lavasse</td><td>ci lavassimo</td><td>vi lavaste</td><td>si lavassero</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>lavati</td><td>si lavi</td><td>laviamoci</td><td>lavatevi</td><td>si lavino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">abbattersi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">abbattendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">abbattentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">abbattuto, abbattutosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi abbatto</td><td>ti abbatti</td><td>si abbatte</td><td>ci abbattiamo</td><td>vi abbattete</td><td>si abbattono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi abbattevo</td><td>ti abbattevi</td><td>si abbatteva</td><td>ci abbattevamo</td><td>vi abbattevate</td><td>si abbattevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi abbattei</td><td>ti abbattesti</td><td>si abbattette, abbatt&eacute;</td><td>ci abbattemmo</td><td>vi abbatteste</td><td>si abbattettero, abbatterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi abbatter&ograve;</td><td>ti abbatterai</td><td>si abbatter&agrave;</td><td>ci abbatteremo</td><td>vi abbatterete</td><td>si abbatteranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi abbatterei</td><td>ti abbatteresti</td><td>si abbatterebbe</td><td>ci abbatteremmo</td><td>vi abbattereste</td><td>si abbatterebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi abbatta</td><td>ti abbatta</td><td>si abbatta</td><td>ci abbattiamo</td><td>vi abbattiate</td><td>si abbattano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi abbattessi</td><td>ti abbattessi</td><td>si abbattesse</td><td>ci abbattessimo</td><td>vi abbatteste</td><td>si abbattessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">abbattersi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">abbattendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">abbattentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">abbattuto, abbattutosi</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>mi abbatto</td><td>ti abbatti</td><td>si abbatte</td><td>ci abbattiamo</td><td>vi abbattete</td><td>si abbattono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi abbattevo</td><td>ti abbattevi</td><td>si abbatteva</td><td>ci abbattevamo</td><td>vi abbattevate</td><td>si abbattevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi abbattei</td><td>ti abbattesti</td><td>si abbattette, abbatt&eacute;</td><td>ci abbattemmo</td><td>vi abbatteste</td><td>si abbattettero, abbatterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi abbatter&ograve;</td><td>ti abbatterai</td><td>si abbatter&agrave;</td><td>ci abbatteremo</td><td>vi abbatterete</td><td>si abbatteranno</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>mi abbatterei</td><td>ti abbatteresti</td><td>si abbatterebbe</td><td>ci abbatteremmo</td><td>vi abbattereste</td><td>si abbatterebbero</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>mi abbatta</td><td>ti abbatta</td><td>si abbatta</td><td>ci abbattiamo</td><td>vi abbattiate</td><td>si abbattano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi abbattessi</td><td>ti abbattessi</td><td>si abbattesse</td><td>ci abbattessimo</td><td>vi abbatteste</td><td>si abbattessero</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>abbattiti</td><td>si abbatta</td><td>abbattiamoci</td><td>abbattetevi</td><td>si abbattano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">annoiarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">annoiandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">annoiantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">annoiato, annoiatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi annoio</td><td>ti annoi</td><td>si annoia</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoiano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi annoiavo</td><td>ti annoiavi</td><td>si annoiava</td><td>ci annoiavamo</td><td>vi annoiavate</td><td>si annoiavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi annoiai</td><td>ti annoiasti</td><td>si annoi&ograve;</td><td>ci annoiammo</td><td>vi annoiaste</td><td>si annoiarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi annoier&ograve;</td><td>ti annoierai</td><td>si annoier&agrave;</td><td>ci annoieremo</td><td>vi annoierete</td><td>si annoieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi annoierei</td><td>ti annoieresti</td><td>si annoierebbe</td><td>ci annoieremmo</td><td>vi annoiereste</td><td>si annoierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi annoi</td><td>ti annoi</td><td>si annoi</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi annoiassi</td><td>ti annoiassi</td><td>si annoiasse</td><td>ci annoiassimo</td><td>vi annoiaste</td><td>si annoiassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">annoiarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">annoiandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">annoiantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">annoiato, annoiatosi</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>mi annoio</td><td>ti annoi</td><td>si annoia</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoiano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi annoiavo</td><td>ti annoiavi</td><td>si annoiava</td><td>ci annoiavamo</td><td>vi annoiavate</td><td>si annoiavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi annoiai</td><td>ti annoiasti</td><td>si annoi&ograve;</td><td>ci annoiammo</td><td>vi annoiaste</td><td>si annoiarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi annoier&ograve;</td><td>ti annoierai</td><td>si annoier&agrave;</td><td>ci annoieremo</td><td>vi annoierete</td><td>si annoieranno</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>mi annoierei</td><td>ti annoieresti</td><td>si annoierebbe</td><td>ci annoieremmo</td><td>vi annoiereste</td><td>si annoierebbero</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>mi annoi</td><td>ti annoi</td><td>si annoi</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi annoiassi</td><td>ti annoiassi</td><td>si annoiasse</td><td>ci annoiassimo</td><td>vi annoiaste</td><td>si annoiassero</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>annoiati</td><td>si annoi</td><td>annoiamoci</td><td>annoiatevi</td><td>si annoino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">vestirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">vestendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">vestentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">vestito, vestitosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi vesto</td><td>ti vesti</td><td>si veste</td><td>ci vestiamo</td><td>vi vestite</td><td>si vestono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi vestivo</td><td>ti vestivi</td><td>si vestiva</td><td>ci vestivamo</td><td>vi vestivate</td><td>si vestivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi vestii</td><td>ti vestisti</td><td>si vest&igrave;, vest&eacute;</td><td>ci vestimmo</td><td>vi vestiste</td><td>si vestirono, vesterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi vestir&ograve;</td><td>ti vestirai</td><td>si vestir&agrave;</td><td>ci vestiremo</td><td>vi vestirete</td><td>si vestiranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi vestirei</td><td>ti vestiresti</td><td>si vestirebbe</td><td>ci vestiremmo</td><td>vi vestireste</td><td>si vestirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi vesta</td><td>ti vesta</td><td>si vesta</td><td>ci vestiamo</td><td>vi vestiate</td><td>si vestano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi vestissi</td><td>ti vestissi</td><td>si vestisse</td><td>ci vestissimo</td><td>vi vestiste</td><td>si vestissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">coniugarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">coniugandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">coniugantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">coniugato, coniugatosi</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>mi coniugo</td><td>ti coniughi</td><td>si coniuga</td><td>ci coniughiamo</td><td>vi coniugate</td><td>si coniugano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi coniugavo</td><td>ti coniugavi</td><td>si coniugava</td><td>ci coniugavamo</td><td>vi coniugavate</td><td>si coniugavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi coniugai</td><td>ti coniugasti</td><td>si coniug&ograve;</td><td>ci coniugammo</td><td>vi coniugaste</td><td>si coniugarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi coniugher&ograve;</td><td>ti coniugherai</td><td>si coniugher&agrave;</td><td>ci coniugheremo</td><td>vi coniugherete</td><td>si coniugheranno</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>mi coniugherei</td><td>ti coniugheresti</td><td>si coniugherebbe</td><td>ci coniugheremmo</td><td>vi coniughereste</td><td>si coniugherebbero</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>mi coniughi</td><td>ti coniughi</td><td>si coniughi</td><td>ci coniughiamo</td><td>vi coniughiate</td><td>si coniughino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi coniugassi</td><td>ti coniugassi</td><td>si coniugasse</td><td>ci coniugassimo</td><td>vi coniugaste</td><td>si coniugassero</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>coniugati</td><td>si coniughi</td><td>coniughiamoci</td><td>coniugatevi</td><td>si coniughino</td></tr>
+</table>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">affacciarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">affacciandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">affacciantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">affacciato, affacciatosi</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>mi affaccio</td><td>ti affacci</td><td>si affaccia</td><td>ci affacciamo</td><td>vi affacciate</td><td>si affacciano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi affacciavo</td><td>ti affacciavi</td><td>si affacciava</td><td>ci affacciavamo</td><td>vi affacciavate</td><td>si affacciavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi affacciai</td><td>ti affacciasti</td><td>si affacci&ograve;</td><td>ci affacciammo</td><td>vi affacciaste</td><td>si affacciarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi affaccer&ograve;</td><td>ti affaccerai</td><td>si affaccer&agrave;</td><td>ci affacceremo</td><td>vi affaccerete</td><td>si affacceranno</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>mi affaccerei</td><td>ti affacceresti</td><td>si affaccerebbe</td><td>ci affacceremmo</td><td>vi affaccereste</td><td>si affaccerebbero</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>mi affacci</td><td>ti affacci</td><td>si affacci</td><td>ci affacciamo</td><td>vi affacciate</td><td>si affaccino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi affacciassi</td><td>ti affacciassi</td><td>si affacciasse</td><td>ci affacciassimo</td><td>vi affacciaste</td><td>si affacciassero</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>affacciati</td><td>si affacci</td><td>affacciamoci</td><td>affacciatevi</td><td>si affaccino</td></tr>
+</table>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">vestirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">vestendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">vestentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">vestito, vestitosi</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>mi vesto</td><td>ti vesti</td><td>si veste</td><td>ci vestiamo</td><td>vi vestite</td><td>si vestono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi vestivo</td><td>ti vestivi</td><td>si vestiva</td><td>ci vestivamo</td><td>vi vestivate</td><td>si vestivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi vestii</td><td>ti vestisti</td><td>si vest&igrave;, vest&eacute;</td><td>ci vestimmo</td><td>vi vestiste</td><td>si vestirono, vesterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi vestir&ograve;</td><td>ti vestirai</td><td>si vestir&agrave;</td><td>ci vestiremo</td><td>vi vestirete</td><td>si vestiranno</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>mi vestirei</td><td>ti vestiresti</td><td>si vestirebbe</td><td>ci vestiremmo</td><td>vi vestireste</td><td>si vestirebbero</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>mi vesta</td><td>ti vesta</td><td>si vesta</td><td>ci vestiamo</td><td>vi vestiate</td><td>si vestano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi vestissi</td><td>ti vestissi</td><td>si vestisse</td><td>ci vestissimo</td><td>vi vestiste</td><td>si vestissero</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>vestiti</td><td>si vesta</td><td>vestiamoci</td><td>vestitevi</td><td>si vestano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ferirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">ferendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">ferentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ferito, feritosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi ferisco</td><td>ti ferisci</td><td>si ferisce</td><td>ci feriamo</td><td>vi ferite</td><td>si feriscono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi ferivo</td><td>ti ferivi</td><td>si feriva</td><td>ci ferivamo</td><td>vi ferivate</td><td>si ferivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi ferii</td><td>ti feristi</td><td>si fer&igrave;, fer&eacute;</td><td>ci ferimmo</td><td>vi feriste</td><td>si ferirono, fererono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi ferir&ograve;</td><td>ti ferirai</td><td>si ferir&agrave;</td><td>ci feriremo</td><td>vi ferirete</td><td>si feriranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi ferirei</td><td>ti feriresti</td><td>si ferirebbe</td><td>ci feriremmo</td><td>vi ferireste</td><td>si ferirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi ferisca</td><td>ti ferisca</td><td>si ferisca</td><td>ci feriamo</td><td>vi feriate</td><td>si feriscano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi ferissi</td><td>ti ferissi</td><td>si ferisse</td><td>ci ferissimo</td><td>vi feriste</td><td>si ferissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ferirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">ferendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">ferentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ferito, feritosi</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>mi ferisco</td><td>ti ferisci</td><td>si ferisce</td><td>ci feriamo</td><td>vi ferite</td><td>si feriscono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi ferivo</td><td>ti ferivi</td><td>si feriva</td><td>ci ferivamo</td><td>vi ferivate</td><td>si ferivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi ferii</td><td>ti feristi</td><td>si fer&igrave;, fer&eacute;</td><td>ci ferimmo</td><td>vi feriste</td><td>si ferirono, fererono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi ferir&ograve;</td><td>ti ferirai</td><td>si ferir&agrave;</td><td>ci feriremo</td><td>vi ferirete</td><td>si feriranno</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>mi ferirei</td><td>ti feriresti</td><td>si ferirebbe</td><td>ci feriremmo</td><td>vi ferireste</td><td>si ferirebbero</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>mi ferisca</td><td>ti ferisca</td><td>si ferisca</td><td>ci feriamo</td><td>vi feriate</td><td>si feriscano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi ferissi</td><td>ti ferissi</td><td>si ferisse</td><td>ci ferissimo</td><td>vi feriste</td><td>si ferissero</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>ferisciti</td><td>si ferisca</td><td>feriamoci</td><td>feritevi</td><td>si feriscano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ridursi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">riducendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">riducentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ridotto, ridottosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi riduco</td><td>ti riduci</td><td>si riduce</td><td>ci riduciamo</td><td>vi riducete</td><td>si riducono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi riducevo</td><td>ti riducevi</td><td>si riduceva</td><td>ci riducevamo</td><td>vi riducevate</td><td>si riducevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi ridussi</td><td>ti riducesti</td><td>si ridusse</td><td>ci riducemmo</td><td>vi riduceste</td><td>si ridussero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi ridurr&ograve;</td><td>ti ridurrai</td><td>si ridurr&agrave;</td><td>ci ridurremo</td><td>vi ridurrete</td><td>si ridurranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi ridurrei</td><td>ti ridurresti</td><td>si ridurrebbe</td><td>ci ridurremmo</td><td>vi ridurreste</td><td>si ridurrebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi riduca</td><td>ti riduca</td><td>si riduca</td><td>ci riduciamo</td><td>vi riduciate</td><td>si riducano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi riducessi</td><td>ti riducessi</td><td>si riducesse</td><td>ci riducessimo</td><td>vi riduceste</td><td>si riducessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ridursi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">riducendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">riducentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ridotto, ridottosi</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>mi riduco</td><td>ti riduci</td><td>si riduce</td><td>ci riduciamo</td><td>vi riducete</td><td>si riducono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi riducevo</td><td>ti riducevi</td><td>si riduceva</td><td>ci riducevamo</td><td>vi riducevate</td><td>si riducevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi ridussi</td><td>ti riducesti</td><td>si ridusse</td><td>ci riducemmo</td><td>vi riduceste</td><td>si ridussero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi ridurr&ograve;</td><td>ti ridurrai</td><td>si ridurr&agrave;</td><td>ci ridurremo</td><td>vi ridurrete</td><td>si ridurranno</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>mi ridurrei</td><td>ti ridurresti</td><td>si ridurrebbe</td><td>ci ridurremmo</td><td>vi ridurreste</td><td>si ridurrebbero</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>mi riduca</td><td>ti riduca</td><td>si riduca</td><td>ci riduciamo</td><td>vi riduciate</td><td>si riducano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi riducessi</td><td>ti riducessi</td><td>si riducesse</td><td>ci riducessimo</td><td>vi riduceste</td><td>si riducessero</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>riduciti</td><td>siriduca</td><td>riduciamoci</td><td>riducetevi</td><td>siriducano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ricucire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">ricucendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">ricucente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ricucito</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>ricucio</td><td>ricuci</td><td>ricuce</td><td>ricuciamo</td><td>ricucite</td><td>ricuciono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>ricucivo</td><td>ricucivi</td><td>ricuciva</td><td>ricucivamo</td><td>ricucivate</td><td>ricucivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>ricucii</td><td>ricucisti</td><td>ricuc&igrave;, ricuc&eacute;</td><td>ricucimmo</td><td>ricuciste</td><td>ricucirono, ricucerono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>ricucir&ograve;</td><td>ricucirai</td><td>ricucir&agrave;</td><td>ricuciremo</td><td>ricucirete</td><td>ricuciranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>ricucirei</td><td>ricuciresti</td><td>ricucirebbe</td><td>ricuciremmo</td><td>ricucireste</td><td>ricucirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>ricucia</td><td>ricucia</td><td>ricucia</td><td>ricuciamo</td><td>ricuciate</td><td>ricuciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>ricucissi</td><td>ricucissi</td><td>ricucisse</td><td>ricucissimo</td><td>ricuciste</td><td>ricucissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ricucire</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">ricucendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">ricucente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ricucito</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>ricucio</td><td>ricuci</td><td>ricuce</td><td>ricuciamo</td><td>ricucite</td><td>ricuciono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>ricucivo</td><td>ricucivi</td><td>ricuciva</td><td>ricucivamo</td><td>ricucivate</td><td>ricucivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>ricucii</td><td>ricucisti</td><td>ricuc&igrave;, ricuc&eacute;</td><td>ricucimmo</td><td>ricuciste</td><td>ricucirono, ricucerono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>ricucir&ograve;</td><td>ricucirai</td><td>ricucir&agrave;</td><td>ricuciremo</td><td>ricucirete</td><td>ricuciranno</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>ricucirei</td><td>ricuciresti</td><td>ricucirebbe</td><td>ricuciremmo</td><td>ricucireste</td><td>ricucirebbero</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>ricucia</td><td>ricucia</td><td>ricucia</td><td>ricuciamo</td><td>ricuciate</td><td>ricuciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>ricucissi</td><td>ricucissi</td><td>ricucisse</td><td>ricucissimo</td><td>ricuciste</td><td>ricucissero</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>ricuci</td><td>ricucia</td><td>ricuciamo</td><td>ricucite</td><td>ricuciano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">riavviarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">riavviandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">riavviantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">riavviato, riavviatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi riavvio</td><td>ti riavvii</td><td>si riavvia</td><td>ci riavviiamo</td><td>vi riavviate</td><td>si riavviano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi riavviavo</td><td>ti riavviavi</td><td>si riavviava</td><td>ci riavviavamo</td><td>vi riavviavate</td><td>si riavviavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi riavviai</td><td>ti riavviasti</td><td>si riavvi&ograve;</td><td>ci riavviammo</td><td>vi riavviaste</td><td>si riavviarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi riavvier&ograve;</td><td>ti riavvierai</td><td>si riavvier&agrave;</td><td>ci riavvieremo</td><td>vi riavvierete</td><td>si riavvieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi riavvierei</td><td>ti riavvieresti</td><td>si riavvierebbe</td><td>ci riavvieremmo</td><td>vi riavviereste</td><td>si riavvierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi riavvii</td><td>ti riavvii</td><td>si riavvii</td><td>ci riavviamo</td><td>vi riavviate</td><td>si riavviino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi riavviassi</td><td>ti riavviassi</td><td>si riavviasse</td><td>ci riavviassimo</td><td>vi riavviaste</td><td>si riavviassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">riavviarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">riavviandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">riavviantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">riavviato, riavviatosi</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>mi riavvio</td><td>ti riavvii</td><td>si riavvia</td><td>ci riavviiamo</td><td>vi riavviate</td><td>si riavviano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi riavviavo</td><td>ti riavviavi</td><td>si riavviava</td><td>ci riavviavamo</td><td>vi riavviavate</td><td>si riavviavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi riavviai</td><td>ti riavviasti</td><td>si riavvi&ograve;</td><td>ci riavviammo</td><td>vi riavviaste</td><td>si riavviarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi riavvier&ograve;</td><td>ti riavvierai</td><td>si riavvier&agrave;</td><td>ci riavvieremo</td><td>vi riavvierete</td><td>si riavvieranno</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>mi riavvierei</td><td>ti riavvieresti</td><td>si riavvierebbe</td><td>ci riavvieremmo</td><td>vi riavviereste</td><td>si riavvierebbero</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>mi riavvii</td><td>ti riavvii</td><td>si riavvii</td><td>ci riavviamo</td><td>vi riavviate</td><td>si riavviino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi riavviassi</td><td>ti riavviassi</td><td>si riavviasse</td><td>ci riavviassimo</td><td>vi riavviaste</td><td>si riavviassero</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>riavviati</td><td>si riavvii</td><td>riavviamoci</td><td>riavviatevi</td><td>si riavviino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">putrefare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">putrefacendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">putrefacente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">putrefatto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>putrefaccio, putref&ograve;</td><td>putrefai</td><td>putref&agrave;</td><td>putrefacciamo</td><td>putrefate</td><td>putrefanno</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>putrefacevo</td><td>putrefacevi</td><td>putrefaceva</td><td>putrefacevamo</td><td>putrefacevate</td><td>putrefacevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>putrefeci</td><td>putrefacesti</td><td>putrefece</td><td>putrefacemmo</td><td>putrefaceste</td><td>putrefecero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>putrefar&ograve;</td><td>putrefarai</td><td>putrefar&agrave;</td><td>putrefaremo</td><td>putrefarete</td><td>putrefaranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>putrefarei</td><td>putrefaresti</td><td>putrefarebbe</td><td>putrefaremmo</td><td>putrefareste</td><td>putrefarebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>putrefaccia</td><td>putrefaccia</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefacciate</td><td>putrefacciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>putrefacessi</td><td>putrefacessi</td><td>putrefacesse</td><td>putrefacessimo</td><td>putrefaceste</td><td>putrefacessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">putrefare</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">putrefacendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">putrefacente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">putrefatto</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>putrefaccio, putref&ograve;</td><td>putrefai</td><td>putref&agrave;</td><td>putrefacciamo</td><td>putrefate</td><td>putrefanno</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>putrefacevo</td><td>putrefacevi</td><td>putrefaceva</td><td>putrefacevamo</td><td>putrefacevate</td><td>putrefacevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>putrefeci</td><td>putrefacesti</td><td>putrefece</td><td>putrefacemmo</td><td>putrefaceste</td><td>putrefecero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>putrefar&ograve;</td><td>putrefarai</td><td>putrefar&agrave;</td><td>putrefaremo</td><td>putrefarete</td><td>putrefaranno</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>putrefarei</td><td>putrefaresti</td><td>putrefarebbe</td><td>putrefaremmo</td><td>putrefareste</td><td>putrefarebbero</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>putrefaccia</td><td>putrefaccia</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefacciate</td><td>putrefacciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>putrefacessi</td><td>putrefacessi</td><td>putrefacesse</td><td>putrefacessimo</td><td>putrefaceste</td><td>putrefacessero</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>putrefa</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefate</td><td>putrefacciano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">cucirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">cucendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">cucentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">cucito, cucitosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi cucio</td><td>ti cuci</td><td>si cuce</td><td>ci cuciamo</td><td>vi cucite</td><td>si cuciono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi cucivo</td><td>ti cucivi</td><td>si cuciva</td><td>ci cucivamo</td><td>vi cucivate</td><td>si cucivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi cucii</td><td>ti cucisti</td><td>si cuc&igrave;, cuc&eacute;</td><td>ci cucimmo</td><td>vi cuciste</td><td>si cucirono, cucerono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi cucir&ograve;</td><td>ti cucirai</td><td>si cucir&agrave;</td><td>ci cuciremo</td><td>vi cucirete</td><td>si cuciranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi cucirei</td><td>ti cuciresti</td><td>si cucirebbe</td><td>ci cuciremmo</td><td>vi cucireste</td><td>si cucirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi cucia</td><td>ti cucia</td><td>si cucia</td><td>ci cuciamo</td><td>vi cuciate</td><td>si cuciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi cucissi</td><td>ti cucissi</td><td>si cucisse</td><td>ci cucissimo</td><td>vi cuciste</td><td>si cucissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">cucirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">cucendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">cucentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">cucito, cucitosi</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>mi cucio</td><td>ti cuci</td><td>si cuce</td><td>ci cuciamo</td><td>vi cucite</td><td>si cuciono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi cucivo</td><td>ti cucivi</td><td>si cuciva</td><td>ci cucivamo</td><td>vi cucivate</td><td>si cucivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi cucii</td><td>ti cucisti</td><td>si cuc&igrave;, cuc&eacute;</td><td>ci cucimmo</td><td>vi cuciste</td><td>si cucirono, cucerono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi cucir&ograve;</td><td>ti cucirai</td><td>si cucir&agrave;</td><td>ci cuciremo</td><td>vi cucirete</td><td>si cuciranno</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>mi cucirei</td><td>ti cuciresti</td><td>si cucirebbe</td><td>ci cuciremmo</td><td>vi cucireste</td><td>si cucirebbero</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>mi cucia</td><td>ti cucia</td><td>si cucia</td><td>ci cuciamo</td><td>vi cuciate</td><td>si cuciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi cucissi</td><td>ti cucissi</td><td>si cucisse</td><td>ci cucissimo</td><td>vi cuciste</td><td>si cucissero</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>cuciti</td><td>si cucia</td><td>cuciamoci</td><td>cucitevi</td><td>si cuciano</td></tr>
 </table>
 >>>
+===esse===
+HtmlEntry (shortened): dummyTitle
+===essi===
+HtmlEntry (shortened): dummyTitle
+===feré===
+HtmlEntry (shortened): dummyTitle
+===ferendosi===
+HtmlEntry (shortened): dummyTitle
+===ferentesi===
+HtmlEntry (shortened): dummyTitle
+===fererono===
+HtmlEntry (shortened): dummyTitle
+===ferì===
+HtmlEntry (shortened): dummyTitle
+===feriamo===
+HtmlEntry (shortened): dummyTitle
+===feriamoci===
+HtmlEntry (shortened): dummyTitle
+===feriate===
+HtmlEntry (shortened): dummyTitle
+===ferii===
+HtmlEntry (shortened): dummyTitle
+===ferimmo===
+HtmlEntry (shortened): dummyTitle
+===ferirà===
+HtmlEntry (shortened): dummyTitle
+===ferirai===
+HtmlEntry (shortened): dummyTitle
+===feriranno===
+HtmlEntry (shortened): dummyTitle
+===ferirebbe===
+HtmlEntry (shortened): dummyTitle
+===ferirebbero===
+HtmlEntry (shortened): dummyTitle
+===ferirei===
+HtmlEntry (shortened): dummyTitle
+===feriremmo===
+HtmlEntry (shortened): dummyTitle
+===feriremo===
+HtmlEntry (shortened): dummyTitle
+===ferireste===
+HtmlEntry (shortened): dummyTitle
+===feriresti===
+HtmlEntry (shortened): dummyTitle
+===ferirete===
+HtmlEntry (shortened): dummyTitle
+===ferirò===
+HtmlEntry (shortened): dummyTitle
+===ferirono===
+HtmlEntry (shortened): dummyTitle
+===ferisca===
+HtmlEntry (shortened): dummyTitle
+===feriscano===
+HtmlEntry (shortened): dummyTitle
+===ferisce===
+HtmlEntry (shortened): dummyTitle
+===ferisci===
+HtmlEntry (shortened): dummyTitle
+===ferisciti===
+HtmlEntry (shortened): dummyTitle
+===ferisco===
+HtmlEntry (shortened): dummyTitle
+===feriscono===
+HtmlEntry (shortened): dummyTitle
+===ferisse===
+HtmlEntry (shortened): dummyTitle
+===ferissero===
+HtmlEntry (shortened): dummyTitle
+===ferissi===
+HtmlEntry (shortened): dummyTitle
+===ferissimo===
+HtmlEntry (shortened): dummyTitle
+===feriste===
+HtmlEntry (shortened): dummyTitle
+===feristi===
+HtmlEntry (shortened): dummyTitle
+===ferite===
+HtmlEntry (shortened): dummyTitle
+===feritevi===
+HtmlEntry (shortened): dummyTitle
+===ferito===
+HtmlEntry (shortened): dummyTitle
+===feritosi===
+HtmlEntry (shortened): dummyTitle
+===feriva===
+HtmlEntry (shortened): dummyTitle
+===ferivamo===
+HtmlEntry (shortened): dummyTitle
+===ferivano===
+HtmlEntry (shortened): dummyTitle
+===ferivate===
+HtmlEntry (shortened): dummyTitle
+===ferivi===
+HtmlEntry (shortened): dummyTitle
+===ferivo===
+HtmlEntry (shortened): dummyTitle
+===io===
+HtmlEntry (shortened): dummyTitle
+===lava===
+HtmlEntry (shortened): dummyTitle
+===lavai===
+HtmlEntry (shortened): dummyTitle
+===lavammo===
+HtmlEntry (shortened): dummyTitle
+===lavandosi===
+HtmlEntry (shortened): dummyTitle
+===lavano===
+HtmlEntry (shortened): dummyTitle
+===lavantesi===
+HtmlEntry (shortened): dummyTitle
+===lavarono===
+HtmlEntry (shortened): dummyTitle
+===lavasse===
+HtmlEntry (shortened): dummyTitle
+===lavassero===
+HtmlEntry (shortened): dummyTitle
+===lavassi===
+HtmlEntry (shortened): dummyTitle
+===lavassimo===
+HtmlEntry (shortened): dummyTitle
+===lavaste===
+HtmlEntry (shortened): dummyTitle
+===lavasti===
+HtmlEntry (shortened): dummyTitle
+===lavate===
+HtmlEntry (shortened): dummyTitle
+===lavatevi===
+HtmlEntry (shortened): dummyTitle
+===lavati===
+HtmlEntry (shortened): dummyTitle
+===lavato===
+HtmlEntry (shortened): dummyTitle
+===lavatosi===
+HtmlEntry (shortened): dummyTitle
+===lavava===
+HtmlEntry (shortened): dummyTitle
+===lavavamo===
+HtmlEntry (shortened): dummyTitle
+===lavavano===
+HtmlEntry (shortened): dummyTitle
+===lavavate===
+HtmlEntry (shortened): dummyTitle
+===lavavi===
+HtmlEntry (shortened): dummyTitle
+===lavavo===
+HtmlEntry (shortened): dummyTitle
+===laverà===
+HtmlEntry (shortened): dummyTitle
+===laverai===
+HtmlEntry (shortened): dummyTitle
+===laveranno===
+HtmlEntry (shortened): dummyTitle
+===laverebbe===
+HtmlEntry (shortened): dummyTitle
+===laverebbero===
+HtmlEntry (shortened): dummyTitle
+===laverei===
+HtmlEntry (shortened): dummyTitle
+===laveremmo===
+HtmlEntry (shortened): dummyTitle
+===laveremo===
+HtmlEntry (shortened): dummyTitle
+===lavereste===
+HtmlEntry (shortened): dummyTitle
+===laveresti===
+HtmlEntry (shortened): dummyTitle
+===laverete===
+HtmlEntry (shortened): dummyTitle
+===laverò===
+HtmlEntry (shortened): dummyTitle
+===lavi===
+HtmlEntry (shortened): dummyTitle
+===laviamo===
+HtmlEntry (shortened): dummyTitle
+===laviamoci===
+HtmlEntry (shortened): dummyTitle
+===laviate===
+HtmlEntry (shortened): dummyTitle
+===lavino===
+HtmlEntry (shortened): dummyTitle
+===lavo===
+HtmlEntry (shortened): dummyTitle
+===lavò===
+HtmlEntry (shortened): dummyTitle
+===lei===
+HtmlEntry (shortened): dummyTitle
+===lui===
+HtmlEntry (shortened): dummyTitle
+===noi===
+HtmlEntry (shortened): dummyTitle
+===paga===
+HtmlEntry (shortened): dummyTitle
+===pagai===
+HtmlEntry (shortened): dummyTitle
+===pagammo===
+HtmlEntry (shortened): dummyTitle
+===pagando===
+HtmlEntry (shortened): dummyTitle
+===pagano===
+HtmlEntry (shortened): dummyTitle
+===pagante===
+HtmlEntry (shortened): dummyTitle
+===pagarono===
+HtmlEntry (shortened): dummyTitle
+===pagasse===
+HtmlEntry (shortened): dummyTitle
+===pagassero===
+HtmlEntry (shortened): dummyTitle
+===pagassi===
+HtmlEntry (shortened): dummyTitle
+===pagassimo===
+HtmlEntry (shortened): dummyTitle
+===pagaste===
+HtmlEntry (shortened): dummyTitle
+===pagasti===
+HtmlEntry (shortened): dummyTitle
+===pagate===
+HtmlEntry (shortened): dummyTitle
+===pagato===
+HtmlEntry (shortened): dummyTitle
+===pagava===
+HtmlEntry (shortened): dummyTitle
+===pagavamo===
+HtmlEntry (shortened): dummyTitle
+===pagavano===
+HtmlEntry (shortened): dummyTitle
+===pagavate===
+HtmlEntry (shortened): dummyTitle
+===pagavi===
+HtmlEntry (shortened): dummyTitle
+===pagavo===
+HtmlEntry (shortened): dummyTitle
+===pagherà===
+HtmlEntry (shortened): dummyTitle
+===pagherai===
+HtmlEntry (shortened): dummyTitle
+===pagheranno===
+HtmlEntry (shortened): dummyTitle
+===pagherebbe===
+HtmlEntry (shortened): dummyTitle
+===pagherebbero===
+HtmlEntry (shortened): dummyTitle
+===pagherei===
+HtmlEntry (shortened): dummyTitle
+===pagheremmo===
+HtmlEntry (shortened): dummyTitle
+===pagheremo===
+HtmlEntry (shortened): dummyTitle
+===paghereste===
+HtmlEntry (shortened): dummyTitle
+===pagheresti===
+HtmlEntry (shortened): dummyTitle
+===pagherete===
+HtmlEntry (shortened): dummyTitle
+===pagherò===
+HtmlEntry (shortened): dummyTitle
+===paghi===
+HtmlEntry (shortened): dummyTitle
+===paghiamo===
+HtmlEntry (shortened): dummyTitle
+===paghiate===
+HtmlEntry (shortened): dummyTitle
+===paghino===
+HtmlEntry (shortened): dummyTitle
+===pago===
+HtmlEntry (shortened): dummyTitle
+===pagò===
+HtmlEntry (shortened): dummyTitle
+===persuada===
+HtmlEntry (shortened): dummyTitle
+===persuadano===
+HtmlEntry (shortened): dummyTitle
+===persuade===
+HtmlEntry (shortened): dummyTitle
+===persuademmo===
+HtmlEntry (shortened): dummyTitle
+===persuadendo===
+HtmlEntry (shortened): dummyTitle
+===persuadente===
+HtmlEntry (shortened): dummyTitle
+===persuaderà===
+HtmlEntry (shortened): dummyTitle
+===persuaderai===
+HtmlEntry (shortened): dummyTitle
+===persuaderanno===
+HtmlEntry (shortened): dummyTitle
+===persuaderebbe===
+HtmlEntry (shortened): dummyTitle
+===persuaderebbero===
+HtmlEntry (shortened): dummyTitle
+===persuaderei===
+HtmlEntry (shortened): dummyTitle
+===persuaderemmo===
+HtmlEntry (shortened): dummyTitle
+===persuaderemo===
+HtmlEntry (shortened): dummyTitle
+===persuadereste===
+HtmlEntry (shortened): dummyTitle
+===persuaderesti===
+HtmlEntry (shortened): dummyTitle
+===persuaderete===
+HtmlEntry (shortened): dummyTitle
+===persuaderò===
+HtmlEntry (shortened): dummyTitle
+===persuadesse===
+HtmlEntry (shortened): dummyTitle
+===persuadessero===
+HtmlEntry (shortened): dummyTitle
+===persuadessi===
+HtmlEntry (shortened): dummyTitle
+===persuadessimo===
+HtmlEntry (shortened): dummyTitle
+===persuadeste===
+HtmlEntry (shortened): dummyTitle
+===persuadesti===
+HtmlEntry (shortened): dummyTitle
+===persuadete===
+HtmlEntry (shortened): dummyTitle
+===persuadeva===
+HtmlEntry (shortened): dummyTitle
+===persuadevamo===
+HtmlEntry (shortened): dummyTitle
+===persuadevano===
+HtmlEntry (shortened): dummyTitle
+===persuadevate===
+HtmlEntry (shortened): dummyTitle
+===persuadevi===
+HtmlEntry (shortened): dummyTitle
+===persuadevo===
+HtmlEntry (shortened): dummyTitle
+===persuadi===
+HtmlEntry (shortened): dummyTitle
+===persuadiamo===
+HtmlEntry (shortened): dummyTitle
+===persuadiate===
+HtmlEntry (shortened): dummyTitle
+===persuado===
+HtmlEntry (shortened): dummyTitle
+===persuadono===
+HtmlEntry (shortened): dummyTitle
+===persuase===
+HtmlEntry (shortened): dummyTitle
+===persuasero===
+HtmlEntry (shortened): dummyTitle
+===persuasi===
+HtmlEntry (shortened): dummyTitle
+===persuaso===
+HtmlEntry (shortened): dummyTitle
+===preferé===
+HtmlEntry (shortened): dummyTitle
+===preferendo===
+HtmlEntry (shortened): dummyTitle
+===preferente===
+HtmlEntry (shortened): dummyTitle
+===prefererono===
+HtmlEntry (shortened): dummyTitle
+===preferì===
+HtmlEntry (shortened): dummyTitle
+===preferiamo===
+HtmlEntry (shortened): dummyTitle
+===preferiate===
+HtmlEntry (shortened): dummyTitle
+===preferii===
+HtmlEntry (shortened): dummyTitle
+===preferimmo===
+HtmlEntry (shortened): dummyTitle
+===preferirà===
+HtmlEntry (shortened): dummyTitle
+===preferirai===
+HtmlEntry (shortened): dummyTitle
+===preferiranno===
+HtmlEntry (shortened): dummyTitle
+===preferirebbe===
+HtmlEntry (shortened): dummyTitle
+===preferirebbero===
+HtmlEntry (shortened): dummyTitle
+===preferirei===
+HtmlEntry (shortened): dummyTitle
+===preferiremmo===
+HtmlEntry (shortened): dummyTitle
+===preferiremo===
+HtmlEntry (shortened): dummyTitle
+===preferireste===
+HtmlEntry (shortened): dummyTitle
+===preferiresti===
+HtmlEntry (shortened): dummyTitle
+===preferirete===
+HtmlEntry (shortened): dummyTitle
+===preferirò===
+HtmlEntry (shortened): dummyTitle
+===preferirono===
+HtmlEntry (shortened): dummyTitle
+===preferisca===
+HtmlEntry (shortened): dummyTitle
+===preferiscano===
+HtmlEntry (shortened): dummyTitle
+===preferisce===
+HtmlEntry (shortened): dummyTitle
+===preferisci===
+HtmlEntry (shortened): dummyTitle
+===preferisco===
+HtmlEntry (shortened): dummyTitle
+===preferiscono===
+HtmlEntry (shortened): dummyTitle
+===preferisse===
+HtmlEntry (shortened): dummyTitle
+===preferissero===
+HtmlEntry (shortened): dummyTitle
+===preferissi===
+HtmlEntry (shortened): dummyTitle
+===preferissimo===
+HtmlEntry (shortened): dummyTitle
+===preferiste===
+HtmlEntry (shortened): dummyTitle
+===preferisti===
+HtmlEntry (shortened): dummyTitle
+===preferite===
+HtmlEntry (shortened): dummyTitle
+===preferito===
+HtmlEntry (shortened): dummyTitle
+===preferiva===
+HtmlEntry (shortened): dummyTitle
+===preferivamo===
+HtmlEntry (shortened): dummyTitle
+===preferivano===
+HtmlEntry (shortened): dummyTitle
+===preferivate===
+HtmlEntry (shortened): dummyTitle
+===preferivi===
+HtmlEntry (shortened): dummyTitle
+===preferivo===
+HtmlEntry (shortened): dummyTitle
+===prodotto===
+HtmlEntry (shortened): dummyTitle
+===produca===
+HtmlEntry (shortened): dummyTitle
+===producano===
+HtmlEntry (shortened): dummyTitle
+===produce===
+HtmlEntry (shortened): dummyTitle
+===producemmo===
+HtmlEntry (shortened): dummyTitle
+===producendo===
+HtmlEntry (shortened): dummyTitle
+===producente===
+HtmlEntry (shortened): dummyTitle
+===producesse===
+HtmlEntry (shortened): dummyTitle
+===producessero===
+HtmlEntry (shortened): dummyTitle
+===producessi===
+HtmlEntry (shortened): dummyTitle
+===producessimo===
+HtmlEntry (shortened): dummyTitle
+===produceste===
+HtmlEntry (shortened): dummyTitle
+===producesti===
+HtmlEntry (shortened): dummyTitle
+===producete===
+HtmlEntry (shortened): dummyTitle
+===produceva===
+HtmlEntry (shortened): dummyTitle
+===producevamo===
+HtmlEntry (shortened): dummyTitle
+===producevano===
+HtmlEntry (shortened): dummyTitle
+===producevate===
+HtmlEntry (shortened): dummyTitle
+===producevi===
+HtmlEntry (shortened): dummyTitle
+===producevo===
+HtmlEntry (shortened): dummyTitle
+===produci===
+HtmlEntry (shortened): dummyTitle
+===produciamo===
+HtmlEntry (shortened): dummyTitle
+===produciate===
+HtmlEntry (shortened): dummyTitle
+===produco===
+HtmlEntry (shortened): dummyTitle
+===producono===
+HtmlEntry (shortened): dummyTitle
+===produrrà===
+HtmlEntry (shortened): dummyTitle
+===produrrai===
+HtmlEntry (shortened): dummyTitle
+===produrranno===
+HtmlEntry (shortened): dummyTitle
+===produrrebbe===
+HtmlEntry (shortened): dummyTitle
+===produrrebbero===
+HtmlEntry (shortened): dummyTitle
+===produrrei===
+HtmlEntry (shortened): dummyTitle
+===produrremmo===
+HtmlEntry (shortened): dummyTitle
+===produrremo===
+HtmlEntry (shortened): dummyTitle
+===produrreste===
+HtmlEntry (shortened): dummyTitle
+===produrresti===
+HtmlEntry (shortened): dummyTitle
+===produrrete===
+HtmlEntry (shortened): dummyTitle
+===produrrò===
+HtmlEntry (shortened): dummyTitle
+===produsse===
+HtmlEntry (shortened): dummyTitle
+===produssero===
+HtmlEntry (shortened): dummyTitle
+===produssi===
+HtmlEntry (shortened): dummyTitle
+===pronuncerà===
+HtmlEntry (shortened): dummyTitle
+===pronuncerai===
+HtmlEntry (shortened): dummyTitle
+===pronunceranno===
+HtmlEntry (shortened): dummyTitle
+===pronuncerebbe===
+HtmlEntry (shortened): dummyTitle
+===pronuncerebbero===
+HtmlEntry (shortened): dummyTitle
+===pronuncerei===
+HtmlEntry (shortened): dummyTitle
+===pronunceremmo===
+HtmlEntry (shortened): dummyTitle
+===pronunceremo===
+HtmlEntry (shortened): dummyTitle
+===pronuncereste===
+HtmlEntry (shortened): dummyTitle
+===pronunceresti===
+HtmlEntry (shortened): dummyTitle
+===pronuncerete===
+HtmlEntry (shortened): dummyTitle
+===pronuncerò===
+HtmlEntry (shortened): dummyTitle
+===pronunci===
+HtmlEntry (shortened): dummyTitle
+===pronuncia===
+HtmlEntry (shortened): dummyTitle
+===pronunciai===
+HtmlEntry (shortened): dummyTitle
+===pronunciammo===
+HtmlEntry (shortened): dummyTitle
+===pronunciamo===
+HtmlEntry (shortened): dummyTitle
+===pronunciando===
+HtmlEntry (shortened): dummyTitle
+===pronunciano===
+HtmlEntry (shortened): dummyTitle
+===pronunciante===
+HtmlEntry (shortened): dummyTitle
+===pronunciarono===
+HtmlEntry (shortened): dummyTitle
+===pronunciasse===
+HtmlEntry (shortened): dummyTitle
+===pronunciassero===
+HtmlEntry (shortened): dummyTitle
+===pronunciassi===
+HtmlEntry (shortened): dummyTitle
+===pronunciassimo===
+HtmlEntry (shortened): dummyTitle
+===pronunciaste===
+HtmlEntry (shortened): dummyTitle
+===pronunciasti===
+HtmlEntry (shortened): dummyTitle
+===pronunciate===
+HtmlEntry (shortened): dummyTitle
+===pronunciato===
+HtmlEntry (shortened): dummyTitle
+===pronunciava===
+HtmlEntry (shortened): dummyTitle
+===pronunciavamo===
+HtmlEntry (shortened): dummyTitle
+===pronunciavano===
+HtmlEntry (shortened): dummyTitle
+===pronunciavate===
+HtmlEntry (shortened): dummyTitle
+===pronunciavi===
+HtmlEntry (shortened): dummyTitle
+===pronunciavo===
+HtmlEntry (shortened): dummyTitle
+===pronuncino===
+HtmlEntry (shortened): dummyTitle
+===pronuncio===
+HtmlEntry (shortened): dummyTitle
+===pronunciò===
+HtmlEntry (shortened): dummyTitle
+===putrefa===
+HtmlEntry (shortened): dummyTitle
+===putrefà===
+HtmlEntry (shortened): dummyTitle
+===putrefaccia===
+HtmlEntry (shortened): dummyTitle
+===putrefacciamo===
+HtmlEntry (shortened): dummyTitle
+===putrefacciano===
+HtmlEntry (shortened): dummyTitle
+===putrefacciate===
+HtmlEntry (shortened): dummyTitle
+===putrefaccio===
+HtmlEntry (shortened): dummyTitle
+===putrefacemmo===
+HtmlEntry (shortened): dummyTitle
+===putrefacendo===
+HtmlEntry (shortened): dummyTitle
+===putrefacente===
+HtmlEntry (shortened): dummyTitle
+===putrefacesse===
+HtmlEntry (shortened): dummyTitle
+===putrefacessero===
+HtmlEntry (shortened): dummyTitle
+===putrefacessi===
+HtmlEntry (shortened): dummyTitle
+===putrefacessimo===
+HtmlEntry (shortened): dummyTitle
+===putrefaceste===
+HtmlEntry (shortened): dummyTitle
+===putrefacesti===
+HtmlEntry (shortened): dummyTitle
+===putrefaceva===
+HtmlEntry (shortened): dummyTitle
+===putrefacevamo===
+HtmlEntry (shortened): dummyTitle
+===putrefacevano===
+HtmlEntry (shortened): dummyTitle
+===putrefacevate===
+HtmlEntry (shortened): dummyTitle
+===putrefacevi===
+HtmlEntry (shortened): dummyTitle
+===putrefacevo===
+HtmlEntry (shortened): dummyTitle
+===putrefai===
+HtmlEntry (shortened): dummyTitle
+===putrefanno===
+HtmlEntry (shortened): dummyTitle
+===putrefarà===
+HtmlEntry (shortened): dummyTitle
+===putrefarai===
+HtmlEntry (shortened): dummyTitle
+===putrefaranno===
+HtmlEntry (shortened): dummyTitle
+===putrefarebbe===
+HtmlEntry (shortened): dummyTitle
+===putrefarebbero===
+HtmlEntry (shortened): dummyTitle
+===putrefarei===
+HtmlEntry (shortened): dummyTitle
+===putrefaremmo===
+HtmlEntry (shortened): dummyTitle
+===putrefaremo===
+HtmlEntry (shortened): dummyTitle
+===putrefareste===
+HtmlEntry (shortened): dummyTitle
+===putrefaresti===
+HtmlEntry (shortened): dummyTitle
+===putrefarete===
+HtmlEntry (shortened): dummyTitle
+===putrefarò===
+HtmlEntry (shortened): dummyTitle
+===putrefate===
+HtmlEntry (shortened): dummyTitle
+===putrefatto===
+HtmlEntry (shortened): dummyTitle
+===putrefece===
+HtmlEntry (shortened): dummyTitle
+===putrefecero===
+HtmlEntry (shortened): dummyTitle
+===putrefeci===
+HtmlEntry (shortened): dummyTitle
+===putrefò===
+HtmlEntry (shortened): dummyTitle
+===riavvia===
+HtmlEntry (shortened): dummyTitle
+===riavviai===
+HtmlEntry (shortened): dummyTitle
+===riavviammo===
+HtmlEntry (shortened): dummyTitle
+===riavviamo===
+HtmlEntry (shortened): dummyTitle
+===riavviamoci===
+HtmlEntry (shortened): dummyTitle
+===riavviandosi===
+HtmlEntry (shortened): dummyTitle
+===riavviano===
+HtmlEntry (shortened): dummyTitle
+===riavviantesi===
+HtmlEntry (shortened): dummyTitle
+===riavviarono===
+HtmlEntry (shortened): dummyTitle
+===riavviasse===
+HtmlEntry (shortened): dummyTitle
+===riavviassero===
+HtmlEntry (shortened): dummyTitle
+===riavviassi===
+HtmlEntry (shortened): dummyTitle
+===riavviassimo===
+HtmlEntry (shortened): dummyTitle
+===riavviaste===
+HtmlEntry (shortened): dummyTitle
+===riavviasti===
+HtmlEntry (shortened): dummyTitle
+===riavviate===
+HtmlEntry (shortened): dummyTitle
+===riavviatevi===
+HtmlEntry (shortened): dummyTitle
+===riavviati===
+HtmlEntry (shortened): dummyTitle
+===riavviato===
+HtmlEntry (shortened): dummyTitle
+===riavviatosi===
+HtmlEntry (shortened): dummyTitle
+===riavviava===
+HtmlEntry (shortened): dummyTitle
+===riavviavamo===
+HtmlEntry (shortened): dummyTitle
+===riavviavano===
+HtmlEntry (shortened): dummyTitle
+===riavviavate===
+HtmlEntry (shortened): dummyTitle
+===riavviavi===
+HtmlEntry (shortened): dummyTitle
+===riavviavo===
+HtmlEntry (shortened): dummyTitle
+===riavvierà===
+HtmlEntry (shortened): dummyTitle
+===riavvierai===
+HtmlEntry (shortened): dummyTitle
+===riavvieranno===
+HtmlEntry (shortened): dummyTitle
+===riavvierebbe===
+HtmlEntry (shortened): dummyTitle
+===riavvierebbero===
+HtmlEntry (shortened): dummyTitle
+===riavvierei===
+HtmlEntry (shortened): dummyTitle
+===riavvieremmo===
+HtmlEntry (shortened): dummyTitle
+===riavvieremo===
+HtmlEntry (shortened): dummyTitle
+===riavviereste===
+HtmlEntry (shortened): dummyTitle
+===riavvieresti===
+HtmlEntry (shortened): dummyTitle
+===riavvierete===
+HtmlEntry (shortened): dummyTitle
+===riavvierò===
+HtmlEntry (shortened): dummyTitle
+===riavvii===
+HtmlEntry (shortened): dummyTitle
+===riavviiamo===
+HtmlEntry (shortened): dummyTitle
+===riavviino===
+HtmlEntry (shortened): dummyTitle
+===riavvio===
+HtmlEntry (shortened): dummyTitle
+===riavviò===
+HtmlEntry (shortened): dummyTitle
+===ricuce===
+HtmlEntry (shortened): dummyTitle
+===ricucé===
+HtmlEntry (shortened): dummyTitle
+===ricucendo===
+HtmlEntry (shortened): dummyTitle
+===ricucente===
+HtmlEntry (shortened): dummyTitle
+===ricucerono===
+HtmlEntry (shortened): dummyTitle
+===ricuci===
+HtmlEntry (shortened): dummyTitle
+===ricucì===
+HtmlEntry (shortened): dummyTitle
+===ricucia===
+HtmlEntry (shortened): dummyTitle
+===ricuciamo===
+HtmlEntry (shortened): dummyTitle
+===ricuciano===
+HtmlEntry (shortened): dummyTitle
+===ricuciate===
+HtmlEntry (shortened): dummyTitle
+===ricucii===
+HtmlEntry (shortened): dummyTitle
+===ricucimmo===
+HtmlEntry (shortened): dummyTitle
+===ricucio===
+HtmlEntry (shortened): dummyTitle
+===ricuciono===
+HtmlEntry (shortened): dummyTitle
+===ricucirà===
+HtmlEntry (shortened): dummyTitle
+===ricucirai===
+HtmlEntry (shortened): dummyTitle
+===ricuciranno===
+HtmlEntry (shortened): dummyTitle
+===ricucirebbe===
+HtmlEntry (shortened): dummyTitle
+===ricucirebbero===
+HtmlEntry (shortened): dummyTitle
+===ricucirei===
+HtmlEntry (shortened): dummyTitle
+===ricuciremmo===
+HtmlEntry (shortened): dummyTitle
+===ricuciremo===
+HtmlEntry (shortened): dummyTitle
+===ricucireste===
+HtmlEntry (shortened): dummyTitle
+===ricuciresti===
+HtmlEntry (shortened): dummyTitle
+===ricucirete===
+HtmlEntry (shortened): dummyTitle
+===ricucirò===
+HtmlEntry (shortened): dummyTitle
+===ricucirono===
+HtmlEntry (shortened): dummyTitle
+===ricucisse===
+HtmlEntry (shortened): dummyTitle
+===ricucissero===
+HtmlEntry (shortened): dummyTitle
+===ricucissi===
+HtmlEntry (shortened): dummyTitle
+===ricucissimo===
+HtmlEntry (shortened): dummyTitle
+===ricuciste===
+HtmlEntry (shortened): dummyTitle
+===ricucisti===
+HtmlEntry (shortened): dummyTitle
+===ricucite===
+HtmlEntry (shortened): dummyTitle
+===ricucito===
+HtmlEntry (shortened): dummyTitle
+===ricuciva===
+HtmlEntry (shortened): dummyTitle
+===ricucivamo===
+HtmlEntry (shortened): dummyTitle
+===ricucivano===
+HtmlEntry (shortened): dummyTitle
+===ricucivate===
+HtmlEntry (shortened): dummyTitle
+===ricucivi===
+HtmlEntry (shortened): dummyTitle
+===ricucivo===
+HtmlEntry (shortened): dummyTitle
+===ridotto===
+HtmlEntry (shortened): dummyTitle
+===ridottosi===
+HtmlEntry (shortened): dummyTitle
+===riduca===
+HtmlEntry (shortened): dummyTitle
+===riducano===
+HtmlEntry (shortened): dummyTitle
+===riduce===
+HtmlEntry (shortened): dummyTitle
+===riducemmo===
+HtmlEntry (shortened): dummyTitle
+===riducendosi===
+HtmlEntry (shortened): dummyTitle
+===riducentesi===
+HtmlEntry (shortened): dummyTitle
+===riducesse===
+HtmlEntry (shortened): dummyTitle
+===riducessero===
+HtmlEntry (shortened): dummyTitle
+===riducessi===
+HtmlEntry (shortened): dummyTitle
+===riducessimo===
+HtmlEntry (shortened): dummyTitle
+===riduceste===
+HtmlEntry (shortened): dummyTitle
+===riducesti===
+HtmlEntry (shortened): dummyTitle
+===riducete===
+HtmlEntry (shortened): dummyTitle
+===riducetevi===
+HtmlEntry (shortened): dummyTitle
+===riduceva===
+HtmlEntry (shortened): dummyTitle
+===riducevamo===
+HtmlEntry (shortened): dummyTitle
+===riducevano===
+HtmlEntry (shortened): dummyTitle
+===riducevate===
+HtmlEntry (shortened): dummyTitle
+===riducevi===
+HtmlEntry (shortened): dummyTitle
+===riducevo===
+HtmlEntry (shortened): dummyTitle
+===riduci===
+HtmlEntry (shortened): dummyTitle
+===riduciamo===
+HtmlEntry (shortened): dummyTitle
+===riduciamoci===
+HtmlEntry (shortened): dummyTitle
+===riduciate===
+HtmlEntry (shortened): dummyTitle
+===riduciti===
+HtmlEntry (shortened): dummyTitle
+===riduco===
+HtmlEntry (shortened): dummyTitle
+===riducono===
+HtmlEntry (shortened): dummyTitle
+===ridurrà===
+HtmlEntry (shortened): dummyTitle
+===ridurrai===
+HtmlEntry (shortened): dummyTitle
+===ridurranno===
+HtmlEntry (shortened): dummyTitle
+===ridurrebbe===
+HtmlEntry (shortened): dummyTitle
+===ridurrebbero===
+HtmlEntry (shortened): dummyTitle
+===ridurrei===
+HtmlEntry (shortened): dummyTitle
+===ridurremmo===
+HtmlEntry (shortened): dummyTitle
+===ridurremo===
+HtmlEntry (shortened): dummyTitle
+===ridurreste===
+HtmlEntry (shortened): dummyTitle
+===ridurresti===
+HtmlEntry (shortened): dummyTitle
+===ridurrete===
+HtmlEntry (shortened): dummyTitle
+===ridurrò===
+HtmlEntry (shortened): dummyTitle
+===ridusse===
+HtmlEntry (shortened): dummyTitle
+===ridussero===
+HtmlEntry (shortened): dummyTitle
+===ridussi===
+HtmlEntry (shortened): dummyTitle
+===sedé===
+HtmlEntry (shortened): dummyTitle
+===sedei===
+HtmlEntry (shortened): dummyTitle
+===sedemmo===
+HtmlEntry (shortened): dummyTitle
+===sedendo===
+HtmlEntry (shortened): dummyTitle
+===sedente===
+HtmlEntry (shortened): dummyTitle
+===sederà===
+HtmlEntry (shortened): dummyTitle
+===sederai===
+HtmlEntry (shortened): dummyTitle
+===sederanno===
+HtmlEntry (shortened): dummyTitle
+===sederebbe===
+HtmlEntry (shortened): dummyTitle
+===sederebbero===
+HtmlEntry (shortened): dummyTitle
+===sederei===
+HtmlEntry (shortened): dummyTitle
+===sederemmo===
+HtmlEntry (shortened): dummyTitle
+===sederemo===
+HtmlEntry (shortened): dummyTitle
+===sedereste===
+HtmlEntry (shortened): dummyTitle
+===sederesti===
+HtmlEntry (shortened): dummyTitle
+===sederete===
+HtmlEntry (shortened): dummyTitle
+===sederò===
+HtmlEntry (shortened): dummyTitle
+===sederono===
+HtmlEntry (shortened): dummyTitle
+===sedesse===
+HtmlEntry (shortened): dummyTitle
+===sedessero===
+HtmlEntry (shortened): dummyTitle
+===sedessi===
+HtmlEntry (shortened): dummyTitle
+===sedessimo===
+HtmlEntry (shortened): dummyTitle
+===sedeste===
+HtmlEntry (shortened): dummyTitle
+===sedesti===
+HtmlEntry (shortened): dummyTitle
+===sedete===
+HtmlEntry (shortened): dummyTitle
+===sedette===
+HtmlEntry (shortened): dummyTitle
+===sedettero===
+HtmlEntry (shortened): dummyTitle
+===sedeva===
+HtmlEntry (shortened): dummyTitle
+===sedevamo===
+HtmlEntry (shortened): dummyTitle
+===sedevano===
+HtmlEntry (shortened): dummyTitle
+===sedevate===
+HtmlEntry (shortened): dummyTitle
+===sedevi===
+HtmlEntry (shortened): dummyTitle
+===sedevo===
+HtmlEntry (shortened): dummyTitle
+===sediamo===
+HtmlEntry (shortened): dummyTitle
+===sediate===
+HtmlEntry (shortened): dummyTitle
+===seduto===
+HtmlEntry (shortened): dummyTitle
+===segga===
+HtmlEntry (shortened): dummyTitle
+===seggano===
+HtmlEntry (shortened): dummyTitle
+===seggo===
+HtmlEntry (shortened): dummyTitle
+===seggono===
+HtmlEntry (shortened): dummyTitle
+===si===
+HtmlEntry (shortened): dummyTitle
+===sieda===
+HtmlEntry (shortened): dummyTitle
+===siedano===
+HtmlEntry (shortened): dummyTitle
+===siede===
+HtmlEntry (shortened): dummyTitle
+===siederà===
+HtmlEntry (shortened): dummyTitle
+===siederai===
+HtmlEntry (shortened): dummyTitle
+===siederanno===
+HtmlEntry (shortened): dummyTitle
+===siederebbe===
+HtmlEntry (shortened): dummyTitle
+===siederebbero===
+HtmlEntry (shortened): dummyTitle
+===siederei===
+HtmlEntry (shortened): dummyTitle
+===siederemmo===
+HtmlEntry (shortened): dummyTitle
+===siederemo===
+HtmlEntry (shortened): dummyTitle
+===siedereste===
+HtmlEntry (shortened): dummyTitle
+===siederesti===
+HtmlEntry (shortened): dummyTitle
+===siederete===
+HtmlEntry (shortened): dummyTitle
+===siederò===
+HtmlEntry (shortened): dummyTitle
+===siedi===
+HtmlEntry (shortened): dummyTitle
+===siedo===
+HtmlEntry (shortened): dummyTitle
+===siedono===
+HtmlEntry (shortened): dummyTitle
+===siriduca===
+HtmlEntry (shortened): dummyTitle
+===siriducano===
+HtmlEntry (shortened): dummyTitle
+===studi===
+HtmlEntry (shortened): dummyTitle
+===studia===
+HtmlEntry (shortened): dummyTitle
+===studiai===
+HtmlEntry (shortened): dummyTitle
+===studiammo===
+HtmlEntry (shortened): dummyTitle
+===studiamo===
+HtmlEntry (shortened): dummyTitle
+===studiando===
+HtmlEntry (shortened): dummyTitle
+===studiano===
+HtmlEntry (shortened): dummyTitle
+===studiante===
+HtmlEntry (shortened): dummyTitle
+===studiarono===
+HtmlEntry (shortened): dummyTitle
+===studiasse===
+HtmlEntry (shortened): dummyTitle
+===studiassero===
+HtmlEntry (shortened): dummyTitle
+===studiassi===
+HtmlEntry (shortened): dummyTitle
+===studiassimo===
+HtmlEntry (shortened): dummyTitle
+===studiaste===
+HtmlEntry (shortened): dummyTitle
+===studiasti===
+HtmlEntry (shortened): dummyTitle
+===studiate===
+HtmlEntry (shortened): dummyTitle
+===studiato===
+HtmlEntry (shortened): dummyTitle
+===studiava===
+HtmlEntry (shortened): dummyTitle
+===studiavamo===
+HtmlEntry (shortened): dummyTitle
+===studiavano===
+HtmlEntry (shortened): dummyTitle
+===studiavate===
+HtmlEntry (shortened): dummyTitle
+===studiavi===
+HtmlEntry (shortened): dummyTitle
+===studiavo===
+HtmlEntry (shortened): dummyTitle
+===studierà===
+HtmlEntry (shortened): dummyTitle
+===studierai===
+HtmlEntry (shortened): dummyTitle
+===studieranno===
+HtmlEntry (shortened): dummyTitle
+===studierebbe===
+HtmlEntry (shortened): dummyTitle
+===studierebbero===
+HtmlEntry (shortened): dummyTitle
+===studierei===
+HtmlEntry (shortened): dummyTitle
+===studieremmo===
+HtmlEntry (shortened): dummyTitle
+===studieremo===
+HtmlEntry (shortened): dummyTitle
+===studiereste===
+HtmlEntry (shortened): dummyTitle
+===studieresti===
+HtmlEntry (shortened): dummyTitle
+===studierete===
+HtmlEntry (shortened): dummyTitle
+===studierò===
+HtmlEntry (shortened): dummyTitle
+===studino===
+HtmlEntry (shortened): dummyTitle
+===studio===
+HtmlEntry (shortened): dummyTitle
+===studiò===
+HtmlEntry (shortened): dummyTitle
+===tu===
+HtmlEntry (shortened): dummyTitle
+===vesta===
+HtmlEntry (shortened): dummyTitle
+===vestano===
+HtmlEntry (shortened): dummyTitle
+===veste===
+HtmlEntry (shortened): dummyTitle
+===vesté===
+HtmlEntry (shortened): dummyTitle
+===vestendosi===
+HtmlEntry (shortened): dummyTitle
+===vestentesi===
+HtmlEntry (shortened): dummyTitle
+===vesterono===
+HtmlEntry (shortened): dummyTitle
+===vesti===
+HtmlEntry (shortened): dummyTitle
+===vestì===
+HtmlEntry (shortened): dummyTitle
+===vestiamo===
+HtmlEntry (shortened): dummyTitle
+===vestiamoci===
+HtmlEntry (shortened): dummyTitle
+===vestiate===
+HtmlEntry (shortened): dummyTitle
+===vestii===
+HtmlEntry (shortened): dummyTitle
+===vestimmo===
+HtmlEntry (shortened): dummyTitle
+===vestirà===
+HtmlEntry (shortened): dummyTitle
+===vestirai===
+HtmlEntry (shortened): dummyTitle
+===vestiranno===
+HtmlEntry (shortened): dummyTitle
+===vestirebbe===
+HtmlEntry (shortened): dummyTitle
+===vestirebbero===
+HtmlEntry (shortened): dummyTitle
+===vestirei===
+HtmlEntry (shortened): dummyTitle
+===vestiremmo===
+HtmlEntry (shortened): dummyTitle
+===vestiremo===
+HtmlEntry (shortened): dummyTitle
+===vestireste===
+HtmlEntry (shortened): dummyTitle
+===vestiresti===
+HtmlEntry (shortened): dummyTitle
+===vestirete===
+HtmlEntry (shortened): dummyTitle
+===vestirò===
+HtmlEntry (shortened): dummyTitle
+===vestirono===
+HtmlEntry (shortened): dummyTitle
+===vestisse===
+HtmlEntry (shortened): dummyTitle
+===vestissero===
+HtmlEntry (shortened): dummyTitle
+===vestissi===
+HtmlEntry (shortened): dummyTitle
+===vestissimo===
+HtmlEntry (shortened): dummyTitle
+===vestiste===
+HtmlEntry (shortened): dummyTitle
+===vestisti===
+HtmlEntry (shortened): dummyTitle
+===vestite===
+HtmlEntry (shortened): dummyTitle
+===vestitevi===
+HtmlEntry (shortened): dummyTitle
+===vestiti===
+HtmlEntry (shortened): dummyTitle
+===vestito===
+HtmlEntry (shortened): dummyTitle
+===vestitosi===
+HtmlEntry (shortened): dummyTitle
+===vestiva===
+HtmlEntry (shortened): dummyTitle
+===vestivamo===
+HtmlEntry (shortened): dummyTitle
+===vestivano===
+HtmlEntry (shortened): dummyTitle
+===vestivate===
+HtmlEntry (shortened): dummyTitle
+===vestivi===
+HtmlEntry (shortened): dummyTitle
+===vestivo===
+HtmlEntry (shortened): dummyTitle
+===vesto===
+HtmlEntry (shortened): dummyTitle
+===vestono===
+HtmlEntry (shortened): dummyTitle
+===voi===
+HtmlEntry (shortened): dummyTitle
 
 Index: IT IT->EN
 
index d8bdb2d993fd7fd490687522bbf01baa7ab83d45..252caa8986540311df27ec5acbe812c78c002b69 100644 (file)
 dictInfo=
 
 Index: EN EN->IT
+===abbatta===
+HtmlEntry (shortened): dummyTitle
+===abbattano===
+HtmlEntry (shortened): dummyTitle
+===abbatte===
+HtmlEntry (shortened): dummyTitle
+===abbatté===
+HtmlEntry (shortened): dummyTitle
+===abbattei===
+HtmlEntry (shortened): dummyTitle
+===abbattemmo===
+HtmlEntry (shortened): dummyTitle
+===abbattendo===
+HtmlEntry (shortened): dummyTitle
+===abbattendosi===
+HtmlEntry (shortened): dummyTitle
+===abbattente===
+HtmlEntry (shortened): dummyTitle
+===abbattentesi===
+HtmlEntry (shortened): dummyTitle
+===abbatterà===
+HtmlEntry (shortened): dummyTitle
+===abbatterai===
+HtmlEntry (shortened): dummyTitle
+===abbatteranno===
+HtmlEntry (shortened): dummyTitle
+===abbatterebbe===
+HtmlEntry (shortened): dummyTitle
+===abbatterebbero===
+HtmlEntry (shortened): dummyTitle
+===abbatterei===
+HtmlEntry (shortened): dummyTitle
+===abbatteremmo===
+HtmlEntry (shortened): dummyTitle
+===abbatteremo===
+HtmlEntry (shortened): dummyTitle
+===abbattereste===
+HtmlEntry (shortened): dummyTitle
+===abbatteresti===
+HtmlEntry (shortened): dummyTitle
+===abbatterete===
+HtmlEntry (shortened): dummyTitle
+===abbatterò===
+HtmlEntry (shortened): dummyTitle
+===abbatterono===
+HtmlEntry (shortened): dummyTitle
+===abbattesse===
+HtmlEntry (shortened): dummyTitle
+===abbattessero===
+HtmlEntry (shortened): dummyTitle
+===abbattessi===
+HtmlEntry (shortened): dummyTitle
+===abbattessimo===
+HtmlEntry (shortened): dummyTitle
+===abbatteste===
+HtmlEntry (shortened): dummyTitle
+===abbattesti===
+HtmlEntry (shortened): dummyTitle
+===abbattete===
+HtmlEntry (shortened): dummyTitle
+===abbattetevi===
+HtmlEntry (shortened): dummyTitle
+===abbattette===
+HtmlEntry (shortened): dummyTitle
+===abbattettero===
+HtmlEntry (shortened): dummyTitle
+===abbatteva===
+HtmlEntry (shortened): dummyTitle
+===abbattevamo===
+HtmlEntry (shortened): dummyTitle
+===abbattevano===
+HtmlEntry (shortened): dummyTitle
+===abbattevate===
+HtmlEntry (shortened): dummyTitle
+===abbattevi===
+HtmlEntry (shortened): dummyTitle
+===abbattevo===
+HtmlEntry (shortened): dummyTitle
+===abbatti===
+HtmlEntry (shortened): dummyTitle
+===abbattiamo===
+HtmlEntry (shortened): dummyTitle
+===abbattiamoci===
+HtmlEntry (shortened): dummyTitle
+===abbattiate===
+HtmlEntry (shortened): dummyTitle
+===abbattiti===
+HtmlEntry (shortened): dummyTitle
+===abbatto===
+HtmlEntry (shortened): dummyTitle
+===abbattono===
+HtmlEntry (shortened): dummyTitle
+===abbattuto===
+HtmlEntry (shortened): dummyTitle
+===abbattutosi===
+HtmlEntry (shortened): dummyTitle
+===accusa===
+HtmlEntry (shortened): dummyTitle
+===accusai===
+HtmlEntry (shortened): dummyTitle
+===accusammo===
+HtmlEntry (shortened): dummyTitle
+===accusando===
+HtmlEntry (shortened): dummyTitle
+===accusano===
+HtmlEntry (shortened): dummyTitle
+===accusante===
+HtmlEntry (shortened): dummyTitle
+===accusarono===
+HtmlEntry (shortened): dummyTitle
+===accusasse===
+HtmlEntry (shortened): dummyTitle
+===accusassero===
+HtmlEntry (shortened): dummyTitle
+===accusassi===
+HtmlEntry (shortened): dummyTitle
+===accusassimo===
+HtmlEntry (shortened): dummyTitle
+===accusaste===
+HtmlEntry (shortened): dummyTitle
+===accusasti===
+HtmlEntry (shortened): dummyTitle
+===accusate===
+HtmlEntry (shortened): dummyTitle
+===accusato===
+HtmlEntry (shortened): dummyTitle
+===accusava===
+HtmlEntry (shortened): dummyTitle
+===accusavamo===
+HtmlEntry (shortened): dummyTitle
+===accusavano===
+HtmlEntry (shortened): dummyTitle
+===accusavate===
+HtmlEntry (shortened): dummyTitle
+===accusavi===
+HtmlEntry (shortened): dummyTitle
+===accusavo===
+HtmlEntry (shortened): dummyTitle
+===accuserà===
+HtmlEntry (shortened): dummyTitle
+===accuserai===
+HtmlEntry (shortened): dummyTitle
+===accuseranno===
+HtmlEntry (shortened): dummyTitle
+===accuserebbe===
+HtmlEntry (shortened): dummyTitle
+===accuserebbero===
+HtmlEntry (shortened): dummyTitle
+===accuserei===
+HtmlEntry (shortened): dummyTitle
+===accuseremmo===
+HtmlEntry (shortened): dummyTitle
+===accuseremo===
+HtmlEntry (shortened): dummyTitle
+===accusereste===
+HtmlEntry (shortened): dummyTitle
+===accuseresti===
+HtmlEntry (shortened): dummyTitle
+===accuserete===
+HtmlEntry (shortened): dummyTitle
+===accuserò===
+HtmlEntry (shortened): dummyTitle
+===accusi===
+HtmlEntry (shortened): dummyTitle
+===accusiamo===
+HtmlEntry (shortened): dummyTitle
+===accusiate===
+HtmlEntry (shortened): dummyTitle
+===accusino===
+HtmlEntry (shortened): dummyTitle
+===accuso===
+HtmlEntry (shortened): dummyTitle
+===accusò===
+HtmlEntry (shortened): dummyTitle
+===affaccerà===
+HtmlEntry (shortened): dummyTitle
+===affaccerai===
+HtmlEntry (shortened): dummyTitle
+===affacceranno===
+HtmlEntry (shortened): dummyTitle
+===affaccerebbe===
+HtmlEntry (shortened): dummyTitle
+===affaccerebbero===
+HtmlEntry (shortened): dummyTitle
+===affaccerei===
+HtmlEntry (shortened): dummyTitle
+===affacceremmo===
+HtmlEntry (shortened): dummyTitle
+===affacceremo===
+HtmlEntry (shortened): dummyTitle
+===affaccereste===
+HtmlEntry (shortened): dummyTitle
+===affacceresti===
+HtmlEntry (shortened): dummyTitle
+===affaccerete===
+HtmlEntry (shortened): dummyTitle
+===affaccerò===
+HtmlEntry (shortened): dummyTitle
+===affacci===
+HtmlEntry (shortened): dummyTitle
+===affaccia===
+HtmlEntry (shortened): dummyTitle
+===affacciai===
+HtmlEntry (shortened): dummyTitle
+===affacciammo===
+HtmlEntry (shortened): dummyTitle
+===affacciamo===
+HtmlEntry (shortened): dummyTitle
+===affacciamoci===
+HtmlEntry (shortened): dummyTitle
+===affacciandosi===
+HtmlEntry (shortened): dummyTitle
+===affacciano===
+HtmlEntry (shortened): dummyTitle
+===affacciantesi===
+HtmlEntry (shortened): dummyTitle
+===affacciarono===
+HtmlEntry (shortened): dummyTitle
+===affacciasse===
+HtmlEntry (shortened): dummyTitle
+===affacciassero===
+HtmlEntry (shortened): dummyTitle
+===affacciassi===
+HtmlEntry (shortened): dummyTitle
+===affacciassimo===
+HtmlEntry (shortened): dummyTitle
+===affacciaste===
+HtmlEntry (shortened): dummyTitle
+===affacciasti===
+HtmlEntry (shortened): dummyTitle
+===affacciate===
+HtmlEntry (shortened): dummyTitle
+===affacciatevi===
+HtmlEntry (shortened): dummyTitle
+===affacciati===
+HtmlEntry (shortened): dummyTitle
+===affacciato===
+HtmlEntry (shortened): dummyTitle
+===affacciatosi===
+HtmlEntry (shortened): dummyTitle
+===affacciava===
+HtmlEntry (shortened): dummyTitle
+===affacciavamo===
+HtmlEntry (shortened): dummyTitle
+===affacciavano===
+HtmlEntry (shortened): dummyTitle
+===affacciavate===
+HtmlEntry (shortened): dummyTitle
+===affacciavi===
+HtmlEntry (shortened): dummyTitle
+===affacciavo===
+HtmlEntry (shortened): dummyTitle
+===affaccino===
+HtmlEntry (shortened): dummyTitle
+===affaccio===
+HtmlEntry (shortened): dummyTitle
+===affacciò===
+HtmlEntry (shortened): dummyTitle
+===annoi===
+HtmlEntry (shortened): dummyTitle
+===annoia===
+HtmlEntry (shortened): dummyTitle
+===annoiai===
+HtmlEntry (shortened): dummyTitle
+===annoiammo===
+HtmlEntry (shortened): dummyTitle
+===annoiamo===
+HtmlEntry (shortened): dummyTitle
+===annoiamoci===
+HtmlEntry (shortened): dummyTitle
+===annoiandosi===
+HtmlEntry (shortened): dummyTitle
+===annoiano===
+HtmlEntry (shortened): dummyTitle
+===annoiantesi===
+HtmlEntry (shortened): dummyTitle
+===annoiarono===
+HtmlEntry (shortened): dummyTitle
+===annoiasse===
+HtmlEntry (shortened): dummyTitle
+===annoiassero===
+HtmlEntry (shortened): dummyTitle
+===annoiassi===
+HtmlEntry (shortened): dummyTitle
+===annoiassimo===
+HtmlEntry (shortened): dummyTitle
+===annoiaste===
+HtmlEntry (shortened): dummyTitle
+===annoiasti===
+HtmlEntry (shortened): dummyTitle
+===annoiate===
+HtmlEntry (shortened): dummyTitle
+===annoiatevi===
+HtmlEntry (shortened): dummyTitle
+===annoiati===
+HtmlEntry (shortened): dummyTitle
+===annoiato===
+HtmlEntry (shortened): dummyTitle
+===annoiatosi===
+HtmlEntry (shortened): dummyTitle
+===annoiava===
+HtmlEntry (shortened): dummyTitle
+===annoiavamo===
+HtmlEntry (shortened): dummyTitle
+===annoiavano===
+HtmlEntry (shortened): dummyTitle
+===annoiavate===
+HtmlEntry (shortened): dummyTitle
+===annoiavi===
+HtmlEntry (shortened): dummyTitle
+===annoiavo===
+HtmlEntry (shortened): dummyTitle
+===annoierà===
+HtmlEntry (shortened): dummyTitle
+===annoierai===
+HtmlEntry (shortened): dummyTitle
+===annoieranno===
+HtmlEntry (shortened): dummyTitle
+===annoierebbe===
+HtmlEntry (shortened): dummyTitle
+===annoierebbero===
+HtmlEntry (shortened): dummyTitle
+===annoierei===
+HtmlEntry (shortened): dummyTitle
+===annoieremmo===
+HtmlEntry (shortened): dummyTitle
+===annoieremo===
+HtmlEntry (shortened): dummyTitle
+===annoiereste===
+HtmlEntry (shortened): dummyTitle
+===annoieresti===
+HtmlEntry (shortened): dummyTitle
+===annoierete===
+HtmlEntry (shortened): dummyTitle
+===annoierò===
+HtmlEntry (shortened): dummyTitle
+===annoino===
+HtmlEntry (shortened): dummyTitle
+===annoio===
+HtmlEntry (shortened): dummyTitle
+===annoiò===
+HtmlEntry (shortened): dummyTitle
+===avvia===
+HtmlEntry (shortened): dummyTitle
+===avviai===
+HtmlEntry (shortened): dummyTitle
+===avviammo===
+HtmlEntry (shortened): dummyTitle
+===avviamo===
+HtmlEntry (shortened): dummyTitle
+===avviando===
+HtmlEntry (shortened): dummyTitle
+===avviano===
+HtmlEntry (shortened): dummyTitle
+===avviante===
+HtmlEntry (shortened): dummyTitle
+===avviarono===
+HtmlEntry (shortened): dummyTitle
+===avviasse===
+HtmlEntry (shortened): dummyTitle
+===avviassero===
+HtmlEntry (shortened): dummyTitle
+===avviassi===
+HtmlEntry (shortened): dummyTitle
+===avviassimo===
+HtmlEntry (shortened): dummyTitle
+===avviaste===
+HtmlEntry (shortened): dummyTitle
+===avviasti===
+HtmlEntry (shortened): dummyTitle
+===avviate===
+HtmlEntry (shortened): dummyTitle
+===avviato===
+HtmlEntry (shortened): dummyTitle
+===avviava===
+HtmlEntry (shortened): dummyTitle
+===avviavamo===
+HtmlEntry (shortened): dummyTitle
+===avviavano===
+HtmlEntry (shortened): dummyTitle
+===avviavate===
+HtmlEntry (shortened): dummyTitle
+===avviavi===
+HtmlEntry (shortened): dummyTitle
+===avviavo===
+HtmlEntry (shortened): dummyTitle
+===avvierà===
+HtmlEntry (shortened): dummyTitle
+===avvierai===
+HtmlEntry (shortened): dummyTitle
+===avvieranno===
+HtmlEntry (shortened): dummyTitle
+===avvierebbe===
+HtmlEntry (shortened): dummyTitle
+===avvierebbero===
+HtmlEntry (shortened): dummyTitle
+===avvierei===
+HtmlEntry (shortened): dummyTitle
+===avvieremmo===
+HtmlEntry (shortened): dummyTitle
+===avvieremo===
+HtmlEntry (shortened): dummyTitle
+===avviereste===
+HtmlEntry (shortened): dummyTitle
+===avvieresti===
+HtmlEntry (shortened): dummyTitle
+===avvierete===
+HtmlEntry (shortened): dummyTitle
+===avvierò===
+HtmlEntry (shortened): dummyTitle
+===avvii===
+HtmlEntry (shortened): dummyTitle
+===avviiamo===
+HtmlEntry (shortened): dummyTitle
+===avviino===
+HtmlEntry (shortened): dummyTitle
+===avvio===
+HtmlEntry (shortened): dummyTitle
+===avviò===
+HtmlEntry (shortened): dummyTitle
+===che===
+HtmlEntry (shortened): dummyTitle
+===coniuga===
+HtmlEntry (shortened): dummyTitle
+===coniugai===
+HtmlEntry (shortened): dummyTitle
+===coniugammo===
+HtmlEntry (shortened): dummyTitle
+===coniugandosi===
+HtmlEntry (shortened): dummyTitle
+===coniugano===
+HtmlEntry (shortened): dummyTitle
+===coniugantesi===
+HtmlEntry (shortened): dummyTitle
+===coniugarono===
+HtmlEntry (shortened): dummyTitle
+===coniugasse===
+HtmlEntry (shortened): dummyTitle
+===coniugassero===
+HtmlEntry (shortened): dummyTitle
+===coniugassi===
+HtmlEntry (shortened): dummyTitle
+===coniugassimo===
+HtmlEntry (shortened): dummyTitle
+===coniugaste===
+HtmlEntry (shortened): dummyTitle
+===coniugasti===
+HtmlEntry (shortened): dummyTitle
+===coniugate===
+HtmlEntry (shortened): dummyTitle
+===coniugatevi===
+HtmlEntry (shortened): dummyTitle
+===coniugati===
+HtmlEntry (shortened): dummyTitle
+===coniugato===
+HtmlEntry (shortened): dummyTitle
+===coniugatosi===
+HtmlEntry (shortened): dummyTitle
+===coniugava===
+HtmlEntry (shortened): dummyTitle
+===coniugavamo===
+HtmlEntry (shortened): dummyTitle
+===coniugavano===
+HtmlEntry (shortened): dummyTitle
+===coniugavate===
+HtmlEntry (shortened): dummyTitle
+===coniugavi===
+HtmlEntry (shortened): dummyTitle
+===coniugavo===
+HtmlEntry (shortened): dummyTitle
+===coniugherà===
+HtmlEntry (shortened): dummyTitle
+===coniugherai===
+HtmlEntry (shortened): dummyTitle
+===coniugheranno===
+HtmlEntry (shortened): dummyTitle
+===coniugherebbe===
+HtmlEntry (shortened): dummyTitle
+===coniugherebbero===
+HtmlEntry (shortened): dummyTitle
+===coniugherei===
+HtmlEntry (shortened): dummyTitle
+===coniugheremmo===
+HtmlEntry (shortened): dummyTitle
+===coniugheremo===
+HtmlEntry (shortened): dummyTitle
+===coniughereste===
+HtmlEntry (shortened): dummyTitle
+===coniugheresti===
+HtmlEntry (shortened): dummyTitle
+===coniugherete===
+HtmlEntry (shortened): dummyTitle
+===coniugherò===
+HtmlEntry (shortened): dummyTitle
+===coniughi===
+HtmlEntry (shortened): dummyTitle
+===coniughiamo===
+HtmlEntry (shortened): dummyTitle
+===coniughiamoci===
+HtmlEntry (shortened): dummyTitle
+===coniughiate===
+HtmlEntry (shortened): dummyTitle
+===coniughino===
+HtmlEntry (shortened): dummyTitle
+===coniugo===
+HtmlEntry (shortened): dummyTitle
+===coniugò===
+HtmlEntry (shortened): dummyTitle
+===coperse===
+HtmlEntry (shortened): dummyTitle
+===copersero===
+HtmlEntry (shortened): dummyTitle
+===copersi===
+HtmlEntry (shortened): dummyTitle
+===coperto===
+HtmlEntry (shortened): dummyTitle
+===copra===
+HtmlEntry (shortened): dummyTitle
+===coprano===
+HtmlEntry (shortened): dummyTitle
+===copre===
+HtmlEntry (shortened): dummyTitle
+===coprendo===
+HtmlEntry (shortened): dummyTitle
+===coprente===
+HtmlEntry (shortened): dummyTitle
+===copri===
+HtmlEntry (shortened): dummyTitle
+===coprì===
+HtmlEntry (shortened): dummyTitle
+===copriamo===
+HtmlEntry (shortened): dummyTitle
+===copriate===
+HtmlEntry (shortened): dummyTitle
+===coprii===
+HtmlEntry (shortened): dummyTitle
+===coprimmo===
+HtmlEntry (shortened): dummyTitle
+===coprirà===
+HtmlEntry (shortened): dummyTitle
+===coprirai===
+HtmlEntry (shortened): dummyTitle
+===copriranno===
+HtmlEntry (shortened): dummyTitle
+===coprirebbe===
+HtmlEntry (shortened): dummyTitle
+===coprirebbero===
+HtmlEntry (shortened): dummyTitle
+===coprirei===
+HtmlEntry (shortened): dummyTitle
+===copriremmo===
+HtmlEntry (shortened): dummyTitle
+===copriremo===
+HtmlEntry (shortened): dummyTitle
+===coprireste===
+HtmlEntry (shortened): dummyTitle
+===copriresti===
+HtmlEntry (shortened): dummyTitle
+===coprirete===
+HtmlEntry (shortened): dummyTitle
+===coprirò===
+HtmlEntry (shortened): dummyTitle
+===coprirono===
+HtmlEntry (shortened): dummyTitle
+===coprisse===
+HtmlEntry (shortened): dummyTitle
+===coprissero===
+HtmlEntry (shortened): dummyTitle
+===coprissi===
+HtmlEntry (shortened): dummyTitle
+===coprissimo===
+HtmlEntry (shortened): dummyTitle
+===copriste===
+HtmlEntry (shortened): dummyTitle
+===copristi===
+HtmlEntry (shortened): dummyTitle
+===coprite===
+HtmlEntry (shortened): dummyTitle
+===copriva===
+HtmlEntry (shortened): dummyTitle
+===coprivamo===
+HtmlEntry (shortened): dummyTitle
+===coprivano===
+HtmlEntry (shortened): dummyTitle
+===coprivate===
+HtmlEntry (shortened): dummyTitle
+===coprivi===
+HtmlEntry (shortened): dummyTitle
+===coprivo===
+HtmlEntry (shortened): dummyTitle
+===copro===
+HtmlEntry (shortened): dummyTitle
+===coprono===
+HtmlEntry (shortened): dummyTitle
+===cuce===
+HtmlEntry (shortened): dummyTitle
+===cucé===
+HtmlEntry (shortened): dummyTitle
+===cucendosi===
+HtmlEntry (shortened): dummyTitle
+===cucentesi===
+HtmlEntry (shortened): dummyTitle
+===cucerono===
+HtmlEntry (shortened): dummyTitle
+===cuci===
+HtmlEntry (shortened): dummyTitle
+===cucì===
+HtmlEntry (shortened): dummyTitle
+===cucia===
+HtmlEntry (shortened): dummyTitle
+===cuciamo===
+HtmlEntry (shortened): dummyTitle
+===cuciamoci===
+HtmlEntry (shortened): dummyTitle
+===cuciano===
+HtmlEntry (shortened): dummyTitle
+===cuciate===
+HtmlEntry (shortened): dummyTitle
+===cucii===
+HtmlEntry (shortened): dummyTitle
+===cucimmo===
+HtmlEntry (shortened): dummyTitle
+===cucio===
+HtmlEntry (shortened): dummyTitle
+===cuciono===
+HtmlEntry (shortened): dummyTitle
+===cucirà===
+HtmlEntry (shortened): dummyTitle
+===cucirai===
+HtmlEntry (shortened): dummyTitle
+===cuciranno===
+HtmlEntry (shortened): dummyTitle
+===cucirebbe===
+HtmlEntry (shortened): dummyTitle
+===cucirebbero===
+HtmlEntry (shortened): dummyTitle
+===cucirei===
+HtmlEntry (shortened): dummyTitle
+===cuciremmo===
+HtmlEntry (shortened): dummyTitle
+===cuciremo===
+HtmlEntry (shortened): dummyTitle
+===cucireste===
+HtmlEntry (shortened): dummyTitle
+===cuciresti===
+HtmlEntry (shortened): dummyTitle
+===cucirete===
+HtmlEntry (shortened): dummyTitle
+===cucirò===
+HtmlEntry (shortened): dummyTitle
+===cucirono===
+HtmlEntry (shortened): dummyTitle
+===cucisse===
+HtmlEntry (shortened): dummyTitle
+===cucissero===
+HtmlEntry (shortened): dummyTitle
+===cucissi===
+HtmlEntry (shortened): dummyTitle
+===cucissimo===
+HtmlEntry (shortened): dummyTitle
+===cuciste===
+HtmlEntry (shortened): dummyTitle
+===cucisti===
+HtmlEntry (shortened): dummyTitle
+===cucite===
+HtmlEntry (shortened): dummyTitle
+===cucitevi===
+HtmlEntry (shortened): dummyTitle
+===cuciti===
+HtmlEntry (shortened): dummyTitle
+===cucito===
+HtmlEntry (shortened): dummyTitle
+===cucitosi===
+HtmlEntry (shortened): dummyTitle
+===cuciva===
+HtmlEntry (shortened): dummyTitle
+===cucivamo===
+HtmlEntry (shortened): dummyTitle
+===cucivano===
+HtmlEntry (shortened): dummyTitle
+===cucivate===
+HtmlEntry (shortened): dummyTitle
+===cucivi===
+HtmlEntry (shortened): dummyTitle
+===cucivo===
+HtmlEntry (shortened): dummyTitle
+===da===
+HtmlEntry (shortened): dummyTitle
+===dà===
+HtmlEntry (shortened): dummyTitle
+===dai===
+HtmlEntry (shortened): dummyTitle
+===dando===
+HtmlEntry (shortened): dummyTitle
+===danno===
+HtmlEntry (shortened): dummyTitle
+===dante===
+HtmlEntry (shortened): dummyTitle
+===darà===
+HtmlEntry (shortened): dummyTitle
+===darai===
+HtmlEntry (shortened): dummyTitle
+===daranno===
+HtmlEntry (shortened): dummyTitle
+===darebbe===
+HtmlEntry (shortened): dummyTitle
+===darebbero===
+HtmlEntry (shortened): dummyTitle
+===darei===
+HtmlEntry (shortened): dummyTitle
+===daremmo===
+HtmlEntry (shortened): dummyTitle
+===daremo===
+HtmlEntry (shortened): dummyTitle
+===dareste===
+HtmlEntry (shortened): dummyTitle
+===daresti===
+HtmlEntry (shortened): dummyTitle
+===darete===
+HtmlEntry (shortened): dummyTitle
+===darò===
+HtmlEntry (shortened): dummyTitle
+===date===
+HtmlEntry (shortened): dummyTitle
+===dato===
+HtmlEntry (shortened): dummyTitle
+===dava===
+HtmlEntry (shortened): dummyTitle
+===davamo===
+HtmlEntry (shortened): dummyTitle
+===davano===
+HtmlEntry (shortened): dummyTitle
+===davate===
+HtmlEntry (shortened): dummyTitle
+===davi===
+HtmlEntry (shortened): dummyTitle
+===davo===
+HtmlEntry (shortened): dummyTitle
+===demmo===
+HtmlEntry (shortened): dummyTitle
+===desse===
+HtmlEntry (shortened): dummyTitle
+===dessero===
+HtmlEntry (shortened): dummyTitle
+===dessi===
+HtmlEntry (shortened): dummyTitle
+===dessimo===
+HtmlEntry (shortened): dummyTitle
+===deste===
+HtmlEntry (shortened): dummyTitle
+===desti===
+HtmlEntry (shortened): dummyTitle
+===dette===
+HtmlEntry (shortened): dummyTitle
+===dettero===
+HtmlEntry (shortened): dummyTitle
+===detti===
+HtmlEntry (shortened): dummyTitle
+===dia===
+HtmlEntry (shortened): dummyTitle
+===diamo===
+HtmlEntry (shortened): dummyTitle
+===diano===
+HtmlEntry (shortened): dummyTitle
+===diate===
+HtmlEntry (shortened): dummyTitle
+===diede===
+HtmlEntry (shortened): dummyTitle
+===diedero===
+HtmlEntry (shortened): dummyTitle
+===diedi===
+HtmlEntry (shortened): dummyTitle
+===do===
+HtmlEntry (shortened): dummyTitle
 ===dummyTitle===
-HtmlEntry: dummyTitle <<<<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">dare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">dando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">dante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">dato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>do</td><td>dai</td><td>d&agrave;</td><td>diamo</td><td>date</td><td>danno</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>davo</td><td>davi</td><td>dava</td><td>davamo</td><td>davate</td><td>davano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>diedi, detti</td><td>desti</td><td>diede, dette</td><td>demmo</td><td>deste</td><td>diedero, dettero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>dar&ograve;</td><td>darai</td><td>dar&agrave;</td><td>daremo</td><td>darete</td><td>daranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>darei</td><td>daresti</td><td>darebbe</td><td>daremmo</td><td>dareste</td><td>darebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>dia</td><td>dia</td><td>dia</td><td>diamo</td><td>diate</td><td>diano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>dessi</td><td>dessi</td><td>desse</td><td>dessimo</td><td>deste</td><td>dessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+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>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">dante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">dato</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>do</td><td>dai</td><td>d&agrave;</td><td>diamo</td><td>date</td><td>danno</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>davo</td><td>davi</td><td>dava</td><td>davamo</td><td>davate</td><td>davano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>diedi, detti</td><td>desti</td><td>diede, dette</td><td>demmo</td><td>deste</td><td>diedero, dettero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>dar&ograve;</td><td>darai</td><td>dar&agrave;</td><td>daremo</td><td>darete</td><td>daranno</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>darei</td><td>daresti</td><td>darebbe</td><td>daremmo</td><td>dareste</td><td>darebbero</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>dia</td><td>dia</td><td>dia</td><td>diamo</td><td>diate</td><td>diano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>dessi</td><td>dessi</td><td>desse</td><td>dessimo</td><td>deste</td><td>dessero</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>d&agrave;, dai, da'</td><td>dia</td><td>diamo</td><td>date</td><td>diano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">accusare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">accusando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">accusante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">accusato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>accuso</td><td>accusi</td><td>accusa</td><td>accusiamo</td><td>accusate</td><td>accusano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>accusavo</td><td>accusavi</td><td>accusava</td><td>accusavamo</td><td>accusavate</td><td>accusavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>accusai</td><td>accusasti</td><td>accus&ograve;</td><td>accusammo</td><td>accusaste</td><td>accusarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>accuser&ograve;</td><td>accuserai</td><td>accuser&agrave;</td><td>accuseremo</td><td>accuserete</td><td>accuseranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>accuserei</td><td>accuseresti</td><td>accuserebbe</td><td>accuseremmo</td><td>accusereste</td><td>accuserebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>accusi</td><td>accusi</td><td>accusi</td><td>accusiamo</td><td>accusiate</td><td>accusino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>accusassi</td><td>accusassi</td><td>accusasse</td><td>accusassimo</td><td>accusaste</td><td>accusassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">accusare</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">accusando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">accusante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">accusato</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>accuso</td><td>accusi</td><td>accusa</td><td>accusiamo</td><td>accusate</td><td>accusano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>accusavo</td><td>accusavi</td><td>accusava</td><td>accusavamo</td><td>accusavate</td><td>accusavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>accusai</td><td>accusasti</td><td>accus&ograve;</td><td>accusammo</td><td>accusaste</td><td>accusarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>accuser&ograve;</td><td>accuserai</td><td>accuser&agrave;</td><td>accuseremo</td><td>accuserete</td><td>accuseranno</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>accuserei</td><td>accuseresti</td><td>accuserebbe</td><td>accuseremmo</td><td>accusereste</td><td>accuserebbero</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>accusi</td><td>accusi</td><td>accusi</td><td>accusiamo</td><td>accusiate</td><td>accusino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>accusassi</td><td>accusassi</td><td>accusasse</td><td>accusassimo</td><td>accusaste</td><td>accusassero</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>accusa</td><td>accusi</td><td>accusiamo</td><td>accusate</td><td>accusino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">pagare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere or essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">pagando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">pagante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">pagato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>pago</td><td>paghi</td><td>paga</td><td>paghiamo</td><td>pagate</td><td>pagano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>pagavo</td><td>pagavi</td><td>pagava</td><td>pagavamo</td><td>pagavate</td><td>pagavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>pagai</td><td>pagasti</td><td>pag&ograve;</td><td>pagammo</td><td>pagaste</td><td>pagarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>pagher&ograve;</td><td>pagherai</td><td>pagher&agrave;</td><td>pagheremo</td><td>pagherete</td><td>pagheranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>pagherei</td><td>pagheresti</td><td>pagherebbe</td><td>pagheremmo</td><td>paghereste</td><td>pagherebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>paghi</td><td>paghi</td><td>paghi</td><td>paghiamo</td><td>paghiate</td><td>paghino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>pagassi</td><td>pagassi</td><td>pagasse</td><td>pagassimo</td><td>pagaste</td><td>pagassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">pagare</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">avere or essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">pagando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">pagante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">pagato</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>pago</td><td>paghi</td><td>paga</td><td>paghiamo</td><td>pagate</td><td>pagano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>pagavo</td><td>pagavi</td><td>pagava</td><td>pagavamo</td><td>pagavate</td><td>pagavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>pagai</td><td>pagasti</td><td>pag&ograve;</td><td>pagammo</td><td>pagaste</td><td>pagarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>pagher&ograve;</td><td>pagherai</td><td>pagher&agrave;</td><td>pagheremo</td><td>pagherete</td><td>pagheranno</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>pagherei</td><td>pagheresti</td><td>pagherebbe</td><td>pagheremmo</td><td>paghereste</td><td>pagherebbero</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>paghi</td><td>paghi</td><td>paghi</td><td>paghiamo</td><td>paghiate</td><td>paghino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>pagassi</td><td>pagassi</td><td>pagasse</td><td>pagassimo</td><td>pagaste</td><td>pagassero</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>paga</td><td>paghi</td><td>paghiamo</td><td>pagate</td><td>paghino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">studiare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">studiando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">studiante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">studiato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>studio</td><td>studi</td><td>studia</td><td>studiamo</td><td>studiate</td><td>studiano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>studiavo</td><td>studiavi</td><td>studiava</td><td>studiavamo</td><td>studiavate</td><td>studiavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>studiai</td><td>studiasti</td><td>studi&ograve;</td><td>studiammo</td><td>studiaste</td><td>studiarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>studier&ograve;</td><td>studierai</td><td>studier&agrave;</td><td>studieremo</td><td>studierete</td><td>studieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>studierei</td><td>studieresti</td><td>studierebbe</td><td>studieremmo</td><td>studiereste</td><td>studierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>studi</td><td>studi</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>studiassi</td><td>studiassi</td><td>studiasse</td><td>studiassimo</td><td>studiaste</td><td>studiassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">studiare</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">studiando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">studiante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">studiato</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>studio</td><td>studi</td><td>studia</td><td>studiamo</td><td>studiate</td><td>studiano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>studiavo</td><td>studiavi</td><td>studiava</td><td>studiavamo</td><td>studiavate</td><td>studiavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>studiai</td><td>studiasti</td><td>studi&ograve;</td><td>studiammo</td><td>studiaste</td><td>studiarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>studier&ograve;</td><td>studierai</td><td>studier&agrave;</td><td>studieremo</td><td>studierete</td><td>studieranno</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>studierei</td><td>studieresti</td><td>studierebbe</td><td>studieremmo</td><td>studiereste</td><td>studierebbero</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>studi</td><td>studi</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>studiassi</td><td>studiassi</td><td>studiasse</td><td>studiassimo</td><td>studiaste</td><td>studiassero</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>studia</td><td>studi</td><td>studiamo</td><td>studiate</td><td>studino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">avviare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">avviando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">avviante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">avviato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>avvio</td><td>avvii</td><td>avvia</td><td>avviiamo</td><td>avviate</td><td>avviano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>avviavo</td><td>avviavi</td><td>avviava</td><td>avviavamo</td><td>avviavate</td><td>avviavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>avviai</td><td>avviasti</td><td>avvi&ograve;</td><td>avviammo</td><td>avviaste</td><td>avviarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>avvier&ograve;</td><td>avvierai</td><td>avvier&agrave;</td><td>avvieremo</td><td>avvierete</td><td>avvieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>avvierei</td><td>avvieresti</td><td>avvierebbe</td><td>avvieremmo</td><td>avviereste</td><td>avvierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>avvii</td><td>avvii</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>avviassi</td><td>avviassi</td><td>avviasse</td><td>avviassimo</td><td>avviaste</td><td>avviassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">avviare</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">avviando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">avviante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">avviato</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>avvio</td><td>avvii</td><td>avvia</td><td>avviiamo</td><td>avviate</td><td>avviano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>avviavo</td><td>avviavi</td><td>avviava</td><td>avviavamo</td><td>avviavate</td><td>avviavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>avviai</td><td>avviasti</td><td>avvi&ograve;</td><td>avviammo</td><td>avviaste</td><td>avviarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>avvier&ograve;</td><td>avvierai</td><td>avvier&agrave;</td><td>avvieremo</td><td>avvierete</td><td>avvieranno</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>avvierei</td><td>avvieresti</td><td>avvierebbe</td><td>avvieremmo</td><td>avviereste</td><td>avvierebbero</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>avvii</td><td>avvii</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>avviassi</td><td>avviassi</td><td>avviasse</td><td>avviassimo</td><td>avviaste</td><td>avviassero</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>avvia</td><td>avvii</td><td>avviamo</td><td>avviate</td><td>avviino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">pronunciare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">pronunciando</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">pronunciante</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">pronunciato</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>pronuncio</td><td>pronunci</td><td>pronuncia</td><td>pronunciamo</td><td>pronunciate</td><td>pronunciano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>pronunciavo</td><td>pronunciavi</td><td>pronunciava</td><td>pronunciavamo</td><td>pronunciavate</td><td>pronunciavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>pronunciai</td><td>pronunciasti</td><td>pronunci&ograve;</td><td>pronunciammo</td><td>pronunciaste</td><td>pronunciarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>pronuncer&ograve;</td><td>pronuncerai</td><td>pronuncer&agrave;</td><td>pronunceremo</td><td>pronuncerete</td><td>pronunceranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>pronuncerei</td><td>pronunceresti</td><td>pronuncerebbe</td><td>pronunceremmo</td><td>pronuncereste</td><td>pronuncerebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>pronunci</td><td>pronunci</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>pronunciassi</td><td>pronunciassi</td><td>pronunciasse</td><td>pronunciassimo</td><td>pronunciaste</td><td>pronunciassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">pronunciare</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">pronunciando</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">pronunciante</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">pronunciato</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>pronuncio</td><td>pronunci</td><td>pronuncia</td><td>pronunciamo</td><td>pronunciate</td><td>pronunciano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>pronunciavo</td><td>pronunciavi</td><td>pronunciava</td><td>pronunciavamo</td><td>pronunciavate</td><td>pronunciavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>pronunciai</td><td>pronunciasti</td><td>pronunci&ograve;</td><td>pronunciammo</td><td>pronunciaste</td><td>pronunciarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>pronuncer&ograve;</td><td>pronuncerai</td><td>pronuncer&agrave;</td><td>pronunceremo</td><td>pronuncerete</td><td>pronunceranno</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>pronuncerei</td><td>pronunceresti</td><td>pronuncerebbe</td><td>pronunceremmo</td><td>pronuncereste</td><td>pronuncerebbero</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>pronunci</td><td>pronunci</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>pronunciassi</td><td>pronunciassi</td><td>pronunciasse</td><td>pronunciassimo</td><td>pronunciaste</td><td>pronunciassero</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>pronuncia</td><td>pronunci</td><td>pronunciamo</td><td>pronunciate</td><td>pronuncino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">sedere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">sedendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">sedente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">seduto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>siedo, seggo</td><td>siedi</td><td>siede</td><td>sediamo</td><td>sedete</td><td>siedono, seggono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>sedevo</td><td>sedevi</td><td>sedeva</td><td>sedevamo</td><td>sedevate</td><td>sedevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>sedei</td><td>sedesti</td><td>sedette, sed&eacute;</td><td>sedemmo</td><td>sedeste</td><td>sedettero, sederono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>seder&ograve;, sieder&ograve;</td><td>sederai, siederai</td><td>seder&agrave;, sieder&agrave;</td><td>sederemo, siederemo</td><td>sederete, siederete</td><td>sederanno, siederanno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>sederei, siederei</td><td>sederesti, siederesti</td><td>sederebbe, siederebbe</td><td>sederemmo, siederemmo</td><td>sedereste, siedereste</td><td>sederebbero, siederebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>sieda</td><td>sieda</td><td>sieda</td><td>sediamo</td><td>sediate</td><td>siedano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>sedessi</td><td>sedessi</td><td>sedesse</td><td>sedessimo</td><td>sedeste</td><td>sedessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">sedere</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">sedendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">sedente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">seduto</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>siedo, seggo</td><td>siedi</td><td>siede</td><td>sediamo</td><td>sedete</td><td>siedono, seggono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>sedevo</td><td>sedevi</td><td>sedeva</td><td>sedevamo</td><td>sedevate</td><td>sedevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>sedei</td><td>sedesti</td><td>sedette, sed&eacute;</td><td>sedemmo</td><td>sedeste</td><td>sedettero, sederono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>seder&ograve;, sieder&ograve;</td><td>sederai, siederai</td><td>seder&agrave;, sieder&agrave;</td><td>sederemo, siederemo</td><td>sederete, siederete</td><td>sederanno, siederanno</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>sederei, siederei</td><td>sederesti, siederesti</td><td>sederebbe, siederebbe</td><td>sederemmo, siederemmo</td><td>sedereste, siedereste</td><td>sederebbero, siederebbero</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>sieda</td><td>sieda</td><td>sieda</td><td>sediamo</td><td>sediate</td><td>siedano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>sedessi</td><td>sedessi</td><td>sedesse</td><td>sedessimo</td><td>sedeste</td><td>sedessero</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>siedi</td><td>sieda, segga</td><td>sediamo</td><td>sedete</td><td>siedano, seggano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">persuadere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">persuadendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">persuadente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">persuaso</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</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">imperfect</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">past historic</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">future</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">conditional</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">present</th><td>persuaderei</td><td>persuaderesti</td><td>persuaderebbe</td><td>persuaderemmo</td><td>persuadereste</td><td>persuaderebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>persuada</td><td>persuada</td><td>persuada</td><td>persuadiamo</td><td>persuadiate</td><td>persuadano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>persuadessi</td><td>persuadessi</td><td>persuadesse</td><td>persuadessimo</td><td>persuadeste</td><td>persuadessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">persuadere</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">persuadendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">persuadente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">persuaso</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>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">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>
+<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>persuada</td><td>persuada</td><td>persuada</td><td>persuadiamo</td><td>persuadiate</td><td>persuadano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>persuadessi</td><td>persuadessi</td><td>persuadesse</td><td>persuadessimo</td><td>persuadeste</td><td>persuadessero</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>persuadi</td><td>persuada</td><td>persuadiamo</td><td>persuadete</td><td>persuadano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">abbattere</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">abbattendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">abbattente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">abbattuto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>abbatto</td><td>abbatti</td><td>abbatte</td><td>abbattiamo</td><td>abbattete</td><td>abbattono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>abbattevo</td><td>abbattevi</td><td>abbatteva</td><td>abbattevamo</td><td>abbattevate</td><td>abbattevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>abbattei</td><td>abbattesti</td><td>abbattette, abbatt&eacute;</td><td>abbattemmo</td><td>abbatteste</td><td>abbattettero, abbatterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>abbatter&ograve;</td><td>abbatterai</td><td>abbatter&agrave;</td><td>abbatteremo</td><td>abbatterete</td><td>abbatteranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>abbatterei</td><td>abbatteresti</td><td>abbatterebbe</td><td>abbatteremmo</td><td>abbattereste</td><td>abbatterebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>abbatta</td><td>abbatta</td><td>abbatta</td><td>abbattiamo</td><td>abbattiate</td><td>abbattano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>abbattessi</td><td>abbattessi</td><td>abbattesse</td><td>abbattessimo</td><td>abbatteste</td><td>abbattessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">abbattere</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">abbattendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">abbattente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">abbattuto</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>abbatto</td><td>abbatti</td><td>abbatte</td><td>abbattiamo</td><td>abbattete</td><td>abbattono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>abbattevo</td><td>abbattevi</td><td>abbatteva</td><td>abbattevamo</td><td>abbattevate</td><td>abbattevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>abbattei</td><td>abbattesti</td><td>abbattette, abbatt&eacute;</td><td>abbattemmo</td><td>abbatteste</td><td>abbattettero, abbatterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>abbatter&ograve;</td><td>abbatterai</td><td>abbatter&agrave;</td><td>abbatteremo</td><td>abbatterete</td><td>abbatteranno</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>abbatterei</td><td>abbatteresti</td><td>abbatterebbe</td><td>abbatteremmo</td><td>abbattereste</td><td>abbatterebbero</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>abbatta</td><td>abbatta</td><td>abbatta</td><td>abbattiamo</td><td>abbattiate</td><td>abbattano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>abbattessi</td><td>abbattessi</td><td>abbattesse</td><td>abbattessimo</td><td>abbatteste</td><td>abbattessero</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>abbatti</td><td>abbatta</td><td>abbattiamo</td><td>abbattete</td><td>abbattano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">coprire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">coprendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">coprente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">coperto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>copro</td><td>copri</td><td>copre</td><td>copriamo</td><td>coprite</td><td>coprono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>coprivo</td><td>coprivi</td><td>copriva</td><td>coprivamo</td><td>coprivate</td><td>coprivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>coprii, copersi</td><td>copristi</td><td>copr&igrave;, coperse</td><td>coprimmo</td><td>copriste</td><td>coprirono, copersero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>coprir&ograve;</td><td>coprirai</td><td>coprir&agrave;</td><td>copriremo</td><td>coprirete</td><td>copriranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>coprirei</td><td>copriresti</td><td>coprirebbe</td><td>copriremmo</td><td>coprireste</td><td>coprirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>copra</td><td>copra</td><td>copra</td><td>copriamo</td><td>copriate</td><td>coprano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>coprissi</td><td>coprissi</td><td>coprisse</td><td>coprissimo</td><td>copriste</td><td>coprissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">coprire</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">coprendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">coprente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">coperto</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>copro</td><td>copri</td><td>copre</td><td>copriamo</td><td>coprite</td><td>coprono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>coprivo</td><td>coprivi</td><td>copriva</td><td>coprivamo</td><td>coprivate</td><td>coprivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>coprii, copersi</td><td>copristi</td><td>copr&igrave;, coperse</td><td>coprimmo</td><td>copriste</td><td>coprirono, copersero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>coprir&ograve;</td><td>coprirai</td><td>coprir&agrave;</td><td>copriremo</td><td>coprirete</td><td>copriranno</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>coprirei</td><td>copriresti</td><td>coprirebbe</td><td>copriremmo</td><td>coprireste</td><td>coprirebbero</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>copra</td><td>copra</td><td>copra</td><td>copriamo</td><td>copriate</td><td>coprano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>coprissi</td><td>coprissi</td><td>coprisse</td><td>coprissimo</td><td>copriste</td><td>coprissero</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>copri</td><td>copra</td><td>copriamo</td><td>coprite</td><td>coprano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">preferire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">preferendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">preferente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">preferito</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>preferisco</td><td>preferisci</td><td>preferisce</td><td>preferiamo</td><td>preferite</td><td>preferiscono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>preferivo</td><td>preferivi</td><td>preferiva</td><td>preferivamo</td><td>preferivate</td><td>preferivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>preferii</td><td>preferisti</td><td>prefer&igrave;, prefer&eacute;</td><td>preferimmo</td><td>preferiste</td><td>preferirono, prefererono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>preferir&ograve;</td><td>preferirai</td><td>preferir&agrave;</td><td>preferiremo</td><td>preferirete</td><td>preferiranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>preferirei</td><td>preferiresti</td><td>preferirebbe</td><td>preferiremmo</td><td>preferireste</td><td>preferirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>preferisca</td><td>preferisca</td><td>preferisca</td><td>preferiamo</td><td>preferiate</td><td>preferiscano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>preferissi</td><td>preferissi</td><td>preferisse</td><td>preferissimo</td><td>preferiste</td><td>preferissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">preferire</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">preferendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">preferente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">preferito</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>preferisco</td><td>preferisci</td><td>preferisce</td><td>preferiamo</td><td>preferite</td><td>preferiscono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>preferivo</td><td>preferivi</td><td>preferiva</td><td>preferivamo</td><td>preferivate</td><td>preferivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>preferii</td><td>preferisti</td><td>prefer&igrave;, prefer&eacute;</td><td>preferimmo</td><td>preferiste</td><td>preferirono, prefererono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>preferir&ograve;</td><td>preferirai</td><td>preferir&agrave;</td><td>preferiremo</td><td>preferirete</td><td>preferiranno</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>preferirei</td><td>preferiresti</td><td>preferirebbe</td><td>preferiremmo</td><td>preferireste</td><td>preferirebbero</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>preferisca</td><td>preferisca</td><td>preferisca</td><td>preferiamo</td><td>preferiate</td><td>preferiscano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>preferissi</td><td>preferissi</td><td>preferisse</td><td>preferissimo</td><td>preferiste</td><td>preferissero</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>preferisci</td><td>preferisca</td><td>preferiamo</td><td>preferite</td><td>preferiscano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">produrre</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">producendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">producente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">prodotto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>produco</td><td>produci</td><td>produce</td><td>produciamo</td><td>producete</td><td>producono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>producevo</td><td>producevi</td><td>produceva</td><td>producevamo</td><td>producevate</td><td>producevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>produssi</td><td>producesti</td><td>produsse</td><td>producemmo</td><td>produceste</td><td>produssero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>produrr&ograve;</td><td>produrrai</td><td>produrr&agrave;</td><td>produrremo</td><td>produrrete</td><td>produrranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>produrrei</td><td>produrresti</td><td>produrrebbe</td><td>produrremmo</td><td>produrreste</td><td>produrrebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>produca</td><td>produca</td><td>produca</td><td>produciamo</td><td>produciate</td><td>producano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>producessi</td><td>producessi</td><td>producesse</td><td>producessimo</td><td>produceste</td><td>producessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">produrre</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">producendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">producente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">prodotto</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>produco</td><td>produci</td><td>produce</td><td>produciamo</td><td>producete</td><td>producono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>producevo</td><td>producevi</td><td>produceva</td><td>producevamo</td><td>producevate</td><td>producevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>produssi</td><td>producesti</td><td>produsse</td><td>producemmo</td><td>produceste</td><td>produssero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>produrr&ograve;</td><td>produrrai</td><td>produrr&agrave;</td><td>produrremo</td><td>produrrete</td><td>produrranno</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>produrrei</td><td>produrresti</td><td>produrrebbe</td><td>produrremmo</td><td>produrreste</td><td>produrrebbero</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>produca</td><td>produca</td><td>produca</td><td>produciamo</td><td>produciate</td><td>producano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>producessi</td><td>producessi</td><td>producesse</td><td>producessimo</td><td>produceste</td><td>producessero</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>produci</td><td>produca</td><td>produciamo</td><td>producete</td><td>producano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">lavarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">lavandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">lavantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">lavato, lavatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi lavo</td><td>ti lavi</td><td>si lava</td><td>ci laviamo</td><td>vi lavate</td><td>si lavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi lavavo</td><td>ti lavavi</td><td>si lavava</td><td>ci lavavamo</td><td>vi lavavate</td><td>si lavavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi lavai</td><td>ti lavasti</td><td>si lav&ograve;</td><td>ci lavammo</td><td>vi lavaste</td><td>si lavarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi laver&ograve;</td><td>ti laverai</td><td>si laver&agrave;</td><td>ci laveremo</td><td>vi laverete</td><td>si laveranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi laverei</td><td>ti laveresti</td><td>si laverebbe</td><td>ci laveremmo</td><td>vi lavereste</td><td>si laverebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi lavi</td><td>ti lavi</td><td>si lavi</td><td>ci laviamo</td><td>vi laviate</td><td>si lavino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi lavassi</td><td>ti lavassi</td><td>si lavasse</td><td>ci lavassimo</td><td>vi lavaste</td><td>si lavassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">lavarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">lavandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">lavantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">lavato, lavatosi</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>mi lavo</td><td>ti lavi</td><td>si lava</td><td>ci laviamo</td><td>vi lavate</td><td>si lavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi lavavo</td><td>ti lavavi</td><td>si lavava</td><td>ci lavavamo</td><td>vi lavavate</td><td>si lavavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi lavai</td><td>ti lavasti</td><td>si lav&ograve;</td><td>ci lavammo</td><td>vi lavaste</td><td>si lavarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi laver&ograve;</td><td>ti laverai</td><td>si laver&agrave;</td><td>ci laveremo</td><td>vi laverete</td><td>si laveranno</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>mi laverei</td><td>ti laveresti</td><td>si laverebbe</td><td>ci laveremmo</td><td>vi lavereste</td><td>si laverebbero</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>mi lavi</td><td>ti lavi</td><td>si lavi</td><td>ci laviamo</td><td>vi laviate</td><td>si lavino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi lavassi</td><td>ti lavassi</td><td>si lavasse</td><td>ci lavassimo</td><td>vi lavaste</td><td>si lavassero</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>lavati</td><td>si lavi</td><td>laviamoci</td><td>lavatevi</td><td>si lavino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">abbattersi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">abbattendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">abbattentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">abbattuto, abbattutosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi abbatto</td><td>ti abbatti</td><td>si abbatte</td><td>ci abbattiamo</td><td>vi abbattete</td><td>si abbattono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi abbattevo</td><td>ti abbattevi</td><td>si abbatteva</td><td>ci abbattevamo</td><td>vi abbattevate</td><td>si abbattevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi abbattei</td><td>ti abbattesti</td><td>si abbattette, abbatt&eacute;</td><td>ci abbattemmo</td><td>vi abbatteste</td><td>si abbattettero, abbatterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi abbatter&ograve;</td><td>ti abbatterai</td><td>si abbatter&agrave;</td><td>ci abbatteremo</td><td>vi abbatterete</td><td>si abbatteranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi abbatterei</td><td>ti abbatteresti</td><td>si abbatterebbe</td><td>ci abbatteremmo</td><td>vi abbattereste</td><td>si abbatterebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi abbatta</td><td>ti abbatta</td><td>si abbatta</td><td>ci abbattiamo</td><td>vi abbattiate</td><td>si abbattano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi abbattessi</td><td>ti abbattessi</td><td>si abbattesse</td><td>ci abbattessimo</td><td>vi abbatteste</td><td>si abbattessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">abbattersi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">abbattendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">abbattentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">abbattuto, abbattutosi</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>mi abbatto</td><td>ti abbatti</td><td>si abbatte</td><td>ci abbattiamo</td><td>vi abbattete</td><td>si abbattono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi abbattevo</td><td>ti abbattevi</td><td>si abbatteva</td><td>ci abbattevamo</td><td>vi abbattevate</td><td>si abbattevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi abbattei</td><td>ti abbattesti</td><td>si abbattette, abbatt&eacute;</td><td>ci abbattemmo</td><td>vi abbatteste</td><td>si abbattettero, abbatterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi abbatter&ograve;</td><td>ti abbatterai</td><td>si abbatter&agrave;</td><td>ci abbatteremo</td><td>vi abbatterete</td><td>si abbatteranno</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>mi abbatterei</td><td>ti abbatteresti</td><td>si abbatterebbe</td><td>ci abbatteremmo</td><td>vi abbattereste</td><td>si abbatterebbero</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>mi abbatta</td><td>ti abbatta</td><td>si abbatta</td><td>ci abbattiamo</td><td>vi abbattiate</td><td>si abbattano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi abbattessi</td><td>ti abbattessi</td><td>si abbattesse</td><td>ci abbattessimo</td><td>vi abbatteste</td><td>si abbattessero</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>abbattiti</td><td>si abbatta</td><td>abbattiamoci</td><td>abbattetevi</td><td>si abbattano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">annoiarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">annoiandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">annoiantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">annoiato, annoiatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi annoio</td><td>ti annoi</td><td>si annoia</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoiano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi annoiavo</td><td>ti annoiavi</td><td>si annoiava</td><td>ci annoiavamo</td><td>vi annoiavate</td><td>si annoiavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi annoiai</td><td>ti annoiasti</td><td>si annoi&ograve;</td><td>ci annoiammo</td><td>vi annoiaste</td><td>si annoiarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi annoier&ograve;</td><td>ti annoierai</td><td>si annoier&agrave;</td><td>ci annoieremo</td><td>vi annoierete</td><td>si annoieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi annoierei</td><td>ti annoieresti</td><td>si annoierebbe</td><td>ci annoieremmo</td><td>vi annoiereste</td><td>si annoierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi annoi</td><td>ti annoi</td><td>si annoi</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi annoiassi</td><td>ti annoiassi</td><td>si annoiasse</td><td>ci annoiassimo</td><td>vi annoiaste</td><td>si annoiassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">annoiarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">annoiandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">annoiantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">annoiato, annoiatosi</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>mi annoio</td><td>ti annoi</td><td>si annoia</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoiano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi annoiavo</td><td>ti annoiavi</td><td>si annoiava</td><td>ci annoiavamo</td><td>vi annoiavate</td><td>si annoiavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi annoiai</td><td>ti annoiasti</td><td>si annoi&ograve;</td><td>ci annoiammo</td><td>vi annoiaste</td><td>si annoiarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi annoier&ograve;</td><td>ti annoierai</td><td>si annoier&agrave;</td><td>ci annoieremo</td><td>vi annoierete</td><td>si annoieranno</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>mi annoierei</td><td>ti annoieresti</td><td>si annoierebbe</td><td>ci annoieremmo</td><td>vi annoiereste</td><td>si annoierebbero</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>mi annoi</td><td>ti annoi</td><td>si annoi</td><td>ci annoiamo</td><td>vi annoiate</td><td>si annoino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi annoiassi</td><td>ti annoiassi</td><td>si annoiasse</td><td>ci annoiassimo</td><td>vi annoiaste</td><td>si annoiassero</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>annoiati</td><td>si annoi</td><td>annoiamoci</td><td>annoiatevi</td><td>si annoino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">vestirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">vestendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">vestentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">vestito, vestitosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi vesto</td><td>ti vesti</td><td>si veste</td><td>ci vestiamo</td><td>vi vestite</td><td>si vestono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi vestivo</td><td>ti vestivi</td><td>si vestiva</td><td>ci vestivamo</td><td>vi vestivate</td><td>si vestivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi vestii</td><td>ti vestisti</td><td>si vest&igrave;, vest&eacute;</td><td>ci vestimmo</td><td>vi vestiste</td><td>si vestirono, vesterono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi vestir&ograve;</td><td>ti vestirai</td><td>si vestir&agrave;</td><td>ci vestiremo</td><td>vi vestirete</td><td>si vestiranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi vestirei</td><td>ti vestiresti</td><td>si vestirebbe</td><td>ci vestiremmo</td><td>vi vestireste</td><td>si vestirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi vesta</td><td>ti vesta</td><td>si vesta</td><td>ci vestiamo</td><td>vi vestiate</td><td>si vestano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi vestissi</td><td>ti vestissi</td><td>si vestisse</td><td>ci vestissimo</td><td>vi vestiste</td><td>si vestissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">coniugarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">coniugandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">coniugantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">coniugato, coniugatosi</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>mi coniugo</td><td>ti coniughi</td><td>si coniuga</td><td>ci coniughiamo</td><td>vi coniugate</td><td>si coniugano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi coniugavo</td><td>ti coniugavi</td><td>si coniugava</td><td>ci coniugavamo</td><td>vi coniugavate</td><td>si coniugavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi coniugai</td><td>ti coniugasti</td><td>si coniug&ograve;</td><td>ci coniugammo</td><td>vi coniugaste</td><td>si coniugarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi coniugher&ograve;</td><td>ti coniugherai</td><td>si coniugher&agrave;</td><td>ci coniugheremo</td><td>vi coniugherete</td><td>si coniugheranno</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>mi coniugherei</td><td>ti coniugheresti</td><td>si coniugherebbe</td><td>ci coniugheremmo</td><td>vi coniughereste</td><td>si coniugherebbero</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>mi coniughi</td><td>ti coniughi</td><td>si coniughi</td><td>ci coniughiamo</td><td>vi coniughiate</td><td>si coniughino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi coniugassi</td><td>ti coniugassi</td><td>si coniugasse</td><td>ci coniugassimo</td><td>vi coniugaste</td><td>si coniugassero</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>coniugati</td><td>si coniughi</td><td>coniughiamoci</td><td>coniugatevi</td><td>si coniughino</td></tr>
+</table>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">affacciarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">affacciandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">affacciantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">affacciato, affacciatosi</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>mi affaccio</td><td>ti affacci</td><td>si affaccia</td><td>ci affacciamo</td><td>vi affacciate</td><td>si affacciano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi affacciavo</td><td>ti affacciavi</td><td>si affacciava</td><td>ci affacciavamo</td><td>vi affacciavate</td><td>si affacciavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi affacciai</td><td>ti affacciasti</td><td>si affacci&ograve;</td><td>ci affacciammo</td><td>vi affacciaste</td><td>si affacciarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi affaccer&ograve;</td><td>ti affaccerai</td><td>si affaccer&agrave;</td><td>ci affacceremo</td><td>vi affaccerete</td><td>si affacceranno</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>mi affaccerei</td><td>ti affacceresti</td><td>si affaccerebbe</td><td>ci affacceremmo</td><td>vi affaccereste</td><td>si affaccerebbero</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>mi affacci</td><td>ti affacci</td><td>si affacci</td><td>ci affacciamo</td><td>vi affacciate</td><td>si affaccino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi affacciassi</td><td>ti affacciassi</td><td>si affacciasse</td><td>ci affacciassimo</td><td>vi affacciaste</td><td>si affacciassero</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>affacciati</td><td>si affacci</td><td>affacciamoci</td><td>affacciatevi</td><td>si affaccino</td></tr>
+</table>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">vestirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">vestendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">vestentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">vestito, vestitosi</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>mi vesto</td><td>ti vesti</td><td>si veste</td><td>ci vestiamo</td><td>vi vestite</td><td>si vestono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi vestivo</td><td>ti vestivi</td><td>si vestiva</td><td>ci vestivamo</td><td>vi vestivate</td><td>si vestivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi vestii</td><td>ti vestisti</td><td>si vest&igrave;, vest&eacute;</td><td>ci vestimmo</td><td>vi vestiste</td><td>si vestirono, vesterono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi vestir&ograve;</td><td>ti vestirai</td><td>si vestir&agrave;</td><td>ci vestiremo</td><td>vi vestirete</td><td>si vestiranno</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>mi vestirei</td><td>ti vestiresti</td><td>si vestirebbe</td><td>ci vestiremmo</td><td>vi vestireste</td><td>si vestirebbero</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>mi vesta</td><td>ti vesta</td><td>si vesta</td><td>ci vestiamo</td><td>vi vestiate</td><td>si vestano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi vestissi</td><td>ti vestissi</td><td>si vestisse</td><td>ci vestissimo</td><td>vi vestiste</td><td>si vestissero</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>vestiti</td><td>si vesta</td><td>vestiamoci</td><td>vestitevi</td><td>si vestano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ferirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">ferendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">ferentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ferito, feritosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi ferisco</td><td>ti ferisci</td><td>si ferisce</td><td>ci feriamo</td><td>vi ferite</td><td>si feriscono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi ferivo</td><td>ti ferivi</td><td>si feriva</td><td>ci ferivamo</td><td>vi ferivate</td><td>si ferivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi ferii</td><td>ti feristi</td><td>si fer&igrave;, fer&eacute;</td><td>ci ferimmo</td><td>vi feriste</td><td>si ferirono, fererono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi ferir&ograve;</td><td>ti ferirai</td><td>si ferir&agrave;</td><td>ci feriremo</td><td>vi ferirete</td><td>si feriranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi ferirei</td><td>ti feriresti</td><td>si ferirebbe</td><td>ci feriremmo</td><td>vi ferireste</td><td>si ferirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi ferisca</td><td>ti ferisca</td><td>si ferisca</td><td>ci feriamo</td><td>vi feriate</td><td>si feriscano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi ferissi</td><td>ti ferissi</td><td>si ferisse</td><td>ci ferissimo</td><td>vi feriste</td><td>si ferissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ferirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1"></td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">ferendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">ferentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ferito, feritosi</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>mi ferisco</td><td>ti ferisci</td><td>si ferisce</td><td>ci feriamo</td><td>vi ferite</td><td>si feriscono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi ferivo</td><td>ti ferivi</td><td>si feriva</td><td>ci ferivamo</td><td>vi ferivate</td><td>si ferivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi ferii</td><td>ti feristi</td><td>si fer&igrave;, fer&eacute;</td><td>ci ferimmo</td><td>vi feriste</td><td>si ferirono, fererono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi ferir&ograve;</td><td>ti ferirai</td><td>si ferir&agrave;</td><td>ci feriremo</td><td>vi ferirete</td><td>si feriranno</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>mi ferirei</td><td>ti feriresti</td><td>si ferirebbe</td><td>ci feriremmo</td><td>vi ferireste</td><td>si ferirebbero</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>mi ferisca</td><td>ti ferisca</td><td>si ferisca</td><td>ci feriamo</td><td>vi feriate</td><td>si feriscano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi ferissi</td><td>ti ferissi</td><td>si ferisse</td><td>ci ferissimo</td><td>vi feriste</td><td>si ferissero</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>ferisciti</td><td>si ferisca</td><td>feriamoci</td><td>feritevi</td><td>si feriscano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ridursi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">riducendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">riducentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ridotto, ridottosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi riduco</td><td>ti riduci</td><td>si riduce</td><td>ci riduciamo</td><td>vi riducete</td><td>si riducono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi riducevo</td><td>ti riducevi</td><td>si riduceva</td><td>ci riducevamo</td><td>vi riducevate</td><td>si riducevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi ridussi</td><td>ti riducesti</td><td>si ridusse</td><td>ci riducemmo</td><td>vi riduceste</td><td>si ridussero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi ridurr&ograve;</td><td>ti ridurrai</td><td>si ridurr&agrave;</td><td>ci ridurremo</td><td>vi ridurrete</td><td>si ridurranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi ridurrei</td><td>ti ridurresti</td><td>si ridurrebbe</td><td>ci ridurremmo</td><td>vi ridurreste</td><td>si ridurrebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi riduca</td><td>ti riduca</td><td>si riduca</td><td>ci riduciamo</td><td>vi riduciate</td><td>si riducano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi riducessi</td><td>ti riducessi</td><td>si riducesse</td><td>ci riducessimo</td><td>vi riduceste</td><td>si riducessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ridursi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">riducendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">riducentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ridotto, ridottosi</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>mi riduco</td><td>ti riduci</td><td>si riduce</td><td>ci riduciamo</td><td>vi riducete</td><td>si riducono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi riducevo</td><td>ti riducevi</td><td>si riduceva</td><td>ci riducevamo</td><td>vi riducevate</td><td>si riducevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi ridussi</td><td>ti riducesti</td><td>si ridusse</td><td>ci riducemmo</td><td>vi riduceste</td><td>si ridussero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi ridurr&ograve;</td><td>ti ridurrai</td><td>si ridurr&agrave;</td><td>ci ridurremo</td><td>vi ridurrete</td><td>si ridurranno</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>mi ridurrei</td><td>ti ridurresti</td><td>si ridurrebbe</td><td>ci ridurremmo</td><td>vi ridurreste</td><td>si ridurrebbero</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>mi riduca</td><td>ti riduca</td><td>si riduca</td><td>ci riduciamo</td><td>vi riduciate</td><td>si riducano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi riducessi</td><td>ti riducessi</td><td>si riducesse</td><td>ci riducessimo</td><td>vi riduceste</td><td>si riducessero</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>riduciti</td><td>siriduca</td><td>riduciamoci</td><td>riducetevi</td><td>siriducano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">ricucire</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">ricucendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">ricucente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">ricucito</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>ricucio</td><td>ricuci</td><td>ricuce</td><td>ricuciamo</td><td>ricucite</td><td>ricuciono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>ricucivo</td><td>ricucivi</td><td>ricuciva</td><td>ricucivamo</td><td>ricucivate</td><td>ricucivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>ricucii</td><td>ricucisti</td><td>ricuc&igrave;, ricuc&eacute;</td><td>ricucimmo</td><td>ricuciste</td><td>ricucirono, ricucerono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>ricucir&ograve;</td><td>ricucirai</td><td>ricucir&agrave;</td><td>ricuciremo</td><td>ricucirete</td><td>ricuciranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>ricucirei</td><td>ricuciresti</td><td>ricucirebbe</td><td>ricuciremmo</td><td>ricucireste</td><td>ricucirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>ricucia</td><td>ricucia</td><td>ricucia</td><td>ricuciamo</td><td>ricuciate</td><td>ricuciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>ricucissi</td><td>ricucissi</td><td>ricucisse</td><td>ricucissimo</td><td>ricuciste</td><td>ricucissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">ricucire</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">ricucendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">ricucente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">ricucito</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>ricucio</td><td>ricuci</td><td>ricuce</td><td>ricuciamo</td><td>ricucite</td><td>ricuciono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>ricucivo</td><td>ricucivi</td><td>ricuciva</td><td>ricucivamo</td><td>ricucivate</td><td>ricucivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>ricucii</td><td>ricucisti</td><td>ricuc&igrave;, ricuc&eacute;</td><td>ricucimmo</td><td>ricuciste</td><td>ricucirono, ricucerono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>ricucir&ograve;</td><td>ricucirai</td><td>ricucir&agrave;</td><td>ricuciremo</td><td>ricucirete</td><td>ricuciranno</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>ricucirei</td><td>ricuciresti</td><td>ricucirebbe</td><td>ricuciremmo</td><td>ricucireste</td><td>ricucirebbero</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>ricucia</td><td>ricucia</td><td>ricucia</td><td>ricuciamo</td><td>ricuciate</td><td>ricuciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>ricucissi</td><td>ricucissi</td><td>ricucisse</td><td>ricucissimo</td><td>ricuciste</td><td>ricucissero</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>ricuci</td><td>ricucia</td><td>ricuciamo</td><td>ricucite</td><td>ricuciano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">riavviarsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">riavviandosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">riavviantesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">riavviato, riavviatosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi riavvio</td><td>ti riavvii</td><td>si riavvia</td><td>ci riavviiamo</td><td>vi riavviate</td><td>si riavviano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi riavviavo</td><td>ti riavviavi</td><td>si riavviava</td><td>ci riavviavamo</td><td>vi riavviavate</td><td>si riavviavano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi riavviai</td><td>ti riavviasti</td><td>si riavvi&ograve;</td><td>ci riavviammo</td><td>vi riavviaste</td><td>si riavviarono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi riavvier&ograve;</td><td>ti riavvierai</td><td>si riavvier&agrave;</td><td>ci riavvieremo</td><td>vi riavvierete</td><td>si riavvieranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi riavvierei</td><td>ti riavvieresti</td><td>si riavvierebbe</td><td>ci riavvieremmo</td><td>vi riavviereste</td><td>si riavvierebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi riavvii</td><td>ti riavvii</td><td>si riavvii</td><td>ci riavviamo</td><td>vi riavviate</td><td>si riavviino</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi riavviassi</td><td>ti riavviassi</td><td>si riavviasse</td><td>ci riavviassimo</td><td>vi riavviaste</td><td>si riavviassero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">riavviarsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">riavviandosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">riavviantesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">riavviato, riavviatosi</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>mi riavvio</td><td>ti riavvii</td><td>si riavvia</td><td>ci riavviiamo</td><td>vi riavviate</td><td>si riavviano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi riavviavo</td><td>ti riavviavi</td><td>si riavviava</td><td>ci riavviavamo</td><td>vi riavviavate</td><td>si riavviavano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi riavviai</td><td>ti riavviasti</td><td>si riavvi&ograve;</td><td>ci riavviammo</td><td>vi riavviaste</td><td>si riavviarono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi riavvier&ograve;</td><td>ti riavvierai</td><td>si riavvier&agrave;</td><td>ci riavvieremo</td><td>vi riavvierete</td><td>si riavvieranno</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>mi riavvierei</td><td>ti riavvieresti</td><td>si riavvierebbe</td><td>ci riavvieremmo</td><td>vi riavviereste</td><td>si riavvierebbero</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>mi riavvii</td><td>ti riavvii</td><td>si riavvii</td><td>ci riavviamo</td><td>vi riavviate</td><td>si riavviino</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi riavviassi</td><td>ti riavviassi</td><td>si riavviasse</td><td>ci riavviassimo</td><td>vi riavviaste</td><td>si riavviassero</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>riavviati</td><td>si riavvii</td><td>riavviamoci</td><td>riavviatevi</td><td>si riavviino</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">putrefare</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">avere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">putrefacendo</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">putrefacente</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">putrefatto</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>putrefaccio, putref&ograve;</td><td>putrefai</td><td>putref&agrave;</td><td>putrefacciamo</td><td>putrefate</td><td>putrefanno</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>putrefacevo</td><td>putrefacevi</td><td>putrefaceva</td><td>putrefacevamo</td><td>putrefacevate</td><td>putrefacevano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>putrefeci</td><td>putrefacesti</td><td>putrefece</td><td>putrefacemmo</td><td>putrefaceste</td><td>putrefecero</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>putrefar&ograve;</td><td>putrefarai</td><td>putrefar&agrave;</td><td>putrefaremo</td><td>putrefarete</td><td>putrefaranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>putrefarei</td><td>putrefaresti</td><td>putrefarebbe</td><td>putrefaremmo</td><td>putrefareste</td><td>putrefarebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>putrefaccia</td><td>putrefaccia</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefacciate</td><td>putrefacciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>putrefacessi</td><td>putrefacessi</td><td>putrefacesse</td><td>putrefacessimo</td><td>putrefaceste</td><td>putrefacessero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">putrefare</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">putrefacendo</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">putrefacente</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">putrefatto</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>putrefaccio, putref&ograve;</td><td>putrefai</td><td>putref&agrave;</td><td>putrefacciamo</td><td>putrefate</td><td>putrefanno</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>putrefacevo</td><td>putrefacevi</td><td>putrefaceva</td><td>putrefacevamo</td><td>putrefacevate</td><td>putrefacevano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>putrefeci</td><td>putrefacesti</td><td>putrefece</td><td>putrefacemmo</td><td>putrefaceste</td><td>putrefecero</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>putrefar&ograve;</td><td>putrefarai</td><td>putrefar&agrave;</td><td>putrefaremo</td><td>putrefarete</td><td>putrefaranno</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>putrefarei</td><td>putrefaresti</td><td>putrefarebbe</td><td>putrefaremmo</td><td>putrefareste</td><td>putrefarebbero</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>putrefaccia</td><td>putrefaccia</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefacciate</td><td>putrefacciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>putrefacessi</td><td>putrefacessi</td><td>putrefacesse</td><td>putrefacessimo</td><td>putrefaceste</td><td>putrefacessero</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>putrefa</td><td>putrefaccia</td><td>putrefacciamo</td><td>putrefate</td><td>putrefacciano</td></tr>
 </table>
-<table style="background:#F0F0F0;border-collapse:separate;border-spacing:2px"><tr><th colspan="1" style="background:#e2e4c0">infinitive</th><td colspan="1">cucirsi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">auxiliary verb</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerund</th><td colspan="1">cucendosi</td></tr>
-<tr><th colspan="1" style="background:#e2e4c0">present participle</th><td colspan="1">cucentesi</td><th colspan="1" style="background:#e2e4c0">past participle</th><td colspan="1">cucito, cucitosi</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">indicative</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">present</th><td>mi cucio</td><td>ti cuci</td><td>si cuce</td><td>ci cuciamo</td><td>vi cucite</td><td>si cuciono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">imperfect</th><td>mi cucivo</td><td>ti cucivi</td><td>si cuciva</td><td>ci cucivamo</td><td>vi cucivate</td><td>si cucivano</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">past historic</th><td>mi cucii</td><td>ti cucisti</td><td>si cuc&igrave;, cuc&eacute;</td><td>ci cucimmo</td><td>vi cuciste</td><td>si cucirono, cucerono</td></tr>
-<tr><th colspan="1" style="background:#c0cfe4">future</th><td>mi cucir&ograve;</td><td>ti cucirai</td><td>si cucir&agrave;</td><td>ci cuciremo</td><td>vi cucirete</td><td>si cuciranno</td></tr>
-<tr><th colspan="1" style="background:#c0d8e4">conditional</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">present</th><td>mi cucirei</td><td>ti cuciresti</td><td>si cucirebbe</td><td>ci cuciremmo</td><td>vi cucireste</td><td>si cucirebbero</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">subjuntive</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">present</th><td>mi cucia</td><td>ti cucia</td><td>si cucia</td><td>ci cuciamo</td><td>vi cuciate</td><td>si cuciano</td></tr>
-<tr><th colspan="1" style="background:#c0e4c0">imperfect</th><td>mi cucissi</td><td>ti cucissi</td><td>si cucisse</td><td>ci cucissimo</td><td>vi cuciste</td><td>si cucissero</td></tr>
-<tr><th colspan="1" style="background:#e4d4c0">imperative</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>
+<table style="background:#F0F0F0"><tr><th colspan="1" style="background:#e2e4c0">infinito</th><td colspan="1">cucirsi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">verbo ausiliare</th><td colspan="1">essere</td><th colspan="1" style="background:#e2e4c0">gerundio</th><td colspan="1">cucendosi</td></tr>
+<tr><th colspan="1" style="background:#e2e4c0">participio presente</th><td colspan="1">cucentesi</td><th colspan="1" style="background:#e2e4c0">participio passato</th><td colspan="1">cucito, cucitosi</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>mi cucio</td><td>ti cuci</td><td>si cuce</td><td>ci cuciamo</td><td>vi cucite</td><td>si cuciono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">imperfetto</th><td>mi cucivo</td><td>ti cucivi</td><td>si cuciva</td><td>ci cucivamo</td><td>vi cucivate</td><td>si cucivano</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">passato remoto</th><td>mi cucii</td><td>ti cucisti</td><td>si cuc&igrave;, cuc&eacute;</td><td>ci cucimmo</td><td>vi cuciste</td><td>si cucirono, cucerono</td></tr>
+<tr><th colspan="1" style="background:#c0cfe4">futuro</th><td>mi cucir&ograve;</td><td>ti cucirai</td><td>si cucir&agrave;</td><td>ci cuciremo</td><td>vi cucirete</td><td>si cuciranno</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>mi cucirei</td><td>ti cuciresti</td><td>si cucirebbe</td><td>ci cuciremmo</td><td>vi cucireste</td><td>si cucirebbero</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>mi cucia</td><td>ti cucia</td><td>si cucia</td><td>ci cuciamo</td><td>vi cuciate</td><td>si cuciano</td></tr>
+<tr><th colspan="1" style="background:#c0e4c0">imperfetto</th><td>mi cucissi</td><td>ti cucissi</td><td>si cucisse</td><td>ci cucissimo</td><td>vi cuciste</td><td>si cucissero</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>cuciti</td><td>si cucia</td><td>cuciamoci</td><td>cucitevi</td><td>si cuciano</td></tr>
 </table>
 >>>
+===esse===
+HtmlEntry (shortened): dummyTitle
+===essi===
+HtmlEntry (shortened): dummyTitle
+===feré===
+HtmlEntry (shortened): dummyTitle
+===ferendosi===
+HtmlEntry (shortened): dummyTitle
+===ferentesi===
+HtmlEntry (shortened): dummyTitle
+===fererono===
+HtmlEntry (shortened): dummyTitle
+===ferì===
+HtmlEntry (shortened): dummyTitle
+===feriamo===
+HtmlEntry (shortened): dummyTitle
+===feriamoci===
+HtmlEntry (shortened): dummyTitle
+===feriate===
+HtmlEntry (shortened): dummyTitle
+===ferii===
+HtmlEntry (shortened): dummyTitle
+===ferimmo===
+HtmlEntry (shortened): dummyTitle
+===ferirà===
+HtmlEntry (shortened): dummyTitle
+===ferirai===
+HtmlEntry (shortened): dummyTitle
+===feriranno===
+HtmlEntry (shortened): dummyTitle
+===ferirebbe===
+HtmlEntry (shortened): dummyTitle
+===ferirebbero===
+HtmlEntry (shortened): dummyTitle
+===ferirei===
+HtmlEntry (shortened): dummyTitle
+===feriremmo===
+HtmlEntry (shortened): dummyTitle
+===feriremo===
+HtmlEntry (shortened): dummyTitle
+===ferireste===
+HtmlEntry (shortened): dummyTitle
+===feriresti===
+HtmlEntry (shortened): dummyTitle
+===ferirete===
+HtmlEntry (shortened): dummyTitle
+===ferirò===
+HtmlEntry (shortened): dummyTitle
+===ferirono===
+HtmlEntry (shortened): dummyTitle
+===ferisca===
+HtmlEntry (shortened): dummyTitle
+===feriscano===
+HtmlEntry (shortened): dummyTitle
+===ferisce===
+HtmlEntry (shortened): dummyTitle
+===ferisci===
+HtmlEntry (shortened): dummyTitle
+===ferisciti===
+HtmlEntry (shortened): dummyTitle
+===ferisco===
+HtmlEntry (shortened): dummyTitle
+===feriscono===
+HtmlEntry (shortened): dummyTitle
+===ferisse===
+HtmlEntry (shortened): dummyTitle
+===ferissero===
+HtmlEntry (shortened): dummyTitle
+===ferissi===
+HtmlEntry (shortened): dummyTitle
+===ferissimo===
+HtmlEntry (shortened): dummyTitle
+===feriste===
+HtmlEntry (shortened): dummyTitle
+===feristi===
+HtmlEntry (shortened): dummyTitle
+===ferite===
+HtmlEntry (shortened): dummyTitle
+===feritevi===
+HtmlEntry (shortened): dummyTitle
+===ferito===
+HtmlEntry (shortened): dummyTitle
+===feritosi===
+HtmlEntry (shortened): dummyTitle
+===feriva===
+HtmlEntry (shortened): dummyTitle
+===ferivamo===
+HtmlEntry (shortened): dummyTitle
+===ferivano===
+HtmlEntry (shortened): dummyTitle
+===ferivate===
+HtmlEntry (shortened): dummyTitle
+===ferivi===
+HtmlEntry (shortened): dummyTitle
+===ferivo===
+HtmlEntry (shortened): dummyTitle
+===io===
+HtmlEntry (shortened): dummyTitle
+===lava===
+HtmlEntry (shortened): dummyTitle
+===lavai===
+HtmlEntry (shortened): dummyTitle
+===lavammo===
+HtmlEntry (shortened): dummyTitle
+===lavandosi===
+HtmlEntry (shortened): dummyTitle
+===lavano===
+HtmlEntry (shortened): dummyTitle
+===lavantesi===
+HtmlEntry (shortened): dummyTitle
+===lavarono===
+HtmlEntry (shortened): dummyTitle
+===lavasse===
+HtmlEntry (shortened): dummyTitle
+===lavassero===
+HtmlEntry (shortened): dummyTitle
+===lavassi===
+HtmlEntry (shortened): dummyTitle
+===lavassimo===
+HtmlEntry (shortened): dummyTitle
+===lavaste===
+HtmlEntry (shortened): dummyTitle
+===lavasti===
+HtmlEntry (shortened): dummyTitle
+===lavate===
+HtmlEntry (shortened): dummyTitle
+===lavatevi===
+HtmlEntry (shortened): dummyTitle
+===lavati===
+HtmlEntry (shortened): dummyTitle
+===lavato===
+HtmlEntry (shortened): dummyTitle
+===lavatosi===
+HtmlEntry (shortened): dummyTitle
+===lavava===
+HtmlEntry (shortened): dummyTitle
+===lavavamo===
+HtmlEntry (shortened): dummyTitle
+===lavavano===
+HtmlEntry (shortened): dummyTitle
+===lavavate===
+HtmlEntry (shortened): dummyTitle
+===lavavi===
+HtmlEntry (shortened): dummyTitle
+===lavavo===
+HtmlEntry (shortened): dummyTitle
+===laverà===
+HtmlEntry (shortened): dummyTitle
+===laverai===
+HtmlEntry (shortened): dummyTitle
+===laveranno===
+HtmlEntry (shortened): dummyTitle
+===laverebbe===
+HtmlEntry (shortened): dummyTitle
+===laverebbero===
+HtmlEntry (shortened): dummyTitle
+===laverei===
+HtmlEntry (shortened): dummyTitle
+===laveremmo===
+HtmlEntry (shortened): dummyTitle
+===laveremo===
+HtmlEntry (shortened): dummyTitle
+===lavereste===
+HtmlEntry (shortened): dummyTitle
+===laveresti===
+HtmlEntry (shortened): dummyTitle
+===laverete===
+HtmlEntry (shortened): dummyTitle
+===laverò===
+HtmlEntry (shortened): dummyTitle
+===lavi===
+HtmlEntry (shortened): dummyTitle
+===laviamo===
+HtmlEntry (shortened): dummyTitle
+===laviamoci===
+HtmlEntry (shortened): dummyTitle
+===laviate===
+HtmlEntry (shortened): dummyTitle
+===lavino===
+HtmlEntry (shortened): dummyTitle
+===lavo===
+HtmlEntry (shortened): dummyTitle
+===lavò===
+HtmlEntry (shortened): dummyTitle
+===lei===
+HtmlEntry (shortened): dummyTitle
+===lui===
+HtmlEntry (shortened): dummyTitle
+===noi===
+HtmlEntry (shortened): dummyTitle
+===paga===
+HtmlEntry (shortened): dummyTitle
+===pagai===
+HtmlEntry (shortened): dummyTitle
+===pagammo===
+HtmlEntry (shortened): dummyTitle
+===pagando===
+HtmlEntry (shortened): dummyTitle
+===pagano===
+HtmlEntry (shortened): dummyTitle
+===pagante===
+HtmlEntry (shortened): dummyTitle
+===pagarono===
+HtmlEntry (shortened): dummyTitle
+===pagasse===
+HtmlEntry (shortened): dummyTitle
+===pagassero===
+HtmlEntry (shortened): dummyTitle
+===pagassi===
+HtmlEntry (shortened): dummyTitle
+===pagassimo===
+HtmlEntry (shortened): dummyTitle
+===pagaste===
+HtmlEntry (shortened): dummyTitle
+===pagasti===
+HtmlEntry (shortened): dummyTitle
+===pagate===
+HtmlEntry (shortened): dummyTitle
+===pagato===
+HtmlEntry (shortened): dummyTitle
+===pagava===
+HtmlEntry (shortened): dummyTitle
+===pagavamo===
+HtmlEntry (shortened): dummyTitle
+===pagavano===
+HtmlEntry (shortened): dummyTitle
+===pagavate===
+HtmlEntry (shortened): dummyTitle
+===pagavi===
+HtmlEntry (shortened): dummyTitle
+===pagavo===
+HtmlEntry (shortened): dummyTitle
+===pagherà===
+HtmlEntry (shortened): dummyTitle
+===pagherai===
+HtmlEntry (shortened): dummyTitle
+===pagheranno===
+HtmlEntry (shortened): dummyTitle
+===pagherebbe===
+HtmlEntry (shortened): dummyTitle
+===pagherebbero===
+HtmlEntry (shortened): dummyTitle
+===pagherei===
+HtmlEntry (shortened): dummyTitle
+===pagheremmo===
+HtmlEntry (shortened): dummyTitle
+===pagheremo===
+HtmlEntry (shortened): dummyTitle
+===paghereste===
+HtmlEntry (shortened): dummyTitle
+===pagheresti===
+HtmlEntry (shortened): dummyTitle
+===pagherete===
+HtmlEntry (shortened): dummyTitle
+===pagherò===
+HtmlEntry (shortened): dummyTitle
+===paghi===
+HtmlEntry (shortened): dummyTitle
+===paghiamo===
+HtmlEntry (shortened): dummyTitle
+===paghiate===
+HtmlEntry (shortened): dummyTitle
+===paghino===
+HtmlEntry (shortened): dummyTitle
+===pago===
+HtmlEntry (shortened): dummyTitle
+===pagò===
+HtmlEntry (shortened): dummyTitle
+===persuada===
+HtmlEntry (shortened): dummyTitle
+===persuadano===
+HtmlEntry (shortened): dummyTitle
+===persuade===
+HtmlEntry (shortened): dummyTitle
+===persuademmo===
+HtmlEntry (shortened): dummyTitle
+===persuadendo===
+HtmlEntry (shortened): dummyTitle
+===persuadente===
+HtmlEntry (shortened): dummyTitle
+===persuaderà===
+HtmlEntry (shortened): dummyTitle
+===persuaderai===
+HtmlEntry (shortened): dummyTitle
+===persuaderanno===
+HtmlEntry (shortened): dummyTitle
+===persuaderebbe===
+HtmlEntry (shortened): dummyTitle
+===persuaderebbero===
+HtmlEntry (shortened): dummyTitle
+===persuaderei===
+HtmlEntry (shortened): dummyTitle
+===persuaderemmo===
+HtmlEntry (shortened): dummyTitle
+===persuaderemo===
+HtmlEntry (shortened): dummyTitle
+===persuadereste===
+HtmlEntry (shortened): dummyTitle
+===persuaderesti===
+HtmlEntry (shortened): dummyTitle
+===persuaderete===
+HtmlEntry (shortened): dummyTitle
+===persuaderò===
+HtmlEntry (shortened): dummyTitle
+===persuadesse===
+HtmlEntry (shortened): dummyTitle
+===persuadessero===
+HtmlEntry (shortened): dummyTitle
+===persuadessi===
+HtmlEntry (shortened): dummyTitle
+===persuadessimo===
+HtmlEntry (shortened): dummyTitle
+===persuadeste===
+HtmlEntry (shortened): dummyTitle
+===persuadesti===
+HtmlEntry (shortened): dummyTitle
+===persuadete===
+HtmlEntry (shortened): dummyTitle
+===persuadeva===
+HtmlEntry (shortened): dummyTitle
+===persuadevamo===
+HtmlEntry (shortened): dummyTitle
+===persuadevano===
+HtmlEntry (shortened): dummyTitle
+===persuadevate===
+HtmlEntry (shortened): dummyTitle
+===persuadevi===
+HtmlEntry (shortened): dummyTitle
+===persuadevo===
+HtmlEntry (shortened): dummyTitle
+===persuadi===
+HtmlEntry (shortened): dummyTitle
+===persuadiamo===
+HtmlEntry (shortened): dummyTitle
+===persuadiate===
+HtmlEntry (shortened): dummyTitle
+===persuado===
+HtmlEntry (shortened): dummyTitle
+===persuadono===
+HtmlEntry (shortened): dummyTitle
+===persuase===
+HtmlEntry (shortened): dummyTitle
+===persuasero===
+HtmlEntry (shortened): dummyTitle
+===persuasi===
+HtmlEntry (shortened): dummyTitle
+===persuaso===
+HtmlEntry (shortened): dummyTitle
+===preferé===
+HtmlEntry (shortened): dummyTitle
+===preferendo===
+HtmlEntry (shortened): dummyTitle
+===preferente===
+HtmlEntry (shortened): dummyTitle
+===prefererono===
+HtmlEntry (shortened): dummyTitle
+===preferì===
+HtmlEntry (shortened): dummyTitle
+===preferiamo===
+HtmlEntry (shortened): dummyTitle
+===preferiate===
+HtmlEntry (shortened): dummyTitle
+===preferii===
+HtmlEntry (shortened): dummyTitle
+===preferimmo===
+HtmlEntry (shortened): dummyTitle
+===preferirà===
+HtmlEntry (shortened): dummyTitle
+===preferirai===
+HtmlEntry (shortened): dummyTitle
+===preferiranno===
+HtmlEntry (shortened): dummyTitle
+===preferirebbe===
+HtmlEntry (shortened): dummyTitle
+===preferirebbero===
+HtmlEntry (shortened): dummyTitle
+===preferirei===
+HtmlEntry (shortened): dummyTitle
+===preferiremmo===
+HtmlEntry (shortened): dummyTitle
+===preferiremo===
+HtmlEntry (shortened): dummyTitle
+===preferireste===
+HtmlEntry (shortened): dummyTitle
+===preferiresti===
+HtmlEntry (shortened): dummyTitle
+===preferirete===
+HtmlEntry (shortened): dummyTitle
+===preferirò===
+HtmlEntry (shortened): dummyTitle
+===preferirono===
+HtmlEntry (shortened): dummyTitle
+===preferisca===
+HtmlEntry (shortened): dummyTitle
+===preferiscano===
+HtmlEntry (shortened): dummyTitle
+===preferisce===
+HtmlEntry (shortened): dummyTitle
+===preferisci===
+HtmlEntry (shortened): dummyTitle
+===preferisco===
+HtmlEntry (shortened): dummyTitle
+===preferiscono===
+HtmlEntry (shortened): dummyTitle
+===preferisse===
+HtmlEntry (shortened): dummyTitle
+===preferissero===
+HtmlEntry (shortened): dummyTitle
+===preferissi===
+HtmlEntry (shortened): dummyTitle
+===preferissimo===
+HtmlEntry (shortened): dummyTitle
+===preferiste===
+HtmlEntry (shortened): dummyTitle
+===preferisti===
+HtmlEntry (shortened): dummyTitle
+===preferite===
+HtmlEntry (shortened): dummyTitle
+===preferito===
+HtmlEntry (shortened): dummyTitle
+===preferiva===
+HtmlEntry (shortened): dummyTitle
+===preferivamo===
+HtmlEntry (shortened): dummyTitle
+===preferivano===
+HtmlEntry (shortened): dummyTitle
+===preferivate===
+HtmlEntry (shortened): dummyTitle
+===preferivi===
+HtmlEntry (shortened): dummyTitle
+===preferivo===
+HtmlEntry (shortened): dummyTitle
+===prodotto===
+HtmlEntry (shortened): dummyTitle
+===produca===
+HtmlEntry (shortened): dummyTitle
+===producano===
+HtmlEntry (shortened): dummyTitle
+===produce===
+HtmlEntry (shortened): dummyTitle
+===producemmo===
+HtmlEntry (shortened): dummyTitle
+===producendo===
+HtmlEntry (shortened): dummyTitle
+===producente===
+HtmlEntry (shortened): dummyTitle
+===producesse===
+HtmlEntry (shortened): dummyTitle
+===producessero===
+HtmlEntry (shortened): dummyTitle
+===producessi===
+HtmlEntry (shortened): dummyTitle
+===producessimo===
+HtmlEntry (shortened): dummyTitle
+===produceste===
+HtmlEntry (shortened): dummyTitle
+===producesti===
+HtmlEntry (shortened): dummyTitle
+===producete===
+HtmlEntry (shortened): dummyTitle
+===produceva===
+HtmlEntry (shortened): dummyTitle
+===producevamo===
+HtmlEntry (shortened): dummyTitle
+===producevano===
+HtmlEntry (shortened): dummyTitle
+===producevate===
+HtmlEntry (shortened): dummyTitle
+===producevi===
+HtmlEntry (shortened): dummyTitle
+===producevo===
+HtmlEntry (shortened): dummyTitle
+===produci===
+HtmlEntry (shortened): dummyTitle
+===produciamo===
+HtmlEntry (shortened): dummyTitle
+===produciate===
+HtmlEntry (shortened): dummyTitle
+===produco===
+HtmlEntry (shortened): dummyTitle
+===producono===
+HtmlEntry (shortened): dummyTitle
+===produrrà===
+HtmlEntry (shortened): dummyTitle
+===produrrai===
+HtmlEntry (shortened): dummyTitle
+===produrranno===
+HtmlEntry (shortened): dummyTitle
+===produrrebbe===
+HtmlEntry (shortened): dummyTitle
+===produrrebbero===
+HtmlEntry (shortened): dummyTitle
+===produrrei===
+HtmlEntry (shortened): dummyTitle
+===produrremmo===
+HtmlEntry (shortened): dummyTitle
+===produrremo===
+HtmlEntry (shortened): dummyTitle
+===produrreste===
+HtmlEntry (shortened): dummyTitle
+===produrresti===
+HtmlEntry (shortened): dummyTitle
+===produrrete===
+HtmlEntry (shortened): dummyTitle
+===produrrò===
+HtmlEntry (shortened): dummyTitle
+===produsse===
+HtmlEntry (shortened): dummyTitle
+===produssero===
+HtmlEntry (shortened): dummyTitle
+===produssi===
+HtmlEntry (shortened): dummyTitle
+===pronuncerà===
+HtmlEntry (shortened): dummyTitle
+===pronuncerai===
+HtmlEntry (shortened): dummyTitle
+===pronunceranno===
+HtmlEntry (shortened): dummyTitle
+===pronuncerebbe===
+HtmlEntry (shortened): dummyTitle
+===pronuncerebbero===
+HtmlEntry (shortened): dummyTitle
+===pronuncerei===
+HtmlEntry (shortened): dummyTitle
+===pronunceremmo===
+HtmlEntry (shortened): dummyTitle
+===pronunceremo===
+HtmlEntry (shortened): dummyTitle
+===pronuncereste===
+HtmlEntry (shortened): dummyTitle
+===pronunceresti===
+HtmlEntry (shortened): dummyTitle
+===pronuncerete===
+HtmlEntry (shortened): dummyTitle
+===pronuncerò===
+HtmlEntry (shortened): dummyTitle
+===pronunci===
+HtmlEntry (shortened): dummyTitle
+===pronuncia===
+HtmlEntry (shortened): dummyTitle
+===pronunciai===
+HtmlEntry (shortened): dummyTitle
+===pronunciammo===
+HtmlEntry (shortened): dummyTitle
+===pronunciamo===
+HtmlEntry (shortened): dummyTitle
+===pronunciando===
+HtmlEntry (shortened): dummyTitle
+===pronunciano===
+HtmlEntry (shortened): dummyTitle
+===pronunciante===
+HtmlEntry (shortened): dummyTitle
+===pronunciarono===
+HtmlEntry (shortened): dummyTitle
+===pronunciasse===
+HtmlEntry (shortened): dummyTitle
+===pronunciassero===
+HtmlEntry (shortened): dummyTitle
+===pronunciassi===
+HtmlEntry (shortened): dummyTitle
+===pronunciassimo===
+HtmlEntry (shortened): dummyTitle
+===pronunciaste===
+HtmlEntry (shortened): dummyTitle
+===pronunciasti===
+HtmlEntry (shortened): dummyTitle
+===pronunciate===
+HtmlEntry (shortened): dummyTitle
+===pronunciato===
+HtmlEntry (shortened): dummyTitle
+===pronunciava===
+HtmlEntry (shortened): dummyTitle
+===pronunciavamo===
+HtmlEntry (shortened): dummyTitle
+===pronunciavano===
+HtmlEntry (shortened): dummyTitle
+===pronunciavate===
+HtmlEntry (shortened): dummyTitle
+===pronunciavi===
+HtmlEntry (shortened): dummyTitle
+===pronunciavo===
+HtmlEntry (shortened): dummyTitle
+===pronuncino===
+HtmlEntry (shortened): dummyTitle
+===pronuncio===
+HtmlEntry (shortened): dummyTitle
+===pronunciò===
+HtmlEntry (shortened): dummyTitle
+===putrefa===
+HtmlEntry (shortened): dummyTitle
+===putrefà===
+HtmlEntry (shortened): dummyTitle
+===putrefaccia===
+HtmlEntry (shortened): dummyTitle
+===putrefacciamo===
+HtmlEntry (shortened): dummyTitle
+===putrefacciano===
+HtmlEntry (shortened): dummyTitle
+===putrefacciate===
+HtmlEntry (shortened): dummyTitle
+===putrefaccio===
+HtmlEntry (shortened): dummyTitle
+===putrefacemmo===
+HtmlEntry (shortened): dummyTitle
+===putrefacendo===
+HtmlEntry (shortened): dummyTitle
+===putrefacente===
+HtmlEntry (shortened): dummyTitle
+===putrefacesse===
+HtmlEntry (shortened): dummyTitle
+===putrefacessero===
+HtmlEntry (shortened): dummyTitle
+===putrefacessi===
+HtmlEntry (shortened): dummyTitle
+===putrefacessimo===
+HtmlEntry (shortened): dummyTitle
+===putrefaceste===
+HtmlEntry (shortened): dummyTitle
+===putrefacesti===
+HtmlEntry (shortened): dummyTitle
+===putrefaceva===
+HtmlEntry (shortened): dummyTitle
+===putrefacevamo===
+HtmlEntry (shortened): dummyTitle
+===putrefacevano===
+HtmlEntry (shortened): dummyTitle
+===putrefacevate===
+HtmlEntry (shortened): dummyTitle
+===putrefacevi===
+HtmlEntry (shortened): dummyTitle
+===putrefacevo===
+HtmlEntry (shortened): dummyTitle
+===putrefai===
+HtmlEntry (shortened): dummyTitle
+===putrefanno===
+HtmlEntry (shortened): dummyTitle
+===putrefarà===
+HtmlEntry (shortened): dummyTitle
+===putrefarai===
+HtmlEntry (shortened): dummyTitle
+===putrefaranno===
+HtmlEntry (shortened): dummyTitle
+===putrefarebbe===
+HtmlEntry (shortened): dummyTitle
+===putrefarebbero===
+HtmlEntry (shortened): dummyTitle
+===putrefarei===
+HtmlEntry (shortened): dummyTitle
+===putrefaremmo===
+HtmlEntry (shortened): dummyTitle
+===putrefaremo===
+HtmlEntry (shortened): dummyTitle
+===putrefareste===
+HtmlEntry (shortened): dummyTitle
+===putrefaresti===
+HtmlEntry (shortened): dummyTitle
+===putrefarete===
+HtmlEntry (shortened): dummyTitle
+===putrefarò===
+HtmlEntry (shortened): dummyTitle
+===putrefate===
+HtmlEntry (shortened): dummyTitle
+===putrefatto===
+HtmlEntry (shortened): dummyTitle
+===putrefece===
+HtmlEntry (shortened): dummyTitle
+===putrefecero===
+HtmlEntry (shortened): dummyTitle
+===putrefeci===
+HtmlEntry (shortened): dummyTitle
+===putrefò===
+HtmlEntry (shortened): dummyTitle
+===riavvia===
+HtmlEntry (shortened): dummyTitle
+===riavviai===
+HtmlEntry (shortened): dummyTitle
+===riavviammo===
+HtmlEntry (shortened): dummyTitle
+===riavviamo===
+HtmlEntry (shortened): dummyTitle
+===riavviamoci===
+HtmlEntry (shortened): dummyTitle
+===riavviandosi===
+HtmlEntry (shortened): dummyTitle
+===riavviano===
+HtmlEntry (shortened): dummyTitle
+===riavviantesi===
+HtmlEntry (shortened): dummyTitle
+===riavviarono===
+HtmlEntry (shortened): dummyTitle
+===riavviasse===
+HtmlEntry (shortened): dummyTitle
+===riavviassero===
+HtmlEntry (shortened): dummyTitle
+===riavviassi===
+HtmlEntry (shortened): dummyTitle
+===riavviassimo===
+HtmlEntry (shortened): dummyTitle
+===riavviaste===
+HtmlEntry (shortened): dummyTitle
+===riavviasti===
+HtmlEntry (shortened): dummyTitle
+===riavviate===
+HtmlEntry (shortened): dummyTitle
+===riavviatevi===
+HtmlEntry (shortened): dummyTitle
+===riavviati===
+HtmlEntry (shortened): dummyTitle
+===riavviato===
+HtmlEntry (shortened): dummyTitle
+===riavviatosi===
+HtmlEntry (shortened): dummyTitle
+===riavviava===
+HtmlEntry (shortened): dummyTitle
+===riavviavamo===
+HtmlEntry (shortened): dummyTitle
+===riavviavano===
+HtmlEntry (shortened): dummyTitle
+===riavviavate===
+HtmlEntry (shortened): dummyTitle
+===riavviavi===
+HtmlEntry (shortened): dummyTitle
+===riavviavo===
+HtmlEntry (shortened): dummyTitle
+===riavvierà===
+HtmlEntry (shortened): dummyTitle
+===riavvierai===
+HtmlEntry (shortened): dummyTitle
+===riavvieranno===
+HtmlEntry (shortened): dummyTitle
+===riavvierebbe===
+HtmlEntry (shortened): dummyTitle
+===riavvierebbero===
+HtmlEntry (shortened): dummyTitle
+===riavvierei===
+HtmlEntry (shortened): dummyTitle
+===riavvieremmo===
+HtmlEntry (shortened): dummyTitle
+===riavvieremo===
+HtmlEntry (shortened): dummyTitle
+===riavviereste===
+HtmlEntry (shortened): dummyTitle
+===riavvieresti===
+HtmlEntry (shortened): dummyTitle
+===riavvierete===
+HtmlEntry (shortened): dummyTitle
+===riavvierò===
+HtmlEntry (shortened): dummyTitle
+===riavvii===
+HtmlEntry (shortened): dummyTitle
+===riavviiamo===
+HtmlEntry (shortened): dummyTitle
+===riavviino===
+HtmlEntry (shortened): dummyTitle
+===riavvio===
+HtmlEntry (shortened): dummyTitle
+===riavviò===
+HtmlEntry (shortened): dummyTitle
+===ricuce===
+HtmlEntry (shortened): dummyTitle
+===ricucé===
+HtmlEntry (shortened): dummyTitle
+===ricucendo===
+HtmlEntry (shortened): dummyTitle
+===ricucente===
+HtmlEntry (shortened): dummyTitle
+===ricucerono===
+HtmlEntry (shortened): dummyTitle
+===ricuci===
+HtmlEntry (shortened): dummyTitle
+===ricucì===
+HtmlEntry (shortened): dummyTitle
+===ricucia===
+HtmlEntry (shortened): dummyTitle
+===ricuciamo===
+HtmlEntry (shortened): dummyTitle
+===ricuciano===
+HtmlEntry (shortened): dummyTitle
+===ricuciate===
+HtmlEntry (shortened): dummyTitle
+===ricucii===
+HtmlEntry (shortened): dummyTitle
+===ricucimmo===
+HtmlEntry (shortened): dummyTitle
+===ricucio===
+HtmlEntry (shortened): dummyTitle
+===ricuciono===
+HtmlEntry (shortened): dummyTitle
+===ricucirà===
+HtmlEntry (shortened): dummyTitle
+===ricucirai===
+HtmlEntry (shortened): dummyTitle
+===ricuciranno===
+HtmlEntry (shortened): dummyTitle
+===ricucirebbe===
+HtmlEntry (shortened): dummyTitle
+===ricucirebbero===
+HtmlEntry (shortened): dummyTitle
+===ricucirei===
+HtmlEntry (shortened): dummyTitle
+===ricuciremmo===
+HtmlEntry (shortened): dummyTitle
+===ricuciremo===
+HtmlEntry (shortened): dummyTitle
+===ricucireste===
+HtmlEntry (shortened): dummyTitle
+===ricuciresti===
+HtmlEntry (shortened): dummyTitle
+===ricucirete===
+HtmlEntry (shortened): dummyTitle
+===ricucirò===
+HtmlEntry (shortened): dummyTitle
+===ricucirono===
+HtmlEntry (shortened): dummyTitle
+===ricucisse===
+HtmlEntry (shortened): dummyTitle
+===ricucissero===
+HtmlEntry (shortened): dummyTitle
+===ricucissi===
+HtmlEntry (shortened): dummyTitle
+===ricucissimo===
+HtmlEntry (shortened): dummyTitle
+===ricuciste===
+HtmlEntry (shortened): dummyTitle
+===ricucisti===
+HtmlEntry (shortened): dummyTitle
+===ricucite===
+HtmlEntry (shortened): dummyTitle
+===ricucito===
+HtmlEntry (shortened): dummyTitle
+===ricuciva===
+HtmlEntry (shortened): dummyTitle
+===ricucivamo===
+HtmlEntry (shortened): dummyTitle
+===ricucivano===
+HtmlEntry (shortened): dummyTitle
+===ricucivate===
+HtmlEntry (shortened): dummyTitle
+===ricucivi===
+HtmlEntry (shortened): dummyTitle
+===ricucivo===
+HtmlEntry (shortened): dummyTitle
+===ridotto===
+HtmlEntry (shortened): dummyTitle
+===ridottosi===
+HtmlEntry (shortened): dummyTitle
+===riduca===
+HtmlEntry (shortened): dummyTitle
+===riducano===
+HtmlEntry (shortened): dummyTitle
+===riduce===
+HtmlEntry (shortened): dummyTitle
+===riducemmo===
+HtmlEntry (shortened): dummyTitle
+===riducendosi===
+HtmlEntry (shortened): dummyTitle
+===riducentesi===
+HtmlEntry (shortened): dummyTitle
+===riducesse===
+HtmlEntry (shortened): dummyTitle
+===riducessero===
+HtmlEntry (shortened): dummyTitle
+===riducessi===
+HtmlEntry (shortened): dummyTitle
+===riducessimo===
+HtmlEntry (shortened): dummyTitle
+===riduceste===
+HtmlEntry (shortened): dummyTitle
+===riducesti===
+HtmlEntry (shortened): dummyTitle
+===riducete===
+HtmlEntry (shortened): dummyTitle
+===riducetevi===
+HtmlEntry (shortened): dummyTitle
+===riduceva===
+HtmlEntry (shortened): dummyTitle
+===riducevamo===
+HtmlEntry (shortened): dummyTitle
+===riducevano===
+HtmlEntry (shortened): dummyTitle
+===riducevate===
+HtmlEntry (shortened): dummyTitle
+===riducevi===
+HtmlEntry (shortened): dummyTitle
+===riducevo===
+HtmlEntry (shortened): dummyTitle
+===riduci===
+HtmlEntry (shortened): dummyTitle
+===riduciamo===
+HtmlEntry (shortened): dummyTitle
+===riduciamoci===
+HtmlEntry (shortened): dummyTitle
+===riduciate===
+HtmlEntry (shortened): dummyTitle
+===riduciti===
+HtmlEntry (shortened): dummyTitle
+===riduco===
+HtmlEntry (shortened): dummyTitle
+===riducono===
+HtmlEntry (shortened): dummyTitle
+===ridurrà===
+HtmlEntry (shortened): dummyTitle
+===ridurrai===
+HtmlEntry (shortened): dummyTitle
+===ridurranno===
+HtmlEntry (shortened): dummyTitle
+===ridurrebbe===
+HtmlEntry (shortened): dummyTitle
+===ridurrebbero===
+HtmlEntry (shortened): dummyTitle
+===ridurrei===
+HtmlEntry (shortened): dummyTitle
+===ridurremmo===
+HtmlEntry (shortened): dummyTitle
+===ridurremo===
+HtmlEntry (shortened): dummyTitle
+===ridurreste===
+HtmlEntry (shortened): dummyTitle
+===ridurresti===
+HtmlEntry (shortened): dummyTitle
+===ridurrete===
+HtmlEntry (shortened): dummyTitle
+===ridurrò===
+HtmlEntry (shortened): dummyTitle
+===ridusse===
+HtmlEntry (shortened): dummyTitle
+===ridussero===
+HtmlEntry (shortened): dummyTitle
+===ridussi===
+HtmlEntry (shortened): dummyTitle
+===sedé===
+HtmlEntry (shortened): dummyTitle
+===sedei===
+HtmlEntry (shortened): dummyTitle
+===sedemmo===
+HtmlEntry (shortened): dummyTitle
+===sedendo===
+HtmlEntry (shortened): dummyTitle
+===sedente===
+HtmlEntry (shortened): dummyTitle
+===sederà===
+HtmlEntry (shortened): dummyTitle
+===sederai===
+HtmlEntry (shortened): dummyTitle
+===sederanno===
+HtmlEntry (shortened): dummyTitle
+===sederebbe===
+HtmlEntry (shortened): dummyTitle
+===sederebbero===
+HtmlEntry (shortened): dummyTitle
+===sederei===
+HtmlEntry (shortened): dummyTitle
+===sederemmo===
+HtmlEntry (shortened): dummyTitle
+===sederemo===
+HtmlEntry (shortened): dummyTitle
+===sedereste===
+HtmlEntry (shortened): dummyTitle
+===sederesti===
+HtmlEntry (shortened): dummyTitle
+===sederete===
+HtmlEntry (shortened): dummyTitle
+===sederò===
+HtmlEntry (shortened): dummyTitle
+===sederono===
+HtmlEntry (shortened): dummyTitle
+===sedesse===
+HtmlEntry (shortened): dummyTitle
+===sedessero===
+HtmlEntry (shortened): dummyTitle
+===sedessi===
+HtmlEntry (shortened): dummyTitle
+===sedessimo===
+HtmlEntry (shortened): dummyTitle
+===sedeste===
+HtmlEntry (shortened): dummyTitle
+===sedesti===
+HtmlEntry (shortened): dummyTitle
+===sedete===
+HtmlEntry (shortened): dummyTitle
+===sedette===
+HtmlEntry (shortened): dummyTitle
+===sedettero===
+HtmlEntry (shortened): dummyTitle
+===sedeva===
+HtmlEntry (shortened): dummyTitle
+===sedevamo===
+HtmlEntry (shortened): dummyTitle
+===sedevano===
+HtmlEntry (shortened): dummyTitle
+===sedevate===
+HtmlEntry (shortened): dummyTitle
+===sedevi===
+HtmlEntry (shortened): dummyTitle
+===sedevo===
+HtmlEntry (shortened): dummyTitle
+===sediamo===
+HtmlEntry (shortened): dummyTitle
+===sediate===
+HtmlEntry (shortened): dummyTitle
+===seduto===
+HtmlEntry (shortened): dummyTitle
+===segga===
+HtmlEntry (shortened): dummyTitle
+===seggano===
+HtmlEntry (shortened): dummyTitle
+===seggo===
+HtmlEntry (shortened): dummyTitle
+===seggono===
+HtmlEntry (shortened): dummyTitle
+===si===
+HtmlEntry (shortened): dummyTitle
+===sieda===
+HtmlEntry (shortened): dummyTitle
+===siedano===
+HtmlEntry (shortened): dummyTitle
+===siede===
+HtmlEntry (shortened): dummyTitle
+===siederà===
+HtmlEntry (shortened): dummyTitle
+===siederai===
+HtmlEntry (shortened): dummyTitle
+===siederanno===
+HtmlEntry (shortened): dummyTitle
+===siederebbe===
+HtmlEntry (shortened): dummyTitle
+===siederebbero===
+HtmlEntry (shortened): dummyTitle
+===siederei===
+HtmlEntry (shortened): dummyTitle
+===siederemmo===
+HtmlEntry (shortened): dummyTitle
+===siederemo===
+HtmlEntry (shortened): dummyTitle
+===siedereste===
+HtmlEntry (shortened): dummyTitle
+===siederesti===
+HtmlEntry (shortened): dummyTitle
+===siederete===
+HtmlEntry (shortened): dummyTitle
+===siederò===
+HtmlEntry (shortened): dummyTitle
+===siedi===
+HtmlEntry (shortened): dummyTitle
+===siedo===
+HtmlEntry (shortened): dummyTitle
+===siedono===
+HtmlEntry (shortened): dummyTitle
+===siriduca===
+HtmlEntry (shortened): dummyTitle
+===siriducano===
+HtmlEntry (shortened): dummyTitle
+===studi===
+HtmlEntry (shortened): dummyTitle
+===studia===
+HtmlEntry (shortened): dummyTitle
+===studiai===
+HtmlEntry (shortened): dummyTitle
+===studiammo===
+HtmlEntry (shortened): dummyTitle
+===studiamo===
+HtmlEntry (shortened): dummyTitle
+===studiando===
+HtmlEntry (shortened): dummyTitle
+===studiano===
+HtmlEntry (shortened): dummyTitle
+===studiante===
+HtmlEntry (shortened): dummyTitle
+===studiarono===
+HtmlEntry (shortened): dummyTitle
+===studiasse===
+HtmlEntry (shortened): dummyTitle
+===studiassero===
+HtmlEntry (shortened): dummyTitle
+===studiassi===
+HtmlEntry (shortened): dummyTitle
+===studiassimo===
+HtmlEntry (shortened): dummyTitle
+===studiaste===
+HtmlEntry (shortened): dummyTitle
+===studiasti===
+HtmlEntry (shortened): dummyTitle
+===studiate===
+HtmlEntry (shortened): dummyTitle
+===studiato===
+HtmlEntry (shortened): dummyTitle
+===studiava===
+HtmlEntry (shortened): dummyTitle
+===studiavamo===
+HtmlEntry (shortened): dummyTitle
+===studiavano===
+HtmlEntry (shortened): dummyTitle
+===studiavate===
+HtmlEntry (shortened): dummyTitle
+===studiavi===
+HtmlEntry (shortened): dummyTitle
+===studiavo===
+HtmlEntry (shortened): dummyTitle
+===studierà===
+HtmlEntry (shortened): dummyTitle
+===studierai===
+HtmlEntry (shortened): dummyTitle
+===studieranno===
+HtmlEntry (shortened): dummyTitle
+===studierebbe===
+HtmlEntry (shortened): dummyTitle
+===studierebbero===
+HtmlEntry (shortened): dummyTitle
+===studierei===
+HtmlEntry (shortened): dummyTitle
+===studieremmo===
+HtmlEntry (shortened): dummyTitle
+===studieremo===
+HtmlEntry (shortened): dummyTitle
+===studiereste===
+HtmlEntry (shortened): dummyTitle
+===studieresti===
+HtmlEntry (shortened): dummyTitle
+===studierete===
+HtmlEntry (shortened): dummyTitle
+===studierò===
+HtmlEntry (shortened): dummyTitle
+===studino===
+HtmlEntry (shortened): dummyTitle
+===studio===
+HtmlEntry (shortened): dummyTitle
+===studiò===
+HtmlEntry (shortened): dummyTitle
+===tu===
+HtmlEntry (shortened): dummyTitle
+===vesta===
+HtmlEntry (shortened): dummyTitle
+===vestano===
+HtmlEntry (shortened): dummyTitle
+===veste===
+HtmlEntry (shortened): dummyTitle
+===vesté===
+HtmlEntry (shortened): dummyTitle
+===vestendosi===
+HtmlEntry (shortened): dummyTitle
+===vestentesi===
+HtmlEntry (shortened): dummyTitle
+===vesterono===
+HtmlEntry (shortened): dummyTitle
+===vesti===
+HtmlEntry (shortened): dummyTitle
+===vestì===
+HtmlEntry (shortened): dummyTitle
+===vestiamo===
+HtmlEntry (shortened): dummyTitle
+===vestiamoci===
+HtmlEntry (shortened): dummyTitle
+===vestiate===
+HtmlEntry (shortened): dummyTitle
+===vestii===
+HtmlEntry (shortened): dummyTitle
+===vestimmo===
+HtmlEntry (shortened): dummyTitle
+===vestirà===
+HtmlEntry (shortened): dummyTitle
+===vestirai===
+HtmlEntry (shortened): dummyTitle
+===vestiranno===
+HtmlEntry (shortened): dummyTitle
+===vestirebbe===
+HtmlEntry (shortened): dummyTitle
+===vestirebbero===
+HtmlEntry (shortened): dummyTitle
+===vestirei===
+HtmlEntry (shortened): dummyTitle
+===vestiremmo===
+HtmlEntry (shortened): dummyTitle
+===vestiremo===
+HtmlEntry (shortened): dummyTitle
+===vestireste===
+HtmlEntry (shortened): dummyTitle
+===vestiresti===
+HtmlEntry (shortened): dummyTitle
+===vestirete===
+HtmlEntry (shortened): dummyTitle
+===vestirò===
+HtmlEntry (shortened): dummyTitle
+===vestirono===
+HtmlEntry (shortened): dummyTitle
+===vestisse===
+HtmlEntry (shortened): dummyTitle
+===vestissero===
+HtmlEntry (shortened): dummyTitle
+===vestissi===
+HtmlEntry (shortened): dummyTitle
+===vestissimo===
+HtmlEntry (shortened): dummyTitle
+===vestiste===
+HtmlEntry (shortened): dummyTitle
+===vestisti===
+HtmlEntry (shortened): dummyTitle
+===vestite===
+HtmlEntry (shortened): dummyTitle
+===vestitevi===
+HtmlEntry (shortened): dummyTitle
+===vestiti===
+HtmlEntry (shortened): dummyTitle
+===vestito===
+HtmlEntry (shortened): dummyTitle
+===vestitosi===
+HtmlEntry (shortened): dummyTitle
+===vestiva===
+HtmlEntry (shortened): dummyTitle
+===vestivamo===
+HtmlEntry (shortened): dummyTitle
+===vestivano===
+HtmlEntry (shortened): dummyTitle
+===vestivate===
+HtmlEntry (shortened): dummyTitle
+===vestivi===
+HtmlEntry (shortened): dummyTitle
+===vestivo===
+HtmlEntry (shortened): dummyTitle
+===vesto===
+HtmlEntry (shortened): dummyTitle
+===vestono===
+HtmlEntry (shortened): dummyTitle
+===voi===
+HtmlEntry (shortened): dummyTitle
 
 Index: IT IT->EN