-
Notifications
You must be signed in to change notification settings - Fork 3
/
privacy.html
4161 lines (4139 loc) · 335 KB
/
privacy.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bored In School Right Now Inc HTML</title>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,500,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="bootstrap/bootstrap.min.css" rel="stylesheet">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q473F59QW1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-Q473F59QW1');
</script>
<meta name="google-site-verification" content="0zuWIkB3Ldo2MPpwfLTnPQ0Uk6xHb_khG_l5Jpj9d58" />
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<!--Favicon Information-->
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png?v=bOXjlPdAPj">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png?v=bOXjlPdAPj">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png?v=bOXjlPdAPj">
<link rel="manifest" href="favicon/site.webmanifest?v=bOXjlPdAPj">
<link rel="mask-icon" href="favicon/safari-pinned-tab.svg?v=bOXjlPdAPj" color="#f1c40f">
<link rel="shortxcut icon" href="favicon/favicon.ico?v=bOXjlPdAPj">
<meta name="msapplication-TileColor" content="#2b5797">
<meta name="msapplication-config" content="favicon/browserconfig.xml?v=bOXjlPdAPj">
<meta name="theme-color" content="#ffffff">
<!-- Primary Meta Tags -->
<meta name="title" content="Bored In School Right Now Inc">
<meta name="description" content="Online Education Games">
<meta name="keywords" content="Games,unblocked">
<meta name="author" content="PiSaucer">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website">
<meta property="og:title" content="Bored In School Right Now Inc">
<meta property="og:description" content="Online Education Games">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:title" content="Bored In School Right Now Inc">
<meta property="twitter:description" content="Online Education Games">
<style>
body {
margin: 25px;
margin-bottom: 0;
}
footer {
margin-left: -25px;
margin-right: -25px;
}
</style>
</head>
<body>
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="../">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">Privacy Policy</li>
</ol>
</nav>
<style>
[data-custom-class='body'],
[data-custom-class='body'] * {
background: transparent !important;
}
[data-custom-class='title'],
[data-custom-class='title'] * {
font-family: Arial !important;
font-size: 26px !important;
color: #000000 !important;
}
[data-custom-class='subtitle'],
[data-custom-class='subtitle'] * {
font-family: Arial !important;
color: #595959 !important;
font-size: 14px !important;
}
[data-custom-class='heading_1'],
[data-custom-class='heading_1'] * {
font-family: Arial !important;
font-size: 19px !important;
color: #000000 !important;
}
[data-custom-class='heading_2'],
[data-custom-class='heading_2'] * {
font-family: Arial !important;
font-size: 17px !important;
color: #000000 !important;
}
[data-custom-class='body_text'],
[data-custom-class='body_text'] * {
color: #595959 !important;
font-size: 14px !important;
font-family: Arial !important;
}
[data-custom-class='link'],
[data-custom-class='link'] * {
color: #3030F1 !important;
font-size: 14px !important;
font-family: Arial !important;
word-break: break-word !important;
}
</style>
<div data-custom-class="body">
<div><strong><span style="font-size: 26px;"><span data-custom-class="title">PRIVACY
NOTICE</span></span></strong></div>
<div><br></div>
<div><span style="color: rgb(127, 127, 127);"><strong><span style="font-size: 15px;"><span
data-custom-class="subtitle">Last updated <bdt class="question">September 29, 2021</bdt>
</span></span>
</strong>
</span>
</div>
<div><br></div>
<div><br></div>
<div><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span data-custom-class="body_text">Thank you for
choosing to be part of our community at <bdt class="question">Bored In School Right Now HTML
</bdt><span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
("<span style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span><strong>Company</strong></span><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"><span
data-custom-class="body_text"></span></bdt>
</span>
</span>
</span>
</span>
</span><span data-custom-class="body_text">," "<strong>we</strong>," "<strong>us</strong>," or
"<strong>our</strong>"). We are committed to protecting your personal information and your right
to privacy. If you have any questions or concerns about this privacy notice or our practices
with regard to your personal information, please contact us at <bdt class="question">
[email protected]</bdt>.</span></span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><br></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text">This privacy notice describes how we might use your information if
you:</span></span>
</span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span data-custom-class="body_text">Visit our
website<bdt class="block-component"></bdt> at <bdt class="question"><a
href="https://bored.pisaucer.com/" target="_blank"
data-custom-class="link">https://bored.pisaucer.com/</a></bdt><span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">Engage with us in other related ways ―
including any sales, marketing, or events<span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text">In this
privacy notice, if we refer to:</span></span>
</span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">"<strong>Website</strong>," we are referring
to any website of ours that references or links to this policy<span
style="font-size: 15px;"><span style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"><span
style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"><span
style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</bdt>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">"<strong>Services</strong>," we are
referring to our<span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span> Website,<span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt
class="statement-end-if-in-editor">
<bdt class="block-component">
</bdt>
</bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span
data-custom-class="body_text"> and other related services, including
any sales, marketing, or events<span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt
class="statement-end-if-in-editor">
</bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span data-custom-class="body_text">The
purpose of this privacy notice is to explain to you in the clearest way
possible what information we collect, how we use it, and what rights you
have in relation to it. If there are any terms in this privacy notice
that you do not agree with, please discontinue use of our Services
immediately.</span></span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><br></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong>Please read this privacy
notice carefully, as it will help you understand what we do with
the information that we collect.</strong></span></span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><br></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(127, 127, 127);"><span
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">TABLE OF CONTENTS</span></strong>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><br></span></div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#infocollect"><span
style="color: rgb(89, 89, 89);">1. WHAT INFORMATION DO WE
COLLECT?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#infouse"><span
style="color: rgb(89, 89, 89);">2. HOW DO WE USE YOUR
INFORMATION?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link"
href="#infoshare">3. WILL YOUR INFORMATION BE SHARED WITH
ANYONE?</a></span><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span>
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#cookies"><span
style="color: rgb(89, 89, 89);">4. DO WE USE COOKIES AND OTHER TRACKING
TECHNOLOGIES?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span><span style="font-size: 15px;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#3pwebsites"><span
style="color: rgb(89, 89, 89);">5. WHAT IS OUR STANCE ON THIRD-PARTY
WEBSITES?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#inforetain"><span
style="color: rgb(89, 89, 89);">6. HOW LONG DO WE KEEP YOUR
INFORMATION?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
style="color: rgb(89, 89, 89);">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#infosafe"><span
style="color: rgb(89, 89, 89);">7. HOW DO WE KEEP YOUR INFORMATION
SAFE?</span></a><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><a data-custom-class="link"
href="#privacyrights">8. WHAT ARE YOUR PRIVACY RIGHTS?</a></span></span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#DNT"><span
style="color: rgb(89, 89, 89);">9. CONTROLS FOR DO-NOT-TRACK
FEATURES</span></a>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#caresidents"><span
style="color: rgb(89, 89, 89);">10. DO CALIFORNIA RESIDENTS HAVE
SPECIFIC PRIVACY RIGHTS?</span></a>
</span>
</div>
<div style="line-height: 1.5;"><span style="font-size: 15px;"><a
data-custom-class="link" href="#policyupdates"><span
style="color: rgb(89, 89, 89);">11. DO WE MAKE UPDATES TO THIS
NOTICE?</span></a>
</span>
</div>
<div style="line-height: 1.5;"><a data-custom-class="link" href="#contact"><span
style="color: rgb(89, 89, 89); font-size: 15px;">12. HOW CAN YOU CONTACT US
ABOUT THIS NOTICE?</span></a></div>
<div style="line-height: 1.5;"><a data-custom-class="link" href="#request"><span
style="color: rgb(89, 89, 89);">13. HOW CAN YOU REVIEW, UPDATE OR DELETE THE
DATA WE COLLECT FROM YOU?</span></a></div>
<div style="line-height: 1.5;"><br></div>
<div id="infocollect" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">1. WHAT INFORMATION DO WE
COLLECT?</span></strong>
</span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
style="font-size: 15px;"><strong><u><br></u></strong><strong>Personal
information you disclose to us</strong></span></span>
</div>
<div>
<div><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short: </em></strong></span></span>
</span>
</span><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em> </em></strong><em>We
collect personal information that you provide to
us.</em></span></span>
</span>
</span>
</span>
</span>
</div>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We collect personal information that you
voluntarily provide to us when you <span style="font-size: 15px;">
<bdt class="block-component"></bdt>
</span></span>
<span data-custom-class="body_text">express an interest in obtaining
information about us or our products and Services, when you participate
in activities on the <span style="font-size: 15px;">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>
<bdt class="block-component"></bdt>
</span>
</span><span data-custom-class="body_text"> or otherwise when you contact
us.</span></span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">The personal information that we collect
depends on the context of your interactions with us and the <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span>, the choices you make and the products and features you use. The personal information we collect may include the following:
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong>Personal Information Provided by
You.</strong> We collect <span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="forloop-component"></bdt>
<bdt class="question">names</bdt>;
</span>
<span data-custom-class="body_text">
<bdt class="forloop-component"></bdt>
<bdt class="question">email addresses</bdt>;
</span><span data-custom-class="body_text">
<bdt class="forloop-component"></bdt>and other similar
information.
</span><span data-custom-class="body_text">
<bdt class="statement-end-if-in-editor"></bdt>
<bdt class="block-component">
<bdt class="block-component"></bdt>
</bdt>
</span></span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">All personal information that you provide
to us must be true, complete and accurate, and you must notify us of any
changes to such personal information.<bdt class="block-component"></bdt>
</span></span>
</span>
</div>
<div style="line-height: 1.5;"><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
style="font-size: 15px;"><strong><u><br></u></strong><strong>Information
automatically collected</strong></span></span>
</div>
<div>
<div><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In
Short: </em></strong></span></span>
</span>
</span><span data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em> </em></strong><em>Some
information — such as your Internet Protocol (IP)
address and/or browser and device characteristics —
is collected automatically when you visit our <span
data-custom-class="body_text"><em><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component">
</bdt>Website<bdt
class="statement-end-if-in-editor">
</bdt>
<bdt class="block-component">
</bdt>
<bdt class="block-component">
</bdt>
</span></span>
</span>
</em>
</span>.</em>
</span>
</span>
</span>
</span>
</span>
</span>
</div>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We automatically collect certain
information when you visit, use or navigate the <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>. This information does not reveal your specific identity (like your name or contact information) but may include device and usage information, such as your IP address, browser and device
characteristics, operating system, language preferences, referring URLs, device name, country, location, information about how and when you use our <span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
and other technical information. This information is primarily needed to maintain the security and operation of our <span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>, and for our internal analytics and reporting purposes.
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">Like many businesses, we also collect
information through cookies and similar technologies. <bdt
class="block-component"></bdt>
<bdt class="block-component"></bdt>
<bdt class="statement-end-if-in-editor"><span
data-custom-class="body_text"></span></bdt>
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">The information we collect includes:<bdt
class="block-component"></bdt></span></span>
</span>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><em>Log and Usage Data.</em> Log and
usage data is service-related, diagnostic, usage and performance
information our servers automatically collect when you access or use
our <span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span> and which we record in log files. Depending on how you interact with us, this log data may include your IP address, device information, browser type and settings and information about your activity in the <span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
</span>
</span> </span>(such as the date/time stamps associated with your usage, pages and files viewed, searches and other actions you take such as which features you use), device event information (such as system activity, error
reports (sometimes called 'crash dumps') and hardware settings).
<span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><em>Device Data.</em> We collect
device data such as information about your computer, phone, tablet
or other device you use to access the <span
style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>. Depending on the device used, this device data may include information such as your IP address (or proxy server), device and application identification numbers, location, browser
type, hardware model Internet service provider and/or mobile carrier, operating system and system configuration information.<span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"></span></bdt>
</div>
<ul>
<li style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><em>Location Data.</em> We collect
location data such as information about your device's location,
which can be either precise or imprecise. How much information we
collect depends on the type and settings of the device you use to
access the <span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt
class="statement-end-if-in-editor"></bdt>
<bdt class="block-component"></bdt>
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span>. For example, we may use GPS and other technologies to collect geolocation data that tells us your current location (based on your IP address). You can opt out of allowing us to collect this information either by refusing
access to the information or by disabling your Location setting on your device. Note however, if you choose to opt out, you may not be able to use certain aspects of the Services.<span style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><span
style="font-size: 15px;"><span
style="color: rgb(89, 89, 89);">
<bdt class="statement-end-if-in-editor"></bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</span>
</li>
</ul>
<div>
<bdt class="block-component"><span style="font-size: 15px;"></bdt>
</bdt>
<bdt class="statement-end-if-in-editor"></bdt><span data-custom-class="body_text"><span
style="font-size: 15px;">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor"><span style="font-size: 15px;"><span
data-custom-class="body_text"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"></bdt>
</bdt>
</span></span>
</span>
</span><span style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="block-component"></bdt>
</bdt>
</span></span>
</span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><span data-custom-class="heading_2" style="color: rgb(0, 0, 0);"><span
style="font-size: 15px;"><strong><u><br></u></strong><strong>Information collected
from other sources</strong></span></span>
</div>
<div>
<div><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In Short:
</em></strong><em>We may collect limited data from
public databases, marketing partners, <span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><em><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></em>
</span>
</span>and other outside sources.</em>
</span>
</span>
</span>
</span>
</span>
</span>
</div>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">In order to enhance our ability to provide
relevant marketing, offers and services to you and update our records, we may
obtain information about you from other sources, such as public databases, joint
marketing partners, affiliate programs, data providers,<span
style="color: rgb(89, 89, 89);"><span style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
as well as from other third parties. This information includes mailing addresses, job titles, email addresses, phone numbers, intent data (or user behavior data), Internet Protocol (IP) addresses, social media profiles, social media URLs and custom profiles,
for purposes of targeted advertising and event promotion.<span style="color: rgb(89, 89, 89);"><span style="font-size: 15px;"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89);"><span
style="font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="block-component"></bdt>
</span></span>
</span>
</span>
</span><span style="color: rgb(89, 89, 89);">
<bdt class="block-component"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text">
<bdt class="statement-end-if-in-editor">
<bdt class="statement-end-if-in-editor"></bdt>
</bdt>
</span></span>
</span>
</span>
</bdt>
</span>
</span>
<bdt class="block-component"></bdt>
</span>
</span>
</span>
</span>
</span>
</span>
</div>
<div style="line-height: 1.5;"><br></div>
<div id="infouse" style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span id="control"
style="color: rgb(0, 0, 0);"><strong><span
data-custom-class="heading_1">2. HOW DO WE USE YOUR
INFORMATION?</span></strong>
</span>
</span>
</span>
</span>
</span>
</div>
<div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="color: rgb(127, 127, 127);"><span
style="color: rgb(89, 89, 89); font-size: 15px;"><span
data-custom-class="body_text"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text"><strong><em>In Short:
</em></strong><em>We process your information for
purposes based on legitimate business interests, the
fulfillment of our contract with you, compliance with our
legal obligations, and/or your consent.</em></span></span>
</span>
</span>
</span>
</span>
</div>
</div>
<div style="line-height: 1.5;"><br></div>
<div style="line-height: 1.5;"><span style="font-size: 15px; color: rgb(89, 89, 89);"><span
style="font-size: 15px; color: rgb(89, 89, 89);"><span
data-custom-class="body_text">We use personal information collected via our
<span style="font-size: 15px;"><span data-custom-class="body_text">
<bdt class="block-component"></bdt>Website<bdt