-
Notifications
You must be signed in to change notification settings - Fork 3
/
sw.js
1395 lines (1311 loc) · 51.9 KB
/
sw.js
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
//var myCacheVersion = "v.1.2.2024.11.17";
//https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers#basic_architecture
const registerServiceWorker = async () => {
if ("serviceWorker" in navigator) {
try {
const registration = await navigator.serviceWorker.register("/sw.js", {
scope: "/",
});
if (registration.installing) {
console.log("Service worker installing");
} else if (registration.waiting) {
console.log("Service worker installed");
} else if (registration.active) {
}
} catch (error) {
console.error(`Registration failed with ` + error);
}
}
};
registerServiceWorker();
swJsInstallFiles();
// fu hide file extension
function hideLinkExt(url){
var linkExtList = ["index.html", ".html"];
var newURL = url;
linkExtList.forEach((element) => {
newURL = newURL.replace(element, '');
});
return newURL;
}
//
function swJsInstallFiles(){
/*
// cache
//https://stackoverflow.com/questions/66529102/uncaught-in-promise-typeerror-failed-to-execute-cache-on-addall-request
//https://github.com/mdn/pwa-examples
self.addEventListener('install', (e) => {
e.waitUntil(caches.open("v.1.2.2024.11.17").then((cache) => cache.addAll(fileListArrFound)),);
});*/
// add files to cache
// cache
//https://developer.mozilla.org/en-US/docs/Web/API/Cache/addAll
self.addEventListener('install', (e) => {
// start check 404, file list 2
var fileListArr = ["/404.html",
"/BingSiteAuth.xml",
"/LICENSE.md",
"/README.md",
"/archive.html",
"/audio/click.mp3",
"/audio/",
"/audio/click2.mp3",
"/audio/error.mp3",
"/audio/game-over.mp3",
"/audio/neutral.mp3",
"/audio/ok.mp3",
"/audio/win.mp3",
"/css/a-backup-old.css",
"/css/",
"/css/auto.css",
"/css/bad.css",
"/css/d-blue.css",
"/css/d-forest.css",
"/css/d-green.css",
"/css/d-orange.css",
"/css/d-pink.css",
"/css/d-plum.css",
"/css/d-purple.css",
"/css/d-red.css",
"/css/d-sea.css",
"/css/d-slate.css",
"/css/d-violet.css",
"/css/d-yellow.css",
"/css/dark.css",
"/css/empty.css",
"/css/h-contrast-d.css",
"/css/h-contrast-l.css",
"/css/l-blue.css",
"/css/l-green.css",
"/css/l-merino.css",
"/css/l-olive.css",
"/css/l-orange.css",
"/css/l-pink.css",
"/css/l-plum.css",
"/css/l-purple.css",
"/css/l-red.css",
"/css/l-sea.css",
"/css/l-seashell.css",
"/css/l-violet.css",
"/css/l-yellow.css",
"/css/light.css",
"/css/main.css",
"/css/noscript.css",
"/css/o-blue.css",
"/css/o-green.css",
"/css/o-lime.css",
"/css/o-mint.css",
"/css/o-olive.css",
"/css/o-orange.css",
"/css/o-pink.css",
"/css/o-plum.css",
"/css/o-purple.css",
"/css/o-red.css",
"/css/o-sea.css",
"/css/o-silver.css",
"/css/o-violet.css",
"/css/o-yellow.css",
"/css/od-blue.css",
"/css/od-brown.css",
"/css/od-forest.css",
"/css/od-gray.css",
"/css/od-green.css",
"/css/od-olive.css",
"/css/od-pink.css",
"/css/od-plum.css",
"/css/od-purple.css",
"/css/od-red.css",
"/css/od-sea.css",
"/css/od-slate.css",
"/css/od-violet.css",
"/css/od-yellow.css",
"/css/rss.css",
"/css/style.css",
"/data/ads.json",
"/data/",
"/data/adsJsonVar.js",
"/data/agicountdown.json",
"/data/agicountdownJsonVar.js",
"/data/articles.json",
"/data/articlesJsonVar.js",
"/data/book.json",
"/data/bookJsonVar.js",
"/data/iconsJsonVar.js",
"/data/links.json",
"/data/linksJsonVar.js",
"/data/microblog.json",
"/data/microblogJsonVar.js",
"/data/music.json",
"/data/musicJsonVar.js",
"/data/news.json",
"/data/newsJsonVar.js",
"/data/notes.json",
"/data/notesJsonVar.js",
"/data/podcast.json",
"/data/podcastJsonVar.js",
"/data/posts.json",
"/data/postsJsonVar.js",
"/data/quiz.json",
"/data/quizJsonVar.js",
"/data/quote.json",
"/data/quoteJsonVar.js",
"/data/radio.json",
"/data/radioJsonVar.js",
"/data/randomwebsite.json",
"/data/randomwebsiteJsonVar.js",
"/data/sitemapJsonVar.js",
"/data/tv.json",
"/data/tvJsonVar.js",
"/data/video.json",
"/data/videoJsonVar.js",
"/data/word.json",
"/data/wordJsonVar.js",
"/data2/WATCHLIST.csv",
"/data2/",
"/favicon.ico",
"/games/dice-9/index.html",
"/games/",
"/games/dice-9/",
"/games/dice-9/script.js",
"/games/dice-9/style.css",
"/games/guess-number-10/index.html",
"/games/guess-number-10/",
"/games/guess-number-10/script.js",
"/games/guess-number-10/style.css",
"/games/index.html",
"/games/lnnguage-learning-quiz-45/index.html",
"/games/lnnguage-learning-quiz-45/",
"/games/lnnguage-learning-quiz-45/script (copy 1).js",
"/games/lnnguage-learning-quiz-45/script.js",
"/games/lnnguage-learning-quiz-45/style.css",
"/games/memory-symbol-11/index.html",
"/games/memory-symbol-11/",
"/games/memory-symbol-11/script.js",
"/games/memory-symbol-11/style.css",
"/games/quiz-42/index.html",
"/games/quiz-42/",
"/games/quiz-42/script (copy 1).js",
"/games/quiz-42/script (copy 2).js",
"/games/quiz-42/script.js",
"/games/quiz-42/style.css",
"/games/rock-paper-scissors-67/index.html",
"/games/rock-paper-scissors-67/",
"/games/rock-paper-scissors-67/script.js",
"/games/rock-paper-scissors-67/style.css",
"/games/snake-12/index.html",
"/games/snake-12/",
"/games/snake-12/script.js",
"/games/snake-12/style.css",
"/games/spin-wheel-69/index.html",
"/games/spin-wheel-69/",
"/games/spin-wheel-69/script.js",
"/games/spin-wheel-69/style.css",
"/games/tic-tac-toe-13/index.html",
"/games/tic-tac-toe-13/",
"/games/tic-tac-toe-13/script.js",
"/games/tic-tac-toe-13/style.css",
"/games/typing-speed-14/index.html",
"/games/typing-speed-14/",
"/games/typing-speed-14/script.js",
"/games/typing-speed-14/style.css",
"/googlebb934aafeeb1ecb6.html",
"/img/404.png",
"/img/",
"/img/404.svg",
"/img/bg/binary-d.svg",
"/img/bg/",
"/img/bg/binary.svg",
"/img/bg/circle-d.svg",
"/img/bg/circle.svg",
"/img/bg/deco-paper-d.svg",
"/img/bg/deco-paper.svg",
"/img/bg/grid-d.png",
"/img/bg/grid.png",
"/img/bg/index-d.svg",
"/img/bg/index.svg",
"/img/bg/line-chaotic-d.svg",
"/img/bg/line-chaotic.svg",
"/img/bg/line-square-d.svg",
"/img/bg/line-square.svg",
"/img/bg/shape-d.svg",
"/img/bg/shape.svg",
"/img/bg/short-line-d.svg",
"/img/bg/short-line.svg",
"/img/bg/square-solid-d.svg",
"/img/bg/square-solid.svg",
"/img/bg/star-d.svg",
"/img/bg/star.svg",
"/img/bg/triangle-d.svg",
"/img/bg/triangle.svg",
"/img/bg/wood-d-delme.svg",
"/img/bg/wood-d.png",
"/img/bg/wood-delme.svg",
"/img/bg/wood.png",
"/img/example.png",
"/img/example.svg",
"/img/github-banner-settings.png",
"/img/github-banner-settings.svg",
"/img/header-banner (copy 1).svg",
"/img/header-banner.png",
"/img/header-banner.svg",
"/img/logo-gray.png",
"/img/logo.png",
"/img/logo.svg",
"/img/maskable_logo.png",
"/img/maskable_logo_gray.png",
"/img/repository-open-graph-template.png",
"/img/screenshot.png",
"/img/screenshot2.png",
"/img/tpl/ava.png",
"/img/tpl/",
"/img/tpl/ava.svg",
"/img/tpl/bg-dark.png",
"/img/tpl/bg-dark.svg",
"/img/tpl/bg-light.png",
"/img/tpl/bg.svg",
"/img/tpl/favicon.ico",
"/img/tpl/favicon.png",
"/img/tpl/flower.png",
"/img/tpl/flower.svg",
"/img/tpl/header-banner.svg",
"/img/tpl/image.png",
"/img/tpl/logo.png",
"/img/tpl/logo.svg",
"/img/tpl/logo2.png",
"/img/tpl/logo2.svg",
"/img/tpl/photo.jpg",
"/img/tpl/photo2.jpg",
"/img/tpl/tree.svg",
"/img/tpl/woman.png",
"/img/tpl/woman.svg",
"/img/transparent.png",
"/img/transparent.svg",
"/index.html",
"/js/ads.js",
"/js/",
"/js/backup.txt.js",
"/js/cookie-agree-popup.js",
"/js/fuPostTime.js",
"/js/main.js",
"/js/script (copy 1).js",
"/js/script.js",
"/js/settings-options.js",
"/js/theme-options.js",
"/manifest.webmanifest",
"/mini-projects/animated-borders-button-link-5/index.html",
"/mini-projects/",
"/mini-projects/animated-borders-button-link-5/",
"/mini-projects/animated-borders-button-link-5/style.css",
"/mini-projects/animation-test-6/index.html",
"/mini-projects/animation-test-6/",
"/mini-projects/animation-test-6/style.css",
"/mini-projects/background-with-linear-gradient-css-7/index.html",
"/mini-projects/background-with-linear-gradient-css-7/",
"/mini-projects/background-with-linear-gradient-css-7/style.css",
"/mini-projects/button-blur-unblur-28/index.html",
"/mini-projects/button-blur-unblur-28/",
"/mini-projects/button-blur-unblur-28/style.css",
"/mini-projects/flex-grid-32/index.html",
"/mini-projects/flex-grid-32/",
"/mini-projects/flex-grid-32/style.css",
"/mini-projects/heading-33/index.html",
"/mini-projects/heading-33/",
"/mini-projects/heading-33/style.css",
"/mini-projects/hide-show-on-resize-35/index.html",
"/mini-projects/hide-show-on-resize-35/",
"/mini-projects/hide-show-on-resize-35/style.css",
"/mini-projects/html-symbols-36/index.html",
"/mini-projects/html-symbols-36/",
"/mini-projects/html-symbols-36/style.css",
"/mini-projects/index.html",
"/mini-projects/light-and-dark-design-29/index.html",
"/mini-projects/light-and-dark-design-29/",
"/mini-projects/light-and-dark-design-29/style.css",
"/mini-projects/palette-generator-using-css-34/index.html",
"/mini-projects/palette-generator-using-css-34/",
"/mini-projects/palette-generator-using-css-34/style.css",
"/mini-projects/project-ideas-37/index.html",
"/mini-projects/project-ideas-37/",
"/mini-projects/project-ideas-37/style.css",
"/mini-projects/responsive-web-design-2/index.html",
"/mini-projects/responsive-web-design-2/",
"/mini-projects/responsive-web-design-2/script.js",
"/mini-projects/responsive-web-design-2/style.css",
"/mini-projects/simple-page-38/index.html",
"/mini-projects/simple-page-38/",
"/mini-projects/simple-page-38/style.css",
"/mini-projects/sun-and-moon-css-31/index.html",
"/mini-projects/sun-and-moon-css-31/",
"/mini-projects/sun-and-moon-css-31/style.css",
"/mini-projects/tpl-project-mini-1/index.html",
"/mini-projects/tpl-project-mini-1/",
"/mini-projects/tpl-project-mini-1/style.css",
"/old-projects/blocked-65/index.html",
"/old-projects/",
"/old-projects/blocked-65/",
"/old-projects/blocked-65/script.js",
"/old-projects/blocked-65/style.css",
"/old-projects/hello-world-62/index.html",
"/old-projects/hello-world-62/",
"/old-projects/hello-world-62/script.js",
"/old-projects/hello-world-62/style.css",
"/old-projects/index.html",
"/old-projects/not-sleep-pc-12/index.html",
"/old-projects/not-sleep-pc-12/",
"/old-projects/not-sleep-pc-12/style.css",
"/old-projects/pwa-test-21/index.html",
"/old-projects/pwa-test-21/",
"/old-projects/pwa-test-21/manifest.webmanifest",
"/old-projects/pwa-test-21/script.js",
"/old-projects/pwa-test-21/style.css",
"/old-projects/pwa-test-21/sw.js",
"/old-projects/textarea-24/index.html",
"/old-projects/textarea-24/",
"/old-projects/textarea-24/style.css",
"/other-projects/README.md",
"/other-projects/",
"/other-projects/index.html",
"/other-projects/other/dreamwidth.org-style-backup/auto-generated-layer.txt",
"/other-projects/other/",
"/other-projects/other/dreamwidth.org-style-backup/",
"/other-projects/other/dreamwidth.org-style-backup/style.css",
"/other-projects/php/README.md",
"/other-projects/php/",
"/other-projects/php/functions/nav.php",
"/other-projects/php/functions/",
"/other-projects/php/functions/php-to-html.php",
"/other-projects/php/functions/website-to-pwa.php",
"/other-projects/php/hello-world/index.php",
"/other-projects/php/hello-world/",
"/other-projects/php/index.html",
"/other-projects/php/old/delme-php-site-to-static-in-progress/generate.php",
"/other-projects/php/old/",
"/other-projects/php/old/delme-php-site-to-static-in-progress/",
"/other-projects/php/old/delme-php-site-to-static-in-progress/index.php",
"/other-projects/php/old/delme-website-to-pwa/index.php",
"/other-projects/php/old/delme-website-to-pwa/",
"/other-projects/php/old/delme-website-to-pwa/websiteToPwa.php",
"/other-projects/php/old/delme-website-to-pwa/websiteToPwa2HidenExt.php",
"/other-projects/php/readme.txt",
"/other-projects/python/hello-world/main.py",
"/other-projects/python/",
"/other-projects/python/hello-world/",
"/other-projects/python/index.html",
"/other-projects-list.html",
"/pages/about.html",
"/pages/",
"/pages/ads.html",
"/pages/art/2024/acrylic-gimp-12.jpg",
"/pages/art/",
"/pages/art/2024/",
"/pages/art/2024/autumn-gimp-15.jpg",
"/pages/art/2024/car-gimp-6.jpg",
"/pages/art/2024/cloud-gimp-7.jpg",
"/pages/art/2024/empty-drawing-1.png",
"/pages/art/2024/face-gimp-10.jpg",
"/pages/art/2024/fractal-gimp-17.jpg",
"/pages/art/2024/https-paint-toys-calligram-screenshot-2.png",
"/pages/art/2024/https-paint-toys-mondrian-screenshot-3.png",
"/pages/art/2024/https-paint-toys-oil-screenshot-4.png",
"/pages/art/2024/https-paint-toys-one-line-screenshot-5.jpeg",
"/pages/art/2024/lines-gimp-8.jpg",
"/pages/art/2024/night-gimp-9.jpg",
"/pages/art/2024/sky-gimp-16.jpg",
"/pages/art/2024/tpl-gimp-14.png",
"/pages/art/2024/update-lemon-gimp-11.jpg",
"/pages/art/2024/wind-gimp-18.jpg",
"/pages/art/index.html",
"/pages/articles.html",
"/pages/chrome-extensions/README.md",
"/pages/chrome-extensions/",
"/pages/chrome-extensions/badge-count-up-timer-4/auto.css",
"/pages/chrome-extensions/badge-count-up-timer-4/",
"/pages/chrome-extensions/badge-count-up-timer-4/background.js",
"/pages/chrome-extensions/badge-count-up-timer-4/icon512x512.png",
"/pages/chrome-extensions/badge-count-up-timer-4/icon512x512.svg",
"/pages/chrome-extensions/badge-count-up-timer-4/main.css",
"/pages/chrome-extensions/badge-count-up-timer-4/manifest.json",
"/pages/chrome-extensions/badge-count-up-timer-4/popup.html",
"/pages/chrome-extensions/badge-count-up-timer-4/script.js",
"/pages/chrome-extensions/badge-count-up-timer-4/style.css",
"/pages/chrome-extensions/badge-count-up-timer-4.crx",
"/pages/chrome-extensions/hotkey-url-5/README.md",
"/pages/chrome-extensions/hotkey-url-5/",
"/pages/chrome-extensions/hotkey-url-5/a-backup-old.css",
"/pages/chrome-extensions/hotkey-url-5/auto.css",
"/pages/chrome-extensions/hotkey-url-5/icon512x512.png",
"/pages/chrome-extensions/hotkey-url-5/icon512x512.svg",
"/pages/chrome-extensions/hotkey-url-5/main.css",
"/pages/chrome-extensions/hotkey-url-5/manifest.json",
"/pages/chrome-extensions/hotkey-url-5/options.html",
"/pages/chrome-extensions/hotkey-url-5/options.js",
"/pages/chrome-extensions/hotkey-url-5/screenshot.png",
"/pages/chrome-extensions/hotkey-url-5/script.js",
"/pages/chrome-extensions/hotkey-url-5/style-main.css",
"/pages/chrome-extensions/hotkey-url-5/style.css",
"/pages/chrome-extensions/hotkey-url-5/worker.js",
"/pages/chrome-extensions/hotkey-url-5.crx",
"/pages/chrome-extensions/index.html",
"/pages/chrome-extensions/new-tab-redirect-3/README.md",
"/pages/chrome-extensions/new-tab-redirect-3/",
"/pages/chrome-extensions/new-tab-redirect-3/a-backup-old.css",
"/pages/chrome-extensions/new-tab-redirect-3/icon512x512.png",
"/pages/chrome-extensions/new-tab-redirect-3/icon512x512.svg",
"/pages/chrome-extensions/new-tab-redirect-3/light.css",
"/pages/chrome-extensions/new-tab-redirect-3/main.css",
"/pages/chrome-extensions/new-tab-redirect-3/manifest.json",
"/pages/chrome-extensions/new-tab-redirect-3/new-tab-redirect.html",
"/pages/chrome-extensions/new-tab-redirect-3/options.html",
"/pages/chrome-extensions/new-tab-redirect-3/options.js",
"/pages/chrome-extensions/new-tab-redirect-3/screenshot.png",
"/pages/chrome-extensions/new-tab-redirect-3/screenshot2.png",
"/pages/chrome-extensions/new-tab-redirect-3/script.js",
"/pages/chrome-extensions/new-tab-redirect-3/style.css",
"/pages/chrome-extensions/new-tab-redirect-3.crx",
"/pages/chrome-extensions/stop-loading-website-7/README.md",
"/pages/chrome-extensions/stop-loading-website-7/",
"/pages/chrome-extensions/stop-loading-website-7/auto.css",
"/pages/chrome-extensions/stop-loading-website-7/icon512x512.png",
"/pages/chrome-extensions/stop-loading-website-7/icon512x512.svg",
"/pages/chrome-extensions/stop-loading-website-7/main.css",
"/pages/chrome-extensions/stop-loading-website-7/manifest.json",
"/pages/chrome-extensions/stop-loading-website-7/options.html",
"/pages/chrome-extensions/stop-loading-website-7/options.js",
"/pages/chrome-extensions/stop-loading-website-7/screenshot.png",
"/pages/chrome-extensions/stop-loading-website-7/script.js",
"/pages/chrome-extensions/stop-loading-website-7/style.css",
"/pages/chrome-extensions/url-redirect-6/README.md",
"/pages/chrome-extensions/url-redirect-6/",
"/pages/chrome-extensions/url-redirect-6/auto.css",
"/pages/chrome-extensions/url-redirect-6/icon512x512.png",
"/pages/chrome-extensions/url-redirect-6/icon512x512.svg",
"/pages/chrome-extensions/url-redirect-6/main.css",
"/pages/chrome-extensions/url-redirect-6/manifest.json",
"/pages/chrome-extensions/url-redirect-6/options.html",
"/pages/chrome-extensions/url-redirect-6/options.js",
"/pages/chrome-extensions/url-redirect-6/screenshot.png",
"/pages/chrome-extensions/url-redirect-6/script.js",
"/pages/chrome-extensions/url-redirect-6/style.css",
"/pages/chrome-extensions/url-redirect-6/url-redirect-6.zip",
"/pages/chrome-extensions/url-redirect-6.crx",
"/pages/chrome-theme/Source.txt",
"/pages/chrome-theme/",
"/pages/chrome-theme/dark-theme/manifest.json",
"/pages/chrome-theme/dark-theme/",
"/pages/chrome-theme/dark-theme.crx",
"/pages/chrome-theme/dark-theme.png",
"/pages/chrome-theme/index.html",
"/pages/chrome-theme/light-theme/manifest.json",
"/pages/chrome-theme/light-theme/",
"/pages/chrome-theme/light-theme.crx",
"/pages/chrome-theme/light-theme.png",
"/pages/chrome-theme/tpl-theme/manifest.json",
"/pages/chrome-theme/tpl-theme/",
"/pages/css-art/computer-css-9/index.html",
"/pages/css-art/",
"/pages/css-art/computer-css-9/",
"/pages/css-art/computer-css-9/style.css",
"/pages/css-art/halloween-pumpkin-css-15/index.html",
"/pages/css-art/halloween-pumpkin-css-15/",
"/pages/css-art/halloween-pumpkin-css-15/style.css",
"/pages/css-art/index.html",
"/pages/css-art/realistic-old-windows-os-popup-window-12/index.html",
"/pages/css-art/realistic-old-windows-os-popup-window-12/",
"/pages/css-art/realistic-old-windows-os-popup-window-12/style.css",
"/pages/css-art/tpl-0/index.html",
"/pages/css-art/tpl-0/",
"/pages/css-art/tpl-0/style.css",
"/pages/css-art/woman-css-32/index.html",
"/pages/css-art/woman-css-32/",
"/pages/css-art/woman-css-32/style.css",
"/pages/data-page.html",
"/pages/firefox-extensions/auto-theme-switcher-8/README.md",
"/pages/firefox-extensions/",
"/pages/firefox-extensions/auto-theme-switcher-8/",
"/pages/firefox-extensions/auto-theme-switcher-8/auto-theme-switcher-8.zip",
"/pages/firefox-extensions/auto-theme-switcher-8/auto.css",
"/pages/firefox-extensions/auto-theme-switcher-8/icon512x512.png",
"/pages/firefox-extensions/auto-theme-switcher-8/icon512x512.svg",
"/pages/firefox-extensions/auto-theme-switcher-8/main.css",
"/pages/firefox-extensions/auto-theme-switcher-8/manifest.json",
"/pages/firefox-extensions/auto-theme-switcher-8/options.html",
"/pages/firefox-extensions/auto-theme-switcher-8/screenshot.png",
"/pages/firefox-extensions/auto-theme-switcher-8/script.js",
"/pages/firefox-extensions/auto-theme-switcher-8/style.css",
"/pages/firefox-extensions/auto-theme-switcher-8/worker.js",
"/pages/firefox-extensions/hotkey-url-5/README.md",
"/pages/firefox-extensions/hotkey-url-5/",
"/pages/firefox-extensions/hotkey-url-5/hotkey-url-5.zip",
"/pages/firefox-extensions/hotkey-url-5/icon512x512.png",
"/pages/firefox-extensions/hotkey-url-5/icon512x512.svg",
"/pages/firefox-extensions/hotkey-url-5/main.css",
"/pages/firefox-extensions/hotkey-url-5/manifest.json",
"/pages/firefox-extensions/hotkey-url-5/options.html",
"/pages/firefox-extensions/hotkey-url-5/options.js",
"/pages/firefox-extensions/hotkey-url-5/screenshot.png",
"/pages/firefox-extensions/hotkey-url-5/script.js",
"/pages/firefox-extensions/hotkey-url-5/style.css",
"/pages/firefox-extensions/hotkey-url-5/worker.js",
"/pages/firefox-extensions/index.html",
"/pages/firefox-extensions/new-tab-redirect-3/README.md",
"/pages/firefox-extensions/new-tab-redirect-3/",
"/pages/firefox-extensions/new-tab-redirect-3/auto.css",
"/pages/firefox-extensions/new-tab-redirect-3/icon512x512.png",
"/pages/firefox-extensions/new-tab-redirect-3/icon512x512.svg",
"/pages/firefox-extensions/new-tab-redirect-3/main.css",
"/pages/firefox-extensions/new-tab-redirect-3/manifest.json",
"/pages/firefox-extensions/new-tab-redirect-3/new-tab-redirect-3.zip",
"/pages/firefox-extensions/new-tab-redirect-3/new-tab-redirect.html",
"/pages/firefox-extensions/new-tab-redirect-3/options.html",
"/pages/firefox-extensions/new-tab-redirect-3/options.js",
"/pages/firefox-extensions/new-tab-redirect-3/screenshot.png",
"/pages/firefox-extensions/new-tab-redirect-3/screenshot2.png",
"/pages/firefox-extensions/new-tab-redirect-3/screenshot3.png",
"/pages/firefox-extensions/new-tab-redirect-3/script.js",
"/pages/firefox-extensions/new-tab-redirect-3/style.css",
"/pages/firefox-extensions/old/badge-count-up-timer-4/README.md",
"/pages/firefox-extensions/old/",
"/pages/firefox-extensions/old/badge-count-up-timer-4/",
"/pages/firefox-extensions/old/badge-count-up-timer-4/auto.css",
"/pages/firefox-extensions/old/badge-count-up-timer-4/background.html",
"/pages/firefox-extensions/old/badge-count-up-timer-4/background.js",
"/pages/firefox-extensions/old/badge-count-up-timer-4/badge-count-up-timer-4.zip",
"/pages/firefox-extensions/old/badge-count-up-timer-4/icon512x512.png",
"/pages/firefox-extensions/old/badge-count-up-timer-4/icon512x512.svg",
"/pages/firefox-extensions/old/badge-count-up-timer-4/main.css",
"/pages/firefox-extensions/old/badge-count-up-timer-4/manifest.json",
"/pages/firefox-extensions/old/badge-count-up-timer-4/popup.html",
"/pages/firefox-extensions/old/badge-count-up-timer-4/screenshot.png",
"/pages/firefox-extensions/old/badge-count-up-timer-4/script.js",
"/pages/firefox-extensions/old/badge-count-up-timer-4/style.css",
"/pages/firefox-extensions/search-localhost-http-1/icon512x512.png",
"/pages/firefox-extensions/search-localhost-http-1/",
"/pages/firefox-extensions/search-localhost-http-1/icon512x512.svg",
"/pages/firefox-extensions/search-localhost-http-1/manifest.json",
"/pages/firefox-extensions/search-localhost-http-1/search-localhost-http-1.zip",
"/pages/firefox-extensions/search-localhost-https-2/icon512x512.png",
"/pages/firefox-extensions/search-localhost-https-2/",
"/pages/firefox-extensions/search-localhost-https-2/icon512x512.svg",
"/pages/firefox-extensions/search-localhost-https-2/manifest.json",
"/pages/firefox-extensions/search-localhost-https-2/search-localhost-https-2.zip",
"/pages/firefox-extensions/stop-loading-website-7/README.md",
"/pages/firefox-extensions/stop-loading-website-7/",
"/pages/firefox-extensions/stop-loading-website-7/auto.css",
"/pages/firefox-extensions/stop-loading-website-7/icon512x512.png",
"/pages/firefox-extensions/stop-loading-website-7/icon512x512.svg",
"/pages/firefox-extensions/stop-loading-website-7/main.css",
"/pages/firefox-extensions/stop-loading-website-7/manifest.json",
"/pages/firefox-extensions/stop-loading-website-7/options.html",
"/pages/firefox-extensions/stop-loading-website-7/options.js",
"/pages/firefox-extensions/stop-loading-website-7/screenshot.png",
"/pages/firefox-extensions/stop-loading-website-7/script.js",
"/pages/firefox-extensions/stop-loading-website-7/stop-loading-website-7.zip",
"/pages/firefox-extensions/stop-loading-website-7/style.css",
"/pages/firefox-extensions/url-redirect-6/README.md",
"/pages/firefox-extensions/url-redirect-6/",
"/pages/firefox-extensions/url-redirect-6/auto.css",
"/pages/firefox-extensions/url-redirect-6/icon512x512.png",
"/pages/firefox-extensions/url-redirect-6/icon512x512.svg",
"/pages/firefox-extensions/url-redirect-6/main.css",
"/pages/firefox-extensions/url-redirect-6/manifest.json",
"/pages/firefox-extensions/url-redirect-6/options.html",
"/pages/firefox-extensions/url-redirect-6/options.js",
"/pages/firefox-extensions/url-redirect-6/screenshot.png",
"/pages/firefox-extensions/url-redirect-6/script.js",
"/pages/firefox-extensions/url-redirect-6/style.css",
"/pages/firefox-extensions/url-redirect-6/url-redirect-6.zip",
"/pages/firefox-theme/README.md",
"/pages/firefox-theme/",
"/pages/firefox-theme/dark-flat-theme-abc.png",
"/pages/firefox-theme/dark-flat-theme-abc.zip",
"/pages/firefox-theme/index.html",
"/pages/firefox-theme/light-flat-theme-abc.png",
"/pages/firefox-theme/light-flat-theme-abc.zip",
"/pages/geany-theme/README.md",
"/pages/geany-theme/",
"/pages/geany-theme/abc-dark.conf",
"/pages/geany-theme/abc-dark.png",
"/pages/geany-theme/abc-light.conf",
"/pages/geany-theme/abc-light.png",
"/pages/geany-theme/dark.css",
"/pages/geany-theme/index.html",
"/pages/geany-theme/light.css",
"/pages/icons/agree.svg",
"/pages/icons/",
"/pages/icons/app.svg",
"/pages/icons/blocked.svg",
"/pages/icons/books.svg",
"/pages/icons/bottom-line.svg",
"/pages/icons/button.svg",
"/pages/icons/calculator.svg",
"/pages/icons/camera.svg",
"/pages/icons/chart.svg",
"/pages/icons/circle.svg",
"/pages/icons/clapper-board.svg",
"/pages/icons/clock.svg",
"/pages/icons/close.svg",
"/pages/icons/code.svg",
"/pages/icons/dot.svg",
"/pages/icons/down-arrow.svg",
"/pages/icons/droplet.svg",
"/pages/icons/filter.svg",
"/pages/icons/folder.svg",
"/pages/icons/four-rectangles.svg",
"/pages/icons/game.svg",
"/pages/icons/gear.svg",
"/pages/icons/grid.svg",
"/pages/icons/h.svg",
"/pages/icons/heart.svg",
"/pages/icons/herb.svg",
"/pages/icons/hi.svg",
"/pages/icons/home.svg",
"/pages/icons/icons-data.zip",
"/pages/icons/image.svg",
"/pages/icons/index.html",
"/pages/icons/information.svg",
"/pages/icons/inspiration-log.html",
"/pages/icons/keyboard.svg",
"/pages/icons/left-arrow.svg",
"/pages/icons/light-bulb.svg",
"/pages/icons/link.svg",
"/pages/icons/list.svg",
"/pages/icons/live.svg",
"/pages/icons/memo.svg",
"/pages/icons/menu-open.svg",
"/pages/icons/menu.svg",
"/pages/icons/movie.svg",
"/pages/icons/music.svg",
"/pages/icons/navigation.svg",
"/pages/icons/new.svg",
"/pages/icons/newspaper.svg",
"/pages/icons/number.svg",
"/pages/icons/page.svg",
"/pages/icons/palette.svg",
"/pages/icons/paste.svg",
"/pages/icons/pencil.svg",
"/pages/icons/play.svg",
"/pages/icons/plus.svg",
"/pages/icons/printer.svg",
"/pages/icons/profile.svg",
"/pages/icons/progress.svg",
"/pages/icons/proportions.svg",
"/pages/icons/pushpin.svg",
"/pages/icons/question.svg",
"/pages/icons/radio.svg",
"/pages/icons/redirect-arraw.svg",
"/pages/icons/refresh.svg",
"/pages/icons/resize.svg",
"/pages/icons/right-arrow.svg",
"/pages/icons/rss.svg",
"/pages/icons/search.svg",
"/pages/icons/shuffle.svg",
"/pages/icons/sound.svg",
"/pages/icons/square.svg",
"/pages/icons/star.svg",
"/pages/icons/store.svg",
"/pages/icons/text.svg",
"/pages/icons/textarea.svg",
"/pages/icons/three-dots.svg",
"/pages/icons/tv.svg",
"/pages/icons/up-arrow.svg",
"/pages/icons/usb-drive.svg",
"/pages/icons/warning.svg",
"/pages/icons/weather.svg",
"/pages/images/2024/ai-assistant-inkscape-62.png",
"/pages/images/",
"/pages/images/2024/",
"/pages/images/2024/app-icon-64.png",
"/pages/images/2024/art-krita-28.png",
"/pages/images/2024/ava-woman-laptop-ava-inkscape-12.svg",
"/pages/images/2024/ava-woman-laptop-inkscap-30.svg",
"/pages/images/2024/barbie-time-inkscape-10.svg",
"/pages/images/2024/bg-black-krita-39.png",
"/pages/images/2024/bg-white-krita-38.png",
"/pages/images/2024/binary-text-desktop-wallpaper-dark-inkscape-26.png",
"/pages/images/2024/binary-text-desktop-wallpaper-light-inkscape-25.png",
"/pages/images/2024/binary-text-mobile-wallpaper-dark-inkscape-23.png",
"/pages/images/2024/binary-text-mobile-wallpaper-light-inkscape-24.png",
"/pages/images/2024/building-krita-1.png",
"/pages/images/2024/circle-dark-wallpaper-desktop-16.jpg",
"/pages/images/2024/circle-light-wallpaper-desktop-15.jpg",
"/pages/images/2024/circle-olive-wallpaper-desktop-14.jpg",
"/pages/images/2024/day-night-inkscap-56.svg",
"/pages/images/2024/day-night-inkscape-45.png",
"/pages/images/2024/editor-code-light-dark-mode-27.gif",
"/pages/images/2024/hello-world-big-black-wallpaper-inkscape-55.png",
"/pages/images/2024/hello-world-big-dark-wallpaper-inkscape-50.svg",
"/pages/images/2024/hello-world-big-dark-wallpaper-inkscape-51.png",
"/pages/images/2024/hello-world-big-light-wallpaper-inkscape-52.svg",
"/pages/images/2024/hello-world-big-light-wallpaper-inkscape-53.png",
"/pages/images/2024/hello-world-big-white-wallpaper-inkscape-54.png",
"/pages/images/2024/hello-world-binary-black-wallpaper-inkscape-48.png",
"/pages/images/2024/hello-world-binary-dark-wallpaper-inkscape-46.svg",
"/pages/images/2024/hello-world-binary-light-wallpaper-inkscape-47.svg",
"/pages/images/2024/hello-world-binary-text-dark-wallpaper--inkscape-42.png",
"/pages/images/2024/hello-world-binary-text-light-wallpaper-binary-inkscape-43.png",
"/pages/images/2024/hello-world-binary-white-wallpaper-inkscape-49.png",
"/pages/images/2024/landscape-dark-blue-wallpaper-desktop-inkscape-20.jpg",
"/pages/images/2024/landscape-dark-blue-wallpaper-mobile-inkscape-21.jpg",
"/pages/images/2024/landscape-inkscape-2.svg",
"/pages/images/2024/landscape-light-blue-wallpaper-desktop-inkscape-19.jpg",
"/pages/images/2024/landscape-light-blue-wallpaper-mobile-inkscape-22.jpg",
"/pages/images/2024/logo-circle-oval-inkscap-40.svg",
"/pages/images/2024/logo-circle-oval-inkscape-41.png",
"/pages/images/2024/logo-diamond-inkscape-34.png",
"/pages/images/2024/logo-t-inkscape-6.svg",
"/pages/images/2024/logo-x-inkscape-5.svg",
"/pages/images/2024/logo-x-inkscape-7.svg",
"/pages/images/2024/logo-x-inkscape-8.svg",
"/pages/images/2024/logo-x-inkscape-9.svg",
"/pages/images/2024/mail-art-inkscape-31.svg",
"/pages/images/2024/music-note-icon-inkscape-44.svg",
"/pages/images/2024/one-black-pixel-inkscape-35.png",
"/pages/images/2024/one-transparent-pixel-inkscape-37.png",
"/pages/images/2024/one-white-pixel-inkscape-36.png",
"/pages/images/2024/rss-icon-63.png",
"/pages/images/2024/search-page-inkscape-61.png",
"/pages/images/2024/sound-ico-65.png",
"/pages/images/2024/star-inkscape-4.svg",
"/pages/images/2024/start-end-krita-0.png",
"/pages/images/2024/test-inkscape-57.svg",
"/pages/images/2024/test-inkscape-58.png",
"/pages/images/2024/transparent-background-inkscape-29.png",
"/pages/images/2024/triangle-dark-wallpaper-desktop-17.jpg",
"/pages/images/2024/triangle-light-wallpaper-desktop-18.jpg",
"/pages/images/2024/web-design-trend-svg-inkscap-11.svg",
"/pages/images/2024/website-inkscape-59.svg",
"/pages/images/2024/website-inkscape-60.png",
"/pages/images/index.html",
"/pages/index.html",
"/pages/install.html",
"/pages/links.html",
"/pages/microblog.html",
"/pages/news.html",
"/pages/notes.html",
"/pages/other-data-page.html",
"/pages/photos/2024/branch-10.jpg",
"/pages/photos/",
"/pages/photos/2024/",
"/pages/photos/2024/branch-9.jpg",
"/pages/photos/2024/droplets-and-branch-3.jpg",
"/pages/photos/2024/droplets-and-branch-4.jpg",
"/pages/photos/2024/droplets-and-branch-5.jpg",
"/pages/photos/2024/droplets-branch-7.jpg",
"/pages/photos/2024/flower-15.jpg",
"/pages/photos/2024/flower-17.jpg",
"/pages/photos/2024/flower-2.jpg",
"/pages/photos/2024/flower-6.jpg",
"/pages/photos/2024/frog-11.jpg",
"/pages/photos/index.html",
"/pages/posts.html",
"/pages/search.html",
"/pages/settings.html",
"/pages/site-search.html",
"/pages/sitemap.html",
"/pages/templates/about-me-page-auto-light-dark-21/index.html",
"/pages/templates/",
"/pages/templates/about-me-page-auto-light-dark-21/",
"/pages/templates/about-me-page-auto-light-dark-21/style.css",
"/pages/templates/card-page-auto-light-dark-20/image.png",
"/pages/templates/card-page-auto-light-dark-20/",
"/pages/templates/card-page-auto-light-dark-20/index.html",
"/pages/templates/card-page-auto-light-dark-20/page.html",
"/pages/templates/card-page-auto-light-dark-20/style.css",
"/pages/templates/clean-one-page-mini-simple-auto-light-dark-16/index.html",
"/pages/templates/clean-one-page-mini-simple-auto-light-dark-16/",
"/pages/templates/clean-one-page-mini-simple-auto-light-dark-16/style.css",
"/pages/templates/flower-one-page-mini-auto-light-dark-flat-17/flower.svg",
"/pages/templates/flower-one-page-mini-auto-light-dark-flat-17/",
"/pages/templates/flower-one-page-mini-auto-light-dark-flat-17/index.html",
"/pages/templates/flower-one-page-mini-auto-light-dark-flat-17/style.css",
"/pages/templates/home-page-auto-light-dark-flat-9/index.html",
"/pages/templates/home-page-auto-light-dark-flat-9/",
"/pages/templates/home-page-auto-light-dark-flat-9/menu.html",
"/pages/templates/home-page-auto-light-dark-flat-9/page.html",
"/pages/templates/home-page-auto-light-dark-flat-9/style.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/auto.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/bad.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-blue.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-forest.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-green.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-orange.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-pink.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-plum.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-purple.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-red.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-sea.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-slate.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-violet.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/d-yellow.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/dark.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/empty.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/h-contrast-d.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/h-contrast-l.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/hight-contrast-dark.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/hight-contrast-light.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-blue.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-green.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-merino.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-olive.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-orange.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-pink.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-plum.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-purple.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-red.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-sea.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-seashell.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-violet.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/l-yellow.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/light.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-blue.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-green.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-lime.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-mint.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-olive.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-orange.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-pink.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-plum.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-purple.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-red.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-sea.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-silver.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-violet.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/o-yellow.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-blue.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-brown.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-forest.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-gray.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-green.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-olive.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-pink.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-plum.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-purple.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-red.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-sea.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-slate.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-violet.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/od-yellow.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/css/style.css",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/index.html",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/main.js",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/menu.html",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/page.html",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/theme-options.js",
"/pages/templates/home-page-flat-auto-many-colors-themes-10/themes.html",
"/pages/templates/index.html",
"/pages/templates/movie-flat-auto-light-dark-11/index.html",
"/pages/templates/movie-flat-auto-light-dark-11/",
"/pages/templates/movie-flat-auto-light-dark-11/movie-id.html",
"/pages/templates/movie-flat-auto-light-dark-11/movie-poster.png",
"/pages/templates/movie-flat-auto-light-dark-11/movie-poster2.png",
"/pages/templates/movie-flat-auto-light-dark-11/name.html",
"/pages/templates/movie-flat-auto-light-dark-11/search.html",
"/pages/templates/movie-flat-auto-light-dark-11/style.css",
"/pages/templates/personal-2/index.html",
"/pages/templates/personal-2/",
"/pages/templates/personal-2/style.css",
"/pages/templates/personal-3/index.html",
"/pages/templates/personal-3/",
"/pages/templates/personal-3/style.css",
"/pages/templates/photo-gallery-one-page-flat-auto-light-dark-18/index.html",
"/pages/templates/photo-gallery-one-page-flat-auto-light-dark-18/",
"/pages/templates/photo-gallery-one-page-flat-auto-light-dark-18/style.css",
"/pages/templates/profile-card-flat-mini-auto-light-dark-12/index.html",
"/pages/templates/profile-card-flat-mini-auto-light-dark-12/",
"/pages/templates/profile-card-flat-mini-auto-light-dark-12/style.css",
"/pages/templates/profile-card-mini-flat-auto-light-dark-14/index.html",
"/pages/templates/profile-card-mini-flat-auto-light-dark-14/",
"/pages/templates/profile-card-mini-flat-auto-light-dark-14/style.css",
"/pages/templates/saas-landing-page-auto-light-dark-19/index.html",
"/pages/templates/saas-landing-page-auto-light-dark-19/",
"/pages/templates/saas-landing-page-auto-light-dark-19/login.html",
"/pages/templates/saas-landing-page-auto-light-dark-19/product.png",
"/pages/templates/saas-landing-page-auto-light-dark-19/product2.png",
"/pages/templates/saas-landing-page-auto-light-dark-19/product3.png",
"/pages/templates/saas-landing-page-auto-light-dark-19/product4.png",
"/pages/templates/saas-landing-page-auto-light-dark-19/style (copy 1).css",
"/pages/templates/saas-landing-page-auto-light-dark-19/style.css",
"/pages/templates/simple-4/index.html",
"/pages/templates/simple-4/",
"/pages/templates/simple-4/style.css",
"/pages/templates/simple-5/index.html",
"/pages/templates/simple-5/",
"/pages/templates/simple-5/style.css",
"/pages/templates/simple-6/index.html",
"/pages/templates/simple-6/",
"/pages/templates/simple-6/style.css",
"/pages/templates/simple-7/index.html",
"/pages/templates/simple-7/",
"/pages/templates/simple-7/style.css",
"/pages/templates/simple-8/index.html",
"/pages/templates/simple-8/",
"/pages/templates/simple-8/style.css",
"/pages/templates/simple-text-1/index.html",
"/pages/templates/simple-text-1/",
"/pages/templates/simple-text-1/style.css",
"/pages/templates/tpl-0/index.html",
"/pages/templates/tpl-0/",
"/pages/templates/tpl-0/style.css",
"/pages/templates/web-design-services-simple-auto-light-dark-22/index.html",
"/pages/templates/web-design-services-simple-auto-light-dark-22/",
"/pages/templates/web-design-services-simple-auto-light-dark-22/style.css",
"/pages/templates/webdesign-one-page-mini-flat-auto-light-dark-15/circle.svg",
"/pages/templates/webdesign-one-page-mini-flat-auto-light-dark-15/",
"/pages/templates/webdesign-one-page-mini-flat-auto-light-dark-15/coffee.svg",
"/pages/templates/webdesign-one-page-mini-flat-auto-light-dark-15/index.html",