-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.xml
More file actions
1125 lines (1125 loc) · 65.1 KB
/
index.xml
File metadata and controls
1125 lines (1125 loc) · 65.1 KB
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
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>PaperDebugger</title><link>/blog/</link><description>PaperDebugger</description><generator>Hugo -- gohugo.io</generator><language>en</language><managingEditor>privacy@paperdebugger.com
(Paper Debugger)</managingEditor><lastBuildDate>Mon, 08 Dec 2025 22:29:00 +0800</lastBuildDate><atom:link href="/blog/index.xml" rel="self" type="application/rss+xml"/><item><title>🆘 Service Outage on Dec 8</title><link>/blog/posts/dec-8-outage/</link><pubDate>Mon, 08 Dec 2025 22:29:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/dec-8-outage/</guid><description><p>Due to some technical problem from LLM providers, we are trying to bring the service back. Please retry later.</p>
<p>You can join our <strong><a href="https://discord.gg/WwTMzzt9xD">Discord</a></strong>, or WeChat group (paperdebugger) to get the latest update.</p>
<div style="display: flex; gap: 1rem; justify-content: center;">
<img src="https://www.paperdebugger.com/blog/posts/dec-8-outage/discord_qr.png" alt="Discord QR Code" style="width: 49%; border-radius: 0.5rem;" />
<img src="https://www.paperdebugger.com/blog/posts/dec-8-outage/wechat.jpg" alt="WeChat QR Code" style="width: 49%; border-radius: 0.5rem;" />
</div></description></item><item><title>v2.9.1 Open Source Release</title><link>/blog/posts/2.9.1/</link><pubDate>Sat, 30 Aug 2025 00:00:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/2.9.1/</guid><description><p>Paper Debugger now is open source under AGPL-3.0 license</p>
<p><a href="https://github.com/PaperDebugger/PaperDebugger" target="_blank"><img src="https://www.paperdebugger.com/blog/posts/2.9.1/branding.png" alt="image" style="width: 100%; border-radius: 0.5rem;" /></a></p>
<p>Paper Debugger now supports <strong>self-hosted</strong> deployment. You can use our compiled <a href="https://chromewebstore.google.com/detail/paperdebugger/dfkedikhakpapbfcnbpmfhpklndgiaog">Chrome Extension</a> and set your <a href="https://github.com/PaperDebugger/paperdebugger#custom-endpoint-configuration">backend endpoint</a>.</p>
<p><strong>🐛 Bug Fixes</strong></p>
<ul>
<li>Fixed word wrapping issues for long code blocks and <div> elements.</li>
</ul>
<p><strong>🛠 Code Refactoring</strong></p>
<ul>
<li>Streamlined internal structure for better maintainability.</li>
<li>Optimized draggable zones for smoother interactions.</li>
</ul>
<p><strong>🚀 New Features</strong></p>
<ul>
<li>User-level instructions: personalize the experience with tailored guidance.</li>
<li>Project-level instructions: define instructions that apply across projects.</li>
</ul>
<p><strong>🧹 Codebase Cleanup</strong></p>
<ul>
<li>Removed ingress, replaced with Cloudflared integration.</li>
<li>Deleted unused Go code.</li>
<li>Enhanced CI/CD pipeline for faster, more reliable deployments.</li>
</ul>
<p><strong>📖 Documentation</strong></p>
<ul>
<li>Improved setup guide, verified on a fresh Ubuntu installation.</li>
</ul></description></item><item><title>v2.7.4 Minor Fixes</title><link>/blog/posts/2.7.4/</link><pubDate>Wed, 30 Jul 2025 12:00:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/2.7.4/</guid><description><p>Paper Debugger v2.7.4 released.</p>
<p><strong>feat:</strong> &ldquo;always minimal mode&rdquo;, &ldquo;disable line wrap&rdquo;, &ldquo;hide avatar&rdquo;</p>
<p><strong>fix:</strong> bugs in latexpand</p>
<p><strong>fix:</strong> blank screen issue when scrolling the result</p>
<img src="https://www.paperdebugger.com/blog/posts/2.7.4/minimal_mode.png" alt="image" style="width: 50%; border-radius: 0.5rem;" />
<p><strong>fix:</strong> unwanted span in debug mode.</p></description></item><item><title>v2.0 Paper Score</title><link>/blog/posts/2.0/</link><pubDate>Sun, 15 Jun 2025 12:00:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/2.0/</guid><description><video width="100%" controls poster="/blog/posts/2.0/preview.png">
<source src="https://www.paperdebugger.com/blog/posts/2.0/preview.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p><strong>feat</strong>: PaperScore Infra <a href="https://github.com/PaperDebugger/overleaf/pull/129">@imwithye #129</a></p>
<p><strong>feat</strong>: Streaming API + LLM Function Call <a href="https://github.com/PaperDebugger/overleaf/pull/146">@Junyi-99 #146</a></p>
<p><strong>feat</strong>: Safari Support <a href="https://github.com/PaperDebugger/overleaf/pull/157/commits/8413974b5bec71636cd485cfd5a1b3289934bf63">@Junyi-99 #157</a></p>
<p><strong>change</strong>: New UI/UX Design <a href="https://github.com/PaperDebugger/overleaf/pull/162">@Junyi-99 #162</a></p>
<hr>
<p><strong>feat</strong>: OAuth2.0 Login Support <a href="https://github.com/PaperDebugger/overleaf/pull/152">@Junyi-99 #152</a></p>
<p><strong>feat</strong>: Code Quality Ensurance <a href="https://github.com/PaperDebugger/overleaf/pull/150">@Junyi-99 #146-150</a></p>
<p><strong>feat</strong>: Safari CI/CD <a href="https://github.com/PaperDebugger/overleaf/pull/162">@Junyi-99 #162</a></p>
<p><strong>fix</strong>: Minor Fixes <a href="https://github.com/PaperDebugger/overleaf/pull/161">@Junyi-99 #161</a></p></description></item><item><title>v1.3 Prompt Library</title><link>/blog/posts/1.3/</link><pubDate>Mon, 14 Apr 2025 12:00:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/1.3/</guid><description><p><strong>feat:</strong> prompt library <a href="https://github.com/PaperDebugger/overleaf/pull/94">@imwithye #94</a> <a href="https://github.com/PaperDebugger/overleaf/pull/97">#97</a></p>
<p><strong>feat:</strong> prompt actions in the InputArea <a href="https://github.com/PaperDebugger/overleaf/pull/95">@imwithye #95</a></p>
<p><strong>feat:</strong> model selection in chat <a href="https://github.com/PaperDebugger/overleaf/pull/92">@Bcpeh #92</a></p>
<img src="https://www.paperdebugger.com/blog/posts/1.3/image.png" alt="image" style="width: 50%" />
<hr>
<p><strong>change:</strong> new logo <a href="https://github.com/PaperDebugger/overleaf/pull/102">@imwithye #102</a></p>
<img src="https://www.paperdebugger.com/blog/posts/1.3/logo.png" alt="image" style="width: 50%" />
<hr>
<p><strong>feat:</strong> user customized prompt library <a href="https://github.com/PaperDebugger/overleaf/pull/108">@Lilliansiyin #108</a></p>
<img src="https://www.paperdebugger.com/blog/posts/1.3/prompt-library.png" alt="image" style="width: 50%" />
<hr>
<p><strong>feat:</strong> auto sync if project is outdated <a href="https://github.com/PaperDebugger/overleaf/pull/101">@imwithye #101</a></p>
<p><strong>feat:</strong> settings now synced with cloud <a href="https://github.com/PaperDebugger/overleaf/pull/110">@Bcpeh #110</a></p>
<p><strong>feat:</strong> GoogleLogin now supports account selection <a href="https://github.com/PaperDebugger/overleaf/pull/84">@Bcpeh #84</a></p>
<p><strong>fix:</strong> incorrect message counter <a href="https://github.com/PaperDebugger/overleaf/pull/98">@imwithye #98</a></p>
<p><strong>remove:</strong> <code>pouchdb</code> in frontend. <a href="https://github.com/PaperDebugger/overleaf/pull/113">@imwithye @Junyi-99 #113</a></p>
<p><strong>change:</strong> <code>obtain</code> &amp; <code>sync</code> project to server (from <code>zip</code> to <code>websocket</code>)</p>
<ul>
<li>Sync project to server API <a href="https://github.com/PaperDebugger/overleaf/pull/88">@imwithye #88</a></li>
<li><code>createSnapshot</code> for project using <code>websocket</code> <a href="https://github.com/PaperDebugger/overleaf/pull/89">@Junyi-99 #89</a></li>
<li>connect<code>sync button</code> with <code>upsertProject</code> API <a href="https://github.com/PaperDebugger/overleaf/pull/91">@Lilliansiyin #91</a></li>
</ul>
<p><a href="https://www.paperdebugger.com/blog/posts/1.3/paperdebugger-chrome-extension-prd.zip">Download</a></p>
<!-- > **Note:** This is a breaking change. We will release soon. --></description></item><item><title>v1.2.6 Conversaion History</title><link>/blog/posts/1.2.6/</link><pubDate>Sat, 22 Mar 2025 16:49:00 +0800</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/posts/1.2.6/</guid><description><p><strong>feat:</strong> implement conversation api</p>
<p><strong>feat:</strong> conversation history</p>
<p><strong>fix:</strong> handle failed in google auth, fix the short toast time</p>
<p><a href="https://github.com/PaperDebugger/overleaf/actions/runs/14007027530/artifacts/2800610409">Download</a></p></description></item><item><title/><link>/blog/cookie/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/cookie/</guid><description><p>&lt;&gt;
<Title level={3}>Cookie Policy</Title>
<Paragraph>
<Text strong>Updated: {updated}</Text>
</Paragraph>
<Paragraph>
Below is information about how {company} (“we”) use cookies and other
similar technology on this website.
</Paragraph>
<Paragraph>
This policy is effective as of {updated}. Please note that this privacy
statement will be updated from time to time. We encourage you to check
this page regularly for any changes.
</Paragraph></p>
<pre><code> &lt;Title level={4}&gt;What are cookies?&lt;/Title&gt;
&lt;Paragraph&gt;
Cookies are small text files that are stored on your computer or mobile
device when you visit a website. Cookies are widely used by website
owners to make their websites work, or to work more efficiently, as well
as to provide reporting information.
&lt;/Paragraph&gt;
&lt;Title level={4}&gt;How do we use cookies?&lt;/Title&gt;
&lt;Paragraph&gt;
We use cookies to improve your experience on our website, including to:
&lt;/Paragraph&gt;
{/* &lt;Title level={4}&gt;What types of cookies do we use?&lt;/Title&gt;
&lt;Paragraph&gt;
We use the following types of cookies:
&lt;/Paragraph&gt; */}
&lt;Title level={4}&gt;
Does {company} use cookies for marketing and analytics?
&lt;/Title&gt;
&lt;Paragraph&gt;
Yes, we use cookies for marketing and analytics. We use cookies to
understand how our users interact with our website, to improve our
website, and to provide you with personalized content and advertising.
&lt;/Paragraph&gt;
&lt;Title level={4}&gt;
What if I don’t want cookies or similar tracking technoligies?
&lt;/Title&gt;
&lt;Paragraph&gt;
You can set your browser to refuse all or some browser cookies, or to
alert you when websites set or access cookies. If you disable or refuse
cookies, please note that some parts of this website may become
inaccessible or not function properly.
&lt;/Paragraph&gt;
&lt;/&gt;
</code></pre></description></item><item><title>Privacy Policy</title><link>/blog/privacy/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/privacy/</guid><description><p><small>Updated: March 28, 2025</small></p>
<p>This Notice applies to the websites at <a href="https://www.paperdebugger.com">paperdebugger.com</a> and related services
(“PaperDebugger”).</p>
<!-- PaperDebugger is operated by COMPANY, with
{companyRegistraionInfo} (“COMPANY” or “we”). -->
<p>We respect your concerns about privacy and value our relationship with you. This
Notice explains what personal data we collect, how we may use and
manage it and the rights you may have in relation to such personal
data. When we refer to “personal data” in this Notice, we mean
information relating to an identified or identifiable individual that
we collect and use in connection with PaperDebugger; not aggregate or
other anonymised data or information we process on behalf of our
customers.</p>
<h2 id="how-do-we-collect-and-use-personal-data" >
<div>
<a href="#how-do-we-collect-and-use-personal-data">
#
</a>
How do we collect and use personal data?
</div>
</h2>
<p>We collect personal data in the following ways:</p>
<ul>
<li>
<p><strong>information you provide to us directly online.</strong></p>
<p>For example, when you register to use PaperDebugger, complete one
of our web forms, subscribe to updates or make a support request,
we collect the personal data you provide, like your name, email
address and other basic contact details / professional
information. We will use this information to enable you to access
and use PaperDebugger or fulfil the request you&rsquo;ve made and to
track and improve the quality of the services we provide, which
may involve asking you about your experience with PaperDebugger.
You may also provide us with additional information to access and
use particular features within PaperDebugger, such as to populate
your profile, which you may update within your account settings.
More occasional examples could include where you respond to a
survey, complete a support request or enter into a competition.</p>
</li>
<li>
<p><strong>information we collect from your use of PaperDebugger.</strong></p>
<p>When you use PaperDebugger, we may collect information about that
usage and other technical information, such as your IP address,
browser type and any referring website addresses. We may combine
this automatically collected log information with other
information we collect about you and use it to keep a record of
our interaction and to enable us to support, personalize and
improve PaperDebugger. We may also collect this type of
information using cookies and other similar technologies — please
see our cookie policy for further details.</p>
</li>
<li>
<p><strong>information you provide to us in person.</strong></p>
<p>For example, when you visit one of our exhibition booths or attend one
of our events, you may provide us with your contact details. We
will use this information to answer your enquiries or provide
other information requested by you.</p>
</li>
<li>
<p><strong>information we collect from our other interactions / business
dealings.</strong></p>
<p>For example, if you attend a webinar, contact us via social media
or otherwise interact with our business, including as a
representative of a current / prospective customer, supplier or
business partner, we may track and make a record of those
interactions, which may contain personal data. If you visit one of
our offices, this may be captured on CCTV and used for security
reasons; and photographs / videos may be taken at our events and
used for promotional purposes, details of which will be available
on request at the relevant site.</p>
</li>
<li>
<p><strong>information provided to us by other PaperDebugger users.</strong></p>
<p>We may receive personal data (for example, your email address)
from other PaperDebugger users or customers, for example if they
have tried to share something with you or tried to refer
PaperDebugger to you.</p>
</li>
<li>
<p><strong>information we collect from third parties or publicly
available sources.</strong></p>
<p>We may collect information you post online (e.g. social media)
about us, our products/services and/or our industry (including our
competitors), for market research and product improvement
purposes.</p>
</li>
</ul>
<p>In all the above cases, where we have a relationship with you, we may
also use the personal data we collect to manage and keep a record of
that relationship and other business administration purposes you’d
reasonably expect and, subject always to your preferences, to provide
information we think may be of interest to you.</p>
<p>In many of the above cases, we may also use the information collected
to create aggregate or other non-personal data to enable us to
benchmark and improve PaperDebugger and for other analytical /
research purposes.</p>
<p>Unless we specifically request it, you should not provide us with any
sensitive personal information. If you provide personal data to us
about someone else (such as one of your colleagues), please ensure
that you have their permission to do so and that they’re aware of the
contents of this Notice.</p>
<h2 id="the-legal-basis-for-our-use-of-your-personal-data" >
<div>
<a href="#the-legal-basis-for-our-use-of-your-personal-data">
#
</a>
The legal basis for our use of your personal data
</div>
</h2>
<p>In order to comply with European data privacy laws, we are required to
set out the legal bases for our use of your personal data, which are
as follows:</p>
<ul>
<li>where you have given us your explicit consent, which you can
withdraw at any time. For example, we rely on your consent to
fulfill specific requests you’ve made, such as to receive our blog
emails, or provide information you’ve opted-in to receive;</li>
<li>where the processing is necessary for the performance of our
contract with you, or to enter into such a contract. For example,
if you register to use PaperDebugger, we will need to use your
details to set-up and administer your account;</li>
<li>where the processing is necessary to comply with our legal
obligations; or</li>
<li>the processing is in our legitimate interests, provided these
are not overridden by your individual rights. For example, we rely
on our legitimate interests:
<ul>
<li>to retain personal data that’s associated with content
you’ve made public, so that personal information, associated
with that content can be preserved.</li>
<li>to contact you when you’ve not previously given us your
consent to do so, such as to tell you about things that we
think might be of interest to you, or to ask for your feedback
or opinion on us or our products/services.</li>
<li>to collect publicly available information, such as posts on
social media, for market research and product improvement
purposes.</li>
<li>to use CCTV on our premises for security reasons.</li>
<li>to create aggregated or other non-personal data from your
personal data.</li>
</ul>
</li>
</ul>
<h2 id="who-we-share-your-personal-data-with" >
<div>
<a href="#who-we-share-your-personal-data-with">
#
</a>
Who we share your personal data with
</div>
</h2>
<p>We may share your personal data within our corporate group on a
confidential basis for our internal administrative, billing and other
business purposes, and to fulfill a request that you might have made.
We do not generally disclose or share personal data with third
parties, except where it’s necessary for legitimate business reasons,
such as:</p>
<p>to the agents, advisers and service providers that assist us in
running / we use to administer our business; to the subcontractors and
service providers* we use to provide and support PaperDebugger,
including, for example, providers of hosting, security and
infrastructure and customer support platforms; if you express interest
in an initiative we’re involved in, to other participants in such
initiative; if required to enable the integration or use of third
party resources accessed or procured via / used on PaperDebugger; if
part of our business is sold to or integrated with another business,
to our advisers and any prospective purchasers (and their advisers);
in such circumstances for which you have given your consent; if
necessary for the performance of the contract we have with you or in
order to enforce any claims we are entitled to; if required by law or
ordered by a court; if you register for a webinar or other event, to
other attendees and co-organisers of that event; in the case of your
PaperDebugger profile, subject to your preferences (which you can
change at any time, subject to limits on managed accounts), or details
associated with content you’ve chosen to make public, to other users
of PaperDebugger; if someone else is paying for your account (for
example, the university to which you belong) or you join a group on
PaperDebugger, either by accepting an invitation to that group or by
confirming your affiliation to that group (for example, by confirming
your university email address), to administrators of that grouping
(for example university staff), who may have access to information
such as: your email address, profile information, and aggregate
statistics on usage; in the case of personal data you share in any
PaperDebugger community services you participate in (for example
blogs, forums, and wikis), to the public.</p>
<!-- We include appropriate confidentiality and security obligations in
our contracts with our service providers and only permit them to
process your personal data for specified purposes and in accordance
with our instructions (not for their own purposes). Such service
providers include: {billingService} for billing, {customerService}
for customer relationship management, {productFeedbackService} for
product feedback, and may also include the third parties listed
here. -->
<p>Note, where you are using PaperDebugger pursuant to an organization’s
subscription, that organization may have certain admin rights over
your account, including the ability to track your usage and, in the
case of managed accounts, the ability to close your account and
access, delete and/or share your stuff, including by re-assigning
projects; and we will act in accordance with any instructions they may
give in respect of such information (if any) they may provide to us
about you or which we may collect on their behalf (whose policies -
not this policy - will govern how the personal data we process on
their behalf is used).</p>
<h2 id="security" >
<div>
<a href="#security">
#
</a>
Security
</div>
</h2>
<p>We take appropriate technical and organizational security measures to
protect personal data from accidental or unlawful destruction,
accidental loss and unauthorized access, destruction, misuse,
modification or disclosure, including generally accepted standards
designed to protect personal data provided to us, both during
transmission and once it is received. Please see our security overview
for details.</p>
<h2 id="retention-of-your-personal-data" >
<div>
<a href="#retention-of-your-personal-data">
#
</a>
Retention of your personal data
</div>
</h2>
<p>We only keep your personal data for as long as it is necessary for the
purposes for which it was collected or as otherwise permitted by law,
after which it will be destroyed, erased or anonymised. For example,
if you are an PaperDebugger user, we will delete your account profile
if you close your account, but may however retain certain limited
personal data about you to record your association with content you’ve
made public, and as required to comply with applicable law.</p>
<!-- {/* ## International transfers
While we are based in the Singapore, parts of our operations and much of our product infrastructure is based elsewhere, including the United States. This means that in order to run our business and operate PaperDebugger, personal data may be transferred to the USA, as well as to other locations where our affiliates and service providers are based. Whenever we make such transfers, we will ensure an appropriate level of protection is afforded to your personal data, which in the case of personal data originating from the UK or the European Economic Area (“EEA”) shall involve implementing at least one of the following safeguards:
making sure the destination country has been deemed to provide an adequate level of protection for personal data;
by using model form contracts that have been officially declared to afford your personal data an appropriate protection;
relying on an alternative recognised compliance standard for the lawful transfer of personal data.
Please email us at privacy@overleaf.com if you would like more information about these safeguards.
*/}
{/* ## EU-US Data Privacy Framework Notice
*/} -->
<h2 id="marketing" >
<div>
<a href="#marketing">
#
</a>
Marketing
</div>
</h2>
<p>Depending on your preferences, we may contact you about things we
think might be of interest to you. Some of these messages may be
tailored to you, based on your interests (e.g. previous browsing
activity), public profile and posts (e.g. on social media), use of our
products/services and other information we may hold.</p>
<p>If you no longer wish to receive such communications, you can click
the unsubscribe button. Note, even if you unsubscribe from marketing
messages, we may still send you emails about the services you use,
such as details of new functionality / changes to legal terms of use.</p>
<h2 id="cookies" >
<div>
<a href="#cookies">
#
</a>
Cookies
</div>
</h2>
<p>Please see our cookie policy for information on how we collect
personal data using cookies and similar technologies.</p>
<h2 id="your-rights" >
<div>
<a href="#your-rights">
#
</a>
Your rights
</div>
</h2>
<p>Various data privacy laws give rights to individuals in respect of
personal data that organisations hold about them. For example, under
European data privacy laws, you may be entitled:</p>
<ul>
<li>to request a copy of the personal data that we hold about you;</li>
<li>to object to the processing of your personal data; or</li>
<li>to request that your personal data is rectified or deleted, or
its processing limited.</li>
</ul>
<p>To make any requests regarding your personal data, please email us at
<a href="mailto:privacy@paperdebugger.com">privacy@paperdebugger.com</a>. We will comply with any such requests as required in
accordance with applicable law. Please be aware, however, that there
are typically a number of limitations to these rights, and there may
be circumstances where we’re not able to comply with your request.</p>
<h3 id="additional-information-for-certain-jurisdictions" >
<div>
<a href="#additional-information-for-certain-jurisdictions">
##
</a>
Additional information for certain jurisdictions
</div>
</h3>
<p>For additional information relevant to certain jurisdictions about the
personal data we collect, how we may use and manage it and the rights
you may have in relation to such personal data, please visit this
page.</p>
<h2 id="third-party-sites" >
<div>
<a href="#third-party-sites">
#
</a>
Third party sites
</div>
</h2>
<p>If any part of PaperDebugger is made available on or through third
party websites or other resources, includes links to such resources,
or other resources contain links to any part of PaperDebugger, this is
done for convenience only. We recommend that you check the privacy and
security policies of such resources as they are not subject to this
Notice.</p>
<h2 id="contact-details" >
<div>
<a href="#contact-details">
#
</a>
Contact details
</div>
</h2>
<p>If you would like any further information, or have any questions or
concerns, regarding your personal data, as a first step, please email
us at <a href="mailto:privacy@paperdebugger.com">privacy@paperdebugger.com</a>. <!-- or write to us at {companyLoation}. --></p>
<!-- {/* If you are located within the EEA, you may also contact our EU representative: DS Digital Science GmbH, Gänsheidestraße 26, 70184 Stuttgart, Germany (marked “FAO PaperDebugger GDPR Representative”). */} -->
<p>You have the right to make a complaint at any time to your local
supervisory authority for data protection issues. We would, however,
appreciate the chance to deal with your concerns in the first
instance.</p>
<h2 id="changes-to-this-notice" >
<div>
<a href="#changes-to-this-notice">
#
</a>
Changes to this Notice
</div>
</h2>
<p>We reserve the right to modify or replace this Notice at any time by
posting the revised Notice on our website. You are responsible for
reviewing and becoming familiar with any such change each time you
access any part of PaperDebugger.</p></description></item><item><title>Terms of Service</title><link>/blog/terms/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><author>privacy@paperdebugger.com (Paper Debugger)</author><guid>/blog/terms/</guid><description><p><small>Updated: March 28, 2025</small></p>
<p>These terms of service (the “<strong>Terms</strong>”) govern your
access to and use of the website at
<a href="https://www.paperdebugger.com">paperdebugger.com</a> (the &ldquo;Site&rdquo;) and the products
and services made available via or in connection with the Site,
including related apps and browser extensions (the “Services”)
provided by PaperDebugger Inc. (“we” or “our” or &ldquo;PaperDebugger&rdquo;), so
please carefully read them before using the Services.</p>
<p>By using the Services, you agree to be bound by these Terms. If you
are using the Services on behalf of an organization, you are agreeing
to these Terms for that organization and promising that you have the
authority to bind that organization to these terms. In that case,
“you” and “your” will refer to that organization.</p>
<p>By accessing or otherwise using any part of the Services, including to
register an account, you acknowledge your agreement to these Terms, in
consideration for the mutual promises and obligations contained herein
and to the exclusion (to the maximum extent permitted by applicable
law) of all other terms and/or conditions which you may purport to
apply, including under any purchase order or similar document, even if
they do not explicitly contradict.</p>
<p>You may use the Services only in compliance with these Terms. You may
use the Services only if you have the power to form a contract with us
and are not barred under any applicable laws from doing so, including
if you are too young to enter into a binding contract or because you
are based in a sanctioned country or are on a sanctions list. The
Services may continue to change over time as we refine and add more
features. We may stop, suspend, or modify the Services at any time
without prior notice to you (but recognising your work is important to
you, please read the note below on access to your files in these
circumstances). We may also remove any content from our Services at
our discretion.</p>
<h2 id="your-stuff--your-privacy" >
<div>
<a href="#your-stuff--your-privacy">
#
</a>
Your Stuff &amp; Your Privacy
</div>
</h2>
<p>By using our Services, you may create or provide us with information,
files, and folders via our products, services, and otherwise
(together, “your stuff”). We don’t claim any ownership of your stuff.
These Terms only grant us rights to use your stuff to fulfill a
request you&rsquo;ve made and otherwise provide the Services, as explained
below.</p>
<p>These include rights to store and reformat and to analyze for
aggregate reporting and analysis purposes, and will involve us making
choices in the way we technically administer our Services, for
example, how we redundantly backup data to keep it safe. These rights
extend to allow us to use our affiliates and trusted third parties to
provide the Services, for example Google Cloud Platform, which
provides our main storage space.</p>
<p>To be clear, aside from the rare exceptions we identify in our Privacy
Notice or as explained in the ‘Managed Accounts’ section, we won’t
share your stuff with others for any purpose unless you direct or have
authorized us to, including by choosing to connect your PaperDebugger
account to a third party app. YOU EXPRESSLY ACKNOWLEDGE THAT IF YOU
HAVE A MANAGED ACCOUNT, THE MANAGER ORGANIZATION WILL HAVE CERTAIN
ADMIN RIGHTS OVER SUCH AN ACCOUNT AND ACCESS TO / CONTROL OVER YOUR
STUFF.</p>
<p>You are solely responsible for your conduct, the content of your
stuff, and your communications with others while using the Services.
For example, it’s your responsibility to ensure that you have the
rights or permission needed to comply with these Terms.</p>
<p>We may choose to review public content for compliance with our
community guidelines, but you acknowledge that we have no obligation
to review or monitor any information on the Services. We are not
responsible for the accuracy, completeness, appropriateness, or
legality of your stuff, user posts, or any other information you
provide or may be able to access using the Services.</p>
<p>Although we reserve the right to stop, suspend, or modify the Services
at any time without prior notice to you, we recognise that your stuff
is important to you, and that you may wish to retrieve your stuff from
PaperDebugger in this event. In the case of individual accounts, we
will make reasonable effort to contact you in such circumstances, and
aim to keep your stuff available for retrieval from PaperDebugger in
read-only form for up to 3 months beyond the time of suspension (or
otherwise) of the Services. However, for other types of account such
as managed accounts (see ‘Managed Accounts’ section), your stuff may
not be directly retrievable by you.</p>
<h2 id="sharing-your-stuff" >
<div>
<a href="#sharing-your-stuff">
#
</a>
Sharing Your Stuff
</div>
</h2>
<p>The Services provide features that allow you to share your stuff with
others (including third-party apps that you use to access your PaperDebugger account or that you connect your account with) or to
make it public. There are many things that may happen with your stuff
once it’s been shared or made public (for example, people may copy it,
modify it, re-share it). Please therefore consider carefully what you
choose to share or make public and that you have all necessary rights
and permissions to do so. We will not have any responsibility arising
from the sharing of your stuff.</p>
<h2 id="registering-with-us" >
<div>
<a href="#registering-with-us">
#
</a>
Registering with Us
</div>
</h2>
<p>When registering to use a Service you must choose a username and
password, unless you use a single sign-on (SSO) option where
supported. You are responsible for all actions taken under your chosen
username and password, even if you have not authorized them, which you
will keep private and not allow anyone else to use.</p>
<p>You must ensure that the information you provide is accurate and
truthful, and to tell us promptly if it changes.</p>
<p>You should immediately notify us of any unauthorized use of your
account and update your user credentials if you suspect that they are
not secure. You acknowledge that if you wish to protect your
transmission of data or files to PaperDebugger, it is your
responsibility to use a secure encrypted connection to communicate
with the Services.</p>
<h2 id="managed-accounts" >
<div>
<a href="#managed-accounts">
#
</a>
Managed Accounts
</div>
</h2>
<p>If your account is a managed account, you are part of a managed PaperDebugger
subscription controlled by the owner of that subscription (the “<b>Manager Organization</b>”), who
typically pays for it. We have entered into a separate contract to set
up the managed subscription, which contains our commitment to provide
the Services and look after your stuff (which we will owe to the
Manager Organization), so that you and others could join. Importantly,
the Manager Organization will have admin rights over your account and
control over your stuff. For example, the Manager Organization will be
able to close your account (managed users cannot do this themselves)
and access, delete and/or share your stuff, including by re-assigning
projects; and by joining a managed PaperDebugger subscription or using
a managed account, you give us all permissions as may be required for
us to act in accordance with their directions and requests in respect
of your PaperDebugger account and stuff. These permissions, which
cannot be revoked, give the Manager Organization ultimate control of
your account and stuff, which will be subject to any ownership or
other terms that you have agreed with the Owning Subscription. You
should review these terms and the Manager Organization’s policies
before joining a managed PaperDebugger subscription or using a managed
account, as, for example, they may explain who owns content you create
using a managed account, and how the Manager Organization will use it.</p>
<p>You cannot change from a managed to an unmanaged account. Therefore,
it is important that you consider whether a managed account is right
for you before you register for one or agree to transfer an existing
unmanaged account to a managed account.</p>
<h2 id="paperdebugger-ai" >
<div>
<a href="#paperdebugger-ai">
#
</a>
PaperDebugger AI
</div>
</h2>
<p>“Input” means an input you enter into the PaperDebugger AI Tool; and
“Output” means an output generated and returned to you by the
PaperDebugger AI Tool based on your Input.</p>
<p>Inputs and Outputs will be treated by us as your Stuff under these
Terms. <b>We will not use your Inputs to train models without your consent</b>
, and as between you and us, you retain ownership of the Inputs and
shall own Outputs, to the extent permitted by applicable law. Due to
the nature of the PaperDebugger and artificial intelligence generally,
Outputs are provided “AS-IS” and may not be unique, meaning other
users may receive similar outputs from the PaperDebugger. You are
solely responsible for all use of the Outputs, which you should always
check, including for accuracy, completeness and suitability.</p>
<h2 id="our-rights" >
<div>
<a href="#our-rights">
#
</a>
Our Rights
</div>
</h2>
<p>The Service is owned by or licensed to PaperDebugger and/or its
affiliates, and is protected by copyrights, trademarks, service marks,
patents, trade secrets and/or other industrial and proprietary rights
and laws, including international conventions and treaties
(“Proprietary Rights”).</p>
<!-- In particular, you acknowledge that the Site
and other parts of the Service are protected by copyright as
collective works and/or compilations pursuant to {laws}. -->
<p>Nothing in
these Terms shall operate to transfer any Proprietary Rights in any
part of the Service, to grant any rights to use the name “
PaperDebugger” or our other trademarks or to give rise to any implied
rights.</p>
<p>You agree not to remove, suppress or modify in any way the proprietary
markings, including any trademark or copyright notice, used in
relation to part of the Service.</p>
<p>Unless otherwise agreed in a Contract, the Service is provided for
your own non-commercial, internal and personal use, at all times
subject to these Terms. For paid subscriptions (excluding personal or
student plans), you may also use the Service for your own internal
business purposes (which, for the avoidance of doubt, would not
include the right to re-sell or commercialize access). You shall not
otherwise use any part of the Service without our prior and express
written agreement.</p>
<p>If you are an organization, unless requested in writing otherwise, we
may publicly refer to you as a customer, including on our website(s)
and presentational material, provided such reference accurately
reflects the nature of our relationship and that any use of your trade
marks is in accordance with your reasonable guidelines given as to the
form and manner of their use.</p>
<h2 id="your-responsibilities" >
<div>
<a href="#your-responsibilities">
#
</a>
Your Responsibilities
</div>
</h2>
<p>You must comply with all laws and regulations applicable to you and
the use of the Services.</p>
<p>Files and other content in the Services you receive or share may be
protected by intellectual property rights of others. You agree to
always respect the proprietary rights of others and must never copy,
upload, download, or share files unless you have the rights and
permissions to do so. You, not PaperDebugger, will be fully
responsible and liable for what you copy, share, upload, download,
receive or otherwise use while using the Services. If you require use
of files (including font files) that are accessible within
PaperDebugger’s compiler system, but owned by a third party, you must
first ensure you have the permission of the owner.</p>
<p>You are responsible for maintaining and protecting all of your stuff,
and should always make sure to keep a local copy. We will not be
liable for any loss or corruption of your stuff, or for any costs or
expenses associated with backing up or restoring it.</p>
<h2 id="beta-services" >
<div>
<a href="#beta-services">
#
</a>
Beta Services
</div>
</h2>
<p>From time to time, we may make available Beta Services. Beta Services
may not always perform as expected and may be changed or withdrawn at
any time without notice. Any use of Beta Services, which are provided
“AS IS” and “AS AVAILABLE”, is solely at your own risk, and may be
subject to additional requirements specified by us and include
features that are of a confidential nature. You agree not to make
public statements relating to any Beta Service without our prior
written approval, and specifically acknowledge that any feedback you
provide in relation to any Beta Service, and data collected from their
use, may be used to help us develop and improve our products,
notwithstanding any other provision of these Terms.</p>
<p>All Beta Services shall be considered as being made available subject
to these Terms, to the exclusion of all other terms and conditions,
including those of any Contract - even where a Beta Service is an
additional feature or module to a Service provided as part of a
Contract - unless the Beta Service is specifically identified in the
Contract as being provided pursuant thereto.</p>
<p>The term “Beta Service” includes any service or feature that is
identified, including via the applicable user interface or other
communication from us, as “Beta”, “Prototype”, “Limited Release”,
“Early Release” or similar, or provided as part of &ldquo;PaperDebugger Labs&rdquo;.</p>
<h2 id="your-feedback" >
<div>
<a href="#your-feedback">
#
</a>
Your Feedback
</div>
</h2>
<p>While we appreciate it when users provide us or post in our forums
feedback, suggestions or other comments, please be aware that we may
use, edit and disclose these without any obligation to you. By
providing such comments, you irrevocably grant all rights necessary
for their use for product improvement purposes and otherwise as we may
choose.</p>
<p>You are responsible for ensuring that any comments you make do not
contain any material that could be considered offensive, false,
defamatory or unlawful or violates any Proprietary Rights or other
rights.</p>
<h2 id="acceptable-use-policy" >
<div>
<a href="#acceptable-use-policy">
#
</a>
Acceptable Use Policy
</div>
</h2>
<p>You will not, and will not attempt to, misuse the Services, and will
use the Services only in a manner consistent with the PaperDebugger
Acceptable Use Policy.</p>
<h2 id="links-to-or-from-the-service" >
<div>
<a href="#links-to-or-from-the-service">
#
</a>
Links to or from the Service
</div>
</h2>
<p>The Services may contain links to third-party websites or resources.
We do not endorse and are not responsible or liable for such resources
in any way, including their availability, accuracy, nor for any
related content, products, or services. You accept sole responsibility
for your use of any such websites or resources. If you want to link to
any part of the Service, you must ask our permission first, and only
do so for non-commercial purposes and in a way that is fair and legal
and does not damage our reputation or take advantage of it.</p>
<h2 id="order-process-and-formation-of-a-contract" >
<div>
<a href="#order-process-and-formation-of-a-contract">
#
</a>
Order Process and Formation of a Contract
</div>
</h2>
<p>If you are paying for a Service, a contract to provide that Service
will only arise upon receipt of payment in cleared funds and once we
have made the Service available to you.</p>
<p>Whilst we try and ensure that all the information on the Site is
accurate, errors may occur. In the unlikely event that such
information, including any price and/or description of an item listed
on the Site has been incorrectly advertised, we will not be under any
obligation to sell or provide those Services to you. If we discover
the error before a Contract is formed we will at our discretion,
either reject your order and notify you of such rejection, or inform
you as soon as possible and give you the option of canceling your
order or reconfirming it at the correct price and/or description. If
we give you the option of canceling your order or reconfirming it at
the correct price and/or description but either cannot contact you or
do not receive your response within 14 days of sending you
notification (whether or not you receive it), we will reject your
order.</p>
<h2 id="prices-payments-tax-and-refunds" >
<div>
<a href="#prices-payments-tax-and-refunds">
#
</a>
Prices, Payments, Tax and Refunds
</div>
</h2>
<p>Though we’d much rather you stay, you can stop using our Services any
time. If you wish to downgrade or cancel a Service, you must do this
at least one full working day before the end of your payment period.</p>
<p>Prices included on the Site are illustrative only and are subject to
change at any time. Amounts are stated exclusive of VAT, sales tax and
other Taxes.</p>
<p>If you sign up for a free trial, we may require you to provide a valid
credit card or other payment method. We will charge you automatically
on the first day after the free trial is over, unless you cancel or
downgrade to a charge-free Service before the end of the free-trial
period.</p>
<p>If you pay using a credit card or any digital payment method supported
by PaperDebugger, you authorize us to charge your account for the
Services using that payment method on a recurring basis, unless
otherwise specified. If you choose to pay via PayPal, we use “PayPal
Reference Transactions” for this purpose. If your payment details
cease to be valid or you notify us to stop using a previously
designated payment method and fail to designate an alternative, we may
immediately suspend use and access to the Services at the end of your
paid subscription.</p>
<p>If you upgrade any Service, we will charge you the additional cost for
that upgrade in respect of the remainder of your (then current)
payment period and update your new payment period according to your
new subscription.</p>
<p>For certain paid-for Services, we may allow for individual licenses to
be purchased in bulk. If you make such a purchase, you&rsquo;ll be free to
allocate these &ldquo;premium&rdquo; licenses as you see fit on a ‘named user
basis’ (this will upgrade those end users&rsquo; free accounts). The
licenses will be valid for the 12 month period commencing on the date
on which you make the purchase (the “Bulk License Period”). While you
won&rsquo;t - unless the licenses are part of a managed subscription (see
the ‘Managed Accounts’ section above) - have any privileged access
rights in respect of other end user accounts, even though you&rsquo;ve paid
for them to have premium features, they&rsquo;re linked on our systems -
this means you can withdraw the paid-for license rights you&rsquo;ve
allocated to one account (so you might want to warn the account
holder!) and transfer them to another. You may also purchase
additional licenses at any time; however these will be chargeable at
the then-prevailing price (pro-rated if the purchase is made part way
through the Bulk License Period), which may be in excess of the
original price paid. All licenses will auto-renew for additional 12
month periods (each a “Renewal Period”) on an annual basis unless
canceled by you in your accounts settings or in writing not less than
thirty (30) days in advance of the date of renewal (or such shorter
period as we may allow).</p>
<p>You will be responsible for payment of any Taxes in addition to our
price. If we are required to collect or pay Taxes, the Taxes will be
charged to you. This includes adding VAT or local sales taxes (where
applicable) at the checkout / to our invoice(s) at the appropriate
rate based on information you provide to us. Please note that we have
no control over these charges and cannot predict their amount. Please
contact your local customs office or taxation authority for further
information before placing your order. Any assessment we make,
including at the time of purchase, of the amount or applicability of
sales or other Taxes will rely on the information you have provided
and you agree to reimburse us on demand for any charges, and
additional costs or expenses, we might incur if such information is
not accurate and complete.</p>
<p>Where we refer to &ldquo;Taxes&rdquo;, we mean any duties, customs fees, levies or
taxes (other than income tax) associated with the purchase or use of
the Services, including any related penalties or interest.</p>
<p>If you are an individual and are not happy with our Service, we will
offer a full refund if you give us written notice that you wish to
cancel within 30 days of payment. Otherwise, you will have no right to
a refund.</p>
<p>If you are entitled to a refund, we will notify you about your refund
via email within a reasonable period of time. We will usually process
a refund as soon as possible and, in any case, within 30 days of the
day we confirmed to you via email that you are entitled to a refund.
Refunds will usually be made by crediting the payment card or
electronic payment account you used to purchase the Services.</p>
<h2 id="termination" >
<div>
<a href="#termination">
#
</a>
Termination
</div>
</h2>
<p>Though we’d much rather you stay, you can stop using our Services any
time. If you wish to downgrade or cancel a Service, you must do this
at least one full working day before the end of your payment period
via your Account Settings, and the change will take effect at the end
of that payment period. Your ability to downgrade or cancel a Service
is limited for managed accounts - see the ‘Managed Accounts’ section
above.</p>
<p>Unless otherwise agreed, we reserve the right to suspend or end the
Services at any time, with or without cause, and with or without
notice. For example, we may suspend or terminate your use if you are
not complying with these Terms, or use the Services in any way that
would cause us legal liability or disrupt others’ use of the Services.
If we suspend or terminate your use without cause, we will try to let
you (or in the case of a managed PaperDebugger subscription, the
Manager Organization) know in advance and help with the retrieval of
your stuff, though there may be some cases (for example, repeatedly or
flagrantly violating these Terms, a court order, or danger to other
users) where we may suspend immediately.</p>
<p>We reserve the right to suspend the provision of any part of the
Services, or terminate our agreement to provide Services to you for
non-payment or any deliberate or material breach, which will include
any breach of the PaperDebugger Acceptable Use Policy, fraudulent or
illegal activity or misuse of the Service, or if you fail to provide
us upon request with sufficient information to enable us to determine
the accuracy and validity of any information supplied by you, or your
identity.</p>
<p>This clause does not affect your statutory rights as a consumer.</p>
<h2 id="use-post-termination" >
<div>
<a href="#use-post-termination">
#
</a>
Use post-termination
</div>
</h2>
<p>If your subscription for a paid account expires (including where
payment has been made by someone else (e.g. an institution or other
organization that you belong to) and that payment ends), unless you
had a managed account, we’ll try to make sure your stuff continues to
be accessible via a “free” account, subject to compliance with the
respective terms and conditions. If you’ve exceeded the limits of the
free account, you will need to archive old content before being able
to add more content.</p>
<p>If you don’t want to continue to have an account with us at all,
unless you have a managed account, you may close your account via your
Account Settings. We may retain and use your stuff as necessary to
comply with our legal obligations, resolve disputes and enforce our
agreements. Consistent with these requirements, we will try to delete
your stuff quickly but there might be latency in deletions from our
servers, and backed-up versions might persist. In addition, files that
you have in common with other users may be retained.</p>
<p>For managed accounts, the Manager Organization can close your account
at any time and access, delete and/or share your stuff, including by
re-assigning projects - see “Managed Accounts” section.</p>
<h2 id="paperdebugger-is-provided-as-is" >
<div>
<a href="#paperdebugger-is-provided-as-is">
#
</a>
PaperDebugger is provided “AS-IS”
</div>
</h2>
<p>THOUGH WE WANT TO PROVIDE A GREAT SERVICE, WE CAN’T PROMISE THAT ALL
PARTS OF THE SERVICE WILL BE FREE FROM ERRORS AND BUGS OR SECURE AT
ALL TIMES. AS SUCH, THE SERVICES ARE PROVIDED “AS IS” AND “AS
AVAILABLE”, AT YOUR OWN RISK, WITHOUT ANY EXPRESS, IMPLIED, STATUTORY
OR OTHER WARRANTY OR CONDITION OF ANY KIND. WITHOUT LIMITING THE
FOREGOING, WE DISCLAIM ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR
A PARTICULAR PURPOSE, FREEDOM FROM ERRORS AND NON-INFRINGEMENT. (We
are not shouting — it’s just that these disclaimers are really
important, so we want to highlight them.) Neither PaperDebugger nor
its affiliates will have any responsibility for any harm to your
computer system, loss or corruption of data, or other harm that
results from your access to or use of the Services. Some US states do
not allow the types of disclaimers in this paragraph, so they may not
apply to you.</p>
<h2 id="limitation-of-liability" >
<div>
<a href="#limitation-of-liability">
#
</a>
Limitation of Liability
</div>
</h2>
<p>TO THE FULLEST EXTENT PERMITTED BY LAW, IN NO EVENT WILL
PAPERDEBUGGER, ITS AFFILIATES, OFFICERS, EMPLOYEES,
AGENTS, SUPPLIERS OR LICENSORS BE LIABLE FOR (A) ANY INDIRECT,
SPECIAL, INCIDENTAL, PUNITIVE, EXEMPLARY OR CONSEQUENTIAL DAMAGES,
REGARDLESS OF LEGAL THEORY, WHETHER OR NOT PAPERDEBUGGER
HAS BEEN WARNED OF THE POSSIBILITY OF SUCH DAMAGES, AND EVEN IF A
REMEDY FAILS OF ITS ESSENTIAL PURPOSE; (B) ANY LOSS OF PROFITS,
REVENUE, BUSINESS OR SAVINGS, DEPLETION OF GOODWILL AND/OR SIMILAR
LOSSES, OR LOSS OR CORRUPTION OF DATA; OR (C) IN RESPECT OF ANY CLAIMS
RELATING TO THE SERVICES, AN AMOUNT IN AGGREGATE THAT IS MORE THAN THE
GREATER OF £0.01 OR THE AMOUNTS PAID BY YOU TO
PAPERDEBUGGER FOR THE PAST THREE MONTHS OF THE SERVICES
IN QUESTION. SOME US STATES DO NOT ALLOW THE TYPES OF LIMITATIONS IN
THIS PARAGRAPH, SO THEY MAY NOT APPLY TO YOU.</p>
<!-- {/*
US Electronic Communications Privacy Act Notice (18 U.S.C. §§ 2701-2711): COMPANY MAKES NO GUARANTY OF CONFIDENTIALITY OR PRIVACY OF ANY COMMUNICATION OR INFORMATION TRANSMITTED ON THE SITE OR ANY WEBSITE LINKED TO THE SITE. Company will not be liable for the privacy of email addresses, registration and identification information, disk space, communications, confidential or trade-secret information, or any other Content stored on Company’s equipment, transmitted over networks accessed by the Site, or otherwise connected with your use of the Service.
*/} -->
<p>Notwithstanding any other provision in these Terms, nothing will
affect or limit your statutory rights; or will exclude or limit our
liability to the extent not permitted by applicable laws or
regulations.</p>
<p>You agree to fully indemnify, defend and hold PaperDebugger, and its
affiliates, officers, employees, agents, suppliers and licensors,
harmless on demand, from and against all claims, including losses
(including loss of profit, revenue, goodwill or reputation), costs and
expenses, including reasonable administrative and legal costs, arising
out of any breach of these Terms by you.</p>
<h2 id="separate-contract-and-additional-terms" >
<div>
<a href="#separate-contract-and-additional-terms">
#
</a>