-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
1599 lines (1597 loc) · 67.8 KB
/
privacy-policy.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>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1"
/>
<title>Banchan Art | The Co-operative Commissions Platform</title>
<meta property="og:site_name" content="Banchan Art" />
<meta property="og:title" content="Banchan Art" />
<meta
property="og:description"
content="The Co-operative Commissions Platform"
/>
<meta
property="twitter:description"
content="The Co-operative Commissions Platform"
/>
<meta
property="og:image"
content="https://banchan.art/assets/images/card.png"
/>
<meta
name="twitter:image:src"
content="https://banchan.art/assets/images/card.png"
/>
<meta name="twitter:image:width" content="640" />
<meta name="twitter:image:height" content="360" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@BanchanArt" />
<link
rel="apple-touch-icon"
sizes="76x76"
href="/assets/images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/images/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
<meta name="msapplication-TileColor" content="#da532c" />
<script
defer
data-domain="banchan.art"
src="https://plausible.io/js/plausible.outbound-links.js"
></script>
<link rel="stylesheet" href="/assets/css/styles.css" />
<script>
function updateThemedElements(newTheme) {
const oldTheme = newTheme === "dark" ? "light" : "dark";
[...document.querySelectorAll(".themed")].forEach((el) => {
if (el.classList.contains(oldTheme)) {
el.classList.add("hidden");
} else {
el.classList.remove("hidden");
}
});
}
// Stuff for dark/light mode toggling.
document.addEventListener("DOMContentLoaded", () => {
let theme = localStorage.getItem("theme");
if (!theme) {
theme = window.matchMedia("(prefers-color-scheme: dark)").matches
? "dark"
: "light";
}
document.documentElement.setAttribute("data-theme", theme);
updateThemedElements(theme);
const toggle = document.querySelector("#mode-toggle");
toggle.checked = theme === "dark";
toggle.addEventListener("change", (ev) => {
const newTheme = ev.target.checked ? "dark" : "light";
document.documentElement.setAttribute("data-theme", newTheme);
updateThemedElements(newTheme);
});
});
</script>
</head>
<body class="flex flex-col bg-base-100 relative">
<nav
id="header"
class="navbar bg-base-100 opacity-100 top-0 left-0 w-full absolute z-10"
>
<a href="/" class="flex-1 flex flex-row place-items-center gap-2">
<img src="/assets/images/favicon-32x32.png" class="rounded-full w-8" />
<div class="font-semibold text-lg">Banchan Art</div>
</a>
<div class="flex-none">
<ul class="menu menu-horizontal p-0">
<li class="text-xl">
<label class="swap swap-rotate">
<input id="mode-toggle" type="checkbox" class="hidden" />
<i class="swap-on fas fa-moon"></i>
<i class="swap-off fas fa-sun"></i>
</label>
</li>
<li>
<a
href="https://twitter.com/BanchanArt"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-twitter text-xl"></i
></a>
</li>
<li>
<a
href="https://instagram.com/BanchanArt"
target="_blank"
rel="noopener noreferrer"
><i class="fab fa-instagram text-xl"></i
></a>
</li>
</ul>
</div>
</nav>
<div id="above-fold" class="px-4 mt-20 mx-auto container prose">
<h1>Banchan Art Privacy Policy</h1>
<p>Last updated: August 3, 2022</p>
<p>
This Privacy Policy describes Our policies and procedures on the
collection, use and disclosure of Your information when You use the
Service and tells You about Your privacy rights and how the law protects
You.
</p>
<p>
We use Your Personal Data to provide and improve the Service. By using
the Service, You agree to the collection and use of information in
accordance with this Privacy Policy.
</p>
<h1>Interpretation and Definitions</h1>
<h2>Interpretation</h2>
<p>
Capitalized words have meanings defined below. These definitions shall
have the same meaning regardless of whether they appear in singular or
in plural.
</p>
<h2>Definitions</h2>
<p>For the purposes of this Privacy Policy:</p>
<p>
<strong>Account</strong> means a unique account created for You to
access our Service or parts of our Service.
</p>
<p>
<strong>Business</strong> , for the purpose of the CCPA (California
Consumer Privacy Act), refers to the Company as the legal entity that
collects Consumers' personal information and determines the purposes and
means of the processing of Consumers' personal information, or on behalf
of which such information is collected and that alone, or jointly with
others, determines the purposes and means of the processing of
consumers' personal information, that does business in the State of
California.
</p>
<p>
<strong>Company</strong> (referred to as either "the Company", "We",
"Us" or "Our" in this Agreement) refers to Digital Workers Guild LLC,
340 S Lemon Ave #8687, Walnut, CA 91789.
</p>
<p>
<strong>Consumer</strong> , for the purpose of the CCPA (California
Consumer Privacy Act), means a natural person who is a California
resident. A resident, as defined in the law, includes (1) every
individual who is in the USA for other than a temporary or transitory
purpose, and (2) every individual who is domiciled in the USA who is
outside the USA for a temporary or transitory purpose.
</p>
<p>
<strong>Cookies</strong> are small files that are placed on Your
computer, mobile device or any other device by a website, containing the
details of Your browsing history on that website among its many uses.
</p>
<p>
<strong>Data Controller</strong> , for the purposes of the GDPR (General
Data Protection Regulation), refers to the Company as the legal person
which alone or jointly with others determines the purposes and means of
the processing of Personal Data.
</p>
<p>
<strong>Device</strong> means any device that can access the Service
such as a computer, a cellphone or a digital tablet.
</p>
<p>
<strong>Do Not Track</strong> (DNT) is a concept that has been promoted
by U.S. regulatory authorities, in particular the U.S. Federal Trade
Commission (FTC), for the Internet industry to develop and implement a
mechanism for allowing internet users to control the tracking of their
online activities across websites.
</p>
<p>
<strong>Personal Data</strong> is any information that relates to an
identified or identifiable individual.
</p>
<p>
For the purposes of GDPR, Personal Data means any information relating
to You such as a name, an identification number, location data, online
identifier or to one or more factors specific to the physical,
physiological, genetic, mental, economic, cultural or social identity.
</p>
<p>
For the purposes of the CCPA, Personal Data means any information that
identifies, relates to, describes or is capable of being associated
with, or could reasonably be linked, directly or indirectly, with You.
</p>
<p>
<strong>Sale</strong> , for the purpose of the CCPA (California Consumer
Privacy Act), means selling, renting, releasing, disclosing,
disseminating, making available, transferring, or otherwise
communicating orally, in writing, or by electronic or other means, a
Consumer's personal information to another business or a third party for
monetary or other valuable consideration.
</p>
<p><strong>Service</strong> refers to the Website.</p>
<p>
<strong>Service Provider</strong> means any natural or legal person who
processes data on behalf of the Company. It refers to third-party
companies or individuals employed by the Company to facilitate the
Service, to provide the Service on behalf of the Company, to perform
services related to the Service or to assist the Company in analyzing
how the Service is used. For the purpose of the GDPR, Service Providers
are considered Data Processors.
</p>
<p>
<strong>Third-Party Social Media Service</strong> refers to any website
or any social network website through which a User can log in or create
an account to use the Service.
</p>
<p>
<strong>Usage Data</strong> refers to data collected automatically,
either generated by the use of the Service or from the Service
infrastructure itself (for example, the duration of a page visit).
</p>
<p>
<strong>Website</strong> refers to Banchan Art, accessible from
https://banchan.art.
</p>
<p>
<strong>You</strong> means the individual accessing or using the
Service, or the company, or other legal entity on behalf of which such
individual is accessing or using the Service, as applicable.
</p>
<p>
Under GDPR (General Data Protection Regulation), You can be referred to
as the Data Subject or as the User as you are the individual using the
Service.
</p>
<h1>Collecting and Using Your Personal Data</h1>
<h2>Types of Data Collected</h2>
<h3>Personal Data</h3>
<p>
While using Our Service, We may ask You to provide Us with certain
personally identifiable information that can be used to contact or
identify You. Personally identifiable information may include, but is
not limited to:
</p>
<p>Email address</p>
<p>First name and last name</p>
<p>Phone number</p>
<p>Address, city, state/province, ZIP/postal code</p>
<p>Usage Data</p>
<h3>Usage Data</h3>
<p>Usage Data is collected automatically when using the Service.</p>
<p>
Usage Data may include information such as Your Device's Internet
Protocol address (e.g., IP address), browser type, browser version, the
pages of our Service that You visit, the time and date of Your visit,
the time spent on those pages, unique device identifiers and other
diagnostic data.
</p>
<p>
When You access the Service by or through a mobile device, We may
collect certain information automatically, including, but not limited
to, the type of mobile device You use, Your mobile device unique ID, the
IP address of Your mobile device, Your mobile operating system, the type
of mobile Internet browser You use, unique device identifiers and other
diagnostic data.
</p>
<p>
We may also collect information that Your browser sends whenever You
visit our Service or when You access the Service by or through a mobile
device.
</p>
<h3>Information from Third-Party Social Media Services</h3>
<p>
The Company allows You to create an account and log in to use the
Service through the following Third-Party Social Media Services:
</p>
<ul>
<li>Discord</li>
<li>Google</li>
<li>Twitter</li>
</ul>
<p>
If You decide to register through or otherwise grant us access to a
Third-Party Social Media Service, We may collect Personal Data that is
already associated with Your Third-Party Social Media Service's account,
such as Your name, Your email address, or Your profile image associated
with that account.
</p>
<p>
You may also have the option of sharing additional information with the
Company through Your Third-Party Social Media Service's account. If You
choose to provide such information and Personal Data, during
registration or otherwise, You are giving the Company permission to use,
share, and store it in a manner consistent with this Privacy Policy.
</p>
<h3>Tracking Technologies and Cookies</h3>
<p>
We use Cookies and similar tracking technologies to track the activity
on Our Service and store certain information. Tracking technologies used
are beacons, tags, and scripts to collect and track information and to
improve and analyze Our Service. The technologies We use may include:
</p>
<ul>
<li>
<strong>Cookies or Browser Cookies.</strong> A Cookie is a small file
placed on Your Device. You can instruct Your browser to refuse all
Cookies or to indicate when a Cookie is being sent. However, if You do
not accept Cookies, You may not be able to use some parts of our
Service. Unless you have adjusted Your browser setting so that it will
refuse Cookies, our Service may use Cookies.
</li>
<li>
<strong>Web Beacons.</strong> Certain sections of our Service and our
emails may contain small electronic files known as web beacons (also
referred to as clear gifs, pixel tags, and single-pixel gifs) that
permit the Company, for example, to count users who have visited those
pages or opened an email and for other related website statistics (for
example, recording the popularity of a certain section and verifying
system and server integrity).
</li>
</ul>
<p>
Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies
remain on Your Device when You go offline, while Session Cookies are
deleted as soon as You close Your web browser.
</p>
<p>
We use both Session and Persistent Cookies for the purposes set out
below:
</p>
<p><strong>Necessary / Essential Cookies</strong></p>
<p>Type: Session Cookies</p>
<p>Administered by: Us</p>
<p>
Purpose: These Cookies are essential to provide You with services
available through the Website and to enable You to use some of its
features. They help to authenticate users and prevent fraudulent use of
user accounts. Without these Cookies, the services that You have asked
for cannot be provided, and We only use these Cookies to provide You
with those services.
</p>
<p><strong>Cookies Policy / Notice Acceptance Cookies</strong></p>
<p>Type: Persistent Cookies</p>
<p>Administered by: Us</p>
<p>
Purpose: These Cookies identify if users have accepted the use of
Cookies on the Website.
</p>
<p><strong>Functionality Cookies</strong></p>
<p>Type: Persistent Cookies</p>
<p>Administered by: Us</p>
<p>
Purpose: These Cookies allow us to remember choices You make when You
use the Website, such as remembering your login details or language
preference. The purpose of these Cookies is to provide You with a more
personal experience and to avoid You having to re-enter your preferences
every time You use the Website.
</p>
<p><strong>Tracking and Performance Cookies</strong></p>
<p>Type: Persistent Cookies</p>
<p>Administered by: Third-Parties</p>
<p>
Purpose: These Cookies are used to track information about traffic to
the Website and how users use the Website. The information gathered via
these Cookies may directly or indirectly identify you as an individual
visitor. This is because the information collected is typically linked
to a pseudonymous identifier associated with the device you use to
access the Website. We may also use these Cookies to test new pages,
features or new functionality of the Website to see how our users react
to them.
</p>
<p>
For more information about the Cookies we use and your choices regarding
Cookies, please visit our Cookies Policy.
</p>
<h2>Use of Your Personal Data</h2>
<p>The Company may use Personal Data for the following purposes:</p>
<ul>
<li>
<strong>To provide and maintain Our Service</strong> , including to
monitor the usage of Our Service.
</li>
<li>
<strong>To manage Your Account:</strong> to manage Your registration
as a user of the Service. The Personal Data You provide can give You
access to different functionalities of the Service that are available
to You as a registered user.
</li>
<li>
<strong>For the performance of a contract:</strong> the development,
compliance and undertaking of the purchase contract for the products,
items or services You have purchased or of any other contract with Us
through the Service.
</li>
<li>
<strong>To contact You:</strong> To contact You by email, telephone
calls, SMS, or other equivalent forms of electronic communication,
such as a mobile application's push notifications regarding updates or
informative communications related to the functionalities, products or
contracted services, including the security updates, when necessary or
reasonable for their implementation.
</li>
<li>
<strong>To provide You</strong> with news, special offers and general
information about other goods, services and events which we offer that
are similar to those that you have already purchased or enquired about
unless You have opted not to receive such information.
</li>
<li>
<strong>To manage Your requests:</strong> To attend and manage Your
requests to Us.
</li>
<li>
<strong>To deliver targeted advertising to You</strong> : We may use
Your information to develop and display content and advertising (and
work with third-party vendors who do so) tailored to Your interests
and/or location and to measure its effectiveness.
</li>
<li>
<strong>For business transfers:</strong> We may use Your information
to evaluate or conduct a merger, divestiture, restructuring,
reorganization, dissolution, or other sale or transfer of some or all
of Our assets, whether as a going concern or as part of bankruptcy,
liquidation, or similar proceeding, in which Personal Data held by Us
about our Service users is among the assets transferred.
</li>
<li>
<strong>For other purposes</strong> : We may use Your information for
other purposes, such as data analysis, identifying usage trends,
determining the effectiveness of our promotional campaigns and to
evaluate and improve our Service, products, services, marketing and
your experience.
</li>
</ul>
<p>We may share Your personal information in the following situations:</p>
<ul>
<li>
<strong>With Service Providers:</strong> We may share Your personal
information with Service Providers to monitor and analyze the use of
our Service, to advertise on third-party websites to You after You
visited our Service, for payment processing, to contact You.
</li>
<li>
<strong>For business transfers:</strong> We may share or transfer Your
personal information in connection with, or during negotiations of,
any merger, sale of Company assets, financing, or acquisition of all
or a portion of Our business to another company.
</li>
<li>
<strong>With Affiliates:</strong> We may share Your information with
Our affiliates, in which case we will require those affiliates to
honor this Privacy Policy. Affiliates include Our parent company and
any other subsidiaries, joint venture partners or other companies, if
any, that We control or that are under common control with Us.
</li>
<li>
<strong>With business partners:</strong> We may share Your information
with Our business partners to offer You certain products, services or
promotions.
</li>
<li>
<strong>With other users:</strong> when You share personal information
or otherwise interact in the public areas with other users, such
information may be viewed by all users and may be publicly distributed
outside. If You interact with other users or register through a
Third-Party Social Media Service, Your contacts on the Third-Party
Social Media Service may see Your name, profile, pictures and
description of Your activity. Similarly, other users will be able to
view descriptions of Your activity, communicate with You and view Your
profile.
</li>
<li>
<strong>With Your consent</strong> : We may disclose Your personal
information for any other purpose with Your consent.
</li>
</ul>
<h2>Retention of Your Personal Data</h2>
<p>
The Company will retain Your Personal Data only for as long as is
necessary for the purposes set out in this Privacy Policy. We will
retain and use Your Personal Data to the extent necessary to comply with
our legal obligations (for example, if we are required to retain your
data to comply with applicable laws), resolve disputes, and enforce our
legal agreements and policies.
</p>
<p>
The Company will also retain Usage Data for internal analysis purposes.
Usage Data is generally retained for a shorter period of time, except
when this data is used to strengthen the security or to improve the
functionality of Our Service, or We are legally obligated to retain this
data for longer time periods.
</p>
<h2>Transfer of Your Personal Data</h2>
<p>
Your information, including Personal Data, is processed at the Company's
operating offices and in any other places where the parties involved in
the processing are located. It means that this information may be
transferred to—and maintained on—computers located outside of Your
state, province, country or other governmental jurisdiction where the
data protection laws may differ than those from Your jurisdiction.
</p>
<p>
Your consent to this Privacy Policy followed by Your submission of such
information represents Your agreement to that transfer.
</p>
<p>
The Company will take all steps reasonably necessary to ensure that Your
data is treated securely and in accordance with this Privacy Policy and
no transfer of Your Personal Data will take place to an organization or
a country unless there are adequate controls in place including the
security of Your data and other personal information.
</p>
<h2>Disclosure of Your Personal Data</h2>
<h3>Business Transactions</h3>
<p>
If the Company is involved in a merger, acquisition or asset sale, Your
Personal Data may be transferred. We will provide notice before Your
Personal Data is transferred and becomes subject to a different Privacy
Policy.
</p>
<h3>Law enforcement</h3>
<p>
Under certain circumstances, the Company may be required to disclose
Your Personal Data if required to do so by law or in response to valid
requests by public authorities (e.g., a court or a government agency).
</p>
<h3>Other legal requirements</h3>
<p>
The Company may disclose Your Personal Data in the good faith belief
that such action is necessary to:
</p>
<ul>
<li>Comply with a legal obligation</li>
<li>Protect and defend the rights or property of the Company</li>
<li>
Prevent or investigate possible wrongdoing in connection with the
Service
</li>
<li>
Protect the personal safety of Users of the Service or the public
</li>
<li>Protect against legal liability</li>
</ul>
<h2>Security of Your Personal Data</h2>
<p>
The security of Your Personal Data is important to Us, but remember that
no method of transmission over the Internet, or method of electronic
storage is 100% secure. While We strive to use commercially acceptable
means to protect Your Personal Data, We cannot guarantee its absolute
security.
</p>
<h1>Detailed Information on the Processing of Your Personal Data</h1>
<p>
The Service Providers We use may have access to Your Personal Data.
These third-party vendors collect, store, use, process and transfer
information about Your activity on Our Service in accordance with their
Privacy Policies.
</p>
<h2>Analytics</h2>
<p>
We may use third-party Service providers to monitor and analyze the use
of our Service.
</p>
<p><strong>Plausible Analytics</strong></p>
<p>
Plausible Analytics is a web analytics service offered as an alternative
to Google Analytics that tracks and reports website traffic. Plausible
Analytics uses the data collected to track and monitor the use of our
Service.
</p>
<p>
For more information on the privacy practices of Plausible Analytics,
please visit the Plausible Analytics Privacy web page:
https://plausible.io/privacy
</p>
<h2>Email Marketing</h2>
<p>
We may use Your Personal Data to contact You with newsletters, marketing
or promotional materials and other information that may be of interest
to You. You may opt-out of receiving any, or all, of these
communications from Us by following the unsubscribe link or instructions
provided in any email We send or by contacting Us.
</p>
<p>
We may use Email Marketing Service Providers to manage and send emails
to You.
</p>
<p><strong>SendGrid</strong></p>
<p>
SendGrid is an email marketing sending service provided by Twilio Inc.
</p>
<p>
For more information on the privacy practices of SendGrid, please visit
their Privacy policy: https://www.twilio.com/legal/privacy
</p>
<h2>Payments</h2>
<p>
We may provide paid products and/or services within the Service. In that
case, we may use third-party services for payment processing (e.g.,
payment processors).
</p>
<p>
We will not store or collect Your payment card details or Your payout
account details. That information is provided directly to Our
third-party payment processors whose use of Your personal information is
governed by their Privacy Policy. These payment processors adhere to the
standards set by PCI-DSS as managed by the PCI Security Standards
Council, which is a joint effort of brands like Visa, Mastercard,
American Express and Discover. PCI-DSS requirements help ensure the
secure handling of payment information.
</p>
<p><strong>Stripe</strong></p>
<p>
Their Privacy Policy can be viewed at
<a href="https://stripe.com/us/privacy"
>https://stripe.com/us/privacy</a
>
</p>
<h2>Behavioral Remarketing</h2>
<p>
The Company uses remarketing services to advertise to You after You
accessed or visited our Service. We and Our third-party vendors use
Cookies and non-Cookie technologies to help Us recognize Your Device and
understand how You use our Service so that We can improve our Service to
reflect Your interests and serve You advertisements that are likely to
be of more interest to You.
</p>
<p>
These third-party vendors collect, store, use, process and transfer
information about Your activity on Our Service in accordance with their
Privacy Policies and to enable Us to:
</p>
<ul>
<li>
Measure and analyze traffic and browsing activity on Our Service
</li>
<li>
Show advertisements for our products and/or services to You on
third-party websites or apps
</li>
<li>
Measure and analyze the performance of Our advertising campaigns
</li>
</ul>
<p>
Some of these third-party vendors may use non-Cookie technologies that
may not be impacted by browser settings that block Cookies. Your browser
may not permit You to block such technologies. You can use the following
third-party tools to decline the collection and use of information for
the purpose of serving You interest-based advertising:
</p>
<ul>
<li>
The NAI's opt-out platform:
<a href="https://www.networkadvertising.org/choices/"
>http://www.networkadvertising.org/choices/</a
>
</li>
<li>
The EDAA's opt-out platform
<a href="http://www.youronlinechoices.com/"
>http://www.youronlinechoices.com/</a
>
</li>
<li>
The DAA's opt-out platform:
<a href="http://optout.aboutads.info/?c=2&lang=EN"
>http://optout.aboutads.info/?c=2&lang=EN</a
>
</li>
</ul>
<p>
You may opt-out of all personalized advertising by enabling privacy
features on Your mobile device such as Limit Ad Tracking (iOS) and Opt
Out of Ads Personalization (Android). See Your mobile device help system
for more information.
</p>
<p>
We may share information, such as hashed email addresses (if available)
or other online identifiers collected on Our Service with these
third-party vendors. This allows Our third-party vendors to recognize
and deliver You ads across devices and browsers. To read more about the
technologies used by these third-party vendors and their cross-device
capabilities please refer to the Privacy Policy of each vendor listed
below.
</p>
<p>The third-party vendors We use are:</p>
<p><strong>Google Ads (AdWords)</strong></p>
<p>Google Ads (AdWords) remarketing service is provided by Google Inc.</p>
<p>
You can opt-out of Google Analytics for Display Advertising and
customise the Google Display Network ads by visiting the Google Ads
Settings page:
<a href="https://www.google.com/settings/ads"
>http://www.google.com/settings/ads</a
>
</p>
<p>
Google also recommends installing the Google Analytics Opt-out Browser
Add-on -
<a href="https://tools.google.com/dlpage/gaoptout"
>https://tools.google.com/dlpage/gaoptout</a
>
- for your web browser. Google Analytics Opt-out Browser Add-on provides
visitors with the ability to prevent their data from being collected and
used by Google Analytics.
</p>
<p>
For more information on the privacy practices of Google, please visit
the Google Privacy & Terms web page:
<a href="https://policies.google.com/privacy"
>https://policies.google.com/privacy</a
>
</p>
<p><strong>Twitter</strong></p>
<p>Twitter remarketing service is provided by Twitter Inc.</p>
<p>
You can opt-out from Twitter's interest-based ads by following their
instructions:
<a href="https://support.twitter.com/articles/20170405"
>https://support.twitter.com/articles/20170405</a
>
</p>
<p>
You can learn more about the privacy practices and policies of Twitter
by visiting their Privacy Policy page:
<a href="https://twitter.com/privacy">https://twitter.com/privacy</a>
</p>
<p><strong>Facebook</strong></p>
<p>Facebook remarketing service is provided by Facebook Inc.</p>
<p>
You can learn more about interest-based advertising from Facebook by
visiting this page:
<a href="https://www.facebook.com/help/516147308587266"
>https://www.facebook.com/help/516147308587266</a
>
</p>
<p>
To opt-out from Facebook's interest-based ads, follow these instructions
from Facebook:
<a href="https://www.facebook.com/help/568137493302217"
>https://www.facebook.com/help/568137493302217</a
>
</p>
<p>
Facebook adheres to the Self-Regulatory Principles for Online
Behavioural Advertising established by the Digital Advertising Alliance.
You can also opt-out from Facebook and other participating companies
through the Digital Advertising Alliance in the USA
<a href="http://www.aboutads.info/choices/"
>http://www.aboutads.info/choices/</a
>, the Digital Advertising Alliance of Canada in Canada
<a href="http://youradchoices.ca/">http://youradchoices.ca/</a> or the
European Interactive Digital Advertising Alliance in Europe
<a href="http://www.youronlinechoices.eu/"
>http://www.youronlinechoices.eu/</a
>, or opt-out using your mobile device settings.
</p>
<p>
For more information on the privacy practices of Facebook, please visit
Facebook's Data Policy:
<a href="https://www.facebook.com/privacy/explanation"
>https://www.facebook.com/privacy/explanation</a
>
</p>
<p><strong>Pinterest</strong></p>
<p>Pinterest remarketing service is provided by Pinterest Inc.</p>
<p>
You can opt-out from Pinterest's interest-based ads by enabling the "Do
Not Track" functionality of your web browser or by following Pinterest
instructions:
<a
href="https://help.pinterest.com/en/articles/personalization-and-data"
>http://help.pinterest.com/en/articles/personalization-and-data</a
>
</p>
<p>
You can learn more about the privacy practices and policies of Pinterest
by visiting their Privacy Policy page:
<a href="https://about.pinterest.com/en/privacy-policy"
>https://about.pinterest.com/en/privacy-policy</a
>
</p>
<h1>GDPR Privacy</h1>
<h2>Legal Basis for Processing Personal Data under GDPR</h2>
<p>We may process Personal Data under the following conditions:</p>
<ul>
<li>
<strong>Consent:</strong> You have given Your consent for processing
Personal Data for one or more specific purposes.
</li>
<li>
<strong>Performance of a contract:</strong> Provision of Personal Data
is necessary for the performance of an agreement with You and/or for
any pre-contractual obligations thereof.
</li>
<li>
<strong>Legal obligations:</strong> Processing Personal Data is
necessary for compliance with a legal obligation to which the Company
is subject.
</li>
<li>
<strong>Vital interests:</strong> Processing Personal Data is
necessary in order to protect Your vital interests or of another
natural person.
</li>
<li>
<strong>Public interests:</strong> Processing Personal Data is related
to a task that is carried out in the public interest or in the
exercise of official authority vested in the Company.
</li>
<li>
<strong>Legitimate interests:</strong> Processing Personal Data is
necessary for the purposes of the legitimate interests pursued by the
Company.
</li>
</ul>
<p>
In any case, the Company will gladly help to clarify the specific legal
basis that applies to the processing, and in particular whether the
provision of Personal Data is a statutory or contractual requirement, or
a requirement necessary to enter into a contract.
</p>
<h2>Your Rights under the GDPR</h2>
<p>
The Company undertakes to respect the confidentiality of Your Personal
Data and to guarantee You can exercise Your rights.
</p>
<p>
You have the right under this Privacy Policy, and by law if You are
within the EU, to:
</p>
<ul>
<li>
<strong>Request access to Your Personal Data.</strong> The right to
access, update or delete the information We have on You. Whenever made
possible, you can access, update or request deletion of Your Personal
Data directly within Your account settings section. If you are unable
to perform these actions yourself, please contact Us to assist You.
This also enables You to receive a copy of the Personal Data We hold
about You.
</li>
<li>
<strong
>Request correction of the Personal Data that We hold about
You.</strong
>
You have the right to have any incomplete or inaccurate information We
hold about You corrected.
</li>
<li>
<strong>Object to processing of Your Personal Data.</strong> This
right exists where We are relying on a legitimate interest as the
legal basis for Our processing and there is something about Your
particular situation, which makes You want to object to our processing
of Your Personal Data on this ground. You also have the right to
object where We are processing Your Personal Data for direct marketing
purposes.
</li>
<li>
<strong>Request erasure of Your Personal Data.</strong> You have the
right to ask Us to delete or remove Personal Data when there is no
good reason for Us to continue processing it.
</li>
<li>
<strong>Request the transfer of Your Personal Data.</strong> We will
provide to You, or to a third party You have chosen, Your Personal
Data in a structured, commonly used, machine-readable format. Please
note that this right only applies to automated information which You
initially provided consent for Us to use or where We used the
information to perform a contract with You.
</li>
<li>
<strong>Withdraw Your consent.</strong> You have the right to withdraw
Your consent on using your Personal Data. If You withdraw Your
consent, We may not be able to provide You with access to certain
specific functionalities of the Service.
</li>
</ul>
<h2>Exercising of Your GDPR Data Protection Rights</h2>
<p>
You may exercise Your rights of access, rectification, cancellation and
opposition by contacting Us. Please note that we may ask You to verify
Your identity before responding to such requests. If You make a request,
We will try our best to respond to You as soon as possible.
</p>
<p>
You have the right to complain to a Data Protection Authority about Our
collection and use of Your Personal Data. For more information, if You
are in the European Economic Area (EEA), please contact Your local data
protection authority in the EEA.
</p>
<h1>CCPA Privacy</h1>
<p>
This privacy notice section for California residents supplements the
information contained in Our Privacy Policy and it applies solely to all
visitors, users, and others who reside in the State of California.
</p>
<h2>Categories of Personal Information Collected</h2>
<p>
We collect information that identifies, relates to, describes,
references, is capable of being associated with, or could reasonably be
linked, directly or indirectly, with a particular Consumer or Device.
The following is a list of categories of personal information which we
may collect or may have been collected from California residents within
the last 12 months.
</p>
<p>
Please note that the categories and examples provided in the list below
are those defined in the CCPA. This does not mean that all examples of
that category of personal information were in fact collected by Us, but
reflects our good faith belief to the best of our knowledge that some of
that information from the applicable category may be and may have been
collected. For example, certain categories of personal information would
only be collected if You provided such personal information directly to
Us.
</p>
<p><strong>Category A: Identifiers.</strong></p>
<p>
Examples: A real name, alias, postal address, unique personal
identifier, online identifier, Internet Protocol address, email address,
account name, driver's license number, passport number, or other similar
identifiers.
</p>
<p>Collected: Yes.</p>
<p>
<strong
>Category B: Personal information categories listed in the California
Customer Records statute Cal. Civ. Code § 1798.80(e).</strong
>
</p>
<p>
Examples: A name, signature, Social Security number, physical
characteristics or description, address, telephone number, passport
number, driver's license or state identification card number, insurance
policy number, education, employment, employment history, bank account
number, credit card number, debit card number, or any other financial
information, medical information, or health insurance information. Some
personal information included in this category may overlap with other
categories.
</p>
<p>Collected: Yes.</p>
<p>
<strong
>Category C: Protected classification characteristics under California
or federal law.</strong
>
</p>
<p>
Examples: Age (40 years or older), race, color, ancestry, national
origin, citizenship, religion or creed, marital status, medical
condition, physical or mental disability, sex (including gender, gender
identity, gender expression, pregnancy or childbirth and related medical
conditions), sexual orientation, veteran or military status, genetic
information (including familial genetic information).
</p>
<p>Collected: Yes.</p>
<p><strong>Category D: Commercial information.</strong></p>
<p>
Examples: Records and history of products or services purchased or
considered.
</p>
<p>Collected: Yes.</p>
<p><strong>Category E: Biometric information.</strong></p>
<p>
Examples: Genetic, physiological, behavioral, and biological
characteristics, or activity patterns used to extract a template or
other identifier or identifying information, such as, fingerprints,
faceprints, and voiceprints, iris or retina scans, keystroke, gait, or
other physical patterns, and sleep, health, or exercise data.
</p>
<p>Collected: No.</p>
<p>
<strong>Category F: Internet or other similar network activity.</strong>
</p>
<p>Examples: Interaction with our Service or advertisement.</p>
<p>Collected: Yes.</p>
<p><strong>Category G: Geolocation data.</strong></p>
<p>Examples: Approximate physical location.</p>
<p>Collected: No.</p>