Inboxes

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

+New inbox

0123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "//www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="//www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:v="urn:schemas-microsoft-com:vml">
 <head>
  <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/>
  <meta content="address=no" name="format-detection"/>
  <meta content="width=device-width, initial-scale=1.0" name="viewport"/>
  <title>
   Groupon
  </title>
  <style type="text/css">
   .ExternalClass * { line-height: 100% } table { font-family: 'Open Sans', Arial, sans-serif!important } a, div, li, p, td { -webkit-text-size-adjust: none } .appleLinks a, .appleLinksBlack a { color: #333!important; text-decoration: none } .appleLinksGrey a { color: #75787b!important; text-decoration: none } .appleLinksGray a { color: #999!important; text-decoration: none } .appleLinksBlue a { color: #0093ea!important; text-decoration: none } @media only screen and (max-width: 580px) { .container { width: 100% !important; min-width: 100% !important; } td.container, th.container { margin: 0 auto!important; width: 100%!important; min-width: 100%!important; display: block!important } th.container.mobile-padding { padding: 0 !important; } .mobile-padding { padding: 0 10px 0 10px !important; } .mobile-banner, .mobile-banner img { width: 100% !important; max-height: none !important; height: auto !important; display: block !important; padding: 0 !important; color: #000!important; font-size: 16px!important; line-height: 24px !important; } .mobile-banner img { padding: 10px 0 10px 0 !important; } .display-off { display: none !important; } .one-hundred { width: 100%!important; min-width: 100%!important; max-width: 100%!important } badge-mobile { font-size: 11px !important; } merchant-name-mobile { font-size: 13px !important; } ratings-mobile { font-size: 11px !important; } price-mobile { font-size:13px !important; } price-padding { padding-top: 6px !important; } percent-mobile { vertical-align: middle !important; } .google-mobile { padding: 13px 0 0 0 !important; } .center { margin: 0 auto; } } @media only screen and (max-width: 580px) { .w2up-deal_card-new-container-2up { margin: 0 auto !important; width: 100% !important; height: auto !important; min-width: 166px !important; max-width: 250px !important; border: none !important; } .w2up-deal_card-new-deal-right-padding { padding: 0 5px 0 0 !important; } .w2up-deal_card-new-deal-left-padding { padding: 0 0 0 5px !important; } .w2up-deal_card-new_helvetica.w2up-deal_card-new_deal_main_height { height: 73px !important; border: none !important; } .w2up-deal_card-new_deal_main_mobile_2up { padding: 8px 4px 8px 4px !important; } .w2up-deal_card-new_price-position-mobile-2up { text-align: left !important; } .w2up-deal_card-new_deal_info_title_style_mobile { font-size: 13px !important; line-height: 16px !important; } .w2up-deal_card-new_price-mobile { font-size: 15px !important; line-height: 19px !important; } .w2up-deal_card-new_helvetica.w2up-deal_card-new_border_mobile_2up { border: none !important; } .w2up-deal_card-new-container-2up { margin: 0 auto !important; width: 100% !important; height: auto !important; min-width: 166px !important; max-width: 250px !important; border: none !important; } .w2up-deal_card-new-deal-right-padding { padding: 0 5px 0 0 !important; } .w2up-deal_card-new-deal-left-padding { padding: 0 0 0 5px !important; } .w2up-deal_card-new_helvetica.w2up-deal_card-new_deal_main_height { height: 73px !important; border: none !important; } .w2up-deal_card-new_deal_main_mobile_2up { padding: 8px 4px 8px 4px !important; } .w2up-deal_card-new_price-position-mobile-2up { text-align: left !important; } .w2up-deal_card-new_deal_info_title_style_mobile { font-size: 13px !important; line-height: 16px !important; } .w2up-deal_card-new_price-mobile { font-size: 15px !important; line-height: 19px !important; } .w2up-deal_card-new_helvetica.w2up-deal_card-new_border_mobile_2up { border: none !important; } }
  </style>
  <link href="https://fonts.googleapis.com/css?family=Open+Sans:100,200,400,300,500,600,700,800" rel="stylesheet" type="text/css"/>
 </head>
 <body style="margin:0 !important; padding:0 !important; background: #ffffff !important;">
  <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fwww.groupon.com%252Fanalytic%252Ftrack.gif%253Fp%253D1%2526utm_domain%253Duifeed.com%2526utm_campaign%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854_0_20221115%2526deals%253D9d48b31b-19ea-4930-8026-4ac4ba4f9198%252C06edd334-5df1-476f-a195-1435a7875436%252C1a4a95d3-5d71-49c0-9e49-917a2436de54%252C5baeffff-db4d-4249-a697-0c0a4bc0b3ad%252C13a4f695-a01c-4ca8-960c-ce6adf14c4ec%252Ce97e881e-6d2b-40a2-877e-0ee1d6c68840%252C7a373026-d24d-4df1-b5f1-34bfbeabd656%252Cf697fbbe-a7b5-459a-bd37-e4100a30c1f5%252C89348872-1216-4cc9-ae3f-d1bf2f16e2b6%252Cb032068e-2b44-4694-8a29-033b3410fdc8%252C3ae02a30-c468-4c6b-86fc-8b3eb90a4103%252C767875a1-e976-4277-9a04-d5f3230fe5e8%252C13db2047-dd3f-4d51-85d5-0325dbce869d%252Cf37a927c-247c-b33d-44f2-8a0524163032%252C7208df2b-1180-46bd-8163-6eeb195c70ab%252Ceabbd07c-d78b-4db4-b047-f5893b7067a5%252Cac093aa4-562a-4428-a919-403fe60d38fc%252Cb52118c4-20fe-463d-b78d-43639bba64f5%252C42454712-8ea9-47a1-803d-57d93f5fcde3%252C75d10da4-2af9-4302-ae36-b1c627ac2f53%252Cd973398a-3ba9-4546-94c9-c4a4073e2d38%252C54e01908-3861-420a-80ad-625d5dd92ccd%252C43133f3c-5a41-4563-be82-2c9cebd04ac3%252C94ce7a32-2499-4bae-b83b-968c7ef15cc3%2526utm_source%253Dfd_bars_broad%2526utm_medium%253Demail%2526t_division%253Dnorth-jersey%2526date%253D20221115%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229%2526CID%253DUS%2526tx%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5ncm91cG9uLiJ9:1ov41P:8ZfZLb7hkSo4awHLioDCmytbGpojkbEVG9cfNviSCJY" style="display: none !important;" width="1"/>
  <table align="center" cellpadding="0" cellspacing="0" class="container" style="width: 600px;">
   <tr>
    <td align="center" class="mobile-padding">
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <span class="previewCopy" height="0" style="color: #fff; font-size: 0px !important; height: 0px; display: none">
         Shop deals on bars, breweries, wineries &amp; distilleries!
        </span>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%; background: #fff;">
         <tr>
          <td align="center" style="padding: 32px 0 32px 0">
           <a style="font-size: 34px; color: #333333; font-weight: normal; color:#ffffff; font-weight: 700;" target="_blank">
            <img alt="Groupon" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F464QAzwtkcSuBtgj3Go5R9wAW25u%252F46-517x84/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 172px;" title="Groupon" width="172"/>
           </a>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:600px; background-color:#fff;">
         <tr>
          <td>
           <p style="text-align: center;">
           </p>
           <p style="text-align: center;">
            <span style="font-size: 14pt;">
             <strong>
              Bars, Breweries, Wineries &amp; Distilleries Near You!
             </strong>
            </span>
           </p>
           <p style="text-align: center;">
           </p>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="width: 600px; min-width:600px;">
         <tr>
          <td align="center" class="container" style="width:600px; min-width:600px;">
           <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 600px;">
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FmZGskFzVWZeCbVegmZFeUA%252Fshutterstock_140728459_2-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Tomasello Winery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    Multiple locations
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.77
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     2,783 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $89
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $37.60
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     58% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Wine-Tasting Experience for Two
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F29USzxT72FpMkyY1cK9bhjQFFWYD%252F29-703x422%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Chocobar Cortes
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    141 Alexander Avenue, South Bronx
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.6
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     25 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $50
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $28
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     44% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    $50 Towards Food and Drink; Valid Any...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252Fkh2kVUZQN9LiyjLddcY1%252Fxn-1164x698%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Jersey Spirits Distilling
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    1275 Bloomfield Ave #40b, Fairfield
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.82
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     833 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $75.90
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $37.60
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     50% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Production Area Tour and Premium Flight...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252Ff6wcD8d4HNN3LdZ8EEMjzmabDnS%252Ff6-4160x2768%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Doha Bar &amp; Lounge
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    38-34 31st Street, long island city
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.39
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     18 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $34
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $19.20
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     44% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    One Drink and One Entree for One; Valid...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fmetro_draft_service%252F2aY8jUEss6BLjDtdqybEGDrZKxHo%252F2a-2048x1365%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Claremont Distillery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    25 Commerce Road, Fairfield
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.77
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     329 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $48
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $19.80
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     59% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Tour, Tasting, and Shot Glasses for Two
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fmetro_draft_service%252FgGaFjPPwrxATwbMHMXyxdxtRiMW%252FgG-1411x1058%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Your Own Winery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    1572 New Jersey 23, Butler
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.78
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     218 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $250
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $136
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     46% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two 60-Minute Wine-Making Classes for...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fmetro_draft_service%252Fgmg268B5sPrCEbxSyDSfSMRsKsn%252Fgm-700x420%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Gamehaus
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    5-14 51st Avenue, Queens
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $25
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $17
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     32% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Open Bar Admission 1-Hr Well Open Bar...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FbLaZUp1Ydzoo5ToQXSJX9f51Jcc%252FbL-959x575%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Divino Tasting Room
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    38 Maiden Lane, Newark
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     5
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     22 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $70
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $40.80
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     42% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two-Hour Guided Private Wine Tasting...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F4A1kdhyQsBGFw3dDwWzD2XgceCoH%252F4A-700x420%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Melovino Meadery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    2933 Vauxhall Road, Union
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.86
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     816 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $14
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $7
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     50% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Honey Wine Tasting for Two
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fbynder%252F3t7SXNLCKa2gE966pyrhziYP7qZZ%252F3t-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Bar Academy 101
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    450 Bloomfield Avenue, Verona
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.74
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     1,269 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $50
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $24
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     52% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two-Hour Sangria-Making Class for One
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FpKnmgh7PzJbngRGa6Pte%252FvN-1500x900%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Bar Academy 101
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    450 Bloomfield Avenue, Verona
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.74
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     1,269 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $50
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $20.80
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     58% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    "Creative Shots" Making and Tasting...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fbynder%252FuEUcFoo8n5HYu5YaFQ96PQFLS58%252FuE-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Bar Academy 101
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    450 Bloomfield Avenue, Verona
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.74
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     1,269 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $60
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $26.40
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     56% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two-Hour Wine and Cheese Tasting for...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3xHJ45yNZYqZzxL9wmGxXFTbt7cr%252F3x-4200x2544%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     All Points West Distillery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    73 Tichenor Street, Newark
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.84
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     230 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $48
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $32.80
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     32% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Distillery Tour with Tasting, and...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FgFaUg5M79BAcrp9N4mnJ%252FGH-5760x3456%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Half Court Sports Bar
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    446 Park Place, Brooklyn
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $1
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    $1 Off Beer or Cocktail in between...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2kZ3sSunFwMhnrChyuaX%252Fzr-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     The Social Butterfly 1
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    857 Atlantic Ave, Brooklyn
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $1
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    20% Off Your Total Bill with Purchase...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fbynder%252F2WLRrPgLeV7GEKDJnJJmG8QT5sgN%252F2W-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Matcha Madness
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    594 Valley Road, Montclair
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     5
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     2 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $14.99
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $9.60
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     36% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Matcha Smoothie
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FbVZHX761xAShQSbJ5oQ3%252FNy-4000x2670%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     WAVE KTV
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    133-35 Roosevelt Avenue Fl2, Flushing
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $96
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $35.20
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     63% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two-Hour Small Room for Up to 4 People
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2PtmV5htgPneMKmKu1K5EYzHu9bk%252F2P-4676x2800%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Action Burger
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    292 Graham Avenue, Brooklyn
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     18 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $25
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $9.60
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     62% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Reservation of Table One or Two for...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fbynder%252FGMxkN9VwE2JtQw6nrKNGMefJYyt%252FGM-2048x1229%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Assa Karaoke Bar
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    1550 Lemoine Avenue, Fort Lee
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.45
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     49 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $120
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $76
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     37% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Two-Hour Small Room Rental for Up to 6...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252Fwss3sYSSLAFWX4jr8nqoL3T4d5N%252Fws-700x420%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Lazy Eye Distillery
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 13px; color: #a5a8ab; font-weight: normal; padding: 2px 0 0 0; font-size: 14px; color: #333333; font-weight: normal; line-height: 1.43">
                    1328 Harding Highway, Buena Vista Township
                   </td>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.94
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     144 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $15
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $8.80
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     41% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    Lazy Eye Distillery Tour Package for One
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:600px; background-color:#fff;">
         <tr>
          <td>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
         <tr>
          <td>
           <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left;">
            <tr>
             <td align="center" style="width: 121px; height: 40px; left: calc(50% - 121px/2); top: calc(50% - 40px/2 - 24px); border-radius: 33.5473px; background: #00A80E; background: linear-gradient(90deg, #017541 0%, #00A80E 60.84%, #6BF015 120.26%);">
              <a style="color:#0185C6; text-decoration:none; position: static; left: 19.83%; right: 19.83%; top: 25%; bottom: 25%; font-style: normal; font-weight: 500; font-size: 15px; line-height: 20px; align-items: center; text-align: center; color: #FFFFFF; order: 0; margin: 0px 24px; font-weight: 500;" target="_blank">
               Shop Now
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:600px; background-color:#fff;">
         <tr>
          <td>
           <p style="text-align: center;">
           </p>
           <p style="text-align: center;">
            <span style="font-size: 14pt;">
             <strong>
              Just In Case You Rather Stay Home
             </strong>
            </span>
           </p>
           <p style="text-align: center;">
           </p>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="width: 600px; min-width:600px;">
         <tr>
          <td align="center" class="container" style="width:600px; min-width:600px;">
           <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 600px;">
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3V2GxGDjAp2qVRJkCCa5kSLG4SWL%252F3V-700x420%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="w2up-deal_card-new-merchant-name-mobile" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    <span>
                     Splash Wines Deals
                    </span>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.43
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     35,297 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $303
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #eb0028; padding: 0 2px 0 0; display: inline">
                     $49
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     84% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                    Sale Ends 11/15
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" height="100%" style="padding: 4px 0 0 0; font-size: 14px; font-weight: normal; line-height: 18px; height: 100%; color: #333333; vertical-align: top" valign="top">
                    16 Bottles of Wine (Shipping Not...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fstores%252FytYqMSt1JuyPUY7q97AomtdCmNa%252Fstorespi28567373-960x576%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="merchant-name-mobile" height="100%" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    Girls Night Middle Sister Variety Packs...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $72
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $49.99
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     31% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 14px; color: #333; padding-top: 4px;">
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
            <tr>
             <th class="w2up-deal_card-new-deal-right-padding" valign="top">
              <table align="left" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="left" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fstores%252F36KVVmkJ2WjvubG3yxN9EkkLae25%252Fstoresoi51130369-4257x2554%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="merchant-name-mobile" height="100%" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    Wine Sisterhood Moscato 6 or 12 Bottles...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.8
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     195 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $72
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $49.99
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     31% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 14px; color: #333; padding-top: 4px;">
                    Over 400 Bought
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
             <th class="w2up-deal_card-new-deal-left-padding" valign="top">
              <table align="right" cellpadding="0" cellspacing="0" class="w2up-deal_card-new-container-2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:290px; background: #ffffff;">
               <tr>
                <td align="right" class="split-card-no-border" style="padding: 16px 0 0 0; ; ;" valign="top">
                 <a style="color:#0185C6; text-decoration:none;" target="_blank">
                 </a>
                 <table cellpadding="0" cellspacing="0" class="helvetica border_mobile_2up" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
                  <tr class="display-table-cell">
                   <td style="" valign="top">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="" class="one-hundred" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fstores%252F3v5gk2nw1EAboRM4Z4Gs489zd27t%252Fstorespi28757279-4257x2554%252Fv1%252Fc350x220.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; width: 290px; border-radius: 6px;" title="" width="290"/>
                    </a>
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td class="merchant-name-mobile" height="100%" style="font-size: 16px; line-height: 1.25; height: 20px; color: #333333; font-weight: bold; text-align: left; padding: 6px 0 0 0;" valign="top">
                    Wine Sisterhood Pinot Grigio 6 or 12...
                   </td>
                  </tr>
                  <tr>
                  </tr>
                  <tr>
                   <td align="left" class="star-mobile" style="padding: 5px 0 0 0; font-size: 14px; font-weight: normal; line-height: 1.43; color: #333333;">
                    <span class="display-off">
                     4.69
                    </span>
                    <span>
                     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fs3.grouponcdn.com%252Femail%252Fimages%252Ficons%252Freview_stars%252F4-5%25403x.png/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzMy5ncm91cG9uYyJ9:1ov41P:CSt4L9lYEpaBPaYEAr0heWno1nLp9_31mAfKyGWDUkk" style="display: block; border: none; display:inline; width: 69px;" width="69"/>
                    </span>
                    <span class="ratings-mobile">
                     150 Ratings
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td class="price-padding" style="padding: 12px 0 0 0;" valign="bottom">
                    <span class="price-mobile" style="font-size: 20px; font-weight: normal; line-height: 1.2; color: #75787b; text-decoration: line-through; padding: 0 4px 0 0">
                     $72
                    </span>
                    <span style="font-size: 13px; font-weight: 400; color: #53a318">
                    </span>
                    <span class="price-mobile" style="font-size: 20px; font-weight: bold; line-height: 1.2; color: #53a318; padding: 0 2px 0 0; display: inline">
                     $49.99
                     <span style="font-size: 13px; font-weight: 400; color: #53a318">
                     </span>
                    </span>
                    <span class="percent-mobile" style="width: 49px; padding: 4px; border-radius: 4px; background-color: #eafcde; font-size: 12px; font-weight: bold; line-height: 1.2; text-align: center; color: #53a318; vertical-align: top; display: inline-block">
                     31% Off
                    </span>
                   </td>
                  </tr>
                  <tr>
                   <td style="padding: 3px 0 0 0; font-size: 14px; font-weight: 600; color: #eb0028;">
                   </td>
                  </tr>
                  <tr>
                   <td class="display-off" style="font-size: 14px; color: #333; padding-top: 4px;">
                    Over 800 Bought
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </th>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:600px; background-color:#fff;">
         <tr>
          <td>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width: 100%;">
         <tr>
          <td>
           <table align="center" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left;">
            <tr>
             <td align="center" style="width: 121px; height: 40px; left: calc(50% - 121px/2); top: calc(50% - 40px/2 - 24px); border-radius: 33.5473px; background: #00A80E; background: linear-gradient(90deg, #017541 0%, #00A80E 60.84%, #6BF015 120.26%);">
              <a style="color:#0185C6; text-decoration:none; position: static; left: 19.83%; right: 19.83%; top: 25%; bottom: 25%; font-style: normal; font-weight: 500; font-size: 15px; line-height: 20px; align-items: center; text-align: center; color: #FFFFFF; order: 0; margin: 0px 24px; font-weight: 500;" target="_blank">
               Shop Now
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing: 0; font-family: 'Open Sans', Helvetica, Arial, sans-serif; color:#000000; font-weight: normal; text-align: left; width:600px; background-color:#fff;">
         <tr>
          <td>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="width:600px;" width="600">
         <tr>
          <td align="center" style="padding:10px 0 10px 0;">
           <table align="center" cellpadding="0" cellspacing="0" style="margin-left:auto; margin-right:auto; width:100%;" width="100%">
            <tr>
             <td colspan="2">
              <a rel="nofollow">
               <img border="0" class="100" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688303%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="display: block; width: auto; height:auto; max-width: 600px !important;" width="600"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="left">
              <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688304%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
             <td align="right">
              <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688306%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" cellpadding="0" cellspacing="0" class="container" style="width:600px;" width="600">
         <tr>
          <td class="mobile-container-padding" style="padding:20px 0 10px 0;">
           <table align="left" cellpadding="0" cellspacing="0" class="container" style="width:288px;" width="288">
            <tr>
             <td align="center" colspan="2">
              <a rel="nofollow">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688295%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: auto; max-width: 288px !important;" width="288"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="left">
              <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688296%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
             <td align="right">
              <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688298%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
            </tr>
           </table>
           <table align="right" cellpadding="0" cellspacing="0" class="container" style="width:288px;" width="288">
            <tr>
             <td align="center" colspan="2">
              <a rel="nofollow">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688299%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: auto; max-width: 288px !important;" width="288"/>
              </a>
             </td>
            </tr>
            <tr>
             <td align="left">
              <a rel="nofollow" style="display: block; max-width: 116px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688300%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
             <td align="right">
              <a rel="nofollow" style="display: block; max-width: 19px; max-height: 15px;">
               <img border="0" src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D688302%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8"/>
              </a>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
     <table align="center" cellpadding="0" cellspacing="0" style="width: 100%;">
      <tr>
       <td align="center" style="padding: padding:0;">
        <table align="center" border="0" cellpadding="0" cellspacing="0" class="container" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:600px; margin: 0 auto; font-weight: normal;">
         <tr>
          <td align="center" style="padding:40px; background:#230F33;">
           <table align="center" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:100%;">
            <tr>
             <td style="width: 50%" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:100%; color: #fff; font-size: 14px;">
               <tr>
                <td style="padding: 0 0 24px 0">
                 Visit Us in the Wild
                </td>
               </tr>
               <tr>
                <td align="left" style="padding: 0 0 41px 0">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:100px; color: #fff">
                  <tr>
                   <td align="left" style="white-space:nowrap; width:33%; max-width:7px" valign="middle" width="33%">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="Facebook" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F3e9Cc8FeawpT9LygixQknLVFr2MU%252F3e-27x57/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; display:inline-block; width:7px;" width="7"/>
                    </a>
                   </td>
                   <td align="left" style="white-space:nowrap; width:33%; max-width:16px;" valign="middle" width="33%">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="Instagram" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F4Z9rmujQiuRf3SnJ5ZNyZRZs4Qp9%252F4Z-54x54/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; display:inline-block; width:16px;" width="16"/>
                    </a>
                   </td>
                   <td align="left" style="white-space:nowrap; width:33%; max-width:19px;" valign="middle" width="33%">
                    <a style="color:#0185C6; text-decoration:none;" target="_blank">
                     <img alt="Twitter" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F2T4mhdpC6HuDffMpj51Ra58MgE8y%252F2T-57x48/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="display: block; border: none; display:inline-block; width:19px;" width="19"/>
                    </a>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
               <tr>
                <td style="padding: 0 0 10px 0">
                 Get The Free App
                </td>
               </tr>
               <tr>
                <td align="left">
                 <table align="left" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:100%;" width="100%">
                  <tr>
                   <td>
                    <table align="left" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:106px;">
                     <tr>
                      <td>
                       <a style="color:#0185C6; text-decoration:none;" target="_blank" title="Groupon App">
                        <img height="31" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252FmyZWe3Pkh6DdRNuYdACh12CicUV%252Fmy-1600x475/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="width:106px; height: 31px;" width="106"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                    <table align="left" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:106px;">
                     <tr>
                      <td class="google-mobile" style="padding: 0 0 0 18px">
                       <a style="color:#0185C6; text-decoration:none;" target="_blank" title="Groupon App">
                        <img height="31" src="https://inboxflows.com/_/image/https%253A%252F%252Fimg.grouponcdn.com%252Fdeal%252F49R37oXEaUtBvERdgRzSgEN2LqjM%252F49-1600x469/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZpbWcuZ3JvdXBvbiJ9:1ov41P:qYw99wELqY7uxzpgjA-2LZsxmu5BxxJO4nGArPoJ9iY" style="width:106px; height: 31px;" width="106"/>
                       </a>
                      </td>
                     </tr>
                    </table>
                   </td>
                  </tr>
                 </table>
                </td>
               </tr>
              </table>
             </td>
             <td align="left" style="border-left: 1px solid #fff;" valign="bottom">
              <table align="left" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left;" valign="bottom">
               <tr>
                <td>
                </td>
               </tr>
              </table>
             </td>
             <td style="width: 49%; padding-left: 40px" valign="top">
              <table align="center" border="0" cellpadding="0" cellspacing="0" style="border: 0 none; border-spacing:0; font-family: 'HelveticaNeue', 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color:#000000; text-align: left; width:100%; color: #fff; font-size: 14px; font-weight: 600">
               <tr>
                <td>
                 <a style="color:#0185C6; text-decoration:none; color:#fff;" target="_blank" title="Groupon Merchant">
                  Groupon Merchant
                 </a>
                </td>
               </tr>
               <tr>
                <td>
                 <a style="color:#0185C6; text-decoration:none; color:#fff;" target="_blank" title="FAQ">
                  FAQ
                 </a>
                </td>
               </tr>
               <tr>
                <td>
                 <a style="color:#0185C6; text-decoration:none; color:#fff;" target="_blank" title="GiftCards">
                  Gift Cards
                 </a>
                </td>
               </tr>
               <tr>
                <td>
                 <a style="color:#0185C6; text-decoration:none; color:#fff; white-space:nowrap;" target="_blank" title="ContactUs">
                  Contact
                 </a>
                </td>
               </tr>
               <tr>
                <td align="left" style="padding: 7px 0 0 0; line-height:11px; color:#fff; font-size:8px;" valign="bottom" width="100%">
                 You are receiving this email because
                 <a style="text-decoration:none; color:#fff;">
                  fe5cf315@uifeed.com
                 </a>
                 is signed up to receive Groupon communications. To adjust how often you receive future Groupon emails, including unsubscribing,
                 <a style="color:#4990e2; text-decoration:none;">
                  click here
                 </a>
                 . Delivered by
                 <a style="color:#4990e2; text-decoration:none;">
                  Groupon
                 </a>
                 Inc. 600 W. Chicago Avenue, Suite 400, Chicago, IL 60654, USA
                </td>
               </tr>
              </table>
             </td>
            </tr>
           </table>
          </td>
         </tr>
        </table>
       </td>
      </tr>
     </table>
    </td>
   </tr>
  </table>
  <img height="1" src="https://inboxflows.com/_/image/http%253A%252F%252Fwww.groupon.com%252Fanalytic%252Ftrack.gif%253Fp%253D2%2526utm_domain%253Duifeed.com%2526utm_campaign%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854_0_20221115%2526deals%253D9d48b31b-19ea-4930-8026-4ac4ba4f9198%252C06edd334-5df1-476f-a195-1435a7875436%252C1a4a95d3-5d71-49c0-9e49-917a2436de54%252C5baeffff-db4d-4249-a697-0c0a4bc0b3ad%252C13a4f695-a01c-4ca8-960c-ce6adf14c4ec%252Ce97e881e-6d2b-40a2-877e-0ee1d6c68840%252C7a373026-d24d-4df1-b5f1-34bfbeabd656%252Cf697fbbe-a7b5-459a-bd37-e4100a30c1f5%252C89348872-1216-4cc9-ae3f-d1bf2f16e2b6%252Cb032068e-2b44-4694-8a29-033b3410fdc8%252C3ae02a30-c468-4c6b-86fc-8b3eb90a4103%252C767875a1-e976-4277-9a04-d5f3230fe5e8%252C13db2047-dd3f-4d51-85d5-0325dbce869d%252Cf37a927c-247c-b33d-44f2-8a0524163032%252C7208df2b-1180-46bd-8163-6eeb195c70ab%252Ceabbd07c-d78b-4db4-b047-f5893b7067a5%252Cac093aa4-562a-4428-a919-403fe60d38fc%252Cb52118c4-20fe-463d-b78d-43639bba64f5%252C42454712-8ea9-47a1-803d-57d93f5fcde3%252C75d10da4-2af9-4302-ae36-b1c627ac2f53%252Cd973398a-3ba9-4546-94c9-c4a4073e2d38%252C54e01908-3861-420a-80ad-625d5dd92ccd%252C43133f3c-5a41-4563-be82-2c9cebd04ac3%252C94ce7a32-2499-4bae-b83b-968c7ef15cc3%2526utm_source%253Dfd_bars_broad%2526utm_medium%253Demail%2526t_division%253Dnorth-jersey%2526date%253D20221115%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229%2526CID%253DUS%2526tx%253D0/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cCUzQSUyRiUyRnd3dy5ncm91cG9uLiJ9:1ov41P:8ZfZLb7hkSo4awHLioDCmytbGpojkbEVG9cfNviSCJY" style="display: none !important;" width="1"/>
  <table height="1" width="100%">
   <tr>
    <td>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D125597800%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: 1px; height: 1px; border: none; display: inline;"/>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D125597801%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: 1px; height: 1px; border: none; display: inline;"/>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D125597802%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: 1px; height: 1px; border: none; display: inline;"/>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D125597803%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: 1px; height: 1px; border: none; display: inline;"/>
     <img src="https://inboxflows.com/_/image/https%253A%252F%252Fsli.groupon.com%252Fimp%253Fs%253D125597804%2526li%253D1ff59677-4cdd-4f7c-b728-ad1dcc240854%2526m%253D7ddb96bc190df6e0a118ee34717b3f06%2526p%253D2022-11-15T22%253A03%253A09Z%2526uu%253D014ed3b0-5b73-11e8-930c-5254bd560229/?inbox_flows_img_sig=eyJwYXRoIjoiaHR0cHMlM0ElMkYlMkZzbGkuZ3JvdXBvbiJ9:1ov41P:_C8ImvhQ34WKjfCwA3PbWBHosxDRdoyN49ULokMQmP8" style="width: 1px; height: 1px; border: none; display: inline;"/>
    </td>
   </tr>
  </table>
 </body>
</html>