-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path309.mht
14981 lines (12345 loc) · 795 KB
/
309.mht
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
From: <Saved by Blink>
Snapshot-Content-Location: https://www.tada.com/privacy-policy#otnotice-section-d5c1f676-2e95-4e95-9ba6-8f54a0f4fdf5
Subject: =?utf-8?Q?Online=20Cash=20Back=20Shopping=20=E2=80=93=20Coupons=20&=20Pro?=
=?utf-8?Q?mo=20Codes=20|=20Tada?=
Date: Tue, 30 Jan 2024 23:56:49 -0600
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--QzSgHW16osKZegfbREjTkTH8Tsh0GgWYX18vaFnecd----"
------MultipartBoundary--QzSgHW16osKZegfbREjTkTH8Tsh0GgWYX18vaFnecd----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: quoted-printable
Content-Location: https://www.tada.com/privacy-policy#otnotice-section-d5c1f676-2e95-4e95-9ba6-8f54a0f4fdf5
<!DOCTYPE html><html data-revision=3D"_r190-4294a44" lang=3D"en" class=3D"t=
ada logged-out" style=3D"--deviceCssVhUnit: 13.28px;"><head><meta http-equi=
v=3D"Content-Type" content=3D"text/html; charset=3DUTF-8"><link rel=3D"styl=
esheet" type=3D"text/css" href=3D"cid:css-9982acec-cdba-4b83-8735-320b258d4=
[email protected]" /><link rel=3D"stylesheet" type=3D"text/css" href=3D"cid:c=
[email protected]" /><link rel=3D"stylesh=
eet" type=3D"text/css" href=3D"cid:css-9a094a5c-85fb-4f0c-9b3e-34fc48988517=
@mhtml.blink" /><link rel=3D"stylesheet" type=3D"text/css" href=3D"cid:css-=
[email protected]" /><link rel=3D"stylesheet=
" type=3D"text/css" href=3D"cid:css-d58aeeed-c308-47b1-89e0-d471bd095e1b@mh=
tml.blink" />
=20
<title>
Online Cash Back Shopping =E2=80=93 Coupons & Promo Codes |=
Tada
</title>
<meta name=3D"viewport" content=3D"width=3Ddevice-width, initial-sc=
ale=3D1">
<link rel=3D"shortcut icon" href=3D"https://www.tada.com/_r190-4294=
a44/img/favicon.ico">
<link rel=3D"shortcut icon" href=3D"https://www.tada.com/_r190-4294=
a44/img/favicon.png">
=20
<link rel=3D"stylesheet" href=3D"https://fonts.googleapis.com/css?f=
amily=3DOpen+Sans:100,100i,300,300i,400,400i,500,500i,600,600i,700,700i&=
;display=3Dswap">
=20
<meta property=3D"fb:app_id" content=3D"">
<meta property=3D"og:site_name" content=3D"Tada">
<audio id=3D"io_67f84468-5d35-41ea-945f-b0efd4e01d13" src=3D"https://mp=
snare.iesnare.com/time.mp3?nocache=3D0.33134117388259265" preload=3D"metada=
ta"></audio><audio id=3D"io_ee746445-19b1-4818-9781-cc525c47b6de" src=3D"da=
ta:audio/mpeg;base64,/+NIZAAAAAAAAAAAAAAAAAAAAAAAWGluZwAAAA8AAAAAAAACQABAQE=
BAQEBAQEBAQEBAQEBAQEBAQEBAQECAgICAgICAgICAgICAgICAgICAgICAgICAwMDAwMDAwMDAw=
MDAwMDAwMDAwMDAwMDAwP////////////////////////////////8AAAAKTEFNRTMuOThyBCgA=
AAAAAAAAABQIJAbALQABmgAAAkDGbPjAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/+MYZAAAAAGkAAAAAAAAA0gAAAAATEFNRTMuOTguMlVVV=
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV/+MYZDMAAAGkAAAAAAAAA0gA=
AAAAVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV/+M=
YZGYAAAGkAAAAAAAAA0gAAAAAVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV=
VVVVVVVVVVVVVVVVVV" preload=3D"metadata"></audio><link rel=3D"stylesheet" t=
ype=3D"text/css" href=3D"https://privacyportal-cdn.onetrust.com/privacy-not=
ice-scripts/css/v2/otnotice-core.css" class=3D"otnotice-css"><link href=3D"=
https://www.tada.com/_r190-4294a44/modules/suggested-sites/index.compiled.c=
ss" rel=3D"stylesheet"></head>
<body data-ind-ratio=3D"100" class=3D"INDDesktop INDChrome INDlangdirLT=
R INDpositionLeft INDhasDragTooltip" data-inddesktop=3D"INDDesktop" data-in=
dchrome=3D"INDChrome" data-indlangdirltr=3D"INDlangdirLTR" data-indposition=
left=3D"INDpositionLeft" data-indhasdragtooltip=3D"INDhasDragTooltip"><div =
id=3D"INDWrap" lang=3D"en" dir=3D"ltr" data-ind-version=3D"4.5.2" style=3D"=
display: block;"><div id=3D"INDblindNotif" tabindex=3D"-1" class=3D"INDhidd=
enText" role=3D"alert">Please note: This website includes an accessibility =
system. Press Control-F11 to adjust the website to the visually impaired wh=
o are using a screen reader; Press Control-F10 to open an accessibility men=
u.</div><div id=3D"INDmenu" aria-hidden=3D"true"></div><div id=3D"INDpopup"=
aria-hidden=3D"true" style=3D"display: none;"><div role=3D"dialog" aria-mo=
dal=3D"true" aria-labelledby=3D"INDpopupHead" tabindex=3D"0"><div id=3D"IND=
popupHead" role=3D"heading" aria-level=3D"2" tabindex=3D"0">Popup heading</=
div><div id=3D"INDContent" class=3D"INDpopupContent"></div><button id=3D"IN=
DCloseBtn" class=3D"INDpopupConfirm" tabindex=3D"0">Close</button></div></d=
iv><div id=3D"INDdata" style=3D"display: none;"></div><div id=3D"INDbtnWrap=
"><button id=3D"INDmenu-btn" aria-expanded=3D"false" aria-haspopup=3D"true"=
accesskey=3D"m" data-drag-content=3D"
Explore your accessibility options" class=3D"INDsemicircle-btn INDoutline-b=
tn" data-inddrag=3D"true">
<svg id=3D"INDmenu-btn-moveArrow" version=3D"1.2" baseProfile=3D"tiny" =
xmlns=3D"http://www.w3.org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/=
xlink" x=3D"0px" y=3D"0px" width=3D"52px" height=3D"52px" viewBox=3D"0 0 52=
52" xml:space=3D"preserve">
<path fill=3D"#010101" d=3D"M25.904,13.439c-0.189,0.022-0.364,0.109-0.=
498,0.244l-3.352,3.352c-0.346,0.307-0.378,0.836-0.07,1.183
c0.307,0.347,0.836,0.378,1.182,0.071c0.027-0.023,0.053-0.049,0.076-0.=
076l1.92-1.92v6.361C25.156,23.098,25.557,23.51,26,23.51
c0.442,0,0.844-0.412,0.838-0.855v-6.361l1.92,1.92c0.305,0.348,0.834,0=
.385,1.183,0.08s0.384-0.834,0.079-1.182
c-0.023-0.027-0.049-0.053-0.075-0.076l-3.351-3.352C26.414,13.502,26.1=
59,13.41,25.904,13.439z M17.525,21.809
c-0.189,0.025-0.365,0.114-0.496,0.253l-3.352,3.351c-0.323,0.326-0.323=
,0.853,0,1.178l3.352,3.353
c0.304,0.348,0.833,0.384,1.182,0.079c0.348-0.304,0.385-0.833,0.08-1.1=
82c-0.023-0.026-0.049-0.053-0.075-0.077l-1.921-1.919h6.354
c0.443,0.008,0.848-0.395,0.848-0.838c0-0.441-0.404-0.844-0.848-0.838h=
-6.354l1.921-1.928c0.331-0.324,0.337-0.854,0.015-1.186
C18.047,21.867,17.787,21.775,17.525,21.809z M34.283,21.809c-0.462,0.0=
5-0.794,0.463-0.745,0.922
c0.02,0.193,0.108,0.373,0.247,0.51l1.919,1.928h-6.354c-0.029,0-0.058,=
0-0.086,0c-0.439,0.023-0.818,0.443-0.795,0.882
c0.022,0.438,0.443,0.816,0.881,0.794h6.354l-1.919,1.919c-0.348,0.309-=
0.38,0.838-0.073,1.184c0.308,0.347,0.838,0.379,1.184,0.072
c0.027-0.025,0.053-0.05,0.075-0.076l3.353-3.353c0.322-0.325,0.322-0.8=
52,0-1.178l-3.353-3.351
C34.793,21.875,34.538,21.782,34.283,21.809z M25.992,28.502c-0.442,0.0=
05-0.839,0.413-0.83,0.855v6.353l-1.92-1.919
c-0.178-0.187-0.433-0.279-0.689-0.254c-0.46,0.05-0.793,0.463-0.744,0.=
923c0.021,0.193,0.107,0.372,0.246,0.509l3.352,3.352
c0.327,0.327,0.857,0.328,1.186,0.001c0,0,0.001-0.001,0.002-0.001l3.35=
1-3.352c0.347-0.307,0.379-0.836,0.072-1.183
s-0.838-0.379-1.184-0.071c-0.027,0.023-0.053,0.049-0.075,0.076l-1.92,=
1.919v-6.353C26.848,28.91,26.438,28.498,25.992,28.502z"></path>
</svg><svg version=3D"1.2" baseProfile=3D"tiny" xmlns=3D"http://www.w3.=
org/2000/svg" xmlns:xlink=3D"http://www.w3.org/1999/xlink" x=3D"0px" y=3D"0=
px" viewBox=3D"25.5 0 44 46" xml:space=3D"preserve">
<path d=3D"M53.538,36.803c-0.776-0.413-1.742-0.119-2.156,0.65l0,0c-1.717,3.=
191-5.078,5.362-8.956,5.362
c-2.809,0-5.338-1.133-7.18-2.974c-1.841-1.84-2.971-4.371-2.971-7.18c0-3.36=
1,1.629-6.331,4.145-8.187
c0.707-0.518,0.855-1.512,0.338-2.222c-0.521-0.707-1.516-0.858-2.226-0.334c=
-3.295,2.417-5.441,6.337-5.438,10.743
c0,7.367,5.969,13.335,13.335,13.338c5.087,0,9.516-2.85,11.763-7.038C54.604=
,38.188,54.314,37.223,53.538,36.803z M44.512,8.809
c2.43,0,4.402-1.969,4.402-4.403C48.914,1.966,46.941,0,44.512,0c-2.434,0-4.=
406,1.966-4.406,4.406
C40.105,6.836,42.078,8.806,44.512,8.809z M54.282,27.287c-0.375-0.577-1.01-=
0.921-1.697-0.921h-6.486v-9.352l2.62,2.619
c0.309,0.307,0.732,0.486,1.171,0.486h6.482c0.909,0,1.647-0.742,1.647-1.654=
c0-0.909-0.738-1.651-1.647-1.651h-5.801l-4.978-4.974
c-0.637-1.083-1.814-1.812-3.165-1.812c-2.026,0-3.667,1.641-3.667,3.667v13.=
098c0,2.029,1.638,3.674,3.667,3.674
c0.233,0,0.458-0.025,0.679-0.066c0.019,0,0.037,0.004,0.057,0.004h8.322l6.2=
52,9.717c0.386,0.604,1.035,0.928,1.698,0.928
c0.376,0,0.758-0.107,1.092-0.321c0.935-0.606,1.206-1.853,0.604-2.794L54.28=
2,27.287z M63.444,15.064
c-0.395-0.186-0.867-0.016-1.057,0.379l-3.333,7.123h-9.531c-0.436,0-0.796,0=
.357-0.796,0.799s0.357,0.798,0.796,0.798H59.56
c0.31,0,0.59-0.177,0.723-0.461l3.548-7.587C64.016,15.721,63.839,15.247,63.=
444,15.064z"></path>
</svg>
<span class=3D"INDhiddenText">Accessibility</span></button></div><div id=3D=
"INDquickAccess"><ul><li><button accesskey=3D"b" class=3D"INDshortcutBtn" t=
abindex=3D"1">Press enter for Accessibility for blind people<span class=3D"=
INDhiddenText"> who use screen readers</span></button></li><li><button acce=
sskey=3D"l" tabindex=3D"1">Press enter for Keyboard Navigation</button></li=
><li><button tabindex=3D"1">Press enter for Accessibility menu</button></li=
></ul></div></div>
<header id=3D"main-header">
<div class=3D"header navbar navbar-fixed-top" id=3D"main-header-inner" role=
=3D"navigation">
<div id=3D"navbarHeaderContainer1" class=3D"navbar-header headerCallout=
Present">
<a href=3D"https://www.tada.com/" id=3D"logo" class=3D"navbar-left =
pull-left">
<img id=3D"logoImage" src=3D"https://www.tada.com/_r190-4294a44=
/img/tada-logo.min.svg" alt=3D"Tada" width=3D"78" height=3D"32">
</a>
<form class=3D"navbar-form search headerMainNavSearch navbar-left h=
idden-sm hidden-xs" method=3D"GET" action=3D"https://www.tada.com/search" r=
ole=3D"search">
=20
<div class=3D"input-group">
<div class=3D"input-group-btn">
<button type=3D"button" class=3D"btn btn-default se=
archButton">
Shop
</button>
</div>
<span class=3D"twitter-typeahead" style=3D"position: relati=
ve; display: inline-block;"><input class=3D"typeahead tt-query tt-hint" aut=
ocomplete=3D"off" spellcheck=3D"false" dir=3D"ltr" readonly=3D"" tabindex=
=3D"-1" style=3D"position: absolute; top: 0px; left: 0px; border-color: tra=
nsparent; box-shadow: none; opacity: 1; background: none 0% 0% / auto repea=
t scroll padding-box border-box rgba(0, 0, 0, 0);"><input placeholder=3D"Se=
arch stores and products" id=3D"main-search" class=3D"typeahead tt-query" n=
ame=3D"kw" autocomplete=3D"off" required=3D"" spellcheck=3D"false" dir=3D"a=
uto" style=3D"position: relative; vertical-align: top; background-color: tr=
ansparent;"><pre aria-hidden=3D"true" style=3D"position: absolute; visibili=
ty: hidden; white-space: pre; font-family: "Open Sans", sans-seri=
f; font-size: 14px; font-style: normal; font-variant: normal; font-weight: =
400; word-spacing: 0px; letter-spacing: 0px; text-indent: 0px; text-renderi=
ng: auto; text-transform: none;"></pre><div class=3D"tt-dropdown-menu" styl=
e=3D"position: absolute; top: 100%; left: 0px; z-index: 100; display: none;=
"><div class=3D"tt-dataset tt-dataset-brands"></div></div></span>
<button type=3D"submit" class=3D"mainNavSearchCta mpCta" ti=
tle=3D"Search">
<span class=3D"mpVisuallyHidden">
Search
</span>
<i class=3D"glyphicon glyphicon-search glyph-flip"></i>
</button>
</div>
</form>
<ul id=3D"headerMemberCollapse" class=3D"nav navbar-nav navbar-righ=
t">
<li class=3D"nav-login"><a href=3D"https://www.tada.com/log=
in?rloc=3D%2Fprivacy-policy" class=3D"loginModal menuLogin">Sign In</a></li=
>
<li class=3D"nav-join text-center">
<button id=3D"menuRegister" class=3D"bannerNonA=
uthLanding mpCta">Join Now</button>
</li>
<li class=3D"nav-rewards"><a href=3D"https://www.tada.com/r=
eward" title=3D"Redeem Cash Back"><span class=3D"redeem tc">Redeem <span cl=
ass=3D"redeem-points">Cash Back</span></span></a></li>
</ul>
</div>
<div class=3D"container-fluid headerMainNavContainer">
<div class=3D"navbar-header mainNavSearchBarContainer">
<button type=3D"button" class=3D"navbar-toggle pull-left hi=
de-on-focus" data-toggle=3D"collapse" data-target=3D".headerMainNav">
<span class=3D"sr-only">Menu</span>
<span class=3D"icon-bar"></span>
<span class=3D"icon-bar"></span>
<span class=3D"icon-bar"></span>
</button>
<form class=3D"navbar-form search navbar-left pull-left" me=
thod=3D"GET" action=3D"https://www.tada.com/search" role=3D"search">
=20
<div class=3D"input-group">
<div class=3D"input-group-btn">
<button type=3D"button" class=3D"btn btn-de=
fault searchButton">
Shop
</button>
</div>
<span class=3D"twitter-typeahead" style=3D"position=
: relative; display: inline-block;"><input class=3D"typeahead tt-query tt-h=
int" autocomplete=3D"off" spellcheck=3D"false" dir=3D"ltr" readonly=3D"" ta=
bindex=3D"-1" style=3D"position: absolute; top: 0px; left: 0px; border-colo=
r: transparent; box-shadow: none; opacity: 1; background: none 0% 0% / auto=
repeat scroll padding-box border-box rgba(0, 0, 0, 0);"><input placeholder=
=3D"Search" id=3D"main-search-collapse" class=3D"typeahead tt-query" name=
=3D"kw" autocomplete=3D"off" required=3D"" spellcheck=3D"false" dir=3D"auto=
" style=3D"position: relative; vertical-align: top; background-color: trans=
parent;"><pre aria-hidden=3D"true" style=3D"position: absolute; visibility:=
hidden; white-space: pre; font-family: "Open Sans", sans-serif; =
font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400=
; word-spacing: 0px; letter-spacing: 0px; text-indent: 0px; text-rendering:=
auto; text-transform: none;"></pre><div class=3D"tt-dropdown-menu" style=
=3D"position: absolute; top: 100%; left: 0px; z-index: 100; display: none;"=
><div class=3D"tt-dataset tt-dataset-brands"></div></div></span>
<button type=3D"submit" class=3D"mainNavSearchCta m=
pCta" title=3D"Search">
<span class=3D"mpVisuallyHidden">
Search
</span>
<i class=3D"glyphicon glyphicon-search glyph-fl=
ip"></i>
</button>
</div>
</form>
</div>
<div class=3D"navbar-collapse collapse headerMainNav">
<ul id=3D"headerLinks" class=3D"nav navbar-nav navbar-left grey=
-bar">
<li class=3D"active headerMainNavItem " data-pr=
eload=3D"">
<a href=3D"https://www.tada.com/shop-by-sto=
re">
All Stores
</a>
</li>
<li class=3D"active headerMainNavItem " data-pr=
eload=3D"">
<a href=3D"https://www.tada.com/magic-recei=
pts">
Magic Receipts
</a>
</li>
<li class=3D"active headerMainNavItem " data-pr=
eload=3D"">
<a href=3D"https://www.tada.com/discover">
Offers
</a>
</li>
<li class=3D"active headerMainNavItem " data-pr=
eload=3D"">
<a href=3D"https://www.tada.com/tada-extens=
ion">
Tada Extension
</a>
</li>
<li class=3D"divider redeem-collapse"></li>
<li class=3D"redeem-collapse">
<a href=3D"https://www.tada.com/reward">Redeem</a>
</li>
<li class=3D"divider hidden-md hidden-lg"></li>
<li class=3D"hidden-md hidden-lg">
<a href=3D"https://www.tada.com/help">Help</a>
</li>
</ul>
</div>
</div>
</div>
<div id=3D"promo-banner-container" class=3D"container-fluid"></div>
<div id=3D"alerts-container" class=3D"container-fluid"></div>
</header>
<main id=3D"main-container" class=3D"container"><section class=3D"l=
egal-policy__container--LMd5n legal-policy__withSidebar--eU_d4">
<section class=3D"legal-policy__commonHeader--fsXs2">
<h1 class=3D"legal-policy__title--MNF0P">
Privacy Policy
</h1>
<p class=3D"legal-policy__countryTitle--Zk8Jw">
United States and Canada
</p>
</section>
<div class=3D"legal-policy__videoPreviewWrapper--ihYtb">
<button aria-label=3D"Play Video" id=3D"legal-policy__videoTrig=
ger--u_CRd"></button>
</div>
<section class=3D"" id=3D"legalPolicyOuterWrapper">
<div class=3D"otnotice" id=3D"otnotice-8cbb735f-034a-4210-9923-c2ac=
a14530a0"><div class=3D"otnotice-language-dropdown-container"><select id=3D=
"otnotice-language-dropdown" aria-label=3D"language selector"><option label=
=3D"English" value=3D"en">English</option></select></div><div class=3D"otno=
tice-content"><div class=3D"legal-policy__otnoticeSidebar--GA8dV"><ul class=
=3D"otnotice-menu"><li class=3D"otnotice-menu-section"><a href=3D"https://w=
ww.tada.com/privacy-policy#otnotice-section-3c7f8fe8-fb36-4178-877a-924ef22=
6da4c">NEW PRIVACY POLICY</a></li><li class=3D"otnotice-menu-section"><a hr=
ef=3D"https://www.tada.com/privacy-policy#otnotice-section-8b89a099-ae72-48=
73-ad21-d1038377852e">1. Introduction</a></li><li class=3D"otnotice-menu-se=
ction"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-af02=
5fc8-012a-4947-a68f-cb04316dbaea">2. Information We Collect Directly</a></l=
i><li class=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/priva=
cy-policy#otnotice-section-b6f43cc2-7952-48b1-ad35-9265941e37a2">3. Informa=
tion We Receive from Third Parties</a></li><li class=3D"otnotice-menu-secti=
on"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-a0f44fb=
9-6026-4703-9f39-63fdc66c952a">4. Use and Sharing of Information</a></li><l=
i class=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-p=
olicy#otnotice-section-abd558b8-5e8a-4a22-99de-66ff7125153b">5. Friend Refe=
rrals</a></li><li class=3D"otnotice-menu-section"><a href=3D"https://www.ta=
da.com/privacy-policy#otnotice-section-273a62b5-a32c-4f2f-a89e-1a1dc3bfe331=
">6. Community Features and User Content</a></li><li class=3D"otnotice-menu=
-section"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-d=
0ebce0e-56f9-4e07-b14e-73d20b74cbf0">7. Third Party Services </a></li><li c=
lass=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-poli=
cy#otnotice-section-7ae52981-7cf4-4740-8dba-1d3be433274c">8. Advertising Ne=
tworks</a></li><li class=3D"otnotice-menu-section"><a href=3D"https://www.t=
ada.com/privacy-policy#otnotice-section-fd51ffdf-fb64-4f33-966d-fb41dc3fab0=
6">9. Session Replay and Analytics Companies</a></li><li class=3D"otnotice-=
menu-section"><a href=3D"https://www.tada.com/privacy-policy#otnotice-secti=
on-ef2a8b43-fd0c-4bb4-b7bc-28bab802343c">10. Cookies and Tracking Technolog=
ies</a></li><li class=3D"otnotice-menu-section"><a href=3D"https://www.tada=
.com/privacy-policy#otnotice-section-e027ca80-436f-4d71-aa94-d1ae9ea3c90d">=
11. Card Linked Offers Programs </a></li><li class=3D"otnotice-menu-section=
"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-187b3c2d-=
d091-4f68-b65a-c280ed855e44">12. Social Features</a></li><li class=3D"otnot=
ice-menu-section"><a href=3D"https://www.tada.com/privacy-policy#otnotice-s=
ection-8c0550d5-f77d-4a06-8ff2-1965071e5966">13. Disclosure of Data</a></li=
><li class=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privac=
y-policy#otnotice-section-28f92238-24e8-4076-9dcf-66f0475948a6">14. Busines=
s Transactions</a></li><li class=3D"otnotice-menu-section"><a href=3D"https=
://www.tada.com/privacy-policy#otnotice-section-524caf7a-223f-495b-8acc-ab4=
86f48fbc2">15. Updating Your Information, Choice and Opt-Out</a></li><li cl=
ass=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-polic=
y#otnotice-section-931061ed-fee5-4ce4-ba72-66c020b1a6bc">16. Notification o=
f Privacy Policy Updates</a></li><li class=3D"otnotice-menu-section"><a hre=
f=3D"https://www.tada.com/privacy-policy#otnotice-section-6c5de299-4639-41d=
c-8274-c3c69f8c352d">17. Children's Privacy</a></li><li class=3D"otnotice-m=
enu-section"><a href=3D"https://www.tada.com/privacy-policy#otnotice-sectio=
n-7697240c-924e-4978-bdea-bc4affeab88e">18. Security</a></li><li class=3D"o=
tnotice-menu-section"><a href=3D"https://www.tada.com/privacy-policy#otnoti=
ce-section-13e5b009-b68d-4bc8-8ca6-d84d12616b1a">19. Location of Processing=
and Applicable Law</a></li><li class=3D"otnotice-menu-section"><a href=3D"=
https://www.tada.com/privacy-policy#otnotice-section-33830418-104f-446c-943=
5-7bb5222138fe">20. Contact Us</a></li><li class=3D"otnotice-menu-section">=
<a href=3D"https://www.tada.com/privacy-policy#otnotice-section-7ed68dd0-01=
51-4ac6-b033-171eb0a12002">U.S. STATE PRIVACY NOTICE </a></li><li class=3D"=
otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-policy#otnot=
ice-section-5d522a2d-736b-41da-b502-e997b1ff72a9"> A. Notice of Data Pract=
ices</a></li><li class=3D"otnotice-menu-section"><a href=3D"https://www.tad=
a.com/privacy-policy#otnotice-section-d04d1657-4b75-4005-a7c8-b770e03c03c4"=
> B. Your Consumer Rights and How to Exercise Them</a></li><li class=3D"ot=
notice-menu-section"><a href=3D"https://www.tada.com/privacy-policy#otnotic=
e-section-dbe27466-d3cb-4e1e-a194-640b26acf64d"> C. How We Process Your Co=
nsumer Privacy Requests</a></li><li class=3D"otnotice-menu-section"><a href=
=3D"https://www.tada.com/privacy-policy#otnotice-section-27d95223-cb4f-4b3a=
-af83-4f7a172eff5c"> D. Non-Discrimination/Non-Retaliation</a></li><li cla=
ss=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-policy=
#otnotice-section-efcd88c7-c17e-4b9d-9c18-523477af2d4f"> E. Notice of Fina=
ncial Incentive Programs</a></li><li class=3D"otnotice-menu-section"><a hre=
f=3D"https://www.tada.com/privacy-policy#otnotice-section-74fa8c6d-b0fc-4fc=
d-a861-f45d3dc36f39"> F. Our Rights and the Rights of Others</a></li><li c=
lass=3D"otnotice-menu-section"><a href=3D"https://www.tada.com/privacy-poli=
cy#otnotice-section-d5c1f676-2e95-4e95-9ba6-8f54a0f4fdf5"> G. Additional N=
otices for California Residents</a></li></ul><section class=3D"legal-policy=
__infoBox--eXZGw">
<h3 class=3D"legal-policy__infoTitle--MrFf1">
Looking for Customer Support?
</h3>
<p class=3D"legal-policy__infoText--Qy3ZG">
Find the Help Centers Below:
</p>
<ul class=3D"legal-policy__linksList--pgR1C">
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://help.swagbucks.com/hc/en-us">
<var class=3D"legal-policy__supportLinkText--kJL6y">
Swagbucks
</var>
</a>
</li>
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://support.inboxdollars.com/hc/en-us">
<var class=3D"legal-policy__supportLinkText--kJL6y">
InboxDollars
</var>
</a>
</li>
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://help.mypoints.com/">
<var class=3D"legal-policy__supportLinkText--kJL6y">
MyPoints
</var>
</a>
</li>
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://help.upromise.com/">
<var class=3D"legal-policy__supportLinkText--kJL6y">
Upromise
</var>
</a>
</li>
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://help.tada.com/hc/en-us/requests/new">
<var class=3D"legal-policy__supportLinkText--kJL6y">
Tada
</var>
</a>
</li>
<li class=3D"legal-policy__linksListItem--qu9n_">
<a class=3D"legal-policy__supportLink--jHg8a" href=3D"https=
://help.ysense.com/">
<var class=3D"legal-policy__supportLinkText--kJL6y">
ySense
</var>
</a>
</li>
</ul>
</section>
</div><div class=3D"otnotice-menu-mobile"><div class=3D"otnotice-menu-selec=
ted-container"><span class=3D"otnotice-menu-selected" id=3D"otnotice-menu-s=
elected">NEW PRIVACY POLICY</span><span class=3D"otnotice-menu-display otno=
tice-menu-display__expand" id=3D"otnotice-collapse-expand-icon"></span></di=
v><ul class=3D"otnotice-menu-mobile-container" style=3D"display: none;"><li=
class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.com/pri=
vacy-policy#otnotice-section-3c7f8fe8-fb36-4178-877a-924ef226da4c">NEW PRIV=
ACY POLICY</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"ht=
tps://www.tada.com/privacy-policy#otnotice-section-8b89a099-ae72-4873-ad21-=
d1038377852e">1. Introduction</a></li><li class=3D"otnotice-menu-section-mo=
bile"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-af025=
fc8-012a-4947-a68f-cb04316dbaea">2. Information We Collect Directly</a></li=
><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.com=
/privacy-policy#otnotice-section-b6f43cc2-7952-48b1-ad35-9265941e37a2">3. I=
nformation We Receive from Third Parties</a></li><li class=3D"otnotice-menu=
-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otnotice-se=
ction-a0f44fb9-6026-4703-9f39-63fdc66c952a">4. Use and Sharing of Informati=
on</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://ww=
w.tada.com/privacy-policy#otnotice-section-abd558b8-5e8a-4a22-99de-66ff7125=
153b">5. Friend Referrals</a></li><li class=3D"otnotice-menu-section-mobile=
"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-273a62b5-=
a32c-4f2f-a89e-1a1dc3bfe331">6. Community Features and User Content</a></li=
><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.com=
/privacy-policy#otnotice-section-d0ebce0e-56f9-4e07-b14e-73d20b74cbf0">7. T=
hird Party Services </a></li><li class=3D"otnotice-menu-section-mobile"><a =
href=3D"https://www.tada.com/privacy-policy#otnotice-section-7ae52981-7cf4-=
4740-8dba-1d3be433274c">8. Advertising Networks</a></li><li class=3D"otnoti=
ce-menu-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otno=
tice-section-fd51ffdf-fb64-4f33-966d-fb41dc3fab06">9. Session Replay and An=
alytics Companies</a></li><li class=3D"otnotice-menu-section-mobile"><a hre=
f=3D"https://www.tada.com/privacy-policy#otnotice-section-ef2a8b43-fd0c-4bb=
4-b7bc-28bab802343c">10. Cookies and Tracking Technologies</a></li><li clas=
s=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.com/privacy-=
policy#otnotice-section-e027ca80-436f-4d71-aa94-d1ae9ea3c90d">11. Card Link=
ed Offers Programs </a></li><li class=3D"otnotice-menu-section-mobile"><a h=
ref=3D"https://www.tada.com/privacy-policy#otnotice-section-187b3c2d-d091-4=
f68-b65a-c280ed855e44">12. Social Features</a></li><li class=3D"otnotice-me=
nu-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otnotice-=
section-8c0550d5-f77d-4a06-8ff2-1965071e5966">13. Disclosure of Data</a></l=
i><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.co=
m/privacy-policy#otnotice-section-28f92238-24e8-4076-9dcf-66f0475948a6">14.=
Business Transactions</a></li><li class=3D"otnotice-menu-section-mobile"><=
a href=3D"https://www.tada.com/privacy-policy#otnotice-section-524caf7a-223=
f-495b-8acc-ab486f48fbc2">15. Updating Your Information, Choice and Opt-Out=
</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.=
tada.com/privacy-policy#otnotice-section-931061ed-fee5-4ce4-ba72-66c020b1a6=
bc">16. Notification of Privacy Policy Updates</a></li><li class=3D"otnotic=
e-menu-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otnot=
ice-section-6c5de299-4639-41dc-8274-c3c69f8c352d">17. Children's Privacy</a=
></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tad=
a.com/privacy-policy#otnotice-section-7697240c-924e-4978-bdea-bc4affeab88e"=
>18. Security</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D=
"https://www.tada.com/privacy-policy#otnotice-section-13e5b009-b68d-4bc8-8c=
a6-d84d12616b1a">19. Location of Processing and Applicable Law</a></li><li =
class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.com/priv=
acy-policy#otnotice-section-33830418-104f-446c-9435-7bb5222138fe">20. Conta=
ct Us</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"https:/=
/www.tada.com/privacy-policy#otnotice-section-7ed68dd0-0151-4ac6-b033-171eb=
0a12002">U.S. STATE PRIVACY NOTICE </a></li><li class=3D"otnotice-menu-sect=
ion-mobile"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section=
-5d522a2d-736b-41da-b502-e997b1ff72a9"> A. Notice of Data Practices</a></l=
i><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.co=
m/privacy-policy#otnotice-section-d04d1657-4b75-4005-a7c8-b770e03c03c4"> B=
. Your Consumer Rights and How to Exercise Them</a></li><li class=3D"otnoti=
ce-menu-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otno=
tice-section-dbe27466-d3cb-4e1e-a194-640b26acf64d"> C. How We Process Your=
Consumer Privacy Requests</a></li><li class=3D"otnotice-menu-section-mobil=
e"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-27d95223=
-cb4f-4b3a-af83-4f7a172eff5c"> D. Non-Discrimination/Non-Retaliation</a></=
li><li class=3D"otnotice-menu-section-mobile"><a href=3D"https://www.tada.c=
om/privacy-policy#otnotice-section-efcd88c7-c17e-4b9d-9c18-523477af2d4f"> =
E. Notice of Financial Incentive Programs</a></li><li class=3D"otnotice-men=
u-section-mobile"><a href=3D"https://www.tada.com/privacy-policy#otnotice-s=
ection-74fa8c6d-b0fc-4fcd-a861-f45d3dc36f39"> F. Our Rights and the Rights=
of Others</a></li><li class=3D"otnotice-menu-section-mobile"><a href=3D"ht=
tps://www.tada.com/privacy-policy#otnotice-section-d5c1f676-2e95-4e95-9ba6-=
8f54a0f4fdf5"> G. Additional Notices for California Residents</a></li></ul=
></div><div class=3D"otnotice-sections"><section class=3D"otnotice-section"=
id=3D"otnotice-section-3c7f8fe8-fb36-4178-877a-924ef226da4c"><h2 class=3D"=
otnotice-section-header">NEW PRIVACY POLICY</h2><div class=3D"otnotice-sect=
ion-content"><p id=3D"isPasted" style=3D"margin-top:0in;margin-right:0in;ma=
rgin-bottom:8pt;margin-left:0in;line-height:normal;font-size:15px;font-fami=
ly:'calibri' , sans-serif"><span style=3D"font-size:14px;font-family:'open =
sans' , sans-serif">This Privacy Policy was last updated on: August 1, 2023=
</span></p></div></section><section class=3D"otnotice-section" id=3D"otnoti=
ce-section-8b89a099-ae72-4873-ad21-d1038377852e"><h2 class=3D"otnotice-sect=
ion-header">1. Introduction</h2><div class=3D"otnotice-section-content"><p =
id=3D"isPasted" style=3D"margin-top:0in;margin-right:0in;margin-bottom:8pt;=
margin-left:0in;line-height:normal;font-size:15px;font-family:'calibri' , s=
ans-serif;"><span style=3D"font-size:15px;font-family:'open sans' , sans-se=
rif;">This "Privacy Policy" is for residents and persons located within the=
United States and Canada. For all other visitors, please visit the interna=
tional version of our Privacy Policy </span><a href=3D"https://www.tad=
a.com/privacy-policy-intl/" rel=3D"nofollow"><span style=3D"font-size:15px;=
font-family:'open sans' , sans-serif;color:blue;">here</span></a><span styl=
e=3D"font-size:15px;font-family:'open sans' , sans-serif;">. We want you to=
be familiar with how we collect, use, and share your Personally Identifiab=
le Information (defined below). This Privacy Policy outlines the type of in=
formation that we collect and receive from and about you via the Prodege Si=
tes and Features and our Services (both as defined below), and our data pra=
ctices related thereto, with additional disclosures for California, Colorad=
o, Connecticut, Nevada, Utah and Virginia residents in the </span><a h=
ref=3D"https://www.tada.com/#%3A~%3Atext=3D20.%20Contact%20Us-,U.S.%20STATE=
%20PRIVACY%20NOTICE,-A.%20Notice%20of/" rel=3D"nofollow"></a><a href=3D"htt=
ps://www.tada.com/privacy-policy#otnotice-section-7ed68dd0-0151-4ac6-b033-1=
71eb0a12002" rel=3D"nofollow"></a><span style=3D"font-size:15px;font-family=
:'open sans' , sans-serif;"><a href=3D"https://www.tada.com/privacy-policy#=
otnotice-section-7ed68dd0-0151-4ac6-b033-171eb0a12002" rel=3D"nofollow"><u>=
U.S. State Privacy Notice</u></a></span><span style=3D"font-size:15px;font-=
family:'open sans' , sans-serif;"> section below. To the extent that t=
here is a conflict between this Privacy Policy and the U.S. State Privacy N=
otice section, the U.S. State Privacy Notice section will control as to res=
idents of those states. Please review this Privacy Policy carefully, especi=
ally before providing any Personally Identifiable Information through the P=
rodege Sites and Features or our Services. The Prodege Sites and Features a=
nd our Services are generally operated in and controlled from the United St=
ates of America unless otherwise stated.</span></p><p style=3D"margin-top:0=
in;margin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;fo=
nt-size:15px;font-family:'calibri' , sans-serif;"><span style=3D"font-size:=
15px;font-family:'open sans' , sans-serif;color:black;background:white;">Pr=
odege Sites and Features and our Services may collect and use location-awar=
e and cross-device data for advertising and other purposes. </span><s=
pan style=3D"font-size:15px;font-family:'open sans' , sans-serif;"> </=
span></p><p style=3D"margin-top:0in;margin-right:0in;margin-bottom:8pt;marg=
in-left:0in;line-height:normal;font-size:15px;font-family:'calibri' , sans-=
serif;"><strong><span style=3D"font-size:15px;font-family:'open sans' , san=
s-serif;">IF YOU DO NOT WISH TO HAVE US COLLECT, USE, AND SHARE INFORMATION=
AS DESCRIBED IN THIS PRIVACY POLICY, PLEASE DO NOT USE ANY OF THE PRODEGE =
SITES AND FEATURES OR OUR SERVICES.</span></strong></p><p style=3D"margin-t=
op:0in;margin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:norma=
l;font-size:15px;font-family:'calibri' , sans-serif;"><strong><u><span styl=
e=3D"font-size:15px;font-family:'open sans' , sans-serif;">Notice of Terms =
of Use, Including Arbitration:</span></u></strong><strong><span style=3D"fo=
nt-size:15px;font-family:'open sans' , sans-serif;"> Your use of the P=
rodege Sites and Features and our Services is subject to our </span></=
strong><a href=3D"https://www.tada.com/terms-of-use/" target=3D"_blank" rel=
=3D"nofollow noopener noreferrer"><strong><span style=3D"font-size:15px;fon=
t-family:'open sans' , sans-serif;color:blue;">Terms of Use</span></strong>=
</a><strong><u><span style=3D"font-size:15px;font-family:'open sans' , sans=
-serif;color:blue;">,</span></u></strong><strong><span style=3D"font-size:1=
5px;font-family:'open sans' , sans-serif;"> which includes binding ind=
ividual arbitration of any disputes which may arise in connection with such=
use. Please note that your use of the Prodege Sites and Features or our Se=
rvices constitutes your express agreement to our Terms of Use, including it=
s arbitration provisions and class action waiver. Please read the Terms of =
Use=E2=80=94including the arbitration provisions=E2=80=94carefully, and do =
not use any of the Prodege Sites and Features or our Services if you do not=
agree. </span></strong></p><p style=3D"margin-top:0in;margin-right:0i=
n;margin-bottom:8pt;margin-left:0in;line-height:normal;font-size:15px;font-=
family:'calibri' , sans-serif;"><span style=3D"font-size:15px;font-family:'=
open sans' , sans-serif;">Prodege, LLC and its Affiliates (defined below) (=
collectively, <strong>=E2=80=9CProdege</strong>,<strong>=E2=80=9D =E2=80=9C=
we</strong>,<strong>=E2=80=9D =E2=80=9Cour=E2=80=9D</strong> or <strong>=E2=
=80=9Cus=E2=80=9D</strong>) own and operate a number of different services,=
including, without limitation, Swagbucks, MyPoints, InboxDollars, Upromise=
, CouponCause, Swagbucks Live, Swagit, MyGiftCardsPlus, ySense, Tada, Daily=
Rewards, <span style=3D"color:#4d4d4d;background:white;">Pollfish, </s=
pan>BitBurst, AdGate Media, <span style=3D"color:black;background:white;">P=
rodege.com,</span> and others that may be added from time to time (collecti=
vely, the <strong>=E2=80=9CProdege Sites=E2=80=9D</strong>). This Privacy P=
olicy applies to the Prodege Sites and to all of the features, websites, mo=
bile applications, Internet browser extensions, emails, online services and=
other functionalities (collectively, the <strong>=E2=80=9CFeatures=E2=80=
=9D</strong>) available via or related to the Prodege Sites, whether access=
ed via a computer, mobile device, or other devices you use (each a "<strong=
>Device</strong>" and collectively, =E2=80=9C<strong>Devices</strong>=E2=80=
=9D), or otherwise (collectively, the <strong>=E2=80=9CProdege Sites and Fe=
atures=E2=80=9D</strong>), the services available on or through the Prodege=
Sites and Features, including our emails and other electronic communicatio=
ns (collectively, <strong>=E2=80=9Cour Services=E2=80=9D</strong>). Unless =
specifically stated, such as in the </span><a href=3D"https://www.tada=
.com/#%3A~%3Atext=3D20.%20Contact%20Us-,U.S.%20STATE%20PRIVACY%20NOTICE,-A.=
%20Notice%20of/" rel=3D"nofollow"></a><a href=3D"https://www.tada.com/priva=
cy-policy#otnotice-section-7ed68dd0-0151-4ac6-b033-171eb0a12002" rel=3D"nof=
ollow"></a><span style=3D"font-size:15px;font-family:'open sans' , sans-ser=
if;"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-7ed68d=
d0-0151-4ac6-b033-171eb0a12002" rel=3D"nofollow"><u>U.S. State Privacy Noti=
ce</u></a></span><span style=3D"font-size:15px;font-family:'open sans' , sa=
ns-serif;"> section, this Privacy Policy only covers information we co=
llect through Prodege Sites and Features and our Services and does not cove=
r any information we receive or collect offline or that is collected by any=
unrelated websites or companies to which we may provide links. </span=
><span style=3D"font-size:15px;font-family:'open sans' , sans-serif;">Pleas=
e contact us with any questions regarding this Privacy Policy and our priva=
cy practices as instructed in Section 20 (</span><a href=3D"https://www.tad=
a.com/privacy-policy#otnotice-section-33830418-104f-446c-9435-7bb5222138fe"=
rel=3D"nofollow"></a><span style=3D"font-size:15px;font-family:'open sans'=
, sans-serif;"><a href=3D"https://www.tada.com/privacy-policy#otnotice-sec=
tion-33830418-104f-446c-9435-7bb5222138fe" rel=3D"nofollow"><u>Contact Us</=
u></a></span><span style=3D"font-size:15px;font-family:'open sans' , sans-s=
erif;">) of this Privacy Policy below. </span></p></div></section><sec=
tion class=3D"otnotice-section" id=3D"otnotice-section-af025fc8-012a-4947-a=
68f-cb04316dbaea"><h2 class=3D"otnotice-section-header">2. Information We C=
ollect Directly</h2><div class=3D"otnotice-section-content"><p id=3D"isPast=
ed" style=3D"margin-top:0in;margin-right:0in;margin-bottom:8pt;margin-left:=
0in;line-height:normal;font-size:15px;font-family:'calibri' , sans-serif"><=
span style=3D"font-size:15px;font-family:'open sans' , sans-serif">When you=
visit any Prodege Sites and Features or use any of our Services, you may s=
hare and/or we may automatically collect information that identifies you pe=
rsonally. In this Privacy Policy, <strong>=E2=80=9CPersonally Identifiable =
Information=E2=80=9D</strong> (or =E2=80=9C<strong>PII</strong>=E2=80=9D) r=
efers to any information that can reasonably be used to identify, contact o=
r locate you; provided, however, that the </span><a href=3D"https://ww=
w.tada.com/#%3A~%3Atext=3D20.%20Contact%20Us-,U.S.%20STATE%20PRIVACY%20NOTI=
CE,-A.%20Notice%20of/" rel=3D"nofollow"></a><a href=3D"https://www.tada.com=
/privacy-policy#otnotice-section-7ed68dd0-0151-4ac6-b033-171eb0a12002" rel=
=3D"nofollow"></a><span style=3D"font-size:15px;font-family:'open sans' , s=
ans-serif"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-=
7ed68dd0-0151-4ac6-b033-171eb0a12002" rel=3D"nofollow"><u>U.S. State Privac=
y Notice</u></a></span><span style=3D"font-size:15px;font-family:'open sans=
' , sans-serif"> section applies a definition of personal information =
under applicable state law that may be broader than PII. Examples of PII ma=
y include, without limitation, your name, your precise geo-location, your c=
redit card number, your email address, your mailing address, and your phone=
number. We also collect, and may create from PII, information about you th=
at is not PII (=E2=80=9C<strong>Non-PII</strong>=E2=80=9D). If we combine P=
II collected via Prodege Sites and Features or our Services with other of y=
our PII or with Non-PII, that combined data will be treated as PII subject =
to this Privacy Policy. </span></p><p style=3D"margin-top:0in;margin-r=
ight:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;font-size:15p=
x;font-family:'calibri' , sans-serif"><span style=3D"font-size:15px;font-fa=
mily:'open sans' , sans-serif">PII and Non-PII may be collected on, through=
, or in connection with any of the Prodege Sites and Features or our Servic=
es. For example, we may collect PII and/or Non-PII when you create or=
register for an account with us, fill out surveys, join a mailing list, up=
load receipts, correspond with us, enter one of our sweepstakes or contests=
, choose to submit testimonials, stories, photos or the like, or otherwise =
volunteer or provide information about yourself. You may also choose =
to install and use optional Internet browser extensions, add-ons, or simila=
r plug-in software and technologies (each an "<strong>Extension</strong>" a=
nd collectively, =E2=80=9C<strong>Extensions</strong>=E2=80=9D) which may c=
ollect and use your information in a variety of ways. For example, the Swag=
bucks SwagButton, MyPoints Score!, Tada, InboxDollars Billy Button, Upromis=
e Extension, ySense Addon, and similar software or technologies we may offe=
r from time to time are Extensions that allow you to shop directly with our=
merchant partners and qualify for rewards. The Extensions also provide oth=
er features and access to Offers (defined below), and allow you to monitor =
your earnings, customize your account information or experience, and other =
activities. If you install an Extension, we will automatically track certai=
n websites you visit to allow us to provide the aforementioned features and=
to correlate your browser history, merchant visits, and Prodege Sites and =
Features engagements to provide better Services and Offers to you. In addit=
ion, Tracking Technologies (defined below) may be placed on your Devices wh=
en you install and use Extensions or when you click on an affiliate or Ad N=
etwork (defined below) link within a shopping-rewards feature. Your browsin=
g activity on our merchant partners=E2=80=99 websites and other websites yo=
u visit may be tracked by cookies, Extensions, or other Prodege Sites and F=
eatures having such tracking capabilities. We may also use GPS or similar g=
eo-location technology to determine the geo-coordinates of where you or you=
r Device are located. In addition, our mobile applications may collect, amo=
ng other things, certain information automatically, including, but not limi=
ted to the type of mobile Device you use, your mobile Device=E2=80=99s uniq=
ue device identifier (=E2=80=9C<strong>UDID</strong>=E2=80=9D), the IP addr=
ess of your mobile Device, your mobile operating system, the type of mobile=
Internet browsers you use, and information about the way you use the mobil=
e application. </span></p><p style=3D"margin-top:0in;margin-right:0in;=
margin-bottom:8pt;margin-left:0in;line-height:normal;font-size:15px;font-fa=
mily:'calibri' , sans-serif"><span style=3D"font-size:15px;font-family:'ope=
n sans' , sans-serif">If you don=E2=80=99t provide us with or allow us to c=
ollect your PII, we generally will be unable to provide you with our Servic=
es and you may be unable to use the Prodege Sites and Features.</span></p><=
p><span style=3D"font-size:15px;line-height:107%;font-family:'open sans' , =
sans-serif">You may be able to limit data collection by changing the settin=
gs on your Device (but our services and features may lose functionality as =
a result), or as otherwise explained in the sections below.</span></p></div=
></section><section class=3D"otnotice-section" id=3D"otnotice-section-b6f43=
cc2-7952-48b1-ad35-9265941e37a2"><h2 class=3D"otnotice-section-header">3. I=
nformation We Receive from Third Parties</h2><div class=3D"otnotice-section=
-content"><p id=3D"isPasted" style=3D"margin-top:0in;margin-right:0in;margi=
n-bottom:8pt;margin-left:0in;line-height:normal;font-size:15px;font-family:=
'calibri' , sans-serif"><span style=3D"font-size:15px;font-family:'open san=
s' , sans-serif">We may also receive and supplement the information we dire=
ctly collect from or about you with information from third parties, includi=
ng Trusted Third Parties (defined below), and to the extent it is combined =
with PII collected via Prodege Sites and Features or our Services, it will =
be governed by this Privacy Policy. If you are on a third party website or =
service and you opt-in to receive information from us, the third party may =
forward to us your email address and other information about you so that we=
may contact you as requested. In addition, we may receive information from=
Third Party Services to ensure that you properly receive any qualified Off=
ers and for our other Data Purposes (defined below). We may also supplement=
and combine the PII we collect about you with outside records from third p=
arties in order to enhance our ability to provide you with Offers and for o=
ur other Data Purposes, and to the extent it is combined with PII collected=
via Prodege Sites and Features or our Services, it will be governed by thi=
s Privacy Policy.</span></p></div></section><section class=3D"otnotice-sect=
ion" id=3D"otnotice-section-a0f44fb9-6026-4703-9f39-63fdc66c952a"><h2 class=
=3D"otnotice-section-header">4. Use and Sharing of Information</h2><div cla=
ss=3D"otnotice-section-content"><p id=3D"isPasted" style=3D"margin-top:0in;=
margin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;font-=
size:15px;font-family:'calibri' , sans-serif"><span style=3D"font-size:15px=
;font-family:'open sans' , sans-serif">We use your PII and non-PII we colle=
ct about you in order to: (i) provide you with our Services; (ii) operate a=
nd improve the Prodege Sites and Features; (iii) provide advertising, conte=
nt, surveys, location-based deals, special offers, promotions, and other re=
wards opportunities (collectively, =E2=80=9C<strong>Offers</strong>=E2=80=
=9D); and (iv) for other marketing, administrative, operational, business, =
and commercial purposes subject to applicable law and not inconsistent with=
this Privacy Policy or other notice by us at collection (collectively, our=
<strong> =E2=80=9CData Purposes</strong>=E2=80=9D). We may use and dis=
close Non-PII for any purpose subject to applicable law and not inconsisten=
t with this Privacy Policy or other notice by us at collection. Without lim=
itation, your PII and non-PII may be used by itself, aggregated, or combine=
d with unique identifiers (such as Prodege-assigned identifiers, UDIDs, etc=
.), and shared with (a) our parent companies, subsidiaries, sister companie=
s, trusted agents and affiliated Services that we own and/or operate (=E2=
=80=9C<strong>Affiliates</strong>=E2=80=9D); and (b) our service providers,=
vendors, advertisers, merchants, survey partners, joint business ventures,=
and other trusted third parties (collectively, =E2=80=9C<strong>Trusted Th=
ird Parties</strong>=E2=80=9D) (some of whom may offer Third Party Services=
(defined below)), for purposes related to our business, including, without=
limitation, advertising, attribution, measurement of campaigns, analytics =
and research, and our other Data Purposes as permitted by applicable law. N=
otwithstanding the foregoing, no phone number you provide to us or one of o=
ur mobile service providers (currently Airship, Twilio, Telesign, and Butto=
n) for purposes of sending you a link for downloading a mobile app, special=
offer, a security verification, text (SMS) marketing, or otherwise, will b=
e used or shared with any third party to be used for any other purpose, exc=
ept as may be permitted or required by law or legal process or with your co=
nsent or at your direction.</span></p></div></section><section class=3D"otn=
otice-section" id=3D"otnotice-section-abd558b8-5e8a-4a22-99de-66ff7125153b"=
><h2 class=3D"otnotice-section-header">5. Friend Referrals</h2><div class=
=3D"otnotice-section-content"><p id=3D"isPasted" style=3D"margin-top:0in;ma=
rgin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;font-si=
ze:15px;font-family:'calibri' , sans-serif"><span style=3D"font-size:15px;f=
ont-family:'open sans' , sans-serif">We may provide you with an opportunity=
to invite your friends, family, and acquaintances (=E2=80=9C<strong>Friend=
s</strong>=E2=80=9D) to use our Services. If you elect to use our referral =
service for informing a Friend about any of our Services, you may provide u=
s with your Friend=E2=80=99s name and email address. Through our referral s=
ervice, you may have the ability to direct us to automatically send the Fri=
end one or more emails or other communications, on your behalf, inviting th=
em to visit or register for our Services (which invite may include addition=
al subsequent reminders and communications). You must have your Friend=E2=
=80=99s consent to provide us with his or her information for this purpose =
and should not knowingly give us referral information for any person not pe=
rmitted to use the Prodege Sites and Features, including, without limitatio=
n, a child under the age of 13, a person whose account has previously been =
suspended or deactivated, or a person who resides or is located in a territ=
ory where use of the Prodege Sites and Features is not authorized.</span></=
p></div></section><section class=3D"otnotice-section" id=3D"otnotice-sectio=
n-273a62b5-a32c-4f2f-a89e-1a1dc3bfe331"><h2 class=3D"otnotice-section-heade=
r">6. Community Features and User Content</h2><div class=3D"otnotice-sectio=
n-content"><p id=3D"isPasted" style=3D"margin-top:0in;margin-right:0in;marg=
in-bottom:8pt;margin-left:0in;line-height:normal;font-size:15px;font-family=
:'calibri' , sans-serif"><span style=3D"font-size:15px;font-family:'open sa=
ns' , sans-serif">The Prodege Sites and Features may provide you the opport=
unity to participate in, make available, and/or post text (e.g., questions,=
comments, and suggestions), images, audio, videos, or other content (colle=
ctively, =E2=80=9C<strong>User Content</strong>=E2=80=9D) publicly through =
our blogs, chat rooms, forums, interactive features, public-facing member p=
rofile, third-party social networking services or other communication funct=
ionality (=E2=80=9C<strong>Community Features</strong>=E2=80=9D). Please no=
te that certain information, such as your username, Service start date, ear=
ning preferences, qualified <span style=3D"color:#4d4d4d;background:white">=
rewards</span>, profile picture and other profile information we believe wi=
ll help motivate you and others to participate in our program may be public=
ly displayed on the Prodege Sites and Features along with User Content. Use=
r Content may also contain metadata, which may contain information about or=
relating to you, that we may also collect, share and use. Anything posted =
through Community Features is publicly available. This means that others wi=
ll have access to that User Content and may use it or share it with third p=
arties; this is beyond our control. If you choose to voluntarily disclose P=
II in the User Content and/or on the Community Features, that information w=
ill be considered publicly available information as well. The protections o=
f this Privacy Policy will not apply to publicly available information. In =
addition, by posting through our Community Features, you are agreeing that =
we may use your User Content (and excerpts from your User Content) in conne=
ction with our Data Purposes.</span></p></div></section><section class=3D"o=
tnotice-section" id=3D"otnotice-section-d0ebce0e-56f9-4e07-b14e-73d20b74cbf=
0"><h2 class=3D"otnotice-section-header">7. Third Party Services </h2><div =
class=3D"otnotice-section-content"><p id=3D"isPasted" style=3D"margin-top:0=
in;margin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;fo=
nt-size:15px;font-family:'calibri' , sans-serif"><span style=3D"font-size:1=
5px;font-family:'open sans' , sans-serif">The Prodege Sites and Features co=
ntain links to, or otherwise enable the opportunity to interact with (e.g.,=
Facebook button), other websites, and other services provided by Trusted T=
hird Parties (such as when you link to their site to take a survey or trans=
act with them to qualify for rewards) that we do not own, operate nor contr=
ol (=E2=80=9C<strong>Third Party Services</strong>=E2=80=9D). In addition, =
because aspects of the Prodege Sites and Features include third-party Offer=
s, Third Party Services may collect your information based on your interact=
ion with those Offers, including via Tracking Technologies (defined and dis=
cussed below). In addition, by interacting with Offers via Prodege Si=
tes and Features or our Services, you authorize and direct us to share your=
PII and non-PII with Third Party Services making Offers, and for them to s=
hare Offer-related activity data and other information with us. This helps =
us and them make and fulfill Offers, including making it easier for you to =
sign up for Offers, facilitating your communications or transactions with t=
hem, authenticating and/or validating your identification, crediting you wi=
th any qualified rewards, and for our other Data Purposes. Except as legall=
y required for our service providers, the privacy and other practices of Th=
ird Party Services are not covered by this Privacy Policy, and we are not r=
esponsible for their privacy or other practices. We encourage our users to =
be aware of and to read the privacy statements, terms of service and simila=
r disclosures and conditions of Third Party Services that collect PII or ot=
her data before visiting or otherwise interacting with those services.</spa=
n></p><p style=3D"margin-top:0in;margin-right:0in;margin-bottom:8pt;margin-=
left:0in;line-height:normal;font-size:15px;font-family:'calibri' , sans-ser=
if"><span id=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-fam=
ily:'open sans' , sans-serif">For more information on Third Party Services,=
see sections 8, 9, 11 and 12 of this Privacy Policy (</span><a href=
=3D"https://www.tada.com/privacy-policy#otnotice-section-7ae52981-7cf4-4740=
-8dba-1d3be433274c" rel=3D"nofollow"></a><span id=3D"isPasted" style=3D"fon=
t-size:15px;line-height:107%;font-family:'open sans' , sans-serif"><a href=
=3D"https://www.tada.com/privacy-policy#otnotice-section-7ae52981-7cf4-4740=
-8dba-1d3be433274c" rel=3D"nofollow"><u>Advertising Networks</u></a></span>=
<span id=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-family:=
'open sans' , sans-serif"><u>,</u> </span><a href=3D"https://www.tada.com/p=
rivacy-policy#otnotice-section-fd51ffdf-fb64-4f33-966d-fb41dc3fab06" rel=3D=
"nofollow"></a><span id=3D"isPasted" style=3D"font-size:15px;line-height:10=
7%;font-family:'open sans' , sans-serif"><a href=3D"https://www.tada.com/pr=
ivacy-policy#otnotice-section-fd51ffdf-fb64-4f33-966d-fb41dc3fab06" rel=3D"=
nofollow"><u>Session Replay and Analytics Companies</u></a></span><span id=
=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-family:'open sa=
ns' , sans-serif">, </span><a href=3D"https://www.tada.com/privacy-policy#o=
tnotice-section-e027ca80-436f-4d71-aa94-d1ae9ea3c90d" rel=3D"nofollow"></a>=
<span id=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-family:=
'open sans' , sans-serif"><a href=3D"https://www.tada.com/privacy-policy#ot=
notice-section-e027ca80-436f-4d71-aa94-d1ae9ea3c90d" rel=3D"nofollow"><u>Ca=
rd Linked Offers Programs</u></a></span><span id=3D"isPasted" style=3D"font=
-size:15px;line-height:107%;font-family:'open sans' , sans-serif"> and </sp=
an><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-187b3c2d=
-d091-4f68-b65a-c280ed855e44" rel=3D"nofollow"></a><span id=3D"isPasted" st=
yle=3D"font-size:15px;line-height:107%;font-family:'open sans' , sans-serif=
"><a href=3D"https://www.tada.com/privacy-policy#otnotice-section-187b3c2d-=
d091-4f68-b65a-c280ed855e44" rel=3D"nofollow"><u>Social Features</u></a></s=
pan><span id=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-fam=
ily:'open sans' , sans-serif"><u>)</u>.</span></p></div></section><section =
class=3D"otnotice-section" id=3D"otnotice-section-7ae52981-7cf4-4740-8dba-1=
d3be433274c"><h2 class=3D"otnotice-section-header">8. Advertising Networks<=
/h2><div class=3D"otnotice-section-content"><p id=3D"isPasted" style=3D"mar=
gin-top:0in;margin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:=
normal;font-size:15px;font-family:'calibri' , sans-serif"><span style=3D"fo=
nt-size:15px;font-family:'open sans' , sans-serif">Companies that host netw=
orks connecting advertisers with delivery platforms for digital advertising=
(collectively, <strong>=E2=80=9CAd Networks=E2=80=9D</strong>), which are =
Third Party Services, may provide advertising based on your interests, as r=
eflected in your use of Prodege Sites and Features and our Services, as wel=
l as your use of other websites and services. Some of these Ad Networks may=
place persistent cookies or other Tracking Technologies (defined below) on=
your Devices, allowing them to recognize you and/or your Device each time =
they send you an online advertisement. Ads themselves may also include Trac=
king Technologies. In this way, Ad Networks may compile information about w=
here you see advertisements online and determine which ads you click on, so=
, for instance, that we and they may provide you with Offers or advertiseme=
nts believed to be of most interest to you. We are not the data controller =
for the cookies or other Tracking Technologies that may be placed by these =
third parties on your Devices, nor do we have responsibility for these thir=
d parties=E2=80=99 privacy policies or information collection practices. Yo=
u may limit or remove such cookies and Tracking Technologies through your D=
evice settings; <span id=3D"isPasted" style=3D"font-size:15px;line-height:1=
07%;font-family:'open sans' , sans-serif">for more information, visit secti=
on 10(ii) (</span></span><a href=3D"https://www.tada.com/privacy-policy#otn=
otice-section-ef2a8b43-fd0c-4bb4-b7bc-28bab802343c" rel=3D"nofollow"></a><s=
pan style=3D"font-size:15px;font-family:'open sans' , sans-serif"><a href=
=3D"https://www.tada.com/privacy-policy#otnotice-section-ef2a8b43-fd0c-4bb4=
-b7bc-28bab802343c" rel=3D"nofollow"></a><span id=3D"isPasted" style=3D"fon=
t-size:15px;line-height:107%;font-family:'open sans' , sans-serif"><a href=
=3D"https://www.tada.com/privacy-policy#otnotice-section-ef2a8b43-fd0c-4bb4=
-b7bc-28bab802343c" rel=3D"nofollow"><u>What Are My Cookie Choices?</u></a>=
</span></span><span style=3D"font-size:15px;font-family:'open sans' , sans-=
serif"><span id=3D"isPasted" style=3D"font-size:15px;line-height:107%;font-=
family:'open sans' , sans-serif">) below.</span> </span></p></div></se=
ction><section class=3D"otnotice-section" id=3D"otnotice-section-fd51ffdf-f=
b64-4f33-966d-fb41dc3fab06"><h2 class=3D"otnotice-section-header">9. Sessio=
n Replay and Analytics Companies</h2><div class=3D"otnotice-section-content=
"><p id=3D"isPasted" style=3D"margin-top:0in;margin-right:0in;margin-bottom=
:8pt;margin-left:0in;line-height:normal;font-size:15px;font-family:'calibri=
' , sans-serif"><span style=3D"font-size:15px;font-family:'open sans' , san=
s-serif">We use certain third-party analytics and/or other technology provi=
ders to help us understand how you use Prodege Sites and Features or our Se=
rvices, and these companies may set their own cookies and other Tracking Te=
chnologies on your Devices. For example, we may use third-party services to=
record and review your interactions with the Prodege Sites and Features an=
d our Services, including mouse movements, clicks, page visits, keystrokes/=
key touches, and other details, including any PII that you provide. T=
hese =E2=80=9Csession replay=E2=80=9D services help us organize and analyze=
your interaction data for our Data Purposes, including to improve and prev=
ent fraud related to Prodege Sites and Features and our Services. By using =
any of the Prodege Sites and Features or our Services, you expressly consen=
t to the recording and sharing of your PII and other data with third-party =
=E2=80=9Csession replay=E2=80=9D services and other analytics providers.&nb=
sp;</span></p><p><span style=3D"font-size:15px;line-height:107%;font-family=
:'open sans' , sans-serif">We may also use Google Analytics and similar thi=
rd-party analytics providers to track visitors=E2=80=99 activity on our web=
site. Google Analytics and similar third-party analytics providers may also=
use web browsing data and other data analysis to improve their own product=
s. For more information on how to limit this activity, including to learn a=
bout the opt-out mechanism Google offers, visit section 10(ii) (</span><a h=
ref=3D"https://www.tada.com/privacy-policy#otnotice-section-ef2a8b43-fd0c-4=
bb4-b7bc-28bab802343c" rel=3D"nofollow"></a><span style=3D"font-size:15px;l=
ine-height:107%;font-family:'open sans' , sans-serif"><a href=3D"https://ww=
w.tada.com/privacy-policy#otnotice-section-ef2a8b43-fd0c-4bb4-b7bc-28bab802=
343c" rel=3D"nofollow"><u>What Are My Cookie Choices?</u></a></span><span s=
tyle=3D"font-size:15px;line-height:107%;font-family:'open sans' , sans-seri=
f">) below. These and other Trusted Third Parties may collect information a=
bout you, including but not limited to your online activities over time and=
across different websites and services, when you use the Prodege Sites and=
Features or our Services, or other online websites and services. </sp=
an></p></div></section><section class=3D"otnotice-section" id=3D"otnotice-s=
ection-ef2a8b43-fd0c-4bb4-b7bc-28bab802343c"><h2 class=3D"otnotice-section-=
header">10. Cookies and Tracking Technologies</h2><div class=3D"otnotice-se=
ction-content"><p id=3D"isPasted" style=3D"margin-top:9pt;margin-right:0in;=
margin-bottom:9pt;margin-left:0in;line-height:normal;font-size:15px;font-fa=
mily:'calibri' , sans-serif"><strong><span style=3D"font-size:15px;font-fam=
ily:'open sans' , sans-serif"> i. Use of Cookies =
and Tracking Technologies</span></strong></p><p style=3D"margin-top:0in;mar=
gin-right:0in;margin-bottom:8pt;margin-left:0in;line-height:normal;font-siz=
e:15px;font-family:'calibri' , sans-serif"><span style=3D"font-size:15px;fo=
nt-family:'open sans' , sans-serif">We set and access, and third parties (i=
ncluding Trusted Third Parties) may set and access, cookies, web beacons, e=
mbedded scripts, pixels, tags, software development kits (=E2=80=9CSDKs=E2=
=80=9D), session replay tools, and other tracking technologies (collectivel=
y, =E2=80=9C<strong>Tracking Technologies</strong>=E2=80=9D) on your Device=
s in connection with your use of Prodege Sites and Features or our Services=
. Such third parties (=E2=80=9C<strong>Cookie Operators</strong>=E2=80=9D) =
may collect information across various channels using Tracking Technologies=
for purposes of delivering more relevant Offers to you or other Business P=
urposes. We may use a variety of Tracking Technologies in connection with o=
ur Data Purposes. Tracking Technologies may automatically capture PII and o=
ther information, including, without limitation, your IP Address, UDID, and=
browser or operating system type and version, and may detect whether your =
Device or software has certain capabilities such as a microphone or webcam =
access. We and Third Party Services generally use Tracking Technologies and=
the information they generate to support the Prodege Sites and Features an=
d our Services or Third Party Services, including, for instance: (i) by off=
ering you surveys, shopping, and other targeted Offers; (ii) for identity v=
erification; (iii) for analytics; (iv) to ensure compliance with our progra=
ms; and (v) to identify and honor your choices (such as opt-outs). Tracking=
Technologies may also be used as follows: (a) to provide you with convenie=
nce when you access the Prodege Sites and Features or our Services by remem=
bering that you have visited us before and by remembering your username, pa=
ssword and other user information, and your preferences to help you avoid f=
uture re-entry of certain information; (b) to allow us and <span style=3D"c=
olor:#4d4d4d;background:white">Third Party Services</span> to understand or=
predict your interests so we and they can personalize your experience on P=
rodege Sites and Features or our Services and elsewhere online, across Devi=
ces, web browsers, email, mobile and other applications. In doing so=
, we and Third Party Services may link the information collected from Track=
ing Technologies, and from other sources, with other of your PII and non-PI=
I, and we and they may track your web-browsing and other activity in order =
to provide you with Offers and for our or their other Data Purposes); (c) f=
or analytical and statistical purposes, quality control, validation and ver=
ification purposes, and to improve the services we and <span style=3D"color=
:#4d4d4d;background:white">Third Party Services</span> offer; and (d) <span=
style=3D"color:#4d4d4d;background:white">Third Party Services</span> may l=