-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1022 lines (1019 loc) · 54.5 KB
/
index.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 name="google-site-verification" content="-RdNglU2JTLumdYcuy7IqqFzLG-OwAa4aKds2ckYBDw" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
<meta content="width=device-width, initial-scale=1" name="viewport" />
<title>Money Manager 23 | Privacy Policies</title>
<!-- Primary Meta Tags -->
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link rel="canonical" href="/" />
<meta name="description" content="Money Manager 23 | Privacy Policies" />
<meta name="msapplication-TileColor" content="#ffffff" />
<meta name="theme-color" content="#ffffff" />
<!-- Rocket CSS -->
<link type="text/css" href="./assets/rocket.min.css" rel="stylesheet" />
</head>
<body
style="background: #f2f5f9 !important"
data-new-gr-c-s-check-loaded="14.1102.0"
>
<div class="sc-kEYyzF grKTOC">
<div
class="vetting-section tucupampam"
style="
overflow: scroll;
height: -webkit-fill-available;
width: -webkit-fill-available;
z-index: 1001;
background: rgb(255, 255, 255);
"
>
<div class="container vetting-container">
<div
class="col-md-12 elleft"
style="
border-radius: 3px;
background: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
"
>
<div class="segundodiv-col">
<img
src="./assets/certificate-side.svg"
alt="corner"
class="certificate-corner-top-left"
/>
<img
src="./assets/certificate-side.svg"
alt="corner"
class="certificate-corner-top-right"
/>
<img
src="./assets/certificate-side.svg"
alt="corner"
class="certificate-corner-bottom-right"
/>
<img
src="./assets/certificate-side.svg"
alt="corner"
class="certificate-corner-bottom-left"
/>
<div class="tercerdiv-col">
<div class="cuartodiv-col">
<!---->
<div class="tucupampam" style="z-index: 100">
<h1 style="margin-top: 10px">Privacy Policy</h1>
<p>Updated at 2023-04-05</p>
<p style="display: inline">Money Manager 23.</p>
<p class="p4" style="display: inline">
<span class="s1"
>("we," "our," or "us") is committed to protecting your
privacy. This Privacy Policy explains how your personal
information is collected, used, and disclosed by</span
>
</p>
<p style="display: inline">Money Manager 23.</p>
<br />
<div style="display: inline">
<p style="display: inline">
<span class="s1"
>This Privacy Policy applies to our application
named</span
>
</p>
<p style="display: inline">
<span class="s1"> Money Manager 23</span>
</p>
<p style="display: inline">
<span class="s1"
>, and its associated subdomains (collectively, our
"Service").</span
>
</p>
</div>
<p style="display: inline">
<span class="s1"
>By accessing or using our Service, you signify that you
have read, understood, and agree to our collection,
storage, use, and disclosure of your personal
information as described in this Privacy Policy and our
Terms of Service.</span
>
</p>
<p class="p6"><br /></p>
<h1>Definitions and key terms</h1>
<p class="p8">
<span class="s1">For this Privacy Policy:</span>
</p>
<p class="p9"><br /></p>
<ul class="ul1">
<li class="li8">
<span class="s1"
><strong>Cookie:</strong> small amount of data
generated by a website and saved by your web browser.
It is used to identify your browser, provide
analytics, remember information about you such as your
language preference or login information.<br
/></span>
</li>
<!---->
<li class="li8">
<span class="s1"
><strong>Company:</strong> when this policy mentions
“Company,” “we,” “us,” or “our,” it refers to
<a>Money Manager 23</a> that is responsible for your
information under this Privacy Policy.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Country:</strong> where
<a>Money Manager 23</a> or the owners/founders of
<a>Money Manager 23</a> are based, in this case is
<a>Bangladesh</a>.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Customer:</strong> refers to the company,
organization or person that signs up to use the
<a>Money Manager 23</a> Service to manage the
relationships with your consumers or service users.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Device:</strong> any internet connected
device such as a phone, tablet, computer or any other
device that can be used to visit
<a>Money Manager 23</a> and use the services.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>IP address:</strong> Every device connected
to the Internet is assigned a number known as an
Internet protocol (IP) address. These numbers are
usually assigned in geographic blocks. An IP address
can often be used to identify the location from which
a device is connecting to the Internet.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Personnel:</strong> refers to those
individuals who are employed by
<a>Money Manager 23</a> or are under contract to
perform a service on behalf of one of the parties.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Personal Data:</strong> any information that
directly, indirectly, or in connection with other
information — including a personal identification
number — allows for the identification or
identifiability of a natural person.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Service:</strong> refers to the service
provided by <a>Money Manager 23</a> as described in
the relative terms (if available) and on this
platform.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Third-party service:</strong> refers to
advertisers, contest sponsors, promotional and
marketing partners, and others who provide our content
or whose products or services we think may interest
you.<br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>Website:</strong> <a>Money Manager 23</a>’s
site, which can be accessed via this URL:
<a>___________</a><br
/></span>
</li>
<li class="li8">
<span class="s1"
><strong>You:</strong> a person or entity that is
registered with <a>Money Manager 23</a> to use the
Services.<br
/></span>
</li>
</ul>
<p class="p9"><br /></p>
<div>
<h1>Information automatically collected</h1>
<p class="p10">
<span class="s1"
>There is some information like your Internet Protocol
(IP) address and/or browser and device characteristics
— is collected automatically when you visit our
platform. This information may be used to connect your
computer to the Internet. Other information collected
automatically could be a login, e-mail address,
password, computer and connection information such as
browser plug-in types and versions and time zone
setting, operating systems and platforms, purchase
history, (we sometimes aggregate with similar
information from other Users), the full Uniform
Resource Locator (URL) clickstream to, through and
from our Website that may include date and time;
cookie number; parts of the site you viewed or
searched for; and the phone number you used to call
our Customer Services. We may also use browser data
such as cookies, Flash cookies (also known as Flash
Local Shared Objects) or similar data on certain parts
of our Website for fraud prevention and other
purposes. During your visits, we may use software
tools such as JavaScript to measure and collect
session information including page response times,
download errors, length of visits to certain pages,
page interaction information (such as scrolling,
clicks, and mouse-overs), and methods used to browse
away from the page. We may also collect technical
information to help us identify your device for fraud
prevention and diagnostic purposes. <br /><br />
We automatically collect certain information when you
visit, use or navigate the platform. 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 who and when you use our
and other technical information. This information is
primarily needed to maintain the security and
operation of our , and for our internal analytics and
reporting purposes.</span
>
</p>
</div>
<p class="p12"><br /></p>
<!---->
<!---->
<p class="p3"><br /></p>
<h1>How Do We Use The Information We Collect?</h1>
<p class="p10">
<span class="s1"
>Any of the information we collect from you may be used
in one of the following ways:</span
>
</p>
<ul class="ul1">
<li class="li11">
<span class="s3"
>To personalize your experience (your information
helps us to better respond to your individual
needs)</span
>
</li>
<li class="li11">
<span class="s3"
>To improve our service (we continually strive to
improve our service offerings based on the information
and feedback we receive from you)</span
>
</li>
<li class="li11">
<span class="s3"
>To improve customer service (your information helps
us to more effectively respond to your customer
service requests and support needs)</span
>
</li>
<li class="li11">
<span class="s3">To process transactions</span>
</li>
<li class="li11">
<span class="s3"
>To administer a contest, promotion, survey or other
site feature</span
>
</li>
<li class="li11">
<span class="s3">To send periodic emails</span>
</li>
</ul>
<p class="p3"><br /></p>
<h1>
When do we use customer information from third parties?
</h1>
<p class="p10">
<span class="s1"
>We receive some information from the third parties when
you contact us. For example, when you submit your email
address to us to show interest in becoming our customer,
we receive information from a third party that provides
automated fraud detection services to us. We also
occasionally collect information that is made publicly
available on social media websites. You can control how
much of your information social media websites make
public by visiting these websites and changing your
privacy settings.</span
>
</p>
<p class="p3"><br /></p>
<h1>
Do we share the information we collect with third parties?
</h1>
<p class="p10">
<span class="s1"
>We may share the information that we collect, both
personal and non-personal, with third parties such as
advertisers, contest sponsors, promotional and marketing
partners, and others who provide our content or whose
products or services we think may interest you. We may
also share it with our current and future affiliated
companies and business partners, and if we are involved
in a merger, asset sale or other business
reorganization, we may also share or transfer your
personal and non-personal information to our
successors-in-interest. <br /><br />
We may engage trusted third party service providers to
perform functions and provide services to us, such as
hosting and maintaining our servers and our service,
database storage and management, e-mail management,
storage marketing, credit card processing, customer
service and fulfilling orders for products and services
you may purchase through our platform. We will likely
share your personal information, and possibly some
non-personal information, with these third parties to
enable them to perform these services for us and for
you.
<br /><br />
We may share portions of our log file data, including IP
addresses, for analytics purposes with third parties
such as web analytics partners, application developers,
and ad networks. If your IP address is shared, it may be
used to estimate general location and other
technographics such as connection speed, whether you
have visited the service in a shared location, and type
of device used to visit the service. They may aggregate
information about our advertising and what you see on
the service and then provide auditing, research and
reporting for us and our advertisers.
<br /><br />
We may also disclose personal and non-personal
information about you to government or law enforcement
officials or private parties as we, in our sole
discretion, believe necessary or appropriate in order to
respond to claims, legal process (including subpoenas),
to protect our rights and interests or those of a third
party, the safety of the public or any person, to
prevent or stop any illegal, unethical, or legally
actionable activity, or to otherwise comply with
applicable court orders, laws, rules and regulations.
</span>
</p>
<p class="p3"><br /></p>
<h1>
Where and when is information collected from customers and
end users?
</h1>
<p class="p10">
<span class="s1"
>We will collect personal information that you submit to
us. We may also receive personal information about you
from third parties as described above.</span
>
</p>
<p class="p3"><br /></p>
<!---->
<!---->
<p class="p3"><br /></p>
<h1>
Could my information be transferred to other countries?
</h1>
<p class="p10">
<span class="s1"
>We are incorporated in Bangladesh. Information
collected via our website, through direct interactions
with you, or from use of our help services may be
transferred from time to time to our offices or
personnel, or to third parties, located throughout the
world, and may be viewed and hosted anywhere in the
world, including countries that may not have laws of
general applicability regulating the use and transfer of
such data. To the fullest extent allowed by applicable
law, by using any of the above, you voluntarily consent
to the trans- border transfer and hosting of such
information.</span
>
</p>
<p class="p3"><br /></p>
<h1>
Is the information collected through our service secure?
</h1>
<p class="p10">
<span class="s1"
>We take precautions to protect the security of your
information. We have physical, electronic, and
managerial procedures to help safeguard, prevent
unauthorized access, maintain data security, and
correctly use your information. However, neither people
nor security systems are foolproof, including encryption
systems. In addition, people can commit intentional
crimes, make mistakes or fail to follow policies.
Therefore, while we use reasonable efforts to protect
your personal information, we cannot guarantee its
absolute security. If applicable law imposes any
non-disclaimable duty to protect your personal
information, you agree that intentional misconduct will
be the standards used to measure our compliance with
that duty.</span
>
</p>
<p class="p3"><br /></p>
<h1>Can I update or correct my information?</h1>
<p class="p10">
<span class="s1"
>The rights you have to request updates or corrections
to the information we collect depend on your
relationship with us. Personnel may update or correct
their information as detailed in our internal company
employment policies. Customers have the right to request
the restriction of certain uses and disclosures of
personally identifiable information as follows. You can
contact us in order to (1) update or correct your
personally identifiable information, (2) change your
preferences with respect to communications and other
information you receive from us, or (3) delete the
personally identifiable information maintained about you
on our systems (subject to the following paragraph), by
cancelling your account. Such updates, corrections,
changes and deletions will have no effect on other
information that we maintain, or information that we
have provided to third parties in accordance with this
Privacy Policy prior to such update, correction, change
or deletion. To protect your privacy and security, we
may take reasonable steps (such as requesting a unique
password) to verify your identity before granting you
profile access or making corrections. You are
responsible for maintaining the secrecy of your unique
password and account information at all times. You
should be aware that it is not technologically possible
to remove each and every record of the information you
have provided to us from our system. The need to back up
our systems to protect information from inadvertent loss
means that a copy of your information may exist in a
non-erasable form that will be difficult or impossible
for us to locate. Promptly after receiving your request,
all personal information stored in databases we actively
use, and other readily searchable media will be updated,
corrected, changed or deleted, as appropriate, as soon
as and to the extent reasonably and technically
practicable. If you are an end user and wish to update,
delete, or receive any information we have about you,
you may do so by contacting the organization of which
you are a customer.</span
>
</p>
<p class="p3"><br /></p>
<!---->
<!---->
<!---->
<h1>Sale of Business</h1>
<p class="p10">
<span class="s1"
>We reserve the right to transfer information to a third
party in the event of a sale, merger or other transfer
of all or substantially all of the assets of us or any
of its Corporate Affiliates (as defined herein), or that
portion of us or any of its Corporate Affiliates to
which the Service relates, or in the event that we
discontinue our business or file a petition or have
filed against us a petition in bankruptcy,
reorganization or similar proceeding, provided that the
third party agrees to adhere to the terms of this
Privacy Policy.</span
>
</p>
<p class="p3"><br /></p>
<h1>Affiliates</h1>
<p class="p10">
<span class="s1"
>We may disclose information (including personal
information) about you to our Corporate Affiliates. For
purposes of this Privacy Policy, "Corporate Affiliate"
means any person or entity which directly or indirectly
controls, is controlled by or is under common control
with us, whether by ownership or otherwise. Any
information relating to you that we provide to our
Corporate Affiliates will be treated by those Corporate
Affiliates in accordance with the terms of this Privacy
Policy.</span
>
</p>
<p class="p3"><br /></p>
<h1>How Long Do We Keep Your Information?</h1>
<p class="p10">
<span class="s1"
>We keep your information only so long as we need it to
provide service to you and fulfill the purposes
described in this policy. This is also the case for
anyone that we share your information with and who
carries out services on our behalf. When we no longer
need to use your information and there is no need for us
to keep it to comply with our legal or regulatory
obligations, we'll either remove it from our systems or
depersonalize it so that we can't identify you.</span
>
</p>
<p class="p3"><br /></p>
<h1>How Do We Protect Your Information?</h1>
<p class="p10">
<span class="s1"
>We implement a variety of security measures to maintain
the safety of your personal information when you place
an order or enter, submit, or access your personal
information. We offer the use of a secure server. All
supplied sensitive/credit information is transmitted via
Secure Socket Layer (SSL) technology and then encrypted
into our Payment gateway providers database only to be
accessible by those authorized with special access
rights to such systems, and are required to keep the
information confidential. After a transaction, your
private information (credit cards, social security
numbers, financials, etc.) is never kept on file. We
cannot, however, ensure or warrant the absolute security
of any information you transmit to us or guarantee that
your information on the Service may not be accessed,
disclosed, altered, or destroyed by a breach of any of
our physical, technical, or managerial safeguards.</span
>
</p>
<p class="p3"><br /></p>
<h1>Governing Law</h1>
<p class="p10">
<span class="s1"
>The laws of Bangladesh, excluding its conflicts of law
rules, shall govern this Agreement and your use of our
service. Your use of our service may also be subject to
other local, state, national, or international
laws.</span
>
</p>
<p class="p3"><br /></p>
<h1>Your Consent</h1>
<p class="p10">
<span class="s1"
>By using our service, registering an account, or making
a purchase, you consent to this Privacy Policy.</span
>
</p>
<p class="p3"><br /></p>
<h1>Links to Other Websites</h1>
<p class="p10">
<span class="s1"
>This Privacy Policy applies only to the Services. The
Services may contain links to other websites not
operated or controlled by Money Manager 23. We are not
responsible for the content, accuracy or opinions
expressed in such websites, and such websites are not
investigated, monitored or checked for accuracy or
completeness by us. Please remember that when you use a
link to go from the Services to another website, our
Privacy Policy is no longer in effect. Your browsing and
interaction on any other website, including those that
have a link on our platform, is subject to that
website’s own rules and policies. Such third parties may
use their own cookies or other methods to collect
information about you.</span
>
</p>
<p class="p3"><br /></p>
<h1>Cookies</h1>
<p class="p10">
<span class="s1"
>We use "Cookies" to identify the areas of our website
that you have visited. A Cookie is a small piece of data
stored on your computer or mobile device by your web
browser. We use Cookies to personalize the Content that
you see on our website. Most web browsers can be set to
disable the use of Cookies. However, if you disable
Cookies, you may not be able to access functionality on
our website correctly or at all. We never place
Personally Identifiable Information in Cookies.</span
>
</p>
<p class="p3"><br /></p>
<h1>Advertising</h1>
<p class="p10">
<span class="s1"
>Advertising keeps us and many of the websites and
services you use free of charge. We work hard to make
sure that ads are safe, unobtrusive, and as relevant as
possible.</span
>
</p>
<p class="p3"><br /></p>
<h1>Cookies for Advertising</h1>
<p class="p10">
<span class="s1"
>Cookies help to make advertising more effective.
Without cookies, it's really hard for an advertiser to
reach its audience, or to know how many ads were shown
and how many clicks they received.</span
>
</p>
<p class="p15"><br /></p>
<!---->
<!---->
<!---->
<!---->
<!---->
<!---->
<h1>Kids' Privacy</h1>
<p class="p10">
<span class="s1"
>We collect information from kids under the age of 13
just to better our services. If You are a parent or
guardian and You are aware that Your child has provided
Us with Personal Data without your permission, please
contact Us. If We become aware that We have collected
Personal Data from anyone under the age of 13 without
verification of parental consent, We take steps to
remove that information from our servers.</span
>
</p>
<p class="p3"><br /></p>
<!---->
<!---->
<!---->
<h1>Changes To Our Privacy Policy</h1>
<p class="p10">
<span class="s1"
>If we decide to change our privacy policy, we will post
those changes on this page, and/or update the Privacy
Policy modification date below.</span
>
</p>
<p class="p3"><br /></p>
<h1>Third-Party Services</h1>
<p class="p10">
<span class="s1"
>We may display, include or make available third-party
content (including data, information, applications and
other products services) or provide links to third-party
websites or services ("Third- Party Services").</span
>
</p>
<p class="p10">
<span class="s1"
>You acknowledge and agree that we shall not be
responsible for any Third-Party Services, including
their accuracy, completeness, timeliness, validity,
copyright compliance, legality, decency, quality or any
other aspect thereof. We do not assume and shall not
have any liability or responsibility to you or any other
person or entity for any Third-Party Services.</span
>
</p>
<p class="p10">
<span class="s1"
>Third-Party Services and links thereto are provided
solely as a convenience to you and you access and use
them entirely at your own risk and subject to such third
parties' terms and conditions.</span
>
</p>
<p class="p3"><br /></p>
<h1>Facebook Pixel</h1>
<p class="p10">
<span class="s1"
>Facebook pixel is an analytics tool that allows you to
measure the effectiveness of your advertising by
understanding the actions people take on your website.
You can use the pixel to: Make sure your ads are shown
to the right people. Facebook pixel may collect
information from your device when you use the service.
Facebook pixel collects information that is held in
accordance with its Privacy Policy.</span
>
</p>
<p class="p3"><br /></p>
<h1>Tracking Technologies</h1>
<!---->
<!---->
<!---->
<!---->
<li class="li11"><span class="s3">Local Storage</span></li>
<p class="p10">
<span class="s1">
Local Storage sometimes known as DOM storage, provides
web apps with methods and protocols for storing
client-side data. Web storage supports persistent data
storage, similar to cookies but with a greatly enhanced
capacity and no information stored in the HTTP request
header.
</span>
</p>
<!---->
<!---->
<p class="p3"><br /></p>
<h1>
Information about General Data Protection Regulation
(GDPR)
</h1>
<p class="p10">
<span class="s1"
>We may be collecting and using information from you if
you are from the European Economic Area (EEA), and in
this section of our Privacy Policy we are going to
explain exactly how and why is this data collected, and
how we maintain this data under protection from being
replicated or used in the wrong way.</span
>
</p>
<p class="p12"><br /></p>
<h1>What is GDPR?</h1>
<p class="p10">
<span class="s1"
>GDPR is an EU-wide privacy and data protection law that
regulates how EU residents' data is protected by
companies and enhances the control the EU residents
have, over their personal data.
<p class="p12"><br /></p>
<h1>What is personal data?</h1>
<p class="p10">
<span class="s1"
>Any data that relates to an identifiable or
identified individual. GDPR covers a broad spectrum
of information that could be used on its own, or in
combination with other pieces of information, to
identify a person. Personal data extends beyond a
person’s name or email address. Some examples
include financial information, political opinions,
genetic data, biometric data, IP addresses, physical
address, sexual orientation, and ethnicity. The Data
Protection Principles include requirements such
as:</span
>
</p>
<ul class="ul1">
<li class="li11">
<span class="s3"
>Personal data collected must be processed in a
fair, legal, and transparent way and should only
be used in a way that a person would reasonably
expect.</span
>
</li>
<li class="li11">
<span class="s3"
>Personal data should only be collected to fulfil
a specific purpose and it should only be used for
that purpose. Organizations must specify why they
need the personal data when they collect it.</span
>
</li>
<li class="li11">
<span class="s3"
>Personal data should be held no longer than
necessary to fulfil its purpose.</span
>
</li>
<li class="li11">
<span class="s3"
>People covered by the GDPR have the right to
access their own personal data. They can also
request a copy of their data, and that their data
be updated, deleted, restricted, or moved to
another organization.</span
>
</li>
</ul>
<p class="p12"><br /></p>
<h1>Why is GDPR important?</h1>
<p class="p10">
<span class="s1"
>GDPR adds some new requirements regarding how
companies should protect individuals' personal data
that they collect and process. It also raises the
stakes for compliance by increasing enforcement and
imposing greater fines for breach. Beyond these
facts it's simply the right thing to do. At Help
Scout we strongly believe that your data privacy is
very important and we already have solid security
and privacy practices in place that go beyond the
requirements of this new regulation.</span
>
</p>
<p class="p12"><br /></p>
<h1>
Individual Data Subject's Rights - Data Access,
Portability and Deletion
</h1>
<p class="p10">
<span class="s1"
>We are committed to helping our customers meet the
data subject rights requirements of GDPR. We process
or store all personal data in fully vetted, DPA
compliant vendors. We do store all conversation and
personal data for up to 6 years unless your account
is deleted. In which case, we dispose of all data in
accordance with our Terms of Service and Privacy
Policy, but we will not hold it longer than 60 days.
<br /><br />
We are aware that if you are working with EU
customers, you need to be able to provide them with
the ability to access, update, retrieve and remove
personal data. We got you! We've been set up as self
service from the start and have always given you
access to your data and your customers data. Our
customer support team is here for you to answer any
questions you might have about working with the
API.</span
>
</p>
<p class="p3"><br /></p>
<h1>California Residents</h1>
<p class="p15"><br /></p>
<p class="p10">
<span class="s1"
>The California Consumer Privacy Act (CCPA) requires
us to disclose categories of Personal Information we
collect and how we use it, the categories of sources
from whom we collect Personal Information, and the
third parties with whom we share it, which we have
explained above.</span
>
</p>
<p class="p10">
<span class="s1"
>We are also required to communicate information
about rights California residents have under
California law. You may exercise the following
rights:</span
>
</p>
<ul class="ul1">
<li class="li11">
<span class="s3"
>Right to Know and Access. You may submit a
verifiable request for information regarding the:
(1) categories of Personal Information we collect,
use, or share; (2) purposes for which categories
of Personal Information are collected or used by
us; (3) categories of sources from which we
collect Personal Information; and (4) specific
pieces of Personal Information we have collected
about you.</span
>
</li>
<li class="li11">
<span class="s3"
>Right to Equal Service. We will not discriminate
against you if you exercise your privacy
rights.</span
>
</li>
<li class="li11">
<span class="s3"
>Right to Delete. You may submit a verifiable
request to close your account and we will delete
Personal Information about you that we have
collected.</span
>
</li>
<li class="li11">
<span class="s3"
>Request that a business that sells a consumer's
personal data, not sell the consumer's personal
data.</span
>
</li>
</ul>
<p class="p12"><br /></p>
<p class="p10">
<span class="s1"
>If you make a request, we have one month to respond
to you. If you would like to exercise any of these
rights, please contact us.</span
>
</p>
<p class="p10">
<span class="s1"
>We do not sell the Personal Information of our
users.</span
>
</p>
<p class="p10">
<span class="s1"
>For more information about these rights, please
contact us.</span
>
</p>
<p class="p3"><br /></p>
<h1>
California Online Privacy Protection Act (CalOPPA)
</h1>
<p class="p10">
<span class="s1"
>CalOPPA requires us to disclose categories of
Personal Information we collect and how we use it,
the categories of sources from whom we collect
Personal Information, and the third parties with
whom we share it, which we have explained
above.</span
>
</p>
<p class="p10">
<span class="s1"
>CalOPPA users have the following rights:</span
>
</p>
<ul class="ul1">
<li class="li11">
<span class="s3"
>Right to Know and Access. You may submit a
verifiable request for information regarding the:
(1) categories of Personal Information we collect,
use, or share; (2) purposes for which categories
of Personal Information are collected or used by
us; (3) categories of sources from which we
collect Personal Information; and (4) specific
pieces of Personal Information we have collected
about you.</span
>
</li>
<li class="li11">
<span class="s3"
>Right to Equal Service. We will not discriminate
against you if you exercise your privacy
rights.</span
>
</li>
<li class="li11">
<span class="s3"
>Right to Delete. You may submit a verifiable
request to close your account and we will delete
Personal Information about you that we have
collected.</span
>
</li>
<li class="li11">
<span class="s3"
>Right to request that a business that sells a
consumer's personal data, not sell the consumer's
personal data.</span
>
</li>
</ul>
<p class="p12"><br /></p>
<p class="p10">
<span class="s1"
>If you make a request, we have one month to respond
to you. If you would like to exercise any of these
rights, please contact us. <br /><br />
We do not sell the Personal Information of our
users.
<br /><br />
For more information about these rights, please
contact us.</span
>
</p>
<p class="p3"><br /></p>
<h1>Contact Us</h1>
<p class="p10">
<span class="s1"
>Don't hesitate to contact us if you have any
questions.</span
>
</p>