Inboxes

Create an inbox to save and track emails. It's free!

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091<!DOCTYPE html>
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <title>
   Duolingo
  </title>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <meta content="IE=edge" http-equiv="x-ua-compatible"/>
  <meta content="light dark" name="color-scheme"/>
  <meta content="light dark" name="supported-color-schemes"/>
  <!--[if gte mso 9]><xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml><![endif]-->
  <!--[if (gte mso 9)|(IE)]>
<style type="text/css">
table {
border-collapse:collapse !important;
mso-table-lspace:0pt!important;
mso-table-rspace:0pt!important;
}
h4,h5,h6,p,a,span,td,strong,li {
font-family: Arial,Helvetica,Verdana,sans-serif !important;
}
h1,h2,h3{
font-family:Arial, Helvetica, sans-serif !important;
}
.ExternalClass .not-for-outlook, [owa] .not-for-outlook { display:none; }
.desktop-only{
display:table !important;
}
</style>
<![endif]-->
  <style type="text/css">
   :root {
color-scheme: light dark;
supported-color-schemes: light dark;
}
@media (prefers-color-scheme: dark) {
.chameleon-heading {
color: #FFFFFF !important;
}
.chameleon-text {
color: #ccc !important;
}
.chameleon-line {
border-color: #666 !important;
}
.chameleon-language {
background-color: transparent !important;
border-color: #666 !important;
box-shadow: 0 2px 0 0 #666 !important;
}
.chameleon-language-label {
color: #ccc !important;
}
}
#outlook a{ padding:0;  color:inherit;}
.ReadMsgBody{width:100%;}
.ExternalClass{width:100%;}
.ExternalClass,.ExternalClass span,.ExternalClass td,.ExternalClass div{line-height:100%;}
body,table,td,a{-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%;}
table,td{mso-table-lspace:0pt;mso-table-rspace:0pt;}
img{-ms-interpolation-mode:bicubic;}
body{font-family: Helvetica, Arial, sans-serif;height:100% !important;margin:0 !important;padding:0 !important;width:100% !important;}
img{border:0;height:auto;line-height:100%;outline:none;text-decoration:none;}
a[x-apple-data-detectors]{
color:inherit !important;
text-decoration:none !important;
font-size:inherit !important;
font-family:inherit !important;
font-weight:inherit !important;
line-height:inherit !important;
}
.webkit-hide{display:none !important;}
.webkit-show{
height:auto !important;
width:auto !important;
max-width:none !important;
max-height:none !important;
overflow:auto !important;
visibility:visible !important;
display:block !important;
}

#font-weight-normal{font-weight:normal !important;}
.link-hover:hover{text-decoration:none !important;}

@media only screen and (max-width: 600px){
body[yahoo] .deviceWidth{width:100%!important;padding:0;min-width:100%!important;}
.deviceWidth{width:100%!important;padding:0 !important;min-width:100%!important;}
.mobile-hide{display:none !important;}
.mobile-center{text-align:center !important;}
.mobile-center2{margin:0 auto;}
.img-max{max-width:100% !important;height:auto !important;}
.img-max2{width:100% !important;max-width:100% !important;height:auto !important;}
.responsive-table{width:100% !important;max-width:100% !important;}
.pt8{ padding-top:8px !important;}
.mobilespace24 {height: 24px !important;min-height: 24px !important;max-height: 24px !important;line-height: 24px !important;}
.mobilespace32 {height: 32px !important;min-height: 32px !important;max-height: 32px !important;line-height: 32px !important;}
.f28{font-size:25px !important; line-height:32px !important;}

.mw169{ width:169px !important; min-width:169px !important;}
.mw11{ width:11px !important; min-width:11px !important;}
.mspace8{ height:8px !important; line-height:8px !important; max-height:8px !important;}
}
@media only screen and (max-width: 361px){
.mw169{
width:100% !important;
max-width:100% !important;
min-width:100% !important;}
.mw11{ width:21px !important; min-width:21px !important;}
.m_padding{ padding-top:0px !important;}
.m_link{background-color:#FFFFFF; color:#58CC02 !important;}

}
@media screen yahoo and (min-width:480px){
.w186{width:186px !important;min-width:186px !important;max-width:186px !important;}
.w414{width:414px !important;min-width:414px !important;max-width:414px !important;}
.w141{width:141px !important;min-width:141px !important;max-width:141px !important;}
.w290{width:290px !important;min-width:290px !important;max-width:290px !important;}
}
@media only screen and (max-width: 480px){
.emailbody{ width: 100vw !important; padding:0 !important; margin:0 !important;}
u + .emailbody{
width:100% !important;
}
}
[owa] .w186{width:186px !important;min-width:186px !important;max-width:186px !important;}
[owa] .w414{width:414px !important;min-width:414px !important;max-width:414px !important;}
[owa] .w141{width:141px !important;min-width:141px !important;max-width:141px !important;}
[owa] .w290{width:290px !important;min-width:290px !important;max-width:290px !important;}
@media only screen and (min-width: 520px){
.desktop-hide{display:none !important;}
.desktop-show{
display:table !important;
}
}
  </style>
 </head>
 <body class="emailbody" style="margin: 0; padding:0;">
  <img src="https://inboxflows.com/_/image/https%253A%252F%252Fblast.duolingo.com%252Fopen%252F3433%253Femail%253D10ba61b8313b50be3f7c14d20ca91780062b507dIjM2NzIxNDQzQHVpZmVlZC5jb20i%2526user_id%253D472922b1ed8909287f895a401a6c0404643d7d52MzkxOTUzOTE3/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZibGFzdC5kdW9saSJ9:1kXMnm:ZpUWBp0xNhYFwAuVA9sdzKVdLLnwGu4GZv_3iTBQlFQ"/>
  <div style="display:none;font-size:1px;color:#ffffff;line-height:1px;font-family:Arial, Helvetica, sans-serif;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">
   A brand-new app + our favorite ways to learn.
  </div>
  <div style="display: none; max-height: 0px; overflow: hidden; color:#ffffff;">
   ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌  ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌ ‌
  </div>
  <table align="center" border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%; min-width:100%;" width="100%">
   <tbody>
    <tr>
     <td align="center" style="padding:5px;">
      <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600">
<tr>
<td align="center" valign="top" width="600">
<![endif]-->
      <!-- header -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%; max-width:600px;" width="600">
       <tbody>
        <tr>
         <td height="32" style="height:32px; min-height:32px; line-height:32px; font-size:1px;">
         </td>
        </tr>
        <tr>
         <td align="center">
          <a class="brand-logo-link" link-id="108529" target="_blank">
           <img class="brand-logo-img" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fduolingo-logo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0px;text-decoration: none;  border-style: none;  color: #ffffff; border-width:0;" width="103"/>
          </a>
         </td>
        </tr>
        <tr>
         <td height="24" style="height:24px; min-height:24px; line-height:24px; font-size:1px;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / header -->
      <!-- section -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%;max-width: 600px; border-radius:20px;" width="600">
       <tbody>
        <tr>
         <td align="center" bgcolor="#58CC02" class="email-container chameleon-green-bg" style="-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" style="padding-left:36px; padding-top:12px;">
              <!--[if gte mso 9]>
<table align="center" cellpadding="0" cellspacing="0" border="0" width="503">
<tr><td width="503">
<![endif]-->
              <div>
               <!--[if mso]>
<a href="https://www.duolingo.com/?email=10ba61b8313b50be3f7c14d20ca91780062b507dIjM2NzIxNDQzQHVpZmVlZC5jb20i&utm_source=newsletter&utm_medium=email&utm_campaign=Apr20_Insider_Guide_V2" target="_blank"><img src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fimg-duo-tips-2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" width="503" height="auto" style="display:block; border:0px;"></a>
<![endif]-->
               <!--[if !mso]><!-- -->
               <a link-id="108530" target="_blank">
               </a>
               <table border="0" cellpadding="0" cellspacing="0" class="desktop-show" height="198" style="width:100%; max-width:503px; max-height:198px; min-height:198px; display:none; mso-hide:all; mso-table-lspace:0;mso-table-rspace:0;" width="503">
                <tbody>
                 <tr>
                  <td align="center" background="https://inboxflows.com/_/image/https%253A%252F%252Finboxflows.com%252F_%252Fimage%252Fhttp%25253A%25252F%25252Fdzvpwvcpo1876.cloudfront.net%25252Fimg-duo-tips-2.png%252F%253Finbox_flows_img_sig%253DeyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9%253A1kXMnm%253AwsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbmJveGZsb3dzLiJ9:1kXMnm:kc0N2M3XWtz3rthqiVOn1dcYGvRfR_KXbr9gcmbA7Xs" style="min-height:198px; height:198px; line-height:198px; background-image:url(https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fimg-duo-tips-2.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE); background-size:503px 198px; background-position:center; background-repeat:no-repeat;">
                  </td>
                 </tr>
                </tbody>
               </table>
               <table border="0" cellpadding="0" cellspacing="0" class="desktop-hide" height="auto" style="display:block; mso-hide:all; mso-table-lspace:0;mso-table-rspace:0; width:247px;">
                <tbody>
                 <tr>
                  <td align="center" style="padding-right:20px">
                   <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252FMobile_Duo_Trophy.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0px;" width="199"/>
                  </td>
                 </tr>
                </tbody>
               </table>
               <!--<![endif]-->
              </div>
              <!--[if gte mso 9]>
</td></tr></table>
<![endif]-->
             </td>
            </tr>
            <tr>
             <td height="20" style="height:20px; min-height:20px; line-height:20px;">
             </td>
            </tr>
            <tr>
             <td valign="top">
              <table border="0" cellpadding="0" cellspacing="0" width="100%">
               <tbody>
                <tr>
                 <td align="center" style="padding-left:24px; padding-right:24px;">
                  <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
                   <tbody>
                    <tr>
                     <td align="center">
                      <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="450">
<tr>
<td align="center" valign="top" width="450">
<![endif]-->
                      <h1 class="f28" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:28px; line-height:38px; font-weight:700; letter-spacing:0; color:#ffffff; max-width:450px;">
                       Tips for success on Duolingo
                      </h1>
                      <!--[if (gte mso 9)|(IE)]>
</td></tr></table>
<![endif]-->
                     </td>
                    </tr>
                    <tr>
                     <td align="center" class="pt8" style="padding-top:16px;">
                      <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="420">
<tr>
<td align="center" valign="top" width="420">
<![endif]-->
                      <p style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:26px; font-weight:400; letter-spacing:0; color:#ffffff; max-width:420px;padding-bottom: 10px;">
                       Making progress feels amazing. Whether you’re new to Duolingo or you’ve been learning with us for years, try these insider tips to make progress you’ll feel proud of.
                      </p>
                      <!--[if (gte mso 9)|(IE)]>
</td></tr></table>
<![endif]-->
                     </td>
                    </tr>
                    <tr>
                     <td class="mobilespace24" height="20" style="height:20px; line-height:20px;">
                     </td>
                    </tr>
                    <tr>
                     <td align="center">
                      <div>
                       <!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word"
href="https://www.duolingo.com/?email=10ba61b8313b50be3f7c14d20ca91780062b507dIjM2NzIxNDQzQHVpZmVlZC5jb20i&utm_source=newsletter&utm_medium=email&utm_campaign=Apr20_Insider_Guide_V2"
style="height:43px;v-text-anchor:middle;width:260px; box-shadow: 0 3px 0 0 #B9F090;" arcsize="20%" strokecolor="#FFFFFF" fillcolor="#FFFFFF">
<w:anchorlock/>
<center style="font-family:sans-serif;font-size:16px;text-transform:uppercase;color:#5DCA25;font-weight:bold;line-height:19px;letter-spacing:0.8px;">
&nbsp;&nbsp;CONTINUE LEARNING&nbsp;&nbsp;</center>
</v:roundrect>
<![endif]-->
                       <!--[if !mso]><!-- -->
                       <table border="0" cellpadding="0" cellspacing="0" style="width:240px;border-spacing:0;border-collapse:collapse;mso-hide:all; mso-table-lspace:0;mso-table-rspace:0;" width="240">
                        <tbody>
                         <tr>
                          <td align="center" height="43" style="border-collapse:collapse;mso-table-lspace:0;mso-table-rspace:0;background-color:#FFFFFE;-moz-border-radius:9px;-webkit-border-radius:9px;border-radius:9px;  box-shadow: 0 3px 0 0 #B9F090; white-space:nowrap;">
                           <a link-id="108531" style="display:inline-block; width:100%;font-family:Arial, Helvetica, sans-serif;font-size:16px;font-weight:bold;line-height:19px; letter-spacing:0.8px; text-transform:uppercase;color:#5DCA25;text-align:center;text-decoration:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:100%; background-color:#FFFFFE;border-radius:14px; border-top:12px solid #FFFFFE; border-bottom:12px solid #FFFFFE;">
                            CONTINUE LEARNING
                           </a>
                          </td>
                         </tr>
                        </tbody>
                       </table>
                       <!--<![endif]-->
                      </div>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
            <tr>
             <td class="mobilespace32" height="40" style="height:40px; min-height:40px; line-height:40px; font-size:1px;">
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / section -->
      <!-- section 2 cols -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%;max-width:600px;" width="600">
       <tbody>
        <tr>
         <td height="56" style="height:56px; min-height:56px; line-height:56px;">
         </td>
        </tr>
        <tr>
         <td align="center">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td valign="top">
              <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" dir="ltr">
<tr>
<td align="center" valign="top" width="186">
<![endif]-->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="responsive-table w186" style="min-width:100%; width:31%; max-width:100%;min-width:-webkit-calc(31%); min-width:calc(31%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="186">
               <tbody>
                <tr>
                 <td align="center" class="m_padding" style="padding-bottom:24px; padding-top:24px;">
                  <a link-id="108532" target="_blank">
                   <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fimg-main-1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0px;text-decoration: none;  border-style: none;  color: #555555; border-width:0;" width="155"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
<td align="center" valign="top" width="414">
<![endif]-->
              <table align="right" border="0" cellpadding="0" cellspacing="0" class="responsive-table w414" dir="ltr" style="min-width:100%; width:69%; max-width:100%;min-width:-webkit-calc(69%); min-width:calc(69%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="414">
               <tbody>
                <tr>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                 <td align="center" style="padding-left:3px; padding-right:3px;">
                  <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="390">
<tr>
<td align="center" valign="top" width="390">
<![endif]-->
                  <table align="left" border="0" cellpadding="0" cellspacing="0">
                   <tbody>
                    <tr>
                     <td align="left" class="mobile-center">
                      <h3 class="f22 chameleon-heading" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:19px; line-height:28px; font-weight:700;color:#4b4b4b; ">
                       The best way to learn
                      </h3>
                     </td>
                    </tr>
                    <tr>
                     <td align="left" class="mobile-center" style="padding-top:16px;">
                      <p class="mobile-center chameleon-text" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:26px; font-weight:400;  color:#777777;">
                       Do you practice one skill until you capture all 5 crowns, or do you work on several skills at once? Our suggestion: try both! Practice 2 or 3 skills at a time, gradually getting to Level 5 in each skill. It’s a great way to make well-rounded progress in a language.
                      </p>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                  <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
                 </td>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
        <tr>
         <td class="mobilespace32 chameleon-line" height="40" style="height:40px; min-height:40px; line-height:40px; font-size:1px; border-bottom:2px solid #f2f2f2;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / section 2 cols -->
      <!-- section 2 cols -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%;max-width:600px;" width="600">
       <tbody>
        <tr>
         <td class="mobilespace32" height="36" style="height:36px; min-height:36px; line-height:36px;">
         </td>
        </tr>
        <tr>
         <td align="center">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td valign="top">
              <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" dir="rtl">
<tr>
<td align="center" valign="top" width="186">
<![endif]-->
              <table align="right" border="0" cellpadding="0" cellspacing="0" class="responsive-table w186" style="min-width:100%; width:31%; max-width:100%;min-width:-webkit-calc(31%); min-width:calc(31%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="186">
               <tbody>
                <tr>
                 <td align="center" class="m_padding" style="padding-bottom:24px; padding-top:9px;">
                  <a link-id="108533" target="_blank">
                   <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252FEN_numbered_checkpoint.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0px;text-decoration: none;  border-style: none;  color: #555555; border-width:0;" width="176"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
<td align="center" valign="top" width="414">
<![endif]-->
              <table align="right" border="0" cellpadding="0" cellspacing="0" class="responsive-table w414" dir="ltr" style="min-width:100%; width:69%; max-width:100%;min-width:-webkit-calc(69%); min-width:calc(69%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="414">
               <tbody>
                <tr>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                 <td align="center" style="padding-left:3px; padding-right:3px;">
                  <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="390">
<tr>
<td align="center" valign="top" width="390">
<![endif]-->
                  <table align="left" border="0" cellpadding="0" cellspacing="0">
                   <tbody>
                    <tr>
                     <td align="left" class="mobile-center">
                      <h3 class="f22 chameleon-heading" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:19px; line-height:28px; font-weight:700;color:#4b4b4b; ">
                       A new way to practice skills
                      </h3>
                     </td>
                    </tr>
                    <tr>
                     <td align="left" class="mobile-center" style="padding-top:16px;">
                      <p class="mobile-center chameleon-text" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:26px; font-weight:400;  color:#777777;">
                       Every course has checkpoints that unlock more skills and harder content. Now, use checkpoint practice to review how much you’ve learned from a specific section. Keep your skills sharp and earn XP! (On Android, coming soon to iOS + web)
                      </p>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                  <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
                 </td>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
        <tr>
         <td class="mobilespace32 chameleon-line" height="40" style="height:40px; min-height:40px; line-height:40px; font-size:1px; border-bottom:2px solid #f2f2f2;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / section 2 cols -->
      <!-- section 2 cols -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%;max-width:600px;" width="600">
       <tbody>
        <tr>
         <td class="mobilespace16" height="40" style="height:40px; min-height:40px; line-height:40px;">
         </td>
        </tr>
        <tr>
         <td align="center">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td valign="top">
              <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="600" dir="ltr">
<tr>
<td align="center" valign="top" width="186">
<![endif]-->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="responsive-table w186" style="min-width:100%; width:31%; max-width:100%;min-width:-webkit-calc(31%); min-width:calc(31%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="186">
               <tbody>
                <tr>
                 <td align="center" class="m_padding" style="padding-bottom:12px; padding-top:12px;">
                  <a link-id="108534" target="_blank" web-redirect="1">
                   <img height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fimg-abc-1.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0px;text-decoration: none;  border-style: none;  color: #555555; border-width:0;" width="154"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
<td align="center" valign="top" width="414">
<![endif]-->
              <table align="right" border="0" cellpadding="0" cellspacing="0" class="responsive-table w414" dir="ltr" style="min-width:100%; width:69%; max-width:100%;min-width:-webkit-calc(69%); min-width:calc(69%);width:-webkit-calc(360000px - 60000%);width: calc(360000px - 60000%);" width="414">
               <tbody>
                <tr>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                 <td align="center" style="padding-left:3px; padding-right:3px;">
                  <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="390">
<tr>
<td align="center" valign="top" width="390">
<![endif]-->
                  <table align="left" border="0" cellpadding="0" cellspacing="0">
                   <tbody>
                    <tr>
                     <td align="left" class="mobile-center">
                      <h3 class="f22 chameleon-heading" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:19px; line-height:28px; font-weight:700;color:#4b4b4b; ">
                       New: Duolingo ABC
                      </h3>
                     </td>
                    </tr>
                    <tr>
                     <td align="left" class="mobile-center" style="padding-top:16px;">
                      <p class="mobile-center chameleon-text" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:16px; line-height:26px; font-weight:400;  color:#777777;">
                       For learners age 3–6,
                       <a link-id="108535" style="text-decoration:none; color:#1cb0f6;" web-redirect="1">
                        download Duolingo ABC on iOS
                       </a>
                       ! It’s a new app that teaches English reading and writing skills with 300+ fun, bite-sized lessons. (On
                       <a link-id="108536" style="text-decoration:none; color:#1cb0f6;" web-redirect="1">
                        iOS
                       </a>
                       in the US, UK, Ireland, Canada + Australia)
                       <br/>
                       <br/>
                       For older kids,
                       <a link-id="108537" style="text-decoration:none; color:#1cb0f6;" web-redirect="1">
                        check out our parents’ guide
                       </a>
                       for tips on helping students learn a language at home with the Duolingo app.
                      </p>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                  <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
                 </td>
                 <td style="width:12px; min-width:12px; max-width:12px;" width="12">
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
        <tr>
         <td class="mobilespace32 chameleon-line" height="40" style="height:40px; min-height:40px; line-height:40px; font-size:1px;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / section 2 cols -->
      <!-- section -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%;max-width: 600px;" width="600">
       <tbody>
        <tr>
         <td align="center">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td align="center" style="padding-left:24px; padding-right:24px;">
              <div>
               <!--[if mso]>
<v:roundrect xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w="urn:schemas-microsoft-com:office:word"
href="https://apps.apple.com/app/apple-store/id1440502568?pt=1374442&ct=April%20Newsletter&mt=8"
style="height:43px;v-text-anchor:middle;width:260px; box-shadow: 0 3px 0 0 #0a9be0;" arcsize="20%" strokecolor="#1cb0f6" fillcolor="#1cb0f6">
<w:anchorlock/>
<center style="font-family:sans-serif;font-size:16px;text-transform:uppercase;color:#ffffff;font-weight:bold;line-height:19px;letter-spacing:0.8px;">
&nbsp;&nbsp;TRY DUOLINGO ABC&nbsp;&nbsp;</center>
</v:roundrect>
<![endif]-->
               <!--[if !mso]><!-- -->
               <table border="0" cellpadding="0" cellspacing="0" style="width:240px;border-spacing:0;border-collapse:collapse;mso-hide:all; mso-table-lspace:0;mso-table-rspace:0;" width="240">
                <tbody>
                 <tr>
                  <td align="center" height="43" style="border-collapse:collapse;mso-table-lspace:0;mso-table-rspace:0;background-color:#1cb0f6;-moz-border-radius:9px;-webkit-border-radius:9px;border-radius:9px;  box-shadow: 0 3px 0 0 #0a9be0; white-space:nowrap;">
                   <a link-id="108538" style="display:inline-block; width:100%;font-family:Arial, Helvetica, sans-serif;font-size:16px;font-weight:bold;line-height:19px; letter-spacing:0.8px; text-transform:uppercase;color:#ffffff;text-align:center;text-decoration:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:100%; background-color:#1cb0f6;border-radius:14px; border-top:12px solid #1cb0f6; border-bottom:12px solid #1cb0f6;" web-redirect="1">
                    TRY DUOLINGO ABC
                   </a>
                  </td>
                 </tr>
                </tbody>
               </table>
               <!--<![endif]-->
              </div>
             </td>
            </tr>
            <tr>
             <td class="mobilespace32 chameleon-line" height="60" style="height:60px; min-height:60px; line-height:60px; font-size:1px; border-bottom:2px solid #f2f2f2;">
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
       </tbody>
      </table>
      <!-- section -->
      <!-- Languages Section -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="width:100%; max-width:600px;" width="600">
       <tbody>
        <tr>
         <td style="width:24; min-width:24px;" width="24">
         </td>
         <td align="center">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td class="mobilespace32" height="40" style="height:40px; min-height:40px; line-height:40px; font-size:1px;">
             </td>
            </tr>
            <tr>
             <td align="center" style="padding-right:24px;">
              <h2 class="chameleon-heading" style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:19px; line-height:28px; font-weight:700; color:#4c4c4c;">
               Choose a language to start learning
              </h2>
             </td>
            </tr>
            <tr>
             <td height="34" style="height:34px; min-height:34px; line-height:34px; font-size:1px;">
             </td>
            </tr>
            <tr>
             <td align="center">
              <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="574">
<![endif]-->
              <!-- Row -->
              <!--[if (gte mso 9)|(IE)]>
<tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108539" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Spanish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-es.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Spanish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108540" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="French" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-fr.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        French
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108541" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="German" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-de.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        German
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108542" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Japanese" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ja.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Japanese
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108543" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Italian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-it.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Italian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108544" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Korean" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ko.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Korean
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108545" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Chinese" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-zh.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Chinese
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108546" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Russian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ru.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Russian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108547" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Portuguese" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-pt.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Portuguese
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108548" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Turkish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-tr.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Turkish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108549" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Dutch" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-nl.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Dutch
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108550" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Swedish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-sv.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Swedish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108551" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Irish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ga.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Irish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108552" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Greek" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-el.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Greek
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108553" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Hebrew" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-he.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Hebrew
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108554" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Polish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-pl.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Polish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108555" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Norwegian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-no.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Norwegian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108556" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Vietnamese" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-vi.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Vietnamese
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108557" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="High Valyrian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-hv.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        High Valyrian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108558" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Danish" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-da.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Danish
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108559" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Romanian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ro.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Romanian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108560" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Swahili" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-sw.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Swahili
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108561" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Klingon" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-kl.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Klingon
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108562" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Esperanto" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-eo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Esperanto
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108563" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Hindi" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-hi.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Hindi
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108564" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Hungarian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-hu.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Hungarian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108565" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Welsh" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-cy.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Welsh
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108566" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Ukrainian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-uk.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Ukrainian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108567" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Czech" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-cs.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Czech
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108568" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Hawaiian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ha.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Hawaiian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108569" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Indonesian" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-id.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Indonesian
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108570" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Navajo" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-nv.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Navajo
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108571" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Arabic" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-ar.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Arabic
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr><tr>
<td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108572" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Latin" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fflag-la.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Latin
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <div class="mw169" style="float:left; width:191px;min-width:191px;">
               <table align="left" border="0" cellpadding="0" cellspacing="0" class="mw169" style="width:191px; min-width:191px;" width="191">
                <tbody>
                 <tr>
                  <td align="left">
                   <a link-id="108573" style="text-decoration:none; color:#555555;">
                   </a>
                   <table border="0" cellpadding="0" cellspacing="0" class="chameleon-language" style="height:55px; border:2px solid #f2f2f2; -webkit-border-radius:14px;-moz-border-radius:14px;border-radius:14px; box-shadow: 0 2px 0 0 #f2f2f2;" width="100%">
                    <tbody>
                     <tr>
                      <td align="center" style="width:56px; padding:14px 0;" width="56">
                       <img alt="Scottish Gaelic" height="23" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fgd.jpg/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0; padding:0 10px 0 16px;" width="30"/>
                      </td>
                      <td align="left" style="font-family:Arial, Helvetica, sans-serif;font-size:13px; line-height:17px;font-weight:700; padding-right:10px;">
                       <span class="chameleon-language-label" style="color:#555555;">
                        Scottish Gaelic
                       </span>
                      </td>
                     </tr>
                    </tbody>
                   </table>
                  </td>
                  <td class="mw11" style="width:21px; min-width:21px; line-height:55px;" width="21">
                  </td>
                 </tr>
                 <tr>
                  <td class="mspace8" colspan="2" height="16" style="height:16px; line-height:16px; font-size:1px;">
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[if (gte mso 9)|(IE)]>
</td><td width="191">
<![endif]-->
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
<![endif]-->
              <!--[if (gte mso 9)|(IE)]>
</table>
<![endif]-->
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
        <tr>
         <td class="chameleon-line" colspan="2" height="23" style="height:23px; min-height:23px; line-height:23px; font-size:1px; border-bottom:2px solid #f2f2f2;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / Languages Section -->
      <!-- Footer -->
      <table border="0" cellpadding="0" cellspacing="0" class="deviceWidth" style="max-width: 600px;" width="100%">
       <tbody>
        <tr>
         <td align="center" style="padding-top:16px;">
          <table border="0" cellpadding="0" cellspacing="0" width="100%">
           <tbody>
            <tr>
             <td style="width:32px; min-width:32px; max-width:32px;" width="32">
             </td>
             <td valign="top">
              <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="536" dir="rtl">
<tr>
<td align="center" valign="top" width="141">
<![endif]-->
              <table align="right" border="0" cellpadding="0" cellspacing="0" class="responsive-table w141" dir="ltr" style="min-width:100%; width:27%; max-width:100%;min-width:-webkit-calc(27%); min-width:calc(27%);width:-webkit-calc(287296px - 53600%);width: calc(287296px - 53600%);" width="141">
               <tbody>
                <tr>
                 <td align="left" style="padding-top:4px; padding-bottom:16px;">
                  <table border="0" cellpadding="0" cellspacing="0" width="141">
                   <tbody>
                    <tr>
                     <td>
                      <a link-id="108574" style="color:#a7a7a7;" target="_blank" web-redirect="1">
                       <img alt="Instagram" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252FInstagram_dark.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0;" width="24"/>
                      </a>
                     </td>
                     <td style="width:15px; min-width:15px; font-size:1px;" width="15">
                     </td>
                     <td>
                      <a link-id="108575" style="color:#a7a7a7;" target="_blank" web-redirect="1">
                       <img alt="Twitter" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252FTwitter_dark.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0;" width="24"/>
                      </a>
                     </td>
                     <td style="width:15px; min-width:15px; font-size:1px;" width="15">
                     </td>
                     <td>
                      <a link-id="108576" style="color:#a7a7a7;" target="_blank" web-redirect="1">
                       <img alt="Facebook" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252FFacebook_dark.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0;" width="24"/>
                      </a>
                     </td>
                     <td style="width:15px; min-width:15px; font-size:1px;" width="15">
                     </td>
                     <td>
                      <a link-id="108577" style="color:#a7a7a7;" target="_blank" web-redirect="1">
                       <img alt="Youtube" height="auto" src="https://inboxflows.com/_/image/http%253A%252F%252Fdzvpwvcpo1876.cloudfront.net%252Fyoutube_icon_dark_2x_USE.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRmR6dnB3dmNwbzE4NyJ9:1kXMnm:wsjfJmG4rX2Urc97YmT-dAblS9EGpRn8mJivx85pswE" style="display:block; border:0;" width="24"/>
                      </a>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
<td align="center" valign="top" width="394">
<![endif]-->
              <table align="left" border="0" cellpadding="0" cellspacing="0" class="responsive-table w290" dir="ltr" style="min-width:100%; width:54%; max-width:100%;min-width:-webkit-calc(54%); min-width:calc(54%);width:-webkit-calc(287296px - 53600%);width: calc(287296px - 53600%);" width="290">
               <tbody>
                <tr>
                 <td align="center">
                  <!--[if (gte mso 9)|(IE)]>
<table align="center" border="0" cellspacing="0" cellpadding="0" width="300">
<tr>
<td align="center" valign="top" width="300">
<![endif]-->
                  <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
                   <tbody>
                    <tr>
                     <td align="left">
                      <p style="Margin:0; margin:0; font-family:Arial, Helvetica, sans-serif; font-size:13px; line-height:15px; font-weight:400; color:#a7a7a7;">
                       5900 Penn Avenue, Pittsburgh PA 15206, USA
                      </p>
                      <p style="Margin:0; margin:0; margin-top:px; font-family:Arial, Helvetica, sans-serif; font-size:13px; line-height:17px; font-weight:400; color:#a7a7a7;">
                       <a link-id="108578" style="color:#a7a7a7; text-decoration:underline;" target="_blank" web-redirect="1">
                        <span style="color:#a7a7a7;">
                         We’re hiring!
                        </span>
                       </a>
                       <br/>
                       <br/>
                       <a link-id="108579" style="color:#a7a7a7; text-decoration:underline;" target="_blank" web-redirect="1">
                        <span style="color:#a7a7a7;">
                         Unsubscribe
                        </span>
                       </a>
                      </p>
                     </td>
                    </tr>
                   </tbody>
                  </table>
                  <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
                 </td>
                </tr>
               </tbody>
              </table>
              <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
             </td>
             <td style="width:32px; min-width:32px; max-width:32px;" width="32">
             </td>
            </tr>
           </tbody>
          </table>
         </td>
        </tr>
        <tr>
         <td height="60" style="height:60px; min-height:60px; line-height:60px; font-size:1px;">
         </td>
        </tr>
       </tbody>
      </table>
      <!-- / Footer -->
      <!--[if (gte mso 9)|(IE)]>
</td>
</tr>
</table>
<![endif]-->
     </td>
    </tr>
   </tbody>
  </table>
  <!-- FIX FOR GMAIL iOS -->
  <div style="display:none; white-space:nowrap; font:15px courier; color:#ffffff;">
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  </div>
  <!-- FIX FOR GMAIL iOS -->
 </body>
</html>