-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathterms-of-use.html
1262 lines (1173 loc) · 72.8 KB
/
terms-of-use.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
---
title: Terms of Use
description: Cboard Terms of Use
---
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<style type="text/css">
@import url('https://themes.googleusercontent.com/fonts/css?kit=OPeqXG-QxW3ZD8BtmPikfA');
ul.lst-kix_i2cxnzscw6g5-4 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-5 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-2 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-3 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-8 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-6 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-7 {
list-style-type: none
}
.lst-kix_i2cxnzscw6g5-0>li:before {
content: "\0025cf "
}
.lst-kix_i2cxnzscw6g5-8>li:before {
content: "\0025a0 "
}
ul.lst-kix_i2cxnzscw6g5-0 {
list-style-type: none
}
ul.lst-kix_i2cxnzscw6g5-1 {
list-style-type: none
}
.lst-kix_i2cxnzscw6g5-6>li:before {
content: "\0025cf "
}
.lst-kix_i2cxnzscw6g5-7>li:before {
content: "\0025cb "
}
li.li-bullet-0:before {
margin-left: -18pt;
white-space: nowrap;
display: inline-block;
min-width: 18pt
}
.lst-kix_i2cxnzscw6g5-4>li:before {
content: "\0025cb "
}
.lst-kix_i2cxnzscw6g5-5>li:before {
content: "\0025a0 "
}
.lst-kix_i2cxnzscw6g5-1>li:before {
content: "\0025cb "
}
.lst-kix_i2cxnzscw6g5-2>li:before {
content: "\0025a0 "
}
.lst-kix_i2cxnzscw6g5-3>li:before {
content: "\0025cf "
}
ol {
margin: 0;
padding: 0
}
table td,
table th {
padding: 0
}
.c7 {
margin-left: 9pt;
padding-top: 14.3pt;
padding-bottom: 4pt;
line-height: 1.0;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left;
margin-right: 21pt
}
.c39 {
color: #2e3340;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 9pt;
font-family: "Roboto";
font-style: normal
}
.c5 {
color: #000000;
font-weight: 700;
text-decoration: none;
vertical-align: baseline;
font-size: 13pt;
font-family: "Arial";
font-style: normal
}
.c1 {
color: #595959;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c28 {
color: #3030f1;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c11 {
color: #595959;
font-weight: 700;
text-decoration: none;
vertical-align: baseline;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c9 {
color: #000000;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 13pt;
font-family: "Arial";
font-style: normal
}
.c25 {
margin-left: 36pt;
padding-top: 13.1pt;
padding-left: 0pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c31 {
color: #999999;
font-weight: 400;
text-decoration: none;
vertical-align: baseline;
font-size: 14pt;
font-family: "Georgia";
font-style: italic
}
.c2 {
margin-left: 9pt;
padding-top: 2.8pt;
padding-bottom: 2pt;
line-height: 1.0;
page-break-after: avoid;
text-align: left;
margin-right: 21pt
}
.c0 {
color: #000000;
font-weight: 700;
text-decoration: none;
vertical-align: baseline;
font-size: 12pt;
font-family: "Arial";
font-style: normal
}
.c51 {
margin-left: 9pt;
padding-top: 11.6pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c15 {
margin-left: 9pt;
padding-top: 13.4pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c44 {
margin-left: 9pt;
padding-top: 11.1pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c50 {
color: #363840;
font-weight: 400;
text-decoration: none;
font-size: 11pt;
font-family: "Roboto";
font-style: normal
}
.c45 {
color: #595959;
font-weight: 700;
text-decoration: none;
font-size: 20pt;
font-family: "Arial";
font-style: normal
}
.c47 {
margin-left: 9pt;
padding-top: 0.6pt;
padding-bottom: 0pt;
line-height: 1.2494902610778809;
text-align: left;
margin-right: 21pt
}
.c49 {
margin-left: 9pt;
padding-top: 7.6pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c3 {
margin-left: 9pt;
padding-top: 2.3pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c16 {
margin-left: 9pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c40 {
margin-left: 9pt;
padding-top: 9.3pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c6 {
margin-left: 9pt;
padding-top: 11.1pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c23 {
margin-left: 9pt;
padding-top: 13.6pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: justify;
margin-right: 21pt
}
.c52 {
color: #3030f1;
font-weight: 700;
text-decoration: none;
font-size: 11pt;
font-family: "Arial";
font-style: normal
}
.c13 {
margin-left: 9pt;
padding-top: 0.6pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c46 {
margin-left: 9pt;
padding-top: 12.1pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c43 {
margin-left: 9pt;
padding-top: 7.6pt;
padding-bottom: 0pt;
line-height: 1.2494971752166748;
text-align: left;
margin-right: 21pt
}
.c35 {
margin-left: 9pt;
padding-top: 7.6pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c21 {
margin-left: 9pt;
padding-top: 26.3pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c34 {
margin-left: 9pt;
padding-top: 12.8pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c26 {
margin-left: 9pt;
padding-top: 23.3pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c22 {
margin-left: 9pt;
padding-top: 13.1pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c36 {
margin-left: 9pt;
padding-top: 12.1pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c10 {
margin-left: 9pt;
padding-top: 13.6pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c24 {
margin-left: 9pt;
padding-top: 2.3pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c29 {
margin-left: 9pt;
padding-top: 0.6pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: justify;
margin-right: 21pt
}
.c18 {
margin-left: 9pt;
padding-top: 12.8pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c33 {
margin-left: 9pt;
padding-top: 9.3pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c27 {
margin-left: 9pt;
padding-top: 11.1pt;
padding-bottom: 0pt;
line-height: 1.2714210748672485;
text-align: left;
margin-right: 21pt
}
.c53 {
margin-left: 9pt;
padding-top: 24pt;
padding-bottom: 6pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c4 {
margin-left: 9pt;
padding-top: 13.9pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c37 {
margin-left: 9pt;
padding-top: 2.8pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c32 {
margin-left: 9pt;
padding-top: 0.6pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c14 {
margin-left: 9pt;
padding-top: 13.4pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c38 {
margin-left: 9pt;
padding-top: 0pt;
padding-bottom: 0pt;
line-height: 1.3189165592193604;
text-align: left;
margin-right: 21pt
}
.c8 {
margin-left: 9pt;
padding-top: 11.1pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c17 {
margin-left: 9pt;
padding-top: 13.9pt;
padding-bottom: 0pt;
line-height: 1.0;
text-align: left;
margin-right: 21pt
}
.c41 {
margin-left: 9pt;
padding-top: 10.8pt;
padding-bottom: 0pt;
line-height: 1.249500036239624;
text-align: left;
margin-right: 21pt
}
.c20 {
background-color: #ffffff;
padding: 1.1rem
}
.c19 {
orphans: 2;
widows: 2
}
.c48 {
padding: 0;
margin: 0
}
.c30 {
height: 7pt
}
.c42 {
vertical-align: baseline
}
.c12 {
page-break-after: avoid
}
.title {
padding-top: 6rem;
color: #595959;
font-weight: 700;
font-size: 20pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.0;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
.subtitle {
padding-top: 14.3pt;
color: #999999;
font-size: 14pt;
padding-bottom: 4pt;
font-family: "Georgia";
line-height: 1.0;
page-break-after: avoid;
font-style: italic;
orphans: 2;
widows: 2;
text-align: left
}
li {
color: #595959;
font-size: 11pt;
font-family: "Arial"
}
p {
margin: 0;
color: #595959;
font-size: 11pt;
font-family: "Arial"
}
h1 {
padding-top: 24pt;
color: #595959;
font-weight: 700;
font-size: 24pt;
padding-bottom: 6pt;
font-family: "Arial";
line-height: 1.249500036239624;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h2 {
padding-top: 18pt;
color: #595959;
font-weight: 700;
font-size: 18pt;
padding-bottom: 4pt;
font-family: "Arial";
line-height: 1.249500036239624;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h3 {
padding-top: 11.1pt;
color: #000000;
font-weight: 700;
font-size: 13pt;
padding-bottom: 0pt;
font-family: "Arial";
line-height: 1.0;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h4 {
padding-top: 11.1pt;
color: #000000;
font-weight: 700;
font-size: 12pt;
padding-bottom: 0pt;
font-family: "Arial";
line-height: 1.0;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h5 {
padding-top: 11pt;
color: #595959;
font-weight: 700;
font-size: 11pt;
padding-bottom: 2pt;
font-family: "Arial";
line-height: 1.249500036239624;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
h6 {
padding-top: 10pt;
color: #595959;
font-weight: 700;
font-size: 10pt;
padding-bottom: 2pt;
font-family: "Arial";
line-height: 1.249500036239624;
page-break-after: avoid;
orphans: 2;
widows: 2;
text-align: left
}
</style>
</head>
<body class="c20 doc-content">
<p class="c19 c12 c53 title" id="h.t0ka8ruzgcm"><span>TERMS OF SERVICE</span><span class="c42 c45"> </span></p>
<p class="c7 subtitle" id="h.9n7htsdmdti0"><span>Last updated April 19, 2023</span><span class="c31"> </span>
</p>
<h3 class="c12 c21" id="h.h8e47mw5qvn"><span class="c5">AGREEMENT TO OUR LEGAL TERMS </span></h3>
<p class="c10 c19"><span class="c1">We are COMUNICACION AUMENTATIVA CHILE SpA ("Company," "we,"
"us," "our"), a company registered in Chile at AV. MANQUEHUE SUR 520, Las Condes,
Santiago, Región Metropolitana 7570180. </span></p>
<p class="c10 c19"><span class="c1">We operate the website cboard.io (the "Site"), the mobile application
Cboard AAC (the "App"), as well as any other related products and services that refer or link to
these legal terms (the "Legal Terms") (collectively, the "Services"). </span></p>
<p class="c10 c19"><span class="c1">You can contact us by phone at +543517574240, email at [email protected], or by
mail to AV. MANQUEHUE SUR 520, Las Condes, Santiago, Región Metropolitana 7570180, Chile. </span></p>
<p class="c10 c19 c30"><span class="c1"></span></p>
<p class="c10 c19"><span class="c1">These Legal Terms constitute a legally binding agreement made between you,
whether personally or on behalf of an entity ("you"), and COMUNICACION AUMENTATIVA CHILE SpA,
concerning your access to and use of the Services. You agree that by accessing the Services, you have read,
understood, and agreed to be bound by all of these Legal Terms. IF YOU DO NOT AGREE WITH ALL OF THESE LEGAL
TERMS, THEN YOU ARE EXPRESSLY PROHIBITED FROM USING THE SERVICES AND YOU MUST DISCONTINUE USE IMMEDIATELY.
</span></p>
<p class="c10 c19"><span class="c1">We will provide you with prior notice of any scheduled changes to the Services
you are using. The modified Legal Terms will become effective upon posting or notifying you by
[email protected] , as stated in the email message. By continuing to use the Services after the effective
date of any changes, you agree to be bound by the modified terms. </span></p>
<p class="c10 c19"><span class="c1">All users who are minors in the jurisdiction in which they reside (generally
under the age of 18) must have the permission of, and be directly supervised by, their parent or guardian to
use the Services. If you are a minor, you must have your parent or guardian read and agree to these Legal Terms prior to you using the Services.
</span></p>
<p class="c10 c19"><span class="c1">We recommend that you print a copy of these Legal Terms for your records.
</span></p>
<p class="c30 c36"><span class="c42 c50"></span></p>
<h3 class="c12 c26" id="h.84abjy30xi0y"><span class="c5">TABLE OF CONTENTS </span></h3>
<h4 class="c17 c12" id="h.l6to52pvctwm"><span class="c42">1. OUR SERVICES </span></h4>
<h4 class="c3 c12" id="h.yw7h9btoebo3"><span class="c0">2. INTELLECTUAL PROPERTY RIGHTS </span></h4>
<h4 class="c3 c12" id="h.xjjxndhgsaxp"><span class="c0">3. USER REPRESENTATIONS </span></h4>
<h4 class="c12 c37" id="h.sqiwslaf3w1p"><span class="c0">4. USER REGISTRATION </span></h4>
<h4 class="c3 c12" id="h.nuv6cpmf3gp1"><span class="c0">5. PRODUCTS </span></h4>
<h4 class="c3 c12" id="h.a1lrb85tg3ba"><span class="c0">6. PURCHASES AND PAYMENT </span></h4>
<h4 class="c2" id="h.bfqsfewucpc6"><span class="c0">7. REFUNDS POLICY </span></h4>
<h4 class="c2" id="h.gr9p8ge4mmrq"><span class="c0">8. SOFTWARE </span></h4>
<h4 class="c2" id="h.1wbw7q5i4l19"><span class="c0">9. PROHIBITED ACTIVITIES </span></h4>
<h4 class="c2" id="h.8igvddekckpq"><span class="c0">10. USER GENERATED CONTRIBUTIONS </span></h4>
<h4 class="c2" id="h.brbttk8j4wfn"><span class="c0">11. CONTRIBUTION LICENSE </span></h4>
<h4 class="c2" id="h.bvaqyia97ymr"><span>12. MOBILE APPLICATION LICENSE</span><span class="c0"> </span></h4>
<h4 class="c2" id="h.4yc7w9ef80s"><span class="c0">13. ADVERTISERS </span></h4>
<h4 class="c2" id="h.c2k3hsx7mpai"><span class="c0">14. SERVICES MANAGEMENT </span></h4>
<h4 class="c2" id="h.xlk3gsa7b2aw"><span class="c0">15. PRIVACY POLICY </span></h4>
<h4 class="c3 c12" id="h.spsgjhkp6k28"><span class="c0">16. TERM AND TERMINATION </span></h4>
<h4 class="c3 c12" id="h.uy0daalhdbys"><span class="c0">17. MODIFICATIONS AND INTERRUPTIONS </span></h4>
<h4 class="c3 c12" id="h.e1rnxihvr2il"><span class="c0">18. GOVERNING LAW </span></h4>
<h4 class="c3 c12" id="h.cecjuiom3ujw"><span class="c0">19. DISPUTE RESOLUTION </span></h4>
<h4 class="c3 c12" id="h.ss6ig1yojfd1"><span class="c0">20. CORRECTIONS </span></h4>
<h4 class="c3 c12" id="h.p2qw5go6piw2"><span class="c0">21. DISCLAIMER </span></h4>
<h4 class="c3 c12" id="h.jqny36titm88"><span class="c0">22. LIMITATIONS OF LIABILITY </span></h4>
<h4 class="c3 c12" id="h.calfmxk9boyl"><span class="c0">23. INDEMNIFICATION </span></h4>
<h4 class="c3 c12" id="h.9kxzd5gv8x4d"><span class="c0">24. USER DATA </span></h4>
<h4 class="c24 c12" id="h.nafhi5n1o7sr"><span class="c0">25. ELECTRONIC COMMUNICATIONS, TRANSACTIONS, AND
SIGNATURES</span></h4>
<h4 class="c24 c12" id="h.h4fyjm2j1yj3"><span class="c0">26. CALIFORNIA USERS AND RESIDENTS </span></h4>
<h4 class="c12 c24" id="h.djw5vsew349v"><span class="c0">27. MISCELLANEOUS </span></h4>
<h4 class="c24 c12" id="h.wmgjbig6iazu"><span class="c0">28. CONTACT US </span></h4>
<h3 class="c26 c12" id="h.vbtd2rntdf2a"><span class="c5">1. OUR SERVICES </span></h3>
<p class="c10 c19"><span class="c1">The information provided when using the Services is not intended for
distribution to or use by any person or entity in any jurisdiction or country where such distribution or use
would be contrary to law or regulation or which would subject us to any registration requirement within such
jurisdiction or country. Accordingly, those persons who choose to access the Services from other locations
do so on their own initiative and are solely responsible for compliance with local laws, if and to the
extent local laws are applicable. </span></p>
<p class="c10 c19"><span class="c1">__________ </span></p>
<h3 class="c12 c18" id="h.39fbm1u3w613"><span class="c5">2. INTELLECTUAL PROPERTY RIGHTS </span></h3>
<h4 class="c12 c15" id="h.mzdkkzbs65s6"><span class="c0">Our intellectual property </span></h4>
<p class="c10"><span>We are t</span><span class="c1">he owner or the licensee of all intellectual property rights in
our Services, including all source code, databases, functionality, software, website designs, audio, video,
text, photographs, and graphics in the Services (collectively, the "Content"), as well as the
trademarks, service marks, and logos contained therein (the "Marks"). </span></p>
<p class="c6"><span class="c1">Our Content and Marks are protected by copyright and trademark laws (and various
other intellectual property rights and unfair competition laws) and treaties in the United States and around
the world. </span></p>
<p class="c6"><span class="c1">The Content and Marks are provided in or through the Services "AS IS" for
your personal, non-commercial use only. </span></p>
<h4 class="c8 c12" id="h.5bwr25q7af4"><span class="c0">Your use of our Services </span></h4>
<p class="c22"><span class="c1">Subject to your compliance with these Legal Terms, including the "</span><span
class="c28">PROHIBITED ACTIVITIES</span><span class="c1">" section below, we grant you a non-exclusive,
non-transferable, revocable license to: </span></p>
<ul class="c48 lst-kix_i2cxnzscw6g5-0 start">
<li class="c25 li-bullet-0"><span class="c1">access the Services; and </span></li>
<li class="c25 li-bullet-0"><span class="c1">download or print a copy of any portion of the Content to which you
have properly gained access. </span></li>
</ul>
<p class="c49"><span class="c1">solely for your personal, non-commercial use. </span></p>
<p class="c34"><span class="c1">Except as set out in this section or elsewhere in our Legal Terms, no part of the
Services and no Content or Marks may be copied, reproduced, aggregated, republished, uploaded, posted,
publicly displayed, encoded, translated, transmitted, distributed, sold, licensed, or otherwise exploited
for any commercial purpose whatsoever, without our express prior written permission. </span></p>
<p class="c6"><span class="c1">If you wish to make any use of the Services, Content, or Marks other than as set out
in this section or elsewhere in our Legal Terms, please address your request to: [email protected]. If we
ever grant you the permission to post, reproduce, or publicly display any part of our Services or Content,
you must identify us as the owners or licensors of the Services, Content, or Marks and ensure that any
copyright or proprietary notice appears or is visible on posting, reproducing, or displaying
our Content. </span></p>
<p class="c6"><span class="c1">We reserve all rights not expressly granted to you in and to the Services, Content,
and Marks. </span></p>
<p class="c6"><span class="c1">Any breach of these Intellectual Property Rights will constitute a material breach of
our Legal Terms and your right to use our Services will terminate immediately. </span></p>
<p class="c8"><span class="c0">Your submissions and contributions </span></p>
<p class="c23"><span class="c1">Please review this section and the "</span><span class="c28">PROHIBITED
ACTIVITIES</span><span class="c1">" section carefully prior to using our Services to understand the (a)
rights you give us and (b) obligations you have when you post or upload any content through the Services.
</span></p>
<p class="c6"><span class="c11">Submissions: </span><span class="c1">By directly sending us any question, comment,
suggestion, idea, feedback, or other information about the Services ("Submissions"), you agree to
assign to us all intellectual property rights in such Submission. You agree that we shall own this
Submission and be entitled to its unrestricted use and dissemination for any lawful purpose, commercial or
otherwise, without acknowledgment or compensation to you. </span></p>
<p class="c6"><span class="c11">Contributions: </span><span class="c1">The Services may invite you to chat,
contribute to, or participate in blogs, message boards, online forums, and other functionality during which
you may create, submit, post, display, transmit, publish, distribute, or broadcast content and materials to
us or through the Services, including but not limited to text, writings, video, audio, photographs, music,
graphics, comments, reviews, rating suggestions, personal information, or other material
("Contributions"). Any Submission that is publicly posted shall also be treated as a Contribution.
</span></p>
<p class="c44"><span class="c1">You understand that Contributions may be viewable by other users of the Services.
</span></p>
<p class="c34"><span class="c11">When you post Contributions, you grant us a license (including use of your name,
trademarks, and logos): </span><span class="c1">By posting any Contributions, you grant us an unrestricted,
unlimited, irrevocable, perpetual, non-exclusive, transferable, royalty free, fully-paid, worldwide right,
and license to: use, copy, reproduce, distribute, sell, resell, publish, broadcast, retitle, store, publicly
perform, publicly display, reformat, translate, excerpt (in whole or in part), and exploit your
Contributions (including, without limitation, your image, name, and voice) for any purpose, commercial,
advertising, or otherwise, to prepare derivative works of, or incorporate into other works, your
Contributions, and to sublicense the licenses granted in this section. Our use and distribution may occur in
any media formats and through any media channels. </span></p>
<p class="c6"><span class="c1">This license includes our use of your name, company name, and franchise name, as
applicable, and any of the trademarks, service marks, trade names, logos, and personal and commercial images
you provide. </span></p>
<p class="c6"><span class="c11">You are responsible for what you post or upload: </span><span class="c1">By sending
us Submissions and/or posting Contributions through any part of the Services or making Contributions
accessible through the Services by linking your account through the Services to any of your social
networking accounts, you: </span></p>
<p class="c43"><span class="c1">confirm that you have read and agree with our "</span><span
class="c28">PROHIBITED ACTIVITIES</span><span class="c1">" and will not post, send, publish, upload, or
transmit through the Services any Submission nor post any Contribution that is illegal, harassing, hateful,
harmful, defamatory, obscene, bullying, abusive, discriminatory, threatening to any person or group,
sexually explicit, false, inaccurate, deceitful, or misleading; </span></p>
<p class="c13"><span class="c1">to the extent permissible by applicable law, waive any and all moral rights to any
such Submission and/or Contribution; </span></p>
<p class="c13"><span class="c1">warrant that any such Submission and/or Contributions are original to you or that
you have the necessary rights and licenses to submit such Submissions and/or Contributions and that you have
full authority to grant us the above mentioned rights in relation to your Submissions and/or Contributions;
and warrant and represent that your Submissions and/or Contributions do not constitute confidential
information. </span></p>
<p class="c35"><span class="c1">You are solely responsible for your Submissions and/or Contributions and you
expressly agree to reimburse us for any and all losses that we may suffer because of</span></p>
<p class="c16"><span class="c1">your breach of (a) this section, (b) any third party’s intellectual property
rights, or (c) applicable law. </span></p>
<p class="c6"><span class="c11">We may remove or edit your Content: </span><span class="c1">Although we have no
obligation to monitor any Contributions, we shall have the right to remove or edit any Contributions at any
time without notice if in our reasonable opinion we consider such Contributions harmful or in breach of
these Legal Terms. If we remove or edit any such Contributions, we may also suspend or disable your account
and report you to the authorities. </span></p>
<p class="c8"><span class="c9">3. </span><span class="c5">USER REPRESENTATIONS </span></p>
<p class="c4"><span class="c1">By using the Services, you represent and warrant that: (1) all registration
information you submit will be true, accurate, current, and complete; (2) you will maintain the accuracy of
such information and promptly update such registration information as necessary; (3) you have the legal
capacity and you agree to comply with these Legal Terms; (4) you are not a minor in the jurisdiction in
which you reside, or if a minor, you have received parental permission to use the Services; (5) you will not
access the Services through automated or non-human means, whether through a bot, script or otherwise; (6)
you will not use the Services for any illegal or unauthorized purpose; and (7) your use of the Services will
not violate any applicable law or regulation. </span></p>
<p class="c6"><span class="c1">If you provide any information that is untrue, inaccurate, not current, or
incomplete, we have the right to suspend or terminate your account and refuse any and all current or future
use of the Services (or any portion thereof). </span></p>
<h3 class="c8 c12" id="h.psrly8poy8jq"><span class="c42">4. </span><span class="c5">USER REGISTRATION </span></h3>
<p class="c14"><span class="c1">You may be required to register to use the Services. You agree to keep your password
confidential and will be responsible for all use of your account and password. We reserve the right to
remove, reclaim, or change a username you select if we determine, in our sole discretion, that such username
is inappropriate, obscene, or otherwise objectionable. </span></p>
<p class="c8"><span class="c5">5. PRODUCTS </span></p>
<p class="c4"><span class="c1">All products are subject to availability. We reserve the right to discontinue any
products at any time for any reason. Prices for all products are subject to change. </span></p>
<p class="c8"><span class="c9">6. </span><span class="c5">PURCHASES AND PAYMENT </span></p>
<p class="c15"><span class="c1">We accept the following forms of payment: </span></p>
<p class="c33"><span class="c1">- Visa </span></p>
<p class="c3"><span class="c1">- Mastercard </span></p>
<p class="c3"><span class="c1">- gpay </span></p>
<p class="c41"><span class="c1">You agree to provide current, complete, and accurate purchase and account
information for all purchases made via the Services. You further agree to promptly update account and
payment information, including email address, payment method, and payment card expiration date, so that we
can complete your transactions and contact you as needed. Sales tax will be added to the price of purchases
as deemed required by us. We may change prices at any time. All payments shall be in US dollars. </span></p>
<p class="c6"><span class="c1">You agree to pay all charges at the prices then in effect for your purchases and any
applicable shipping fees, and you authorize us to charge your chosen payment provider for any such amounts
upon placing your order. If your order is subject to recurring charges, then you consent to our charging
your payment method on a recurring basis without requiring your prior approval for each recurring charge,
until such time as you cancel the applicable order. We reserve the right to correct any errors or mistakes
in pricing, even if we have already requested or received payment. </span></p>
<p class="c6"><span class="c1">We reserve the right to refuse any order placed through the Services. We may, in our
sole discretion, limit or cancel quantities purchased per person, per household, or per order. These
restrictions may include orders placed by or under the same customer account, the same payment method,
and/or orders that use the same billing or shipping address. We reserve the right to limit or prohibit
orders that, in our sole judgment, appear to be placed by dealers, resellers, or distributors.</span></p>
<p class="c36"><span class="c5">7. REFUNDS POLICY </span></p>
<p class="c17"><span class="c1">All sales are final and no refund will be issued. </span></p>
<p class="c18"><span class="c5">8. SOFTWARE </span></p>
<p class="c14"><span class="c1">We may include software for use in connection with our Services. If such software is
accompanied by an end user license agreement ("EULA"), the terms of the EULA will govern your use
of the software. If such software is not accompanied by a EULA, then we grant to you a non-exclusive,
revocable, personal, and non-transferable license to use such software solely in connection with our
services and in accordance with these Legal Terms. Any software and any related documentation is provided
"AS IS" without warranty of any kind, either express or implied, including, without limitation,
the implied warranties of merchantability, fitness for a particular purpose, or non-infringement. You accept
any and all risk arising out of use or performance of any software. You may not reproduce or redistribute
any software except in accordance with the EULA or these Legal Terms. </span></p>
<p class="c46"><span class="c9">9. </span><span class="c5">PROHIBITED ACTIVITIES </span></p>
<p class="c14"><span class="c1">You may not access or use the Services for any purpose other than that for which we
make the Services available. The Services may not be used in connection with any commercial endeavors except
those that are specifically endorsed or approved by us. </span></p>
<p class="c8"><span class="c1">As a user of the Services, you agree not to: </span></p>
<p class="c40"><span class="c1">Systematically retrieve data or other content from the Services to create or
compile, directly or indirectly, a collection, compilation, database, or directory without written
permission from us. </span></p>
<p class="c13"><span class="c1">Trick, defraud, or mislead us and other users, especially in any attempt to learn
sensitive account information such as user passwords. </span></p>
<p class="c13"><span class="c1">Circumvent, disable, or otherwise interfere with security-related features of the
Services, including features that prevent or restrict the use or copying of any Content or enforce
limitations on the use of the Services and/or the Content contained therein. </span></p>
<p class="c29"><span class="c1">Disparage, tarnish, or otherwise harm, in our opinion, us and/or the Services. Use
any information obtained from the Services in order to harass, abuse, or harm another person. </span></p>
<p class="c13"><span class="c1">Make improper use of our support services or submit false reports of abuse or
misconduct. </span></p>
<p class="c13"><span class="c1">Use the Services in a manner inconsistent with any applicable laws or regulations.
</span></p>
<p class="c32"><span class="c1">Engage in unauthorized framing of or linking to the Services. </span></p>
<p class="c24"><span class="c1">Upload or transmit (or attempt to upload or to transmit) viruses, Trojan horses, or
other material, including excessive use of capital letters and spamming (continuous posting of repetitive
text), that interferes with any party’s uninterrupted use and enjoyment of the Services or modifies,
impairs, disrupts, alters, or interferes with the use, features, functions, operation, or maintenance of the
Services. </span></p>
<p class="c13"><span class="c1">Engage in any automated use of the system, such as using scripts to send comments or
messages, or using any data mining, robots, or similar data gathering and extraction tools. </span></p>
<p class="c13"><span class="c1">Delete the copyright or other proprietary rights notice from any Content. Attempt to
impersonate another user or person or use the username of another user. </span></p>
<p class="c13"><span class="c1">Upload or transmit (or attempt to upload or to transmit) any material that acts as a
passive or active information collection or transmission mechanism, including without limitation, clear
graphics interchange formats ("gifs"), 1×1 pixels, web bugs, cookies, or other similar
devices (sometimes referred to as "spyware" or "passive collection mechanisms" or
"pcms"). </span></p>
<p class="c13"><span class="c1">Interfere with, disrupt, or create an undue burden on the Services or the networks
or services connected to the Services. </span></p>
<p class="c13"><span class="c1">Harass, annoy, intimidate, or threaten any of our employees or agents engaged in
providing any portion of the Services to you. </span></p>
<p class="c13"><span class="c1">Attempt to bypass any measures of the Services designed to prevent or restrict
access to the Services, or any portion of the Services.</span></p>
<p class="c16"><span class="c1">Copy or adapt the Services' software, including but not limited to Flash, PHP,
HTML, JavaScript, or other code. </span></p>
<p class="c13"><span class="c1">Except as permitted by applicable law, decipher, decompile, disassemble, or reverse
engineer any of the software comprising or in any way making up a part of the Services. </span></p>
<p class="c13"><span class="c1">Except as may be the result of standard search engine or Internet browser usage,
use, launch, develop, or distribute any automated system, including without limitation, any spider, robot,
cheat utility, scraper, or offline reader that accesses the Services, or use or launch any unauthorized
script or other software. </span></p>
<p class="c13"><span class="c1">Use a buying agent or purchasing agent to make purchases on the Services. Make any
unauthorized use of the Services, including collecting usernames and/or email addresses of users by
electronic or other means for the purpose of sending unsolicited email, or creating user accounts by
automated means or under false pretenses. </span></p>
<p class="c13"><span class="c1">Use the Services as part of any effort to compete with us or otherwise use the
Services and/or the Content for any revenue-generating endeavor or commercial enterprise. </span></p>
<p class="c13"><span class="c1">Use the Services to advertise or offer to sell goods and services. Sell or otherwise
transfer your profile. </span></p>
<p class="c8"><span class="c9">10. </span><span class="c5">USER GENERATED CONTRIBUTIONS </span></p>
<p class="c4"><span class="c1">The Services may invite you to chat, contribute to, or participate in blogs, message
boards, online forums, and other functionality, and may provide you with the opportunity to create, submit,
post, display, transmit, perform, publish, distribute, or broadcast content and materials to us or on the
Services, including but not limited to text, writings, video, audio, photographs, graphics, comments,
suggestions, or personal information or other material (collectively, "Contributions").
Contributions may be viewable by other users of the Services and through third-party websites. As such, any
Contributions you transmit may be treated as non-confidential and non proprietary. When you create or make
available any Contributions, you thereby represent and warrant that: </span></p>
<p class="c35"><span class="c1">The creation, distribution, transmission, public display, or performance, and the
accessing, downloading, or copying of your Contributions do not and will not infringe the proprietary
rights, including but not limited to the copyright, patent, trademark, trade secret, or moral rights of any
third party. </span></p>
<p class="c47"><span class="c1">You are the creator and owner of or have the necessary licenses, rights, consents,
releases, and permissions to use and to authorize us, the Services, and other users of the Services to use
your Contributions in any manner contemplated by the Services and these Legal Terms. </span></p>
<p class="c13"><span class="c1">You have the written consent, release, and/or permission of each and every
identifiable individual person in your Contributions to use the name or likeness of each and every such
identifiable individual person to enable inclusion and use of your Contributions in any manner contemplated
by the Services and these Legal Terms. </span></p>
<p class="c32"><span class="c1">Your Contributions are not false, inaccurate, or misleading. </span></p>
<p class="c24"><span class="c1">Your Contributions are not unsolicited or unauthorized advertising, promotional
materials, pyramid schemes, chain letters, spam, mass mailings, or other forms of solicitation. </span></p>
<p class="c13"><span class="c1">Your Contributions are not obscene, lewd, lascivious, filthy, violent, harassing,
libelous, slanderous, or otherwise objectionable (as determined by us). Your Contributions do not ridicule,
mock, disparage, intimidate, or abuse anyone. </span></p>
<p class="c13"><span class="c1">Your Contributions are not used to harass or threaten (in the legal sense of those
terms) any other person and to promote violence against a specific person or class of people. </span></p>
<p class="c13"><span class="c1">Your Contributions do not violate any applicable law, regulation, or rule. Your
Contributions do not violate the privacy or publicity rights of any third party. </span></p>
<p class="c13"><span class="c1">Your Contributions do not violate any applicable law concerning child pornography,