Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490<!DOCTYPE html>
<html dir="auto" 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>
  </title>
  <!--[if !mso]><!-->
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!--<![endif]-->
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <!--[if mso]> <noscript><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml></noscript>
<![endif]-->
  <!--[if lte mso 11]>
<style type="text/css">

.y{width:100% !important;}
</style>
<![endif]-->
  <!--[if !mso]><!-->
  <!--<![endif]-->
  <meta content="telephone=no, date=no, address=no, email=no, url=no" name="format-detection"/>
  <meta name="x-apple-disable-message-reformatting"/>
  <meta content="light dark" name="color-scheme"/>
  <meta content="light dark" name="supported-color-schemes"/>
  <!--[if gte mso 9]>
<style>a:link{mso-style-priority:99;color:inherit;text-decoration:none;}a:visited{mso-style-priority:99;color:inherit;text-decoration:none;}li{text-indent:-1em;}table,td,p,div,span,ul,ol,li,a{mso-hyphenate:none;}sup,sub{font-size: 100% !important;}
</style>
<![endif]-->
  <!--[if mso]><!-- -->
  <!--<![endif]-->
  <style>
   body {
margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
}
img {
border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;
}
@font-face {
font-family: 'Roboto'; font-style: italic; font-weight: 300; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOjCnqEu92Fr1Mu51TjASc6CsE.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkyMjEzfQ:1rrfoP:NBSeHSlVuvfFm7emSxWpC32gPkEctCcRIvt1zBjbQvE') format('truetype');
}
@font-face {
font-family: 'Roboto'; font-style: italic; font-weight: 400; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOkCnqEu92Fr1Mu51xIIzc.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkyODM1OH0:1rrfoP:RqXwrrxnetieC7oDMrcIzYkSAx7FxqwqgAv-PtPHmV8') format('truetype');
}
@font-face {
font-family: 'Roboto'; font-style: normal; font-weight: 300; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOlCnqEu92Fr1MmSU5fBBc9.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzMTg0fQ:1rrfoP:HrNMnQ3hc1O7Rm71ouujeIvR5Y1wELwNgxcdXIQPk0w') format('truetype');
}
@font-face {
font-family: 'Roboto'; font-style: normal; font-weight: 400; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOmCnqEu92Fr1Mu4mxP.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzMzUyN30:1rrfoP:IUoSebb5FDE2yMqnhH9VXhUKnT1wyCaFHsiaoRQLNxc') format('truetype');
}
@font-face {
font-family: 'Roboto'; font-style: normal; font-weight: 700; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOlCnqEu92Fr1MmWUlfBBc9.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzNTQ4fQ:1rrfoP:tE9G_Zj1C4QmtHM0pLOA-JBt7Nb71JfUR9rs8-rWYCE') format('truetype');
}
@font-face {
font-family: 'Inter'; font-style: normal; font-weight: 400; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Finter%252Fv13%252FUcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfAZ9hjQ.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzNzY2Nn0:1rrfoP:gmzrgG37nWU59xrnzFjBvLhvtnEE8XJuuNQTcBKzs5I') format('truetype');
}
@font-face {
font-family: 'Inter'; font-style: normal; font-weight: 700; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Finter%252Fv13%252FUcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYAZ9hjQ.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzOTUxfQ:1rrfoP:kvGWqCj0lqDVd4MKArJPlToxqaiFue4pmc6Vs54bYN4') format('truetype');
}
body {
margin: 0; padding: 0; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%;
}
img {
border: 0; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic;
}
@font-face {
font-family: 'Roboto'; font-style: normal; font-weight: 400; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOmCnqEu92Fr1Mu4mxP.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzMzUyN30:1rrfoP:IUoSebb5FDE2yMqnhH9VXhUKnT1wyCaFHsiaoRQLNxc') format('truetype');
}
@font-face {
font-family: 'Roboto'; font-style: normal; font-weight: 700; src: url('https://inboxflows.com/_/image/https%253A%252F%252Ffonts.gstatic.com%252Fs%252Froboto%252Fv30%252FKFOlCnqEu92Fr1MmWUlfBBc9.ttf/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZmb250cy5nc3RhdCIsInRpbWUiOjE3MTIwNzA3NTMuMTkzNTQ4fQ:1rrfoP:tE9G_Zj1C4QmtHM0pLOA-JBt7Nb71JfUR9rs8-rWYCE') format('truetype');
}
@media only screen and (min-width:599px) {
  .m {
    width: 568px !important; max-width: 568px;
  }
  .mg {
    width: 100% !important; max-width: 100%;
  }
  .yk {
    width: 48.5915% !important; max-width: 48.5915%;
  }
  .w {
    width: 2.8169% !important; max-width: 2.8169%;
  }
  .ys {
    width: 500px !important; max-width: 500px;
  }
  .b {
    width: 13px !important; max-width: 13px;
  }
  .h {
    width: 536px !important; max-width: 536px;
  }
  .r5 {
    width: 20% !important; max-width: 20%;
  }
  .n {
    width: 3.2% !important; max-width: 3.2%;
  }
  .z {
    width: 76.8% !important; max-width: 76.8%;
  }
  .zt {
    width: 600px !important; max-width: 600px;
  }
  .l {
    width: 576px !important; max-width: 576px;
  }
  .q {
    width: 24.6% !important; max-width: 24.6%;
  }
  .p {
    width: 72.2% !important; max-width: 72.2%;
  }
}
@media only screen and (max-width:598px) {
  table.mq {
    width: 100% !important;
  }
  td.mq {
    width: auto !important;
  }
}
@media only screen and (max-width:599px) {
  .emailify {
    height: 100% !important; margin: 0 !important; padding: 0 !important; width: 100% !important;
  }
  u+.emailify .v {
    margin-left: 1em !important;
  }
  td.x {
    padding-left: 0 !important; padding-right: 0 !important;
  }
  .mq img {
    max-width: 100% !important; height: auto !important;
  }
  br.s {
    display: none !important;
  }
  .p3 {
    display: none !important; max-width: 0 !important; max-height: 0 !important; overflow: hidden !important; mso-hide: all !important;
  }
  div.r.e>table>tbody>tr>td {
    padding-right: 16px !important;
  }
  div.r.e>div>table>tbody>tr>td {
    padding-right: 16px !important;
  }
  div.r.yss>table>tbody>tr>td {
    padding-left: 16px !important;
  }
  div.r.yss>div>table>tbody>tr>td {
    padding-left: 16px !important;
  }
  div.r.a>table>tbody>tr>td {
    padding-right: 12px !important;
  }
  div.r.a>div>table>tbody>tr>td {
    padding-right: 12px !important;
  }
  div.r.u>table>tbody>tr>td {
    padding-left: 12px !important;
  }
  div.r.u>div>table>tbody>tr>td {
    padding-left: 12px !important;
  }
  div.c.g>table>tbody>tr>td {
    padding-right: 5px !important;
  }
  div.c.ae>table>tbody>tr>td {
    padding-left: 5px !important;
  }
  td.x.f>div {
    text-align: center !important;
  }
  td.x.f>div>p {
    text-align: center !important;
  }
  td.x.f>p {
    text-align: center !important;
  }
  td.x.f>div>h1 {
    text-align: center !important;
  }
  td.x.f>h1 {
    text-align: center !important;
  }
  td.x.yssa span {
    font-size: 28px !important;
  }
  td.x.yssa>div {
    font-size: 28px !important;
  }
  td.x.yssa {
    font-size: 28px !important;
  }
  td.x.nhn span {
    line-height: 40px !important;
  }
  td.x.nhn>div {
    line-height: 40px !important;
  }
  td.x.nhn {
    line-height: 40px !important;
  }
  td.x.t span {
    font-size: 14px !important;
  }
  td.x.t>div {
    font-size: 14px !important;
  }
  td.x.t {
    font-size: 14px !important;
  }
  td.x.vp span {
    font-size: 16px !important;
  }
  td.x.vp>div {
    font-size: 16px !important;
  }
  td.x.vp {
    font-size: 16px !important;
  }
  td.x.sm span {
    font-size: 22px !important;
  }
  td.x.sm>div {
    font-size: 22px !important;
  }
  td.x.sm {
    font-size: 22px !important;
  }
  div.r.d>table>tbody>tr>td {
    padding-top: 0px !important;
  }
  div.r.d>div>table>tbody>tr>td {
    padding-top: 0px !important;
  }
  div.r.bfz>table>tbody>tr>td {
    padding-right: 0px !important;
  }
  div.r.bfz>div>table>tbody>tr>td {
    padding-right: 0px !important;
  }
  div.r.lz>table>tbody>tr>td {
    padding-bottom: 0px !important;
  }
  div.r.lz>div>table>tbody>tr>td {
    padding-bottom: 0px !important;
  }
  div.r.v9>table>tbody>tr>td {
    padding-left: 0px !important;
  }
  div.r.v9>div>table>tbody>tr>td {
    padding-left: 0px !important;
  }
}
@media only screen and (min-width:563px) {
  .pc100 {
    width: 100% !important; max-width: 100%;
  }
  .pc50 {
    width: 50% !important; max-width: 50%;
  }
  .pc0 {
    width: 0% !important; max-width: 0%;
  }
  .xc524 {
    width: 524px !important; max-width: 524px;
  }
  .xc500 {
    width: 500px !important; max-width: 500px;
  }
}
@media only screen and (max-width:563px) {
  .emailify {
    height: 100% !important; margin: 0 !important; padding: 0 !important; width: 100% !important;
  }
  u+.emailify .glist {
    margin-left: 25px !important;
  }
  td.x {
    padding-left: 0 !important; padding-right: 0 !important;
  }
  br.sb {
    display: none !important;
  }
  .hd-1 {
    display: block !important; height: auto !important; overflow: visible !important;
  }
  .ht-1 {
    display: table !important; height: auto !important; overflow: visible !important;
  }
  .hr-1 {
    display: table-row !important; height: auto !important; overflow: visible !important;
  }
  .hc-1 {
    display: table-cell !important; height: auto !important; overflow: visible !important;
  }
  div.r.pr-16>table>tbody>tr>td {
    padding-right: 16px !important;
  }
  div.r.pl-16>table>tbody>tr>td {
    padding-left: 16px !important;
  }
}
  </style>
 </head>
 <body bgcolor="#f0f3ff" class="emailify" lang="en" link="#DD0000" style="mso-line-height-rule: exactly; mso-hyphenate: none; word-spacing: normal; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; padding: 0;" vlink="#DD0000">
  <div style="color:transparent;visibility:hidden;opacity:0;font-size:0px;border:0;max-height:1px;width:1px;margin:0px;padding:0px;border-width:0px!important;display:none!important;line-height:0px!important;">
   <img alt="" border="0" height="1" src="https://inboxflows.com/_/image/https%253A%252F%252Fclicks.mail.monday.com%252Fq%252F8PkXWY8J7sD3uzXpsRaC3Q~~%252FAAQRxQA~%252FRgRn7qVePVcDc3BjQgpmBF4gDGZU4w_7UhNlNTRkOGMwNkB1aWZlZWQuY29tWAQAAAC7/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZjbGlja3MubWFpbCIsInRpbWUiOjE3MTIwNzA3NTMuMjI1NTExM30:1rrfoP:vineLClYbquBCh0ZKHA5jr7JQucriNq5qbRZODmQ-RQ" width="1"/>
  </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;">
   ROI of childcare coverage • Tech giants can’t compete in the AI talent war…
  </div>
  <div style="display: none; font-size: 1px; color: #ffffff; line-height: 1px; max-height: 0; max-width: 0; opacity: 0; overflow: hidden;">
   ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­ ͏ ‌     ­
  </div>
  <div dir="auto" lang="en" style="background-color: #f0f3ff;">
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r e yss p3" style="background: #f0f3ff; background-color: #f0f3ff; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#f0f3ff" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #f0f3ff; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px 16px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:568px;">
<![endif]-->
        <div align="left" class="m y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td aria-hidden="true" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <div style="height: 40px; line-height: 40px;">
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r e yss" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 16px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:568px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:275px;">
<![endif]-->
         <div align="left" class="yk y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 48.5915%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
           <tbody>
            <tr>
             <td align="left" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
               <tbody>
                <tr>
                 <td style="width: 114px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <a target="_blank">
                   <img alt="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F660bf6c645410b004bf0dc64%252Foriginal.png%253F1712060102/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI1NzU3fQ:1rrfoP:da9KDKvqRBvkxaZyecATUi8CzBYC88WL85MIwBC-8V0" style="display: block; outline: none; text-decoration: none; height: auto; width: 100%; font-size: 13px; line-height: 100%; -ms-interpolation-mode: bicubic; border-width: 0;" width="114"/>
                  </a>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:15px;">
<![endif]-->
         <div align="left" class="w y" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 2.8169%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:middle;width:275px;">
<![endif]-->
         <div align="left" class="yk y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 48.5915%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
           <tbody>
            <tr>
             <td align="right" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
              <div align="right" style="">
               <p align="right" style="mso-line-height-alt: 16px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 114%; mso-line-height-alt: 16px; mso-ansi-font-size: 14px;">
                 April 2, 2024
                </span>
               </p>
              </div>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 20px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c g ae" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
          <tbody>
           <tr>
            <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0; border-style: none;" valign="middle">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
              <tbody>
               <tr>
                <td align="center" class="x f yssa nhn" style="font-size: 0; padding-bottom: 8px; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                 <div align="center" style="">
                  <p align="center" style="mso-line-height-alt: 36px; mso-ansi-font-size: 32px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                   <span style="font-size: 32px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 113%; mso-line-height-alt: 36px; mso-ansi-font-size: 32px;">
                    The
                    <a style="text-decoration: none; color: #333333; cursor: auto; white-space: nowrap;">
                     monday.com
                    </a>
                    weekly
                   </span>
                  </p>
                 </div>
                </td>
               </tr>
               <tr>
                <td align="center" class="x f t" style="font-size: 0; padding-bottom: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                 <div align="center" style="">
                  <p align="center" style="mso-line-height-alt: 24px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                    <a style="text-decoration: none; color: #333333; cursor: auto; white-space: nowrap;">
                     monday.com
                    </a>
                    ’s take on the latest work trends - sent on Tuesdays
                   </span>
                  </p>
                 </div>
                </td>
               </tr>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="justify" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px 24px 12px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:top;width:13px;">
<![endif]-->
        <div align="left" class="b y" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
          <tbody>
           <tr>
            <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
              <tbody>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
          <tbody>
           <tr>
            <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px 24px; border-style: none;" valign="middle">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
              <tbody>
               <tr>
                <td align="left" class="x" style="font-size: 0; padding-bottom: 22px; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                 <div align="left" style="">
                  <p align="left" style="mso-line-height-alt: 16px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 100%; mso-line-height-alt: 16px; mso-ansi-font-size: 16px;">
                    Inside this issue
                   </span>
                  </p>
                 </div>
                </td>
               </tr>
               <tr>
                <td align="left" class="x vp" style="font-size: 0; padding-bottom: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                 <div align="left" style="">
                  <ul class="v" style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; line-height: 164%; color: #6b6b6b; font-weight: 400; mso-line-height-alt: 24px; mso-ansi-font-size: 14px; margin: 0 0 0 20px; padding: 0;">
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     Workplace trends
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     The AI corner
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     When is it time to let an employee go?
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     Water cooler chatter
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     Question of the week
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     Just for laughs
                    </span>
                   </li>
                   <li style="margin: 0;">
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6b6b6b; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     Follow the
                     <a style="text-decoration: none; color: #6b6b6b; cursor: auto; white-space: nowrap;">
                      monday.com
                     </a>
                     weekly on
                    </span>
                    <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #009aff; line-height: 164%; text-decoration: underline; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                     <a style="color: #009aff; text-decoration: underline;" target="_blank">
                      LinkedIn
                     </a>
                    </span>
                   </li>
                  </ul>
                 </div>
                </td>
               </tr>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td><td style="vertical-align:top;width:13px;">
<![endif]-->
        <div align="left" class="b y" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
          <tbody>
           <tr>
            <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
             <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
              <tbody>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
         <div align="left" class="mg y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px 8px 8px 0px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x sm" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 46px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 192%; mso-line-height-alt: 46px; mso-ansi-font-size: 24px;">
                     Workplace trends
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 20px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                Benefits
               </span>
              </p>
              <p style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 What’s the ROI of covering employee childcare?
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 The returns on providing employees with childcare benefits can be as high as 425%, according to a new report by Boston Consulting Group. The data suggests that corporations that prioritize childcare coverage see a significant surge in both popularity and retention. UPS, for example, initiated an on-site childcare program in a warehouse in California and saw retention rates increase from 69% to 96%, per the report. In contrast, companies with insufficient childcare benefits grapple with greater turnover, which often winds up costing more than the childcare itself. In fact, 63% of surveyed parents changed careers to afford childcare, costing companies upwards of $13 billion a year, according to the report. Experts conclude that such benefits not only enable employees to remain physically present at work, but they also foster a greater sense of loyalty towards the companies investing in their well-being.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                 Retirement
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 For single women in America, retirement poses far more challenges
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Those who live longer, earn less, or have no spouse are at a greater risk of running out of retirement money. That’s why, for millions of single women, the concern is especially high since they often meet the criteria for all three. Not only do women earn less than men on average, but they are also more than twice as likely to leave the workforce for a period of time for maternity leave or to care for an aging parent, according to a recent Goldman Sachs survey. The result? Women have roughly 44% less money saved by the time they reach retirement age than their male counterparts. And with women typically living longer than men, they often have to spread their already smaller savings across more years.
                </span>
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px 32px 18px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
         <div align="left" class="mg y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px 8px 8px 0px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x sm" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 46px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 192%; mso-line-height-alt: 46px; mso-ansi-font-size: 24px;">
                     The AI corner
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 20px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                Hiring
               </span>
              </p>
              <p style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Even tech giants can’t keep up with the AI talent war
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 The fight for AI talent is reaching new heights, with a number of tech companies offering AI experts compensation packages of more than $1 million dollars a year. Even tech giants like Meta are losing AI researchers to competitors like OpenAI and Google’s DeepMind who are reportedly paying $5 million to $10 million a year to their top AI experts. To better compete, Meta is making some drastic moves like offering jobs to candidates before interviewing them and having Mark Zuckerberg personally reach out to top-tier AI candidates. With layoffs still ongoing across the tech industry, the fight for AI talent reflects a significant shift in focus and priority among corporations. All this said, it’s no wonder tech workers are flocking to add AI experience to their resumes in an effort to get in on the AI talent bid.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                 Regulations
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 24px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Companies aren’t waiting around for AI regulations
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 8px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 It’s taking time for countries to enact AI legislation, with the EU only approving the world’s first comprehensive AI law last month. But companies aren’t waiting around and risking having to derail their operations when further regulations inevitably come into effect. Rather, many are proactively trying to be compliant by combining best practices around customer data and implementing a good amount of guesswork. Goldman Sachs and Deutsche Telekom, for example, have taken anticipatory steps, establishing an AI committee and independent internal guidelines for their use of AI. Others like KeyBank are forbidding the use of AI tools like ChatGPT inside the organization in order to monitor all uses of AI and avoid any data issues or unintended consequences.
                </span>
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 24px 32px 18px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 36px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 150%; mso-line-height-alt: 36px; mso-ansi-font-size: 24px;">
                When is it time to let an employee go?
                <br/>
               </span>
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; font-style: italic; color: #878787; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                By
                <a style="text-decoration: none; color: #878787; cursor: auto; white-space: nowrap;">
                 monday.com
                </a>
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                While in an ideal world, as a manager, you’d hire the perfect talent each and every time, and all of your employees would be strong performers with great attitudes, in reality, it doesn’t always work out that way, and certain flags may only show up later on. Whether it’s an issue with someone’s attitude, behavior, performance, relationships, or any other factor that may influence their fit within the team and company, at some point in time, you will likely confront one of the hardest parts about being a manager: deciding when it’s time to let someone go.
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                How do you determine when your team member’s behavior or performance is simply no longer the right fit for the company? How many chances should you give someone before making the call?
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                Here are some tips for navigating this difficult question.
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Check in with yourself
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 First and foremost, when you’re having doubts about a certain team member, it’s important to check in with yourself. Consider how long you’ve been feeling this way to ensure the decision isn’t rash or reactive, and try to determine whether or not you’ve actually given them the feedback and tools they need to address your concerns and improve. If your employee would be shocked to find out that you feel like things aren’t working, you likely haven’t given them the direction and guidance they would need to make things better. On the other hand, if you’ve done everything you can on your end to fix things, and things still haven’t changed, it’s a pretty solid indication that things aren’t going to improve.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Do some digging
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Check in with additional stakeholders at your organization who work closely with the team member you’re having doubts about in order to get a feel for how others see this person and their work. Try to specifically reach out to people more senior than the individual in question to ensure there’s no ego involved and you don’t put anyone in an uncomfortable position. Of course, if a team member at their level brings the person up to you in conversation, use it as an opportunity to hear their perspective.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                Additionally, recognize that what you ask should vary according to your specific concerns. For example, if you feel like an individual is underperforming, your questions should be regarding their work output and deliverables. On the other hand, if you believe they’re bringing poor attitudes and harming the group dynamic, you should focus your questions on their communication skills and collaboration experiences. These conversations are a great way to understand the various issues that may exist and piece together certain themes. It also enables you to come to the team member with a more well-rounded picture and clearer feedback.
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Have a transparent conversation
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Schedule a meeting to have the difficult but necessary conversation about your current concerns. Come prepared with feedback, context, and examples – making sure to preface examples by emphasizing these are simply examples to help convey the point in order to ensure the team member doesn’t linger on a specific instance or focus too heavily on defending a single moment. Additionally, be gentle with your phrasing while still being intentional about sending a clear message that their future at the company is in question.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                In this conversation, it’s important to give your team member the opportunity to share how they’re feeling and where they think the gaps are coming from. Perhaps there is something going on in their personal life that you didn’t know about or they were having issues at work that you weren’t aware of. Regardless, let them be open with you, and honestly ask them what they need from you to ensure things improve. As a manager, it’s important to recognize that 70% of the variance in employee engagement is determined solely by the manager, according to a Gallup study, so while you can’t control everything, you do certainly influence the employee experience – and changes might be helpful on your end as well.
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Assess reactions
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 The way in which your team member responds throughout this challenging conversation – from their openness to improve to their attitude towards feedback – can provide tremendous insight into how to move forward. So, pay attention to their reactions during the conversation and then take a moment after the fact to ask yourself:
                 <ul class="v" style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; line-height: 163%; color: #333333; font-weight: 300; mso-line-height-alt: 26px; mso-ansi-font-size: 16px; margin: 0 0 0 22px; padding: 0;">
                  <li style="margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    Were they receptive to your feedback?
                   </span>
                  </li>
                  <li style="margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    Do they seem motivated to correct things or more frustrated and withdrawn?
                   </span>
                  </li>
                  <li style="margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    Did they take responsibility for their shortcomings or simply try to place the blame on others?
                   </span>
                  </li>
                  <li style="margin: 0;">
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    How do
                   </span>
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; font-style: italic; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    I
                   </span>
                   <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                    feel now after this conversation? Better? The same? Worse?
                   </span>
                  </li>
                 </ul>
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <br/>
                The answers to all of these questions can help guide your next steps forward. If you were happy with how they navigated the conversation, your concerns may be fixable. However, if you didn’t feel like they handled the conversation well, it unfortunately may be a sign that things aren’t going to change.
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Align expectations
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Explicitly convey to your team members what they need to do in order to ease your current concerns. At some organizations, this step is called a Performance Improvement Plan (PIP), which formally outlines an employee's performance deficiencies, and provides a timeline and goal-oriented plan to help them improve. Regardless of what you call it, this process is meant to align expectations and set shared timelines between you, your employee, and a relevant HR team member, for when you expect to see real changes in order to ensure that your employee understands what’s expected from them going forward and that nothing comes as a shock later on.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 Trust your gut
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                 While it’s never an easy decision to make, if after all of this you’re still not feeling satisfied with your employee’s role on your team, it’s unfortunately time to let the person go. Trust your gut as the manager, and recognize that sometimes it’s better to move on than try to fight for someone who isn’t ultimately right for your team anymore. That said, make sure you’ve done everything you can on your part to support the team member and end on respectful terms because even after leaving, this person is still a brand ambassador for your organization.
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                Stay tuned for next week’s tips on how to navigate the process of letting someone go!
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
         <div align="left" class="mg y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px 8px 8px 0px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x sm" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 46px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 192%; mso-line-height-alt: 46px; mso-ansi-font-size: 24px;">
                     Water cooler chatter
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                Krispy Kreme is coming to McDonald's.
               </span>
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                The world's largest fast-food chain will soon be selling Krispy Kreme’s three most popular donuts all day long in restaurants across the U.S. In response to the news, Krispy Kreme’s stock soared 40%, because who doesn’t love donuts and burgers?
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 40px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6c6cff; line-height: 156%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                “By making Kreme Krispy accessible to fans nationwide through this partnership, we expect to more than double our points of access by the end of 2026.”
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 12px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6c6cff; line-height: 156%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 157%; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                 - Josh Charlesworth,
                </span>
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 157%; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                 President and CEO of Krispy Kreme
                </span>
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                Florida has banned social media for those under 14.
               </span>
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                Under the new law, companies are now required to close social media accounts belonging to minors and wipe out all of their information. The law is set to come into effect in January 2025.
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 20px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                “Being buried in those devices all day is not the best way to grow up - it’s not the best way to get a good education.”
               </span>
              </p>
              <p style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 12px 0 0;">
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #6c6cff; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                 - Ron DeSantis,
                </span>
                <span style="font-size: 14px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 164%; mso-line-height-alt: 24px; mso-ansi-font-size: 14px;">
                 Florida Governor
                </span>
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:top;width:100px;">
<![endif]-->
         <div align="left" class="r5 y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 20.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: top; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
           <tbody>
            <tr>
             <td align="left" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
               <tbody>
                <tr>
                 <td style="width: 100px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <img alt="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F660bf6c745410b004bf0dc65%252Foriginal.png%253F1712060103/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI1ODczN30:1rrfoP:KdKfwDWN_hXaGp_RuxWu3DkIV5JGezeMv_27r-crX68" style="border-radius: 8px 8px 8px 8px; display: block; outline: none; text-decoration: none; height: auto; width: 100%; font-size: 13px; line-height: 100%; -ms-interpolation-mode: bicubic; border-width: 0;" width="100"/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:16px;">
<![endif]-->
         <div align="left" class="n y" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 3.2000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:384px;">
<![endif]-->
         <div align="left" class="z y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 76.8000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px; border-style: none;" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x" style="font-size: 0; padding-bottom: 12px; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 20px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 20px; font-family: 'Inter','Arial',sans-serif; font-weight: 700; color: #6c6cff; line-height: 120%; mso-line-height-alt: 24px; mso-ansi-font-size: 20px;">
                     Share the
                     <a style="text-decoration: none; color: #6c6cff; cursor: auto; white-space: nowrap;">
                      monday.com
                     </a>
                     weekly!
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
                <tr>
                 <td align="left" class="x" style="font-size: 0; padding-bottom: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 22px; mso-ansi-font-size: 14px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 14px; font-family: 'Inter','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 150%; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                     Are there others you think would benefit from receiving the
                     <a style="text-decoration: none; color: #333333; cursor: auto; white-space: nowrap;">
                      monday.com
                     </a>
                     weekly?
                    </span>
                    <span style="font-size: 14px; font-family: 'Inter','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 150%; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                     Copy and paste this link
                    </span>
                    <span style="font-size: 14px; font-family: 'Inter','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 150%; text-decoration: underline; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                     <a style="color: #333333; text-decoration: underline;" target="_blank">
                      https://wkf.ms/3kumNHn
                     </a>
                    </span>
                    <span style="font-size: 14px; font-family: 'Inter','Arial',sans-serif; font-weight: 400; color: #333333; line-height: 150%; mso-line-height-alt: 22px; mso-ansi-font-size: 14px;">
                     to invite others to subscribe to the newsletter.
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
         <div align="left" class="mg y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px 8px 8px 0px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x sm" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 46px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 192%; mso-line-height-alt: 46px; mso-ansi-font-size: 24px;">
                     Question of the week
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="ys y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="left" style="">
              <p align="left" style="mso-line-height-alt: 20px; mso-ansi-font-size: 12px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 167%; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                Last week’s answer:
               </span>
               <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #000000; line-height: 167%; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                4.43 billion
               </span>
              </p>
              <p style="mso-line-height-alt: 20px; mso-ansi-font-size: 12px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 5px 0 0;">
               <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 400; color: #000000; line-height: 167%; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 167%; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                 To check out last week’s question,
                </span>
                <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 167%; text-decoration: underline; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                 <a style="color: #000000; text-decoration: underline;" target="_blank">
                  click here
                 </a>
                </span>
               </span>
              </p>
              <p style="mso-line-height-alt: 20px; mso-ansi-font-size: 12px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 5px 0 0;">
               <span style="font-size: 12px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 167%; text-decoration: none; mso-line-height-alt: 20px; mso-ansi-font-size: 12px;">
                <a style="color: #000000; text-decoration: underline;" target="_blank">
                </a>
               </span>
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #000000; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                This week’s question
               </span>
               <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #000000; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                : What percent of US teens use ChatGPT for schoolwork?
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0px 50px 10px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:500px;">
<![endif]-->
         <div align="left" class="mg y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100.0000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px 8px 8px 0px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x sm" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 46px; mso-ansi-font-size: 24px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 24px; font-family: 'Roboto','Arial',sans-serif; font-weight: 700; color: #333333; line-height: 192%; mso-line-height-alt: 46px; mso-ansi-font-size: 24px;">
                     Just for laughs
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r d bfz lz v9" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:600px;">
<![endif]-->
        <div align="left" class="zt y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <table border="0" cellpadding="0" cellspacing="0" class="mq" role="presentation" style="border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
              <tbody>
               <tr>
                <td class="mq" style="width: 600px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                 <img alt="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F660bf6c745410b004bf0dc66%252Foriginal.jpg%253F1712060103/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI1OTgwOH0:1rrfoP:pGidVjPH64mb2xaW2Txzr0SRIlGz-60fnNRTWDY1fLU" style="display: block; outline: none; text-decoration: none; height: auto; width: 100%; font-size: 13px; line-height: 100%; -ms-interpolation-mode: bicubic; border-width: 0;" width="600"/>
                </td>
               </tr>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="center" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 12px 0px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:576px;">
<![endif]-->
        <div align="left" class="l y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
             <div align="center" style="">
              <p align="center" style="mso-line-height-alt: 26px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="font-size: 16px; font-family: 'Times New Roman',serif; font-weight: 400; font-style: italic; color: #000000; line-height: 163%; mso-line-height-alt: 26px; mso-ansi-font-size: 16px;">
                “Great, so world domination’s our goal––but what’s our mission? What are our values?”
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:536px;">
<![endif]-->
        <div align="left" class="h y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #d8d8d8; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #d8d8d8;font-size:1px;margin:0px auto;width:536px;" role="presentation" width="536px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" role="presentation" style="width:600px;" width="600"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r a u" style="background: #fffffe; background-color: #fffffe; max-width: 600px; margin: 0px auto;">
    <table align="center" bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="background: #fffffe; width: 100%; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="center" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 50px 40px; border-style: none;">
        <!--[if mso | IE]>
<table role="presentation" border="0" cellpadding="0" cellspacing="0"><tr><td style="width:500px;">
<![endif]-->
        <div align="left" class="mg y" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0" role="presentation"><tr><td style="vertical-align:middle;width:123px;">
<![endif]-->
         <div align="left" class="q y c sq" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 24.6000%;">
          <table bgcolor="#fffffe" border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: separate; border-spacing: 0; border-radius: 4px 4px 4px 4px; vertical-align: middle; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" valign="middle" width="100%">
           <tbody>
            <tr>
             <td align="left" style="border-collapse: separate; border-spacing: 0; font-size: 0; word-break: break-word; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; border-spacing: 0; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
               <tbody>
                <tr>
                 <td style="width: 123px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <img alt="" height="auto" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F660bf6c845410b004bf0dc67%252Foriginal.png%253F1712060104/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2MDgzfQ:1rrfoP:i68ozIXcb1Bw-PwValgjjFbskH-oqiy_GU1C32r7F_M" style="border-radius: 4px 4px 4px 4px; display: block; outline: none; text-decoration: none; height: auto; width: 100%; font-size: 13px; line-height: 100%; -ms-interpolation-mode: bicubic; border-width: 0;" width="123"/>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:16px;">
<![endif]-->
         <div align="left" class="n y" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 3.2000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:middle;width:361px;">
<![endif]-->
         <div align="left" class="p y c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 72.2000%;">
          <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px; border-style: none;" valign="middle">
              <table border="0" cellpadding="0" cellspacing="0" role="presentation" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
                <tr>
                 <td align="left" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <div align="left" style="">
                   <p align="left" style="mso-line-height-alt: 24px; mso-ansi-font-size: 16px; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                    <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                     Join our community on
                    </span>
                    <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #20a7ff; line-height: 150%; text-decoration: underline; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                     <a style="color: #20a7ff; text-decoration: underline;" target="_blank">
                      LinkedIn
                     </a>
                    </span>
                    <span style="font-size: 16px; font-family: 'Roboto','Arial',sans-serif; font-weight: 300; color: #333333; line-height: 150%; mso-line-height-alt: 24px; mso-ansi-font-size: 16px;">
                     to gain useful insights and engage with our content!
                    </span>
                   </p>
                  </div>
                 </td>
                </tr>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
  </div>
  <title>
  </title>
  <!--[if !mso]><!-->
  <meta content="IE=edge" http-equiv="X-UA-Compatible"/>
  <!--<![endif]-->
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="width=device-width, initial-scale=1" name="viewport"/>
  <!--[if mso]> <noscript><xml><o:OfficeDocumentSettings><o:AllowPNG/><o:PixelsPerInch>96</o:PixelsPerInch></o:OfficeDocumentSettings></xml></noscript>
<![endif]-->
  <!--[if lte mso 11]>
<style type="text/css">
.ogf{width:100% !important;}
</style>
<![endif]-->
  <!--[if !mso]><!-->
  <!--<![endif]-->
  <meta content="light dark" name="color-scheme"/>
  <meta content="light dark" name="supported-color-schemes"/>
  <!--[if gte mso 9]>
<style>li{text-indent:-1em;}
</style>
<![endif]-->
  <div style="background-color: #F0F3FF;">
   <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="r-outlook -outlook pr-16-outlook pl-16-outlook -outlook" style="width:564px;" width="564" bgcolor="#F0F3FF"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r pr-16 pl-16" style="background: #F0F3FF; background-color: #F0F3FF; border-radius: 0; max-width: 564px; margin: 0px auto;">
    <table align="center" bgcolor="#F0F3FF" border="0" cellpadding="0" cellspacing="0" style="background: #F0F3FF; width: 100%; border-radius: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 32px 150px 15px; border-style: none;">
        <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0"><tr><td class="" style="width:264px;">
<![endif]-->
        <div align="left" class="pc100 ogf" style="font-size: 0; line-height: 0; display: inline-block; width: 100%; direction: ltr;">
         <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0"><tr><td style="vertical-align:middle;width:132px;">
<![endif]-->
         <div align="left" class="pc50 ogf m c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 50%;">
          <table bgcolor="transparent" border="0" cellpadding="0" cellspacing="0" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
           <tbody>
            <tr>
             <td align="center" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
              <div align="center" style="font-family: Roboto,Arial,sans-serif; font-size: 11px; line-height: 16px; color: #000000;">
               <p align="center" style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 700; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  New York
                 </a>
                </span>
               </p>
               <p style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 700; color: #323338; line-height: 16px;">
                </span>
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  34 W 14th St
                 </a>
                </span>
               </p>
               <p style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  NY, NY, 10011, USA
                 </a>
                </span>
               </p>
              </div>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:top;width:0;">
<![endif]-->
         <div align="left" class="pc0 ogf g" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: top; width: 0%;">
          <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
           <tbody>
            <tr>
             <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="top">
              <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
               <tbody>
               </tbody>
              </table>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td><td style="vertical-align:middle;width:132px;">
<![endif]-->
         <div align="left" class="pc50 ogf c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 50%;">
          <table bgcolor="transparent" border="0" cellpadding="0" cellspacing="0" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
           <tbody>
            <tr>
             <td align="center" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
              <div align="center" style="font-family: Roboto,Arial,sans-serif; font-size: 11px; line-height: 16px; color: #000000;">
               <p align="center" style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 700; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  Tel Aviv
                 </a>
                </span>
               </p>
               <p style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 700; color: #323338; line-height: 16px;">
                </span>
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  6 Yitzhak Sadeh St
                 </a>
                </span>
               </p>
               <p style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
                <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 16px;">
                 <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                  Tel Aviv
                 </a>
                 , 6777506, Israel
                </span>
               </p>
              </div>
             </td>
            </tr>
           </tbody>
          </table>
         </div>
         <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="r-outlook -outlook pr-16-outlook pl-16-outlook -outlook" style="width:564px;" width="564" bgcolor="#F0F3FF"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r pr-16 pl-16" style="background: #F0F3FF; background-color: #F0F3FF; border-radius: 0; max-width: 564px; margin: 0px auto;">
    <table align="center" bgcolor="#F0F3FF" border="0" cellpadding="0" cellspacing="0" style="background: #F0F3FF; width: 100%; border-radius: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 6px 20px; border-style: none;">
        <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0"><tr><td class="c-outlook -outlook -outlook" style="vertical-align:middle;width:524px;">
<![endif]-->
        <div align="left" class="xc524 ogf c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table bgcolor="transparent" border="0" cellpadding="0" cellspacing="0" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" class="d" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <p style="border-top-width: 1px; border-top-color: #cccccc; border-top-style: solid; font-size: 1px; width: 100%; display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0px auto;">
             </p>
             <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0" style="border-top:solid 1px #cccccc;font-size:1px;margin:0px auto;width:524px;" width="524px"><tr><td style="height:0;line-height:0;"> &nbsp;
</td></tr></table>
<![endif]-->
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="r-outlook -outlook pr-16-outlook pl-16-outlook -outlook" style="width:564px;" width="564" bgcolor="#F0F3FF"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r pr-16 pl-16" style="background: #F0F3FF; background-color: #F0F3FF; border-radius: 0; max-width: 564px; margin: 0px auto;">
    <table align="center" bgcolor="#F0F3FF" border="0" cellpadding="0" cellspacing="0" style="background: #F0F3FF; width: 100%; border-radius: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 10px 32px; border-style: none;">
        <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0"><tr><td class="c-outlook -outlook -outlook" style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="xc500 ogf c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table bgcolor="transparent" border="0" cellpadding="0" cellspacing="0" style="vertical-align: middle; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; border-style: none;" width="100%">
          <tbody>
           <tr>
            <td align="center" class="x" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
             <div align="center" style="font-family: Roboto,Arial,sans-serif; font-size: 11px; line-height: 18px; color: #000000;">
              <p align="center" style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 18px;">
                This email was sent to you regarding your
                <a style="text-decoration: none; color: #323338; cursor: auto; white-space: nowrap;">
                 ui-feed.monday.com
                </a>
                account.
               </span>
              </p>
              <p style="display: block; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; margin: 0;">
               <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 18px;">
                If you wish to no longer receive emails from us you can
                <a class="mj-link nbl last">
                 <span style="mso-line-height-rule: exactly; font-size: 11px; font-family: Roboto,Arial,sans-serif; font-weight: 400; color: #323338; line-height: 18px; text-decoration: underline;">
                  unsubscribe
                 </span>
                </a>
                .
               </span>
              </p>
             </div>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<table align="center" border="0" cellpadding="0" cellspacing="0" class="r-outlook -outlook pr-16-outlook pl-16-outlook -outlook" style="width:564px;" width="564" bgcolor="#F0F3FF"><tr><td style="line-height:0;font-size:0;mso-line-height-rule:exactly;">
<![endif]-->
   <div class="r pr-16 pl-16" style="background: #F0F3FF; background-color: #F0F3FF; border-radius: 0; max-width: 564px; margin: 0px auto;">
    <table align="center" bgcolor="#F0F3FF" border="0" cellpadding="0" cellspacing="0" style="background: #F0F3FF; width: 100%; border-radius: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
     <tbody>
      <tr>
       <td align="left" style="direction: ltr; font-size: 0; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 20px 32px 32px; border-style: none;">
        <!--[if mso | IE]>
<table border="0" cellpadding="0" cellspacing="0"><tr><td class="c-outlook -outlook -outlook" style="vertical-align:middle;width:500px;">
<![endif]-->
        <div align="left" class="xc500 ogf c" style="font-size: 0; direction: ltr; display: inline-block; vertical-align: middle; width: 100%;">
         <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
          <tbody>
           <tr>
            <td bgcolor="#F0F3FF" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 8px; border-style: none;" valign="middle">
             <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" width="100%">
              <tbody>
               <tr>
                <td align="center" class="o" style="font-size: 0; word-break: break-word; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;">
                 <!--[if mso | IE]>
<table align="center" border="0" cellpadding="0" cellspacing="0"><tr><td>
<![endif]-->
                 <table align="center" border="0" cellpadding="0" cellspacing="0" style="float: none; display: inline-table; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <tbody>
                   <tr class="e m">
                    <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0 16px 0 0;" valign="middle">
                     <table border="0" cellpadding="0" cellspacing="0" style="border-radius: 0; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                      <tbody>
                       <tr>
                        <td style="font-size: 0; height: 20px; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle">
                         <a target="_blank">
                          <img alt="" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F6208cda8a999e564804acb2d%252Foriginal.png%253F1644744104/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2MjQ2fQ:1rrfoP:r1s-JXZPt24ldMLF2OvuJDUhn2Biz27YyywVXvua7ro" style="border-radius: 0; display: block; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border-width: 0;" width="20"/>
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                 <!--[if mso | IE]>
</td><td>
<![endif]-->
                 <table align="center" border="0" cellpadding="0" cellspacing="0" style="float: none; display: inline-table; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <tbody>
                   <tr class="e m">
                    <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0 16px 0 0;" valign="middle">
                     <table border="0" cellpadding="0" cellspacing="0" style="border-radius: 0; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                      <tbody>
                       <tr>
                        <td style="font-size: 0; height: 20px; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle">
                         <a target="_blank">
                          <img alt="" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F6208cda8a999e564804acb2e%252Foriginal.png%253F1644744104/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2MzcwM30:1rrfoP:LcOiO9OcZcLLoK6JpnS5ZDz2gCRyTdJ6YggfMVfKDe4" style="border-radius: 0; display: block; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border-width: 0;" width="20"/>
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                 <!--[if mso | IE]>
</td><td>
<![endif]-->
                 <table align="center" border="0" cellpadding="0" cellspacing="0" style="float: none; display: inline-table; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <tbody>
                   <tr class="e m">
                    <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0 16px 0 0;" valign="middle">
                     <table border="0" cellpadding="0" cellspacing="0" style="border-radius: 0; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                      <tbody>
                       <tr>
                        <td style="font-size: 0; height: 20px; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle">
                         <a target="_blank">
                          <img alt="" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F6208cda8a999e564804acb2f%252Foriginal.png%253F1644744104/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2NDczOH0:1rrfoP:0YwjUPvw_UHgMDRuekuEwTy4ilB_2LkYMn4G16OLC-o" style="border-radius: 0; display: block; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border-width: 0;" width="20"/>
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                 <!--[if mso | IE]>
</td><td>
<![endif]-->
                 <table align="center" border="0" cellpadding="0" cellspacing="0" style="float: none; display: inline-table; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <tbody>
                   <tr class="e m">
                    <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0 16px 0 0;" valign="middle">
                     <table border="0" cellpadding="0" cellspacing="0" style="border-radius: 0; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                      <tbody>
                       <tr>
                        <td style="font-size: 0; height: 20px; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle">
                         <a target="_blank">
                          <img alt="" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F6208cda9a999e564804acb30%252Foriginal.png%253F1644744105/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2NjE5N30:1rrfoP:8qXWYbT0m50w3opLHefnFk_vi6cfjpANsNu1vh0BuwI" style="border-radius: 0; display: block; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border-width: 0;" width="20"/>
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                 <!--[if mso | IE]>
</td><td>
<![endif]-->
                 <table align="center" border="0" cellpadding="0" cellspacing="0" style="float: none; display: inline-table; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                  <tbody>
                   <tr class="e">
                    <td style="border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt; padding: 0;" valign="middle">
                     <table border="0" cellpadding="0" cellspacing="0" style="border-radius: 0; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;">
                      <tbody>
                       <tr>
                        <td style="font-size: 0; height: 20px; width: 20px; border-collapse: collapse; mso-table-lspace: 0pt; mso-table-rspace: 0pt;" valign="middle">
                         <a target="_blank">
                          <img alt="" height="20" src="https://inboxflows.com/_/image/https%253A%252F%252Fbraze-images.com%252Fimage_uploads%252Ffiles%252F6208cda9a999e564804acb31%252Foriginal.png%253F1644744105/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZicmF6ZS1pbWFnZSIsInRpbWUiOjE3MTIwNzA3NTMuMjI2NzM5Nn0:1rrfoP:_gisN7z55dwZaPqd09FyzBIeDLa6hU27GGojVk741Rc" style="border-radius: 0; display: block; height: auto; line-height: 100%; outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; border-width: 0;" width="20"/>
                         </a>
                        </td>
                       </tr>
                      </tbody>
                     </table>
                    </td>
                   </tr>
                  </tbody>
                 </table>
                 <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
                </td>
               </tr>
              </tbody>
             </table>
            </td>
           </tr>
          </tbody>
         </table>
        </div>
        <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
       </td>
      </tr>
     </tbody>
    </table>
   </div>
   <!--[if mso | IE]>
</td></tr></table>
<![endif]-->
  </div>
 </body>
</html>