Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911<!DOCTYPE html>
<html dir="ltr" lang="en" xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <title>
   What’s new: February 2024
  </title>
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <style type="text/css">
   #outlook a{padding: 0;}
.ReadMsgBody{width: 100%;}
.ExternalClass{width: 100%;}
.ExternalClass *{line-height: 100%;}
body{margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;}
table, td{border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;}
img{border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;}
p{display: block; margin: 13px 0;}
  </style>
  <!--[if mso]>
<xml>
<o:OfficeDocumentSettings>
<o:AllowPNG/>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
<![endif]-->
  <!--[if lte mso 11]>
<style type="text/css">
.outlook-group-fix{width:100% !important;}
</style>
<![endif]-->
  <style type="text/css">
   @media only screen and (max-width: 480px) {
.dys-desktop { display: none !important; }
div.dys-mobile { display: block !important; }
tr.dys-mobile { display: table-row !important; } 
}
  </style>
  <style type="text/css">
   @media only screen and (min-width:480px) {
.dys-column-per-100 {
width: 100.000000% !important;
max-width: 100.000000%;
}
.dys-column-per-25 {
width: 25% !important;
max-width: 25%;
}
.dys-column-per-33 {
width: 33.333333% !important;
max-width: 33.333333%;
}
.dys-column-per-75 {
width: 75% !important;
max-width: 75%;
}
}
  </style>
  <style type="text/css">
   @media only screen and (max-width:480px) {
 table.full-width-mobile { width: 100% !important; }
td.full-width-mobile { width: auto !important; }
}
u + #body a {color: #101010;text-decoration: underline;font-size: inherit; font-family: inherit; font-weight: inherit; line-height: inherit; }
 a {color: #101010;text-decoration: underline;}
 .event-list-padding > div {
 padding-bottom: 10px;
 }
 
 @media only screen and (max-width: 440px) {
 td.mobile-img-4-3 {
 padding: 30px !important;
 }
 td.mobile-column-4-3 {
 padding: 10px 30px 10px 30px !important;
 } 
 
 td.mobile-txt-padding {
 padding-right: 30px !important;
 }
 
 
 
 td.mobile-padding-30 {
 padding-left: 50px !important;
 }
 .mobile-padding-30 {
 padding-left: 50px !important;
 }
 
 td.mobile-banner-btn > table > tbody > tr > td > p {
 float: center; 
 }
 }
 td.button-shadow > table > tbody > tr > td {
 filter:drop-shadow(2px 2px 0px #101010);
 }
 
 @media only screen and (min-width: 440px) {
 td.lead-in-padding {
 padding-right: 135px !important; 
 }
 td.mobile-banner-btn {
 float:right !important;
 }
 }
 
 .row-border > table > tbody > tr > td {
 border-left: 1px solid #101010;
 border-right: 1px solid #101010;
 }
 .row-border > table {
 border-collapse: separate;
 }
 
 
 .bradius > table {border-collapse: separate;}
 .bradius > table > tbody > tr > td {
 border-radius: 8px 8px 0px 0px;
 border: 1px solid #101010;
 border-bottom: 0px;
 }
 
 @media only screen and (max-width:440px) {
 .tp-pd-mb {
 padding-top:10px !important;
 }
 }
 
 u + #body .gmail-blend-screen { background:#101010; mix-blend-mode:screen; }
 u + #body .gmail-blend-difference { background:#101010; mix-blend-mode:difference; }
 .address > a {color:#fffeef !important}
 
 .linear {background:#101010; background-image:linear-gradient(#101010,#101010) ; color:#fff;}
 
 @media only screen and (max-width: 440px) { 
 .mobile-hide {display:none;}
 .mobile-wider {width:66%!important;}
 }
 
 .bradius-bottom > table {border-collapse: separate;}
 .bradius-bottom > table > tbody > tr > td {
 border-radius: 0px 0px 8px 8px;
 border: 1px solid #101010;
 border-bottom: 0px;
 }
  </style>
 </head>
 <body id="body" style="background-color: #FFFFFF;">
  <div style="display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">
   Simplifying your work-life.
  </div>
  <div style="display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">
   ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌      ͏ ‌     
  </div>
  <span style="width:0;opacity:0;max-height:0;mso-hide:all;overflow:hidden;float:left;display:none !important;">
   Simplifying your work-life.
  </span>
  <span style="display: none; max-height: 0px; overflow: hidden;">
   ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏  ͏ 
 ­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­ 
­ ­ ­ ­ ­ ­ ­ ­ ­ ­
  </span>
  <div style="background-color: #FFFFFF;">
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="bradius-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="bradius" style="background-color:#F6A237;border-radius:9px 9px 0px 0px;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#F6A237;border-radius:9px 9px 0px 0px;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:26px 19px 32px 19px;word-break:break-word;">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
             <tbody>
              <tr>
               <td style="width:65px;">
                <a style="color:#101010;text-decoration:underline;" target="_blank">
                 <span style="color:#101010;text-decoration:underline;">
                  <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252F0VgcNGsCTHeiqasFHQtI_Coda_Logotype-Black%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjU0NDUwMn0:1rfkrG:PW0Zlcfklcog8e-PKOVXLlNY9pTFcm1BsTMFw6qAqvs" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="65"/>
                 </span>
                </a>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0;padding-top:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;word-break:break-word;">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
             <tbody>
              <tr>
               <td style="width:640px;">
                <img alt="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FGi9WrGJhSMizMgYoirwj_Whatsnewheader.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjU1NDM4Mn0:1rfkrG:gpfPYMjv9F3PefQEQZLIvqU0jA5OVMXvqcpNheupV2s" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="640"/>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:24px;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             What's new
            </h2>
           </td>
          </tr>
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              February 2024
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:30px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              From more natural ways to update timelines and edit images, to automations that allow you to set ’em and forget ’em, here are a set of features to help you create without constraint and build powerful workflows.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:26px 18px;word-break:break-word;">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
             <tbody>
              <tr>
               <td style="width:600px;">
                <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FgdQ4wqbvTW6G2n7QOK1w_8d5aa2c6a0f0affc0728bc1e6170b520867d7e82945164054076ecb63d7b4be28722500211aa437e4d3bfc4500d3362f9580eb89de1a593a90c8b8a6cd912fccec9fab1c600f8a6b433eb0134dea1d3a55fe5370bfbd39a620598974570f35721a75b1eb.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYyNzE2Mn0:1rfkrG:yg8x8fW0jqLJrb0OKE5qc0IiG7yMEHlLsGyACboyc1k" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="600"/>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0;padding-top:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:0;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             <strong>
              Mile after mile(stone).
             </strong>
            </h2>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:30px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              It’s a heck of a lot easier to motivate when you can see the finish line approaching. Keep your team chugging forward by
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                adding milestones
               </span>
              </a>
              —launch dates, phase completions, or any moment of significance—right into your timelines. If your target shifts (as they’re wont to do), just drag the diamond-shaped milestone marker, and the date will change accordingly.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:26px 18px;word-break:break-word;">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
             <tbody>
              <tr>
               <td style="width:600px;">
                <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FaHMgCZQZSYalSMS607Nn_timeline-2b.gif/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYyOTk2fQ:1rfkrG:3vXOppWj0DWPw9tl2HmhC4AhD-0vyX4h072qlrF71Ew" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="600"/>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:0px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:0;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             <strong>
              Time after time(line).
             </strong>
            </h2>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:30px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              While we’re on the subject of project timelines, we’ve got another helpful update to highlight: quick-add dependencies. Instead of setting dependencies from your base table (we hear you—that felt a little clunky), you can simply click and drag to indicate linked tasks right from the timeline itself. Cleaner ways to update your trackers and timelines means more time for you to focus on the important stuff...like keeping your project on track!
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:10px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:0;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             Small things considered.
            </h2>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FrDK23Lq0ROiFf8lVqmB0_02-Pack%25202-way.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzMTgzN30:1rfkrG:YEF-UR0z4uePRLr1Bz8SXMV9D8FCfPEIY-D7sNSWhrw" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Picture this.
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              When you insert an image into the canvas, you’ll see a
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                handy toolbar
               </span>
              </a>
              —you can crop, add a caption, and edit the image outline (three of the most frequently-utilized image features). We’re deleting Photoshop.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FBG03NbQiQdClmxmSyTZI_Check_Mark.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzMzQxOH0:1rfkrG:qdeLi6dFAo77MFacgFSvfQso7n-vTdK8hDYci5MLCCM" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Good form.
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              With just the tick of a box, you can opt to have a
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                copy of your form submission emailed to you
               </span>
              </a>
              . And you can say goodbye to trying to remember whether or not you filled out that questionnaire already.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FY57a99EQMKKzPtiZrFkm_Expand_Comment.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzNDc5OH0:1rfkrG:s5kO5WwdBCaGV_saSvg7tailXnvS_JLqo5RrbQRfpAM" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Where was I?
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              The
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                comment box will expand
               </span>
              </a>
              when you’re writing a long comment, so you’ll never lose your place and can review your thoughts at a glance.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252F2aLwFK7YRquEVjMIxuFu_Automation.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzNjA1N30:1rfkrG:_Jy4xJYWETItxzvFDrswKIyE5dMG6_SJUuI5oy51cDU" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Automation station:
              </strong>
             </p>
             <ul>
              <li>
               <div style="position:relative">
                Add explanatory
                <a style="color:#101010;text-decoration:underline;">
                 <span style="color:#101010;text-decoration:underline;">
                  descriptions to automations
                 </span>
                </a>
                to remind yourself of their function and help your collaborators understand how they work.
               </div>
              </li>
              <li>
               <div style="position:relative">
                When you only want an automation to run for a certain period, you can set it to expire after 7 days, 30 days, or on a specific date.
               </div>
              </li>
             </ul>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FcR5rbgneSGKSuBXKF5dX_Open.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzNzM4fQ:1rfkrG:akpluq6w4h7Wwg1bfb7vDDcXO1i3pFD0UwEGZEq2s6U" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Open, close, open, close.
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Expand and collapse groups in your tables without affecting your collaborators’ views of the data.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FoSVqVwoBQKK2yEfUnaaf_AI.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzODY1OH0:1rfkrG:zfeWrjvLgx_wjfYu6EdNnrBx1OT63dYwP8YmfMOjwMs" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Big
              </strong>
              <s>
               <strong>
                shoes
               </strong>
              </s>
              <strong>
               cells to fill.
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Coda AI is great at recognizing patterns in your data and, starting this week, it can
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                autofill your columns
               </span>
              </a>
              with a simple click and drag.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:160px;">
<![endif]-->
        <div class="dys-column-per-25 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" width="100%">
          <tbody>
           <tr>
            <td style="padding-right:0;vertical-align:top;">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="" width="100%">
              <tr>
               <td align="left" style="font-size:0px;padding:0;padding-left:30px;word-break:break-word;">
                <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                 <tbody>
                  <tr>
                   <td style="width:120px;">
                    <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FHhWhNe2fRFuhqHN9DABm_8_Days_Week.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjYzOTgzOH0:1rfkrG:bEw7i_r1LvKRXVK5EuRzGNi_VuTD1g3J8-MnobkZkbU" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="120"/>
                   </td>
                  </tr>
                 </tbody>
                </table>
               </td>
              </tr>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:480px;">
<![endif]-->
        <div class="dys-column-per-75 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" class="mobile-font-size tp-pd-mb" style="font-size:0px;padding:10px 30px;padding-top:0;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              <strong>
               Eight days a week.
              </strong>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Sometimes schedules change. For those times, you can now set
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                custom working days
               </span>
              </a>
              —which interact with the NetWorkingDays() and Workday() formulas—in your region settings.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:20px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0;text-align:left">
              <em>
               See these and all of our latest product updates
              </em>
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                <em>
                 here
                </em>
               </span>
              </a>
              <em>
               .
              </em>
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:0;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             Watch and learn.
            </h2>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FFFFFF;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FFFFFF;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              This month’s updates are all about simplifying—and having a solid grasp of the basics is a great place to start. Our upcoming webinars dive deep into Coda’s building blocks, empowering you to navigate confidently and build creatively. Here’s what’s coming up:
              <br/>
              <br/>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                <u>
                 <strong>
                  Notion to Coda: Why teams are switching
                 </strong>
                </u>
               </span>
              </a>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Tue, Mar 12, 10:00 am PT
              <br/>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              ​
             </p>
             <p style="margin-top:0;margin-bottom:0">
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                <u>
                 <strong>
                  Airtable to Coda: Why teams are switching
                 </strong>
                </u>
               </span>
              </a>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Thu, Mar 14, 10:00 am PT
              <br/>
              <br/>
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                <u>
                 <strong>
                  Confluence to Coda: Why teams are switching
                 </strong>
                </u>
               </span>
              </a>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              Wed, Mar 20, 10:00 am PT
              <br/>
              <br/>
             </p>
             <p style="margin-top:0;margin-bottom:0">
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                Head here for the complete schedule
               </span>
              </a>
              and to RSVP for upcoming sessions.
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDDCB0;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDDCB0;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:0;padding-top:0px;word-break:break-word;">
            <p style="border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:100%;">
            </p>
            <!--[if mso | IE]><table align='center' border='0' cellpadding='0' cellspacing='0' role='presentation' style='border-top-color:#101010;border-top-style:solid;border-top-width:1px;font-size:1px;margin:0px auto;width:640px;' width='640px'><tr><td style='height:0;line-height:0;'>&nbsp</td></tr></table><![endif]-->
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:10px 30px;padding-bottom:0;padding-top:0;word-break:break-word;">
            <h2 style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:24px;font-weight:700;letter-spacing:-.02em;line-height:31px;margin:0;padding:0;text-align:left;">
             Procrastination corner.
            </h2>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:0px;padding-left:0px;padding-right:0px;padding-top:10px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="left" style="font-size:0px;padding:0 34px 0 30px;word-break:break-word;">
            <div style="color:#101010;font-family:Helvetica, Arial, sans-serif;font-size:18px;font-weight:300;letter-spacing:-0.01em;line-height:27px;text-align:left;">
             <p style="margin-top:0;margin-bottom:0">
              Mayday! Snakes can
              <a style="color:#101010;text-decoration:underline;">
               <span style="color:#101010;text-decoration:underline;">
                cartwheel
               </span>
              </a>
              . I repeat: snakes can cartwheel. 🐍🤸
             </p>
            </div>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="row-border-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="row-border" style="background-color:#FDF3D8;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#FDF3D8;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:20px 0;padding-bottom:10px;padding-left:0px;padding-right:0px;padding-top:0px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
          <tr>
           <td align="center" style="font-size:0px;padding:26px 18px;word-break:break-word;">
            <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
             <tbody>
              <tr>
               <td style="width:600px;">
                <img height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252F4k4V1AVGTYWNHvYVKIVK_Snake.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0MDk4M30:1rfkrG:6tUfeCZltMQdzyTlCA1bT3oCVS6MZTHjol5haCU0xWE" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="600"/>
               </td>
              </tr>
             </tbody>
            </table>
           </td>
          </tr>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
   <!-- FOR OUTLOOK row has background image of the background color as a rectangle -->
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="bradius-bottom-outlook" style="width:640px;" width="640"><tr><td style="line-height:0px;font-size:0px;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="bradius-bottom" style="background-color:#101010;border-radius: 0px 0px 9px 9px;margin:0px auto;max-width:640px;">
    <table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background-color:#101010;border-radius: 0px 0px 9px 9px;width:100%;">
     <tbody>
      <tr>
       <td style="direction:ltr;font-size:0px;padding:0px 0px 20px;text-align:center;vertical-align:top;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td class="linear-outlook" style="width:640px;">
<![endif]-->
        <div class="dys-column-per-100 outlook-group-fix linear" style="direction:ltr;display:inline-block;font-size:0;line-height:0;text-align:left;width:100%;background:#101010;background-image:linear-gradient(#101010,#101010);color:#fff;">
         <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0">
<tr>
<![endif]-->
         <!--[if mso | IE]>
<td style="vertical-align:top;width:213px;">
<![endif]-->
         <div class="dys-column-per-33 outlook-group-fix" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:33.333333%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
           <tr class="dys-desktop">
            <td align="left" style="font-size:0px;padding:20px 0px 0px 30px;word-break:break-word;">
             <div class="dys-desktop">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
               <tbody>
                <tr>
                 <td style="width:65px;">
                  <a style="color:#101010;text-decoration:underline;" target="_blank">
                   <span style="color:#101010;text-decoration:underline;">
                    <img alt="Coda" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01gceye3h3mdhpetdrq2ygrd69%252FvHejWWTnOeOR1KwqI44A_0VgcNGsCTHeiqasFHQtI_Coda_Logotype-Black%25402x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0MjU5fQ:1rfkrG:DCvgtpZGPdyvafuzEoDpjA_3Ff31XY9UXvqzLxr4Bzw" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="65"/>
                   </span>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </div>
            </td>
           </tr>
           <tr class="dys-mobile" style="display:none;">
            <td align="left" style="font-size:0px;padding:20px 0px 0px 30px;word-break:break-word;">
             <div>
              <!--[if !mso]-->
              <div class="dys-mobile" style="display:none;">
               <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse:collapse;border-spacing:0px;">
                <tbody>
                 <tr>
                  <td style="width:21px;">
                   <a style="color:#101010;text-decoration:underline;" target="_blank">
                    <span style="color:#101010;text-decoration:underline;">
                     <img alt="Coda" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01dvxt7mavmn4qe3rwy8cm2brf%252F336xmmT0QIiGIMA639Aw_codalogo.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0Mzg4NH0:1rfkrG:3-PQFouOPfGtVIv2_g1GNbtm7V1Jbvpz5KG0ZWiJLTM" style="border:none;display:block;font-size:13px;height:auto;outline:none;text-decoration:none;width:100%;" width="21"/>
                    </span>
                   </a>
                  </td>
                 </tr>
                </tbody>
               </table>
              </div>
              <!--[endif]-->
             </div>
            </td>
           </tr>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:213px;">
<![endif]-->
         <div class="dys-column-per-33 outlook-group-fix mobile-wider" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:33.333333%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
           <!--[if gte mso 16]>
 <style>
 .keep-white {
 mso-style-textfill-type:gradient;
 mso-style-textfill-fill-gradientfill-stoplist:"0 \#FFFFFF 0 100000\,100000 \#FFFFFF 0 100000";
 color:#000000 !important;
 }
 </style>
<![endif]-->
           <tr>
            <td align="left" style="font-size:0px;padding:20px 0px 20px 30px;word-break:break-word;">
             <div style="color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:12px;font-weight:400;letter-spacing:-0.01em;line-height:19px;text-align:left;">
              <!--[if !mso]>-->
              <div style="background:#101010; background-image:linear-gradient(#101010,#101010); color:#fff;display:inline;">
               <div class="gmail-blend-screen" style="display:inline">
                <div class="gmail-blend-difference" style="display:inline">
                 <!--<![endif]-->
                 <span class="keep-white" style="color:#ffffff;">
                  Follow us on
                 </span>
                 <!--[if !mso]>-->
                </div>
               </div>
              </div>
              <!--<![endif]-->
              <br/>
              <span>
               <a style="text-decoration:none;color:#101010;">
                <span style="text-decoration:none;color:#101010;">
                 <img height="10" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01dvxt7mavmn4qe3rwy8cm2brf%252F0y6QZYrTx2OJCOjzBqQi_twitter.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0NTExfQ:1rfkrG:SuR-bF5LIphYIOL5vpWsBhgSEXXARLIBfNxWxHyPck8" style="padding-right:4px;" width="10"/>
                </span>
               </a>
               <!--[if !mso]>-->
               <div style="background:#101010; background-image:linear-gradient(#101010,#101010); color:#fff;display:inline;">
                <div class="gmail-blend-screen" style="display:inline">
                 <div class="gmail-blend-difference" style="display:inline">
                  <!--<![endif]-->
                  <span class="keep-white" style="color:#ffffff;">
                   <a style="color:#ffffff; text-decoration:none;">
                    <span style="color:#ffffff;text-decoration:none;">
                     Twitter
                    </span>
                   </a>
                  </span>
                  <!--[if !mso]>-->
                 </div>
                </div>
               </div>
               <!--<![endif]-->
              </span>
              <br/>
              <span>
               <a style="text-decoration:none;color:#101010;">
                <span style="text-decoration:none;color:#101010;">
                 <img height="10" src="https://inboxflows.com/_/image/https%253A%252F%252Fcdn-web-assets.dyspatch.io%252Forg_01dvxt7mavmn4qe3rwy8cm2brf%252FlleOeayLQXmQtufOXcrn_linkedin.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjZG4td2ViLWFzcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0Njc0M30:1rfkrG:0SqJfwrasC_Tz3NOu0rf0RE_ulUKHpAFo8O88fejq3g" style="padding-right:4px;" width="10"/>
                </span>
               </a>
               <!--[if !mso]>-->
               <div style="background:#101010; background-image:linear-gradient(#101010,#101010); color:#fff;display:inline;">
                <div class="gmail-blend-screen" style="display:inline">
                 <div class="gmail-blend-difference" style="display:inline">
                  <!--<![endif]-->
                  <span class="keep-white" style="color:#ffffff;">
                   <a style="color:#ffffff; text-decoration:none;">
                    <span style="color:#ffffff;text-decoration:none;">
                     LinkedIn
                    </span>
                   </a>
                  </span>
                  <!--[if !mso]>-->
                 </div>
                </div>
               </div>
               <!--<![endif]-->
              </span>
             </div>
            </td>
           </tr>
           <tr class="dys-mobile" style="display:none;">
            <td align="left" style="font-size:0px;padding:0px 30px 40px 30px;word-break:break-word;">
             <div>
              <!--[if !mso]-->
              <div class="dys-mobile" style="display:none;">
               <div style="color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:12px;font-weight:400;letter-spacing:-0.01em;line-height:18px;text-align:left;">
                <!--[if !mso]>-->
                <div style="background:#101010; background-image:linear-gradient(#101010,#101010); color:#fff;display:inline;">
                 <div class="gmail-blend-screen" style="display:inline">
                  <div class="gmail-blend-difference" style="display:inline">
                   <!--<![endif]-->
                   <span class="keep-white address" style="color:#ffffff;">
                    <a style="color:#ffffff; text-decoration:none;">
                     <span style="color:#ffffff;text-decoration:none;">
                      250 Montgomery St, Suite 1000,
                      <br/>
                      San Francisco, CA 94104
                     </span>
                    </a>
                   </span>
                   <!--[if !mso]>-->
                  </div>
                 </div>
                </div>
                <!--<![endif]-->
               </div>
              </div>
              <!--[endif]-->
             </div>
            </td>
           </tr>
           <tr class="dys-mobile" style="display:none;">
            <td align="left" style="font-size:0px;padding:20px 0px 0px 30px;padding-bottom:25px;padding-top:5px;word-break:break-word;">
             <div>
              <!--[if !mso]-->
              <div class="dys-mobile" style="display:none;">
               <div style="color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:12px;font-weight:400;letter-spacing:-1%;line-height:18px;text-align:left;">
                <a style="color:#878787;text-decoration:none;">
                 <span style="color:#878787;text-decoration:none;">
                  Unsubscribe
                 </span>
                </a>
               </div>
              </div>
              <!--[endif]-->
             </div>
            </td>
           </tr>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:213px;">
<![endif]-->
         <div class="dys-column-per-33 outlook-group-fix mobile-hide" style="direction:ltr;display:inline-block;font-size:13px;text-align:left;vertical-align:top;width:33.333333%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align:top;" width="100%">
           <tr class="dys-desktop">
            <td align="left" style="font-size:0px;padding:20px 30px 20px 0px;word-break:break-word;">
             <div class="dys-desktop">
              <div style="color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:12px;font-weight:400;letter-spacing:-1%;line-height:18px;text-align:left;">
               <!--[if !mso]>-->
               <div style="background:#101010; background-image:linear-gradient(#101010,#101010); color:#fff;display:inline;">
                <div class="gmail-blend-screen" style="display:inline">
                 <div class="gmail-blend-difference" style="display:inline">
                  <!--<![endif]-->
                  <span class="keep-white" style="color:#ffffff;">
                   <a style="color:#ffffff; text-decoration:none;cursor: default;">
                    <span style="color:#ffffff;text-decoration:none;">
                     250 Montgomery St, Suite 1000,
                     <br/>
                     San Francisco, CA 94104
                    </span>
                   </a>
                  </span>
                  <!--[if !mso]>-->
                 </div>
                </div>
               </div>
               <!--<![endif]-->
              </div>
             </div>
            </td>
           </tr>
           <tr class="dys-desktop">
            <td align="left" style="font-size:0px;padding:20px 20px 20px 0px;padding-bottom:25px;padding-top:20px;word-break:break-word;">
             <div class="dys-desktop">
              <div style="color:#FFFFFF;font-family:Helvetica, Arial, sans-serif;font-size:12px;font-weight:400;letter-spacing:-1%;line-height:18px;text-align:left;">
               <a style="color:#878787;text-decoration:none;">
                <span style="color:#878787;text-decoration:none;">
                 Unsubscribe
                </span>
               </a>
              </div>
             </div>
            </td>
           </tr>
          </table>
         </div>
         <!--[if mso | IE]>
</td>
<![endif]-->
         <!--[if mso | IE]>
</tr>
</table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
  </div>
  <img alt="" border="0" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fbuild-links.coda.io%252Fq%252FUaYIKb_h1sfBM_WqGnQ0cg~~%252FAAQRxQA~%252FRgRnw02EPlcDc3BjQgpl24TI4GVgvVOdUhMyYmUxNWE0NkB1aWZlZWQuY29tWAQAAAJM/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZidWlsZC1saW5rcyIsInRpbWUiOjE3MDkyMzAyMTQuNjY0ODE5NX0:1rfkrG:BfKkVAyklsR8q3qyvpim1Fw-CWIY3uQFgcWKsx5ybnI" width="1"/>
 </body>
</html>