~cytrogen/realm

ref: 5dd1685be804caca4cb66411a583ec2dff256513 realm/friends.html -rw-r--r-- 70.9 KiB
5dd1685b — Cytrogen 友邻村落:纯 CSS 缩放 + 随机山丘布局 a month ago
                                                                                
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
<!DOCTYPE html>
<html lang="zh-Hans">
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>友邻 — Realm</title>
	<meta name="description" content="友邻村落 — Friends village of the Realm">
	<meta name="theme-color" content="#1a1a2e">
	<link rel="stylesheet" href="realm.css">
</head>
<body>

	<a class="skip-link" href="#scene-nav-friends">跳过场景</a>

	<main class="realm-folder">
		<h1 class="visually-hidden">友邻</h1>

		<input type="radio" name="village-zoom" id="vz1" class="visually-hidden" checked>
		<input type="radio" name="village-zoom" id="vz2" class="visually-hidden">
		<input type="radio" name="village-zoom" id="vz3" class="visually-hidden">
		<input type="radio" name="village-zoom" id="vz4" class="visually-hidden">

		<div class="village-controls">
			<label for="vz1" class="village-zoom-label"></label>
			<label for="vz2" class="village-zoom-label">1.5×</label>
			<label for="vz3" class="village-zoom-label"></label>
			<label for="vz4" class="village-zoom-label"></label>
		</div>

		<div class="village-viewport">
			<div class="village-canvas">
				<svg class="village" role="group" aria-labelledby="scene-friends-title" viewBox="0 0 1200 800">
					<title id="scene-friends-title">友邻村落 — A hillside village of 72 friends</title>

				<!-- Sky -->
				<rect class="fill-sky" x="0" y="0" width="1200" height="800"/>

				<!-- Stars -->
				<g class="scene-detail" aria-hidden="true">
					<rect class="fill-star" x="80" y="30" width="2" height="2"/>
					<rect class="fill-star" x="200" y="55" width="3" height="3"/>
					<rect class="fill-star" x="350" y="20" width="2" height="2"/>
					<rect class="fill-star" x="480" y="45" width="3" height="3"/>
					<rect class="fill-star" x="620" y="15" width="2" height="2"/>
					<rect class="fill-star" x="750" y="40" width="2" height="2"/>
					<rect class="fill-star" x="880" y="25" width="3" height="3"/>
					<rect class="fill-star" x="1000" y="50" width="2" height="2"/>
					<rect class="fill-star" x="1100" y="18" width="2" height="2"/>
					<rect class="fill-star" x="150" y="70" width="2" height="2"/>
					<rect class="fill-star" x="550" y="60" width="2" height="2"/>
					<rect class="fill-star" x="950" y="38" width="3" height="3"/>
				</g>

				<!-- Distant mountains -->
				<path class="fill-mountain-far" d="M0 200 L100 140 L220 170 L350 110 L500 150 L650 100 L800 130 L950 90 L1100 120 L1200 100 L1200 250 L0 250 Z" aria-hidden="true"/>
				<path class="fill-mountain" d="M0 240 L150 180 L300 210 L450 160 L600 200 L750 150 L900 190 L1050 140 L1200 170 L1200 280 L0 280 Z" aria-hidden="true"/>

				<!-- Hillside terrain (3 tiers) -->
				<!-- Upper hill -->
				<path class="fill-ground" d="M100 480 Q350 120 600 130 Q850 120 1100 480 Z" aria-hidden="true"/>
				<!-- Lower hill -->
				<path class="fill-ground" d="M0 480 Q300 240 600 250 Q900 240 1200 480 Z" aria-hidden="true"/>
				<!-- Valley floor -->
				<rect class="fill-ground" x="0" y="480" width="1200" height="320" aria-hidden="true"/>

				<!-- Winding path -->
				<path class="fill-path" d="M550 140 Q480 200 520 270 Q560 330 500 390 Q440 440 480 520 Q520 580 480 650 L500 650 Q540 580 500 520 Q460 440 520 390 Q580 330 540 270 Q500 200 570 140 Z" aria-hidden="true"/>

				<!-- Decorative trees -->
				<g class="scene-detail" aria-hidden="true">
					<!-- Top tier trees -->
					<polygon class="fill-tree" points="280,220 290,180 300,220"/>
					<polygon class="fill-tree" points="680,210 690,170 700,210"/>
					<polygon class="fill-tree" points="850,225 860,188 870,225"/>
					<!-- Middle tier trees -->
					<polygon class="fill-tree" points="150,340 162,300 174,340"/>
					<polygon class="fill-tree" points="420,310 430,275 440,310"/>
					<polygon class="fill-tree" points="680,320 690,285 700,320"/>
					<polygon class="fill-tree" points="950,340 960,305 970,340"/>
					<!-- Bottom tier trees -->
					<polygon class="fill-tree" points="200,460 212,425 224,460"/>
					<polygon class="fill-tree" points="480,445 490,412 500,445"/>
					<polygon class="fill-tree" points="780,440 790,408 800,440"/>
					<polygon class="fill-tree" points="1050,450 1060,418 1070,450"/>
				</g>

					<!-- Houses -->
				<a class="hotspot village-house" href="https://lab.gb0.dev/" target="_blank" rel="noopener noreferrer" aria-label="/var/log/gblab">
					<title>/var/log/gblab</title>
					<g transform="translate(693.9,246.3)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="709.9" y="242.3" text-anchor="middle">/var/log/gblab</text>
				</a>

				<a class="hotspot village-house" href="https://pathos.page/" target="_blank" rel="noopener noreferrer" aria-label="2750 words">
					<title>2750 words</title>
					<g transform="translate(386.7,298.7)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="402.7" y="294.7" text-anchor="middle">2750 words</text>
				</a>

				<a class="hotspot village-house" href="https://blog.ursb.me/" target="_blank" rel="noopener noreferrer" aria-label="Airing 的博客">
					<title>Airing 的博客</title>
					<g transform="translate(87.6,443.3)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="103.6" y="439.3" text-anchor="middle">Airing 的博客</text>
				</a>

				<a class="hotspot village-house" href="https://anotherdayu.com/" target="_blank" rel="noopener noreferrer" aria-label="Another Dayu">
					<title>Another Dayu</title>
					<g transform="translate(767.7,365.0)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="783.7" y="361.0" text-anchor="middle">Another Dayu</text>
				</a>

				<a class="hotspot village-house" href="https://blog.est.im/" target="_blank" rel="noopener noreferrer" aria-label="est の 输入 输出和出入">
					<title>est の 输入 输出和出入</title>
					<g transform="translate(850.3,420.0)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="866.3" y="416.0" text-anchor="middle">est の 输入 输出和出入</text>
				</a>

				<a class="hotspot village-house" href="https://fav0.com/" target="_blank" rel="noopener noreferrer" aria-label="FAV0周刊">
					<title>FAV0周刊</title>
					<g transform="translate(186.2,392.8)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="202.2" y="388.8" text-anchor="middle">FAV0周刊</text>
				</a>

				<a class="hotspot village-house" href="https://hellogithub.com/" target="_blank" rel="noopener noreferrer" aria-label="HelloGitHub 月刊">
					<title>HelloGitHub 月刊</title>
					<g transform="translate(1011.1,429.3)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="1027.1" y="425.3" text-anchor="middle">HelloGitHub 月刊</text>
				</a>

				<a class="hotspot village-house" href="https://liangmouyin.com/" target="_blank" rel="noopener noreferrer" aria-label="Home on 梁某银的博客">
					<title>Home on 梁某银的博客</title>
					<g transform="translate(609.3,277.7)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="625.3" y="273.7" text-anchor="middle">Home on 梁某银的博客</text>
				</a>

				<a class="hotspot village-house" href="https://www.immarcus.com/blog" target="_blank" rel="noopener noreferrer" aria-label="I'm Marcus Blog">
					<title>I'm Marcus Blog</title>
					<g transform="translate(372.8,209.4)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="388.8" y="205.4" text-anchor="middle">I'm Marcus Blog</text>
				</a>

				<a class="hotspot village-house" href="https://imqi1.com/" target="_blank" rel="noopener noreferrer" aria-label="ImQi1">
					<title>ImQi1</title>
					<g transform="translate(252.5,317.4)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="268.5" y="313.4" text-anchor="middle">ImQi1</text>
				</a>

				<a class="hotspot village-house" href="https://blog.zzbd.org/" target="_blank" rel="noopener noreferrer" aria-label="J.F's BLOG">
					<title>J.F's BLOG</title>
					<g transform="translate(880.2,271.8)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="896.2" y="267.8" text-anchor="middle">J.F's BLOG</text>
				</a>

				<a class="hotspot village-house" href="https://jakearchibald.com/" target="_blank" rel="noopener noreferrer" aria-label="Jake Archibald's blog">
					<title>Jake Archibald's blog</title>
					<g transform="translate(826.9,306.1)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="842.9" y="302.1" text-anchor="middle">Jake Archibald's blog</text>
				</a>

				<a class="hotspot village-house" href="https://justgoidea.com/" target="_blank" rel="noopener noreferrer" aria-label="JustGoIdea">
					<title>JustGoIdea</title>
					<g transform="translate(308.8,259.9)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="324.8" y="255.89999999999998" text-anchor="middle">JustGoIdea</text>
				</a>

				<a class="hotspot village-house" href="https://www.justzht.com/" target="_blank" rel="noopener noreferrer" aria-label="JustZht's EchoChamber">
					<title>JustZht's EchoChamber</title>
					<g transform="translate(481.1,419.8)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="497.1" y="415.8" text-anchor="middle">JustZht's EchoChamber</text>
				</a>

				<a class="hotspot village-house" href="http://study.tczhong.com/" target="_blank" rel="noopener noreferrer" aria-label="Learn More">
					<title>Learn More</title>
					<g transform="translate(826.5,221.5)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="842.5" y="217.5" text-anchor="middle">Learn More</text>
				</a>

				<a class="hotspot village-house" href="https://blog.liuzhen932.top/" target="_blank" rel="noopener noreferrer" aria-label="liuzhen932 的小窝">
					<title>liuzhen932 的小窝</title>
					<g transform="translate(250.0,360.4)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="266.0" y="356.4" text-anchor="middle">liuzhen932 的小窝</text>
				</a>

				<a class="hotspot village-house" href="https://markonreview.com/" target="_blank" rel="noopener noreferrer" aria-label="Markon Review">
					<title>Markon Review</title>
					<g transform="translate(434.3,417.7)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="450.3" y="413.7" text-anchor="middle">Markon Review</text>
				</a>

				<a class="hotspot village-house" href="https://h4ck.org.cn/" target="_blank" rel="noopener noreferrer" aria-label="obaby@mars">
					<title>obaby@mars</title>
					<g transform="translate(1095.9,426.1)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="1111.9" y="422.1" text-anchor="middle">obaby@mars</text>
				</a>

				<a class="hotspot village-house" href="https://www.owenyoung.com/" target="_blank" rel="noopener noreferrer" aria-label="Owen的博客">
					<title>Owen的博客</title>
					<g transform="translate(922.6,403.3)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="938.6" y="399.3" text-anchor="middle">Owen的博客</text>
				</a>

				<a class="hotspot village-house" href="https://hsu.cy/posts/" target="_blank" rel="noopener noreferrer" aria-label="Posts on neverland">
					<title>Posts on neverland</title>
					<g transform="translate(932.0,345.1)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="948.0" y="341.1" text-anchor="middle">Posts on neverland</text>
				</a>

				<a class="hotspot village-house" href="https://www.pseudoyu.com/" target="_blank" rel="noopener noreferrer" aria-label="pseudoyu">
					<title>pseudoyu</title>
					<g transform="translate(473.5,229.6)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="489.5" y="225.6" text-anchor="middle">pseudoyu</text>
				</a>

				<a class="hotspot village-house" href="https://weblog.contained.love/" target="_blank" rel="noopener noreferrer" aria-label="r0k1s#i">
					<title>r0k1s#i</title>
					<g transform="translate(313.2,432.1)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="329.2" y="428.1" text-anchor="middle">r0k1s#i</text>
				</a>

				<a class="hotspot village-house" href="https://rayepeng.net" target="_blank" rel="noopener noreferrer" aria-label="Raye's Journey">
					<title>Raye's Journey</title>
					<g transform="translate(322.7,316.3)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="338.7" y="312.3" text-anchor="middle">Raye's Journey</text>
				</a>

				<a class="hotspot village-house" href="https://skywt.cn/" target="_blank" rel="noopener noreferrer" aria-label="SkyWT">
					<title>SkyWT</title>
					<g transform="translate(761.7,321.1)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="777.7" y="317.1" text-anchor="middle">SkyWT</text>
				</a>

				<a class="hotspot village-house" href="https://blog.solazy.me/" target="_blank" rel="noopener noreferrer" aria-label="So!azy">
					<title>So!azy</title>
					<g transform="translate(591.4,370.1)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="607.4" y="366.1" text-anchor="middle">So!azy</text>
				</a>

				<a class="hotspot village-house" href="https://sqybi.com/blog/" target="_blank" rel="noopener noreferrer" aria-label="SQYBI.com Blog">
					<title>SQYBI.com Blog</title>
					<g transform="translate(691.7,368.0)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="707.7" y="364.0" text-anchor="middle">SQYBI.com Blog</text>
				</a>

				<a class="hotspot village-house" href="https://www.taober.blog/" target="_blank" rel="noopener noreferrer" aria-label="Taober">
					<title>Taober</title>
					<g transform="translate(639.7,233.1)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="655.7" y="229.1" text-anchor="middle">Taober</text>
				</a>

				<a class="hotspot village-house" href="https://taxodium.ink/" target="_blank" rel="noopener noreferrer" aria-label="Taxodium">
					<title>Taxodium</title>
					<g transform="translate(865.5,379.5)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="881.5" y="375.5" text-anchor="middle">Taxodium</text>
				</a>

				<a class="hotspot village-house" href="https://tw93.fun/" target="_blank" rel="noopener noreferrer" aria-label="Tw93 Blog">
					<title>Tw93 Blog</title>
					<g transform="translate(464.5,342.9)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="480.5" y="338.9" text-anchor="middle">Tw93 Blog</text>
				</a>

				<a class="hotspot village-house" href="https://zishu.me" target="_blank" rel="noopener noreferrer" aria-label="Weekly on 子舒的博客">
					<title>Weekly on 子舒的博客</title>
					<g transform="translate(713.7,165.5)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="729.7" y="161.5" text-anchor="middle">Weekly on 子舒的博客</text>
				</a>

				<a class="hotspot village-house" href="https://blog.itswincer.com/" target="_blank" rel="noopener noreferrer" aria-label="Wincer's Blog ATOM">
					<title>Wincer's Blog ATOM</title>
					<g transform="translate(254.6,402.9)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="270.6" y="398.9" text-anchor="middle">Wincer's Blog ATOM</text>
				</a>

				<a class="hotspot village-house" href="https://nelsonboss.ink/" target="_blank" rel="noopener noreferrer" aria-label="一直游到海水变蓝">
					<title>一直游到海水变蓝</title>
					<g transform="translate(172.8,436.4)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="188.8" y="432.4" text-anchor="middle">一直游到海水变蓝</text>
				</a>

				<a class="hotspot village-house" href="https://ihaihe.cn/" target="_blank" rel="noopener noreferrer" aria-label="三十海河">
					<title>三十海河</title>
					<g transform="translate(762.6,269.4)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="778.6" y="265.4" text-anchor="middle">三十海河</text>
				</a>

				<a class="hotspot village-house" href="https://dongjunke.cn/" target="_blank" rel="noopener noreferrer" aria-label="东评西就">
					<title>东评西就</title>
					<g transform="translate(542.0,331.9)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="558.0" y="327.9" text-anchor="middle">东评西就</text>
				</a>

				<a class="hotspot village-house" href="https://doin.pages.dev/" target="_blank" rel="noopener noreferrer" aria-label="主页 on Doin的赛博空间">
					<title>主页 on Doin的赛博空间</title>
					<g transform="translate(663.7,175.0)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="679.7" y="171.0" text-anchor="middle">主页 on Doin的赛博空间</text>
				</a>

				<a class="hotspot village-house" href="https://wiki.eryajf.net/" target="_blank" rel="noopener noreferrer" aria-label="二丫讲梵">
					<title>二丫讲梵</title>
					<g transform="translate(518.2,286.2)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="534.2" y="282.2" text-anchor="middle">二丫讲梵</text>
				</a>

				<a class="hotspot village-house" href="https://jefftay.com/" target="_blank" rel="noopener noreferrer" aria-label="仿生猫梦见电子猫粮">
					<title>仿生猫梦见电子猫粮</title>
					<g transform="translate(495.0,186.8)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="511.0" y="182.8" text-anchor="middle">仿生猫梦见电子猫粮</text>
				</a>

				<a class="hotspot village-house" href="https://vjo.cc/" target="_blank" rel="noopener noreferrer" aria-label="刘郎阁">
					<title>刘郎阁</title>
					<g transform="translate(437.9,301.5)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="453.9" y="297.5" text-anchor="middle">刘郎阁</text>
				</a>

				<a class="hotspot village-house" href="https://yinji.org/" target="_blank" rel="noopener noreferrer" aria-label="印记">
					<title>印记</title>
					<g transform="translate(955.0,445.7)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="971.0" y="441.7" text-anchor="middle">印记</text>
				</a>

				<a class="hotspot village-house" href="https://quaily.com/" target="_blank" rel="noopener noreferrer" aria-label="印记-周报">
					<title>印记-周报</title>
					<g transform="translate(674.1,292.4)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="690.1" y="288.4" text-anchor="middle">印记-周报</text>
				</a>

				<a class="hotspot village-house" href="https://zhoutian.com/" target="_blank" rel="noopener noreferrer" aria-label="周天记">
					<title>周天记</title>
					<g transform="translate(1013.6,375.3)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="1029.6" y="371.3" text-anchor="middle">周天记</text>
				</a>

				<a class="hotspot village-house" href="https://www.weiwenchao.com/" target="_blank" rel="noopener noreferrer" aria-label="四季·花开——魏文超's Blog">
					<title>四季·花开——魏文超's Blog</title>
					<g transform="translate(385.3,350.9)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="401.3" y="346.9" text-anchor="middle">四季·花开——魏文超's Blog</text>
				</a>

				<a class="hotspot village-house" href="https://wangyurui.com/" target="_blank" rel="noopener noreferrer" aria-label="太隐">
					<title>太隐</title>
					<g transform="translate(590.3,158.3)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="606.3" y="154.3" text-anchor="middle">太隐</text>
				</a>

				<a class="hotspot village-house" href="https://www.weisay.com/blog" target="_blank" rel="noopener noreferrer" aria-label="威言威语">
					<title>威言威语</title>
					<g transform="translate(726.9,423.4)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="742.9" y="419.4" text-anchor="middle">威言威语</text>
				</a>

				<a class="hotspot village-house" href="https://xyzbz.cn/" target="_blank" rel="noopener noreferrer" aria-label="子夜松声">
					<title>子夜松声</title>
					<g transform="translate(385.3,249.3)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="401.3" y="245.3" text-anchor="middle">子夜松声</text>
				</a>

				<a class="hotspot village-house" href="https://cuixiping.com/blog/" target="_blank" rel="noopener noreferrer" aria-label="崔话记 ATOM 1.0">
					<title>崔话记 ATOM 1.0</title>
					<g transform="translate(332.0,363.1)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="348.0" y="359.1" text-anchor="middle">崔话记 ATOM 1.0</text>
				</a>

				<a class="hotspot village-house" href="https://www.fengxiaoqiang.com/" target="_blank" rel="noopener noreferrer" aria-label="强少来了">
					<title>强少来了</title>
					<g transform="translate(662.7,443.9)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="678.7" y="439.9" text-anchor="middle">强少来了</text>
				</a>

				<a class="hotspot village-house" href="https://write.laily.net/zh-cn/" target="_blank" rel="noopener noreferrer" aria-label="我与我周旋久">
					<title>我与我周旋久</title>
					<g transform="translate(758.9,200.5)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="774.9" y="196.5" text-anchor="middle">我与我周旋久</text>
				</a>

				<a class="hotspot village-house" href="https://www.glowisle.me/" target="_blank" rel="noopener noreferrer" aria-label="映屿">
					<title>映屿</title>
					<g transform="translate(581.6,207.5)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="597.6" y="203.5" text-anchor="middle">映屿</text>
				</a>

				<a class="hotspot village-house" href="https://nxxy335.top/" target="_blank" rel="noopener noreferrer" aria-label="暖心向阳335">
					<title>暖心向阳335</title>
					<g transform="translate(811.1,379.8)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="827.1" y="375.8" text-anchor="middle">暖心向阳335</text>
				</a>

				<a class="hotspot village-house" href="https://www.geedea.pro/" target="_blank" rel="noopener noreferrer" aria-label="極客死亡計劃">
					<title>極客死亡計劃</title>
					<g transform="translate(534.0,439.8)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="550.0" y="435.8" text-anchor="middle">極客死亡計劃</text>
				</a>

				<a class="hotspot village-house" href="https://weekly.tw93.fun/" target="_blank" rel="noopener noreferrer" aria-label="潮流周刊">
					<title>潮流周刊</title>
					<g transform="translate(801.5,431.8)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="817.5" y="427.8" text-anchor="middle">潮流周刊</text>
				</a>

				<a class="hotspot village-house" href="https://blog.southfox.me/" target="_blank" rel="noopener noreferrer" aria-label="狐狸反走矣">
					<title>狐狸反走矣</title>
					<g transform="translate(605.8,434.5)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="621.8" y="430.5" text-anchor="middle">狐狸反走矣</text>
				</a>

				<a class="hotspot village-house" href="https://blog.bxaw.name/" target="_blank" rel="noopener noreferrer" aria-label="白熊阿丸的小屋">
					<title>白熊阿丸的小屋</title>
					<g transform="translate(806.4,265.9)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="822.4" y="261.9" text-anchor="middle">白熊阿丸的小屋</text>
				</a>

				<a class="hotspot village-house" href="https://blog.mzh.ren/zh/" target="_blank" rel="noopener noreferrer" aria-label="码农真经的博客">
					<title>码农真经的博客</title>
					<g transform="translate(378.3,421.7)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="394.3" y="417.7" text-anchor="middle">码农真经的博客</text>
				</a>

				<a class="hotspot village-house" href="https://pewae.com/" target="_blank" rel="noopener noreferrer" aria-label="破袜子">
					<title>破袜子</title>
					<g transform="translate(620.4,324.8)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="636.4" y="320.8" text-anchor="middle">破袜子</text>
				</a>

				<a class="hotspot village-house" href="https://www.suiyan.cc/" target="_blank" rel="noopener noreferrer" aria-label="碎言 - SuiYan Blog">
					<title>碎言 - SuiYan Blog</title>
					<g transform="translate(141.5,396.9)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="157.5" y="392.9" text-anchor="middle">碎言 - SuiYan Blog</text>
				</a>

				<a class="hotspot village-house" href="https://darmau.co/zh" target="_blank" rel="noopener noreferrer" aria-label="积薪 - 文章">
					<title>积薪 - 文章</title>
					<g transform="translate(896.2,442.4)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="912.2" y="438.4" text-anchor="middle">积薪 - 文章</text>
				</a>

				<a class="hotspot village-house" href="https://blog.zhilu.site/" target="_blank" rel="noopener noreferrer" aria-label="纸鹿摸鱼处">
					<title>纸鹿摸鱼处</title>
					<g transform="translate(880.8,322.7)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="896.8" y="318.7" text-anchor="middle">纸鹿摸鱼处</text>
				</a>

				<a class="hotspot village-house" href="https://lawtee.com/" target="_blank" rel="noopener noreferrer" aria-label="老T博客">
					<title>老T博客</title>
					<g transform="translate(647.5,388.9)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="663.5" y="384.9" text-anchor="middle">老T博客</text>
				</a>

				<a class="hotspot village-house" href="https://weekly.howie6879.com/" target="_blank" rel="noopener noreferrer" aria-label="老胡的周刊">
					<title>老胡的周刊</title>
					<g transform="translate(528.0,385.1)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="544.0" y="381.1" text-anchor="middle">老胡的周刊</text>
				</a>

				<a class="hotspot village-house" href="https://weekly.shawnxie.top/" target="_blank" rel="noopener noreferrer" aria-label="肖恩技术周刊">
					<title>肖恩技术周刊</title>
					<g transform="translate(427.3,191.2)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="443.3" y="187.2" text-anchor="middle">肖恩技术周刊</text>
				</a>

				<a class="hotspot village-house" href="https://hulatu.com/" target="_blank" rel="noopener noreferrer" aria-label="胡拉图">
					<title>胡拉图</title>
					<g transform="translate(226.9,445.8)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="242.9" y="441.8" text-anchor="middle">胡拉图</text>
				</a>

				<a class="hotspot village-house" href="https://onojyun.com/" target="_blank" rel="noopener noreferrer" aria-label="莫比乌斯">
					<title>莫比乌斯</title>
					<g transform="translate(538.1,177.9)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="554.1" y="173.9" text-anchor="middle">莫比乌斯</text>
				</a>

				<a class="hotspot village-house" href="https://www.loyhome.com/" target="_blank" rel="noopener noreferrer" aria-label="落园">
					<title>落园</title>
					<g transform="translate(525.9,226.2)">
						<rect class="fill-wall" x="6" y="8" width="20" height="28"/>
						<polygon class="fill-roof" points="4,8 16,0 28,8"/>
						<rect class="fill-window house-window" x="11" y="13" width="6" height="5"/>
						<rect class="fill-window house-window" x="11" y="22" width="6" height="5"/>
						<rect class="fill-door" x="10" y="30" width="8" height="6"/>
					</g>
					<text class="hotspot-label village-label" x="541.9" y="222.2" text-anchor="middle">落园</text>
				</a>

				<a class="hotspot village-house" href="https://1q43.blog/" target="_blank" rel="noopener noreferrer" aria-label="虹线">
					<title>虹线</title>
					<g transform="translate(966.2,385.4)">
						<rect class="fill-wall" x="2" y="16" width="28" height="20"/>
						<polygon class="fill-roof" points="0,16 16,0 32,16"/>
						<rect class="fill-window house-window" x="7" y="21" width="6" height="6"/>
						<rect class="fill-window house-window" x="19" y="21" width="6" height="6"/>
						<rect class="fill-door" x="12" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="982.2" y="381.4" text-anchor="middle">虹线</text>
				</a>

				<a class="hotspot village-house" href="https://sugarat.top/weekly" target="_blank" rel="noopener noreferrer" aria-label="视野修炼 - 技术周刊">
					<title>视野修炼 - 技术周刊</title>
					<g transform="translate(923.4,282.3)">
						<rect class="fill-wall" x="2" y="10" width="30" height="26"/>
						<rect class="fill-roof" x="0" y="8" width="34" height="4"/>
						<rect class="fill-window house-window" x="6" y="15" width="8" height="6"/>
						<rect class="fill-window house-window" x="20" y="15" width="8" height="6"/>
						<rect class="fill-door" x="13" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="939.4" y="278.3" text-anchor="middle">视野修炼 - 技术周刊</text>
				</a>

				<a class="hotspot village-house" href="http://www.ruanyifeng.com/blog/" target="_blank" rel="noopener noreferrer" aria-label="阮一峰的网络日志">
					<title>阮一峰的网络日志</title>
					<g transform="translate(563.3,282.4)">
						<rect class="fill-wall" x="0" y="14" width="38" height="22"/>
						<polygon class="fill-roof" points="-2,14 19,4 40,14"/>
						<rect class="fill-window house-window" x="4" y="19" width="7" height="5"/>
						<rect class="fill-window house-window" x="27" y="19" width="7" height="5"/>
						<rect class="fill-door" x="15" y="28" width="8" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="579.3" y="278.4" text-anchor="middle">阮一峰的网络日志</text>
				</a>

				<a class="hotspot village-house" href="https://ameow.xyz/categories/weekly" target="_blank" rel="noopener noreferrer" aria-label="阿猫的博客">
					<title>阿猫的博客</title>
					<g transform="translate(429.9,260.0)">
						<rect class="fill-wall" x="0" y="12" width="24" height="24"/>
						<rect class="fill-wall-dark" x="24" y="20" width="14" height="16"/>
						<polygon class="fill-roof" points="-2,12 12,2 26,12"/>
						<rect class="fill-roof" x="22" y="17" width="18" height="4"/>
						<rect class="fill-window house-window" x="5" y="18" width="5" height="5"/>
						<rect class="fill-window house-window" x="28" y="24" width="5" height="5"/>
						<rect class="fill-door" x="13" y="28" width="7" height="8"/>
					</g>
					<text class="hotspot-label village-label" x="445.9" y="256.0" text-anchor="middle">阿猫的博客</text>
				</a>

				<!-- Return path -->
				<a class="hotspot" href="neighbors.html" aria-label="邻邦 — Return to neighbors">
					<title>邻邦 — Return</title>
					<path class="hotspot-shape fill-path" d="M475 680 L505 680 L500 620 L480 620 Z"/>
					<text class="hotspot-label" x="490" y="710" text-anchor="middle">邻邦</text>
				</a>
				</svg>
			</div>
		</div>

		<nav id="scene-nav-friends" class="scene-nav" aria-label="友邻导航">
			<ul class="scene-nav__list">
				<li><a class="scene-nav__link" href="https://lab.gb0.dev/" target="_blank" rel="noopener noreferrer">/var/log/gblab</a></li>
				<li><a class="scene-nav__link" href="https://pathos.page/" target="_blank" rel="noopener noreferrer">2750 words</a></li>
				<li><a class="scene-nav__link" href="https://blog.ursb.me/" target="_blank" rel="noopener noreferrer">Airing 的博客</a></li>
				<li><a class="scene-nav__link" href="https://anotherdayu.com/" target="_blank" rel="noopener noreferrer">Another Dayu</a></li>
				<li><a class="scene-nav__link" href="https://blog.est.im/" target="_blank" rel="noopener noreferrer">est の 输入 输出和出入</a></li>
				<li><a class="scene-nav__link" href="https://fav0.com/" target="_blank" rel="noopener noreferrer">FAV0周刊</a></li>
				<li><a class="scene-nav__link" href="https://hellogithub.com/" target="_blank" rel="noopener noreferrer">HelloGitHub 月刊</a></li>
				<li><a class="scene-nav__link" href="https://liangmouyin.com/" target="_blank" rel="noopener noreferrer">Home on 梁某银的博客</a></li>
				<li><a class="scene-nav__link" href="https://www.immarcus.com/blog" target="_blank" rel="noopener noreferrer">I'm Marcus Blog</a></li>
				<li><a class="scene-nav__link" href="https://imqi1.com/" target="_blank" rel="noopener noreferrer">ImQi1</a></li>
				<li><a class="scene-nav__link" href="https://blog.zzbd.org/" target="_blank" rel="noopener noreferrer">J.F's BLOG</a></li>
				<li><a class="scene-nav__link" href="https://jakearchibald.com/" target="_blank" rel="noopener noreferrer">Jake Archibald's blog</a></li>
				<li><a class="scene-nav__link" href="https://justgoidea.com/" target="_blank" rel="noopener noreferrer">JustGoIdea</a></li>
				<li><a class="scene-nav__link" href="https://www.justzht.com/" target="_blank" rel="noopener noreferrer">JustZht's EchoChamber</a></li>
				<li><a class="scene-nav__link" href="http://study.tczhong.com/" target="_blank" rel="noopener noreferrer">Learn More</a></li>
				<li><a class="scene-nav__link" href="https://blog.liuzhen932.top/" target="_blank" rel="noopener noreferrer">liuzhen932 的小窝</a></li>
				<li><a class="scene-nav__link" href="https://markonreview.com/" target="_blank" rel="noopener noreferrer">Markon Review</a></li>
				<li><a class="scene-nav__link" href="https://h4ck.org.cn/" target="_blank" rel="noopener noreferrer">obaby@mars</a></li>
				<li><a class="scene-nav__link" href="https://www.owenyoung.com/" target="_blank" rel="noopener noreferrer">Owen的博客</a></li>
				<li><a class="scene-nav__link" href="https://hsu.cy/posts/" target="_blank" rel="noopener noreferrer">Posts on neverland</a></li>
				<li><a class="scene-nav__link" href="https://www.pseudoyu.com/" target="_blank" rel="noopener noreferrer">pseudoyu</a></li>
				<li><a class="scene-nav__link" href="https://weblog.contained.love/" target="_blank" rel="noopener noreferrer">r0k1s#i</a></li>
				<li><a class="scene-nav__link" href="https://rayepeng.net" target="_blank" rel="noopener noreferrer">Raye's Journey</a></li>
				<li><a class="scene-nav__link" href="https://skywt.cn/" target="_blank" rel="noopener noreferrer">SkyWT</a></li>
				<li><a class="scene-nav__link" href="https://blog.solazy.me/" target="_blank" rel="noopener noreferrer">So!azy</a></li>
				<li><a class="scene-nav__link" href="https://sqybi.com/blog/" target="_blank" rel="noopener noreferrer">SQYBI.com Blog</a></li>
				<li><a class="scene-nav__link" href="https://www.taober.blog/" target="_blank" rel="noopener noreferrer">Taober</a></li>
				<li><a class="scene-nav__link" href="https://taxodium.ink/" target="_blank" rel="noopener noreferrer">Taxodium</a></li>
				<li><a class="scene-nav__link" href="https://tw93.fun/" target="_blank" rel="noopener noreferrer">Tw93 Blog</a></li>
				<li><a class="scene-nav__link" href="https://zishu.me" target="_blank" rel="noopener noreferrer">Weekly on 子舒的博客</a></li>
				<li><a class="scene-nav__link" href="https://blog.itswincer.com/" target="_blank" rel="noopener noreferrer">Wincer's Blog ATOM</a></li>
				<li><a class="scene-nav__link" href="https://nelsonboss.ink/" target="_blank" rel="noopener noreferrer">一直游到海水变蓝</a></li>
				<li><a class="scene-nav__link" href="https://ihaihe.cn/" target="_blank" rel="noopener noreferrer">三十海河</a></li>
				<li><a class="scene-nav__link" href="https://dongjunke.cn/" target="_blank" rel="noopener noreferrer">东评西就</a></li>
				<li><a class="scene-nav__link" href="https://doin.pages.dev/" target="_blank" rel="noopener noreferrer">主页 on Doin的赛博空间</a></li>
				<li><a class="scene-nav__link" href="https://wiki.eryajf.net/" target="_blank" rel="noopener noreferrer">二丫讲梵</a></li>
				<li><a class="scene-nav__link" href="https://jefftay.com/" target="_blank" rel="noopener noreferrer">仿生猫梦见电子猫粮</a></li>
				<li><a class="scene-nav__link" href="https://vjo.cc/" target="_blank" rel="noopener noreferrer">刘郎阁</a></li>
				<li><a class="scene-nav__link" href="https://yinji.org/" target="_blank" rel="noopener noreferrer">印记</a></li>
				<li><a class="scene-nav__link" href="https://quaily.com/" target="_blank" rel="noopener noreferrer">印记-周报</a></li>
				<li><a class="scene-nav__link" href="https://zhoutian.com/" target="_blank" rel="noopener noreferrer">周天记</a></li>
				<li><a class="scene-nav__link" href="https://www.weiwenchao.com/" target="_blank" rel="noopener noreferrer">四季·花开——魏文超's Blog</a></li>
				<li><a class="scene-nav__link" href="https://wangyurui.com/" target="_blank" rel="noopener noreferrer">太隐</a></li>
				<li><a class="scene-nav__link" href="https://www.weisay.com/blog" target="_blank" rel="noopener noreferrer">威言威语</a></li>
				<li><a class="scene-nav__link" href="https://xyzbz.cn/" target="_blank" rel="noopener noreferrer">子夜松声</a></li>
				<li><a class="scene-nav__link" href="https://cuixiping.com/blog/" target="_blank" rel="noopener noreferrer">崔话记 ATOM 1.0</a></li>
				<li><a class="scene-nav__link" href="https://www.fengxiaoqiang.com/" target="_blank" rel="noopener noreferrer">强少来了</a></li>
				<li><a class="scene-nav__link" href="https://write.laily.net/zh-cn/" target="_blank" rel="noopener noreferrer">我与我周旋久</a></li>
				<li><a class="scene-nav__link" href="https://www.glowisle.me/" target="_blank" rel="noopener noreferrer">映屿</a></li>
				<li><a class="scene-nav__link" href="https://nxxy335.top/" target="_blank" rel="noopener noreferrer">暖心向阳335</a></li>
				<li><a class="scene-nav__link" href="https://www.geedea.pro/" target="_blank" rel="noopener noreferrer">極客死亡計劃</a></li>
				<li><a class="scene-nav__link" href="https://weekly.tw93.fun/" target="_blank" rel="noopener noreferrer">潮流周刊</a></li>
				<li><a class="scene-nav__link" href="https://blog.southfox.me/" target="_blank" rel="noopener noreferrer">狐狸反走矣</a></li>
				<li><a class="scene-nav__link" href="https://blog.bxaw.name/" target="_blank" rel="noopener noreferrer">白熊阿丸的小屋</a></li>
				<li><a class="scene-nav__link" href="https://blog.mzh.ren/zh/" target="_blank" rel="noopener noreferrer">码农真经的博客</a></li>
				<li><a class="scene-nav__link" href="https://pewae.com/" target="_blank" rel="noopener noreferrer">破袜子</a></li>
				<li><a class="scene-nav__link" href="https://www.suiyan.cc/" target="_blank" rel="noopener noreferrer">碎言 - SuiYan Blog</a></li>
				<li><a class="scene-nav__link" href="https://darmau.co/zh" target="_blank" rel="noopener noreferrer">积薪 - 文章</a></li>
				<li><a class="scene-nav__link" href="https://blog.zhilu.site/" target="_blank" rel="noopener noreferrer">纸鹿摸鱼处</a></li>
				<li><a class="scene-nav__link" href="https://lawtee.com/" target="_blank" rel="noopener noreferrer">老T博客</a></li>
				<li><a class="scene-nav__link" href="https://weekly.howie6879.com/" target="_blank" rel="noopener noreferrer">老胡的周刊</a></li>
				<li><a class="scene-nav__link" href="https://weekly.shawnxie.top/" target="_blank" rel="noopener noreferrer">肖恩技术周刊</a></li>
				<li><a class="scene-nav__link" href="https://hulatu.com/" target="_blank" rel="noopener noreferrer">胡拉图</a></li>
				<li><a class="scene-nav__link" href="https://onojyun.com/" target="_blank" rel="noopener noreferrer">莫比乌斯</a></li>
				<li><a class="scene-nav__link" href="https://www.loyhome.com/" target="_blank" rel="noopener noreferrer">落园</a></li>
				<li><a class="scene-nav__link" href="https://1q43.blog/" target="_blank" rel="noopener noreferrer">虹线</a></li>
				<li><a class="scene-nav__link" href="https://sugarat.top/weekly" target="_blank" rel="noopener noreferrer">视野修炼 - 技术周刊</a></li>
				<li><a class="scene-nav__link" href="http://www.ruanyifeng.com/blog/" target="_blank" rel="noopener noreferrer">阮一峰的网络日志</a></li>
				<li><a class="scene-nav__link" href="https://ameow.xyz/categories/weekly" target="_blank" rel="noopener noreferrer">阿猫的博客</a></li>
				<li><a class="scene-nav__link" href="neighbors.html">邻邦 — 返回邻邦</a></li>
			</ul>
		</nav>

		<noscript>
			<p style="padding:var(--space-md);color:var(--text-secondary);">
				以下是所有友邻链接:
			</p>
			<ul style="padding:var(--space-md);list-style:disc;color:var(--text-secondary);">
				<li><a href="https://lab.gb0.dev/" target="_blank" rel="noopener noreferrer">/var/log/gblab</a></li>
				<li><a href="https://pathos.page/" target="_blank" rel="noopener noreferrer">2750 words</a></li>
				<li><a href="https://blog.ursb.me/" target="_blank" rel="noopener noreferrer">Airing 的博客</a></li>
				<li><a href="https://anotherdayu.com/" target="_blank" rel="noopener noreferrer">Another Dayu</a></li>
				<li><a href="https://blog.est.im/" target="_blank" rel="noopener noreferrer">est の 输入 输出和出入</a></li>
				<li><a href="https://fav0.com/" target="_blank" rel="noopener noreferrer">FAV0周刊</a></li>
				<li><a href="https://hellogithub.com/" target="_blank" rel="noopener noreferrer">HelloGitHub 月刊</a></li>
				<li><a href="https://liangmouyin.com/" target="_blank" rel="noopener noreferrer">Home on 梁某银的博客</a></li>
				<li><a href="https://www.immarcus.com/blog" target="_blank" rel="noopener noreferrer">I'm Marcus Blog</a></li>
				<li><a href="https://imqi1.com/" target="_blank" rel="noopener noreferrer">ImQi1</a></li>
				<li><a href="https://blog.zzbd.org/" target="_blank" rel="noopener noreferrer">J.F's BLOG</a></li>
				<li><a href="https://jakearchibald.com/" target="_blank" rel="noopener noreferrer">Jake Archibald's blog</a></li>
				<li><a href="https://justgoidea.com/" target="_blank" rel="noopener noreferrer">JustGoIdea</a></li>
				<li><a href="https://www.justzht.com/" target="_blank" rel="noopener noreferrer">JustZht's EchoChamber</a></li>
				<li><a href="http://study.tczhong.com/" target="_blank" rel="noopener noreferrer">Learn More</a></li>
				<li><a href="https://blog.liuzhen932.top/" target="_blank" rel="noopener noreferrer">liuzhen932 的小窝</a></li>
				<li><a href="https://markonreview.com/" target="_blank" rel="noopener noreferrer">Markon Review</a></li>
				<li><a href="https://h4ck.org.cn/" target="_blank" rel="noopener noreferrer">obaby@mars</a></li>
				<li><a href="https://www.owenyoung.com/" target="_blank" rel="noopener noreferrer">Owen的博客</a></li>
				<li><a href="https://hsu.cy/posts/" target="_blank" rel="noopener noreferrer">Posts on neverland</a></li>
				<li><a href="https://www.pseudoyu.com/" target="_blank" rel="noopener noreferrer">pseudoyu</a></li>
				<li><a href="https://weblog.contained.love/" target="_blank" rel="noopener noreferrer">r0k1s#i</a></li>
				<li><a href="https://rayepeng.net" target="_blank" rel="noopener noreferrer">Raye's Journey</a></li>
				<li><a href="https://skywt.cn/" target="_blank" rel="noopener noreferrer">SkyWT</a></li>
				<li><a href="https://blog.solazy.me/" target="_blank" rel="noopener noreferrer">So!azy</a></li>
				<li><a href="https://sqybi.com/blog/" target="_blank" rel="noopener noreferrer">SQYBI.com Blog</a></li>
				<li><a href="https://www.taober.blog/" target="_blank" rel="noopener noreferrer">Taober</a></li>
				<li><a href="https://taxodium.ink/" target="_blank" rel="noopener noreferrer">Taxodium</a></li>
				<li><a href="https://tw93.fun/" target="_blank" rel="noopener noreferrer">Tw93 Blog</a></li>
				<li><a href="https://zishu.me" target="_blank" rel="noopener noreferrer">Weekly on 子舒的博客</a></li>
				<li><a href="https://blog.itswincer.com/" target="_blank" rel="noopener noreferrer">Wincer's Blog ATOM</a></li>
				<li><a href="https://nelsonboss.ink/" target="_blank" rel="noopener noreferrer">一直游到海水变蓝</a></li>
				<li><a href="https://ihaihe.cn/" target="_blank" rel="noopener noreferrer">三十海河</a></li>
				<li><a href="https://dongjunke.cn/" target="_blank" rel="noopener noreferrer">东评西就</a></li>
				<li><a href="https://doin.pages.dev/" target="_blank" rel="noopener noreferrer">主页 on Doin的赛博空间</a></li>
				<li><a href="https://wiki.eryajf.net/" target="_blank" rel="noopener noreferrer">二丫讲梵</a></li>
				<li><a href="https://jefftay.com/" target="_blank" rel="noopener noreferrer">仿生猫梦见电子猫粮</a></li>
				<li><a href="https://vjo.cc/" target="_blank" rel="noopener noreferrer">刘郎阁</a></li>
				<li><a href="https://yinji.org/" target="_blank" rel="noopener noreferrer">印记</a></li>
				<li><a href="https://quaily.com/" target="_blank" rel="noopener noreferrer">印记-周报</a></li>
				<li><a href="https://zhoutian.com/" target="_blank" rel="noopener noreferrer">周天记</a></li>
				<li><a href="https://www.weiwenchao.com/" target="_blank" rel="noopener noreferrer">四季·花开——魏文超's Blog</a></li>
				<li><a href="https://wangyurui.com/" target="_blank" rel="noopener noreferrer">太隐</a></li>
				<li><a href="https://www.weisay.com/blog" target="_blank" rel="noopener noreferrer">威言威语</a></li>
				<li><a href="https://xyzbz.cn/" target="_blank" rel="noopener noreferrer">子夜松声</a></li>
				<li><a href="https://cuixiping.com/blog/" target="_blank" rel="noopener noreferrer">崔话记 ATOM 1.0</a></li>
				<li><a href="https://www.fengxiaoqiang.com/" target="_blank" rel="noopener noreferrer">强少来了</a></li>
				<li><a href="https://write.laily.net/zh-cn/" target="_blank" rel="noopener noreferrer">我与我周旋久</a></li>
				<li><a href="https://www.glowisle.me/" target="_blank" rel="noopener noreferrer">映屿</a></li>
				<li><a href="https://nxxy335.top/" target="_blank" rel="noopener noreferrer">暖心向阳335</a></li>
				<li><a href="https://www.geedea.pro/" target="_blank" rel="noopener noreferrer">極客死亡計劃</a></li>
				<li><a href="https://weekly.tw93.fun/" target="_blank" rel="noopener noreferrer">潮流周刊</a></li>
				<li><a href="https://blog.southfox.me/" target="_blank" rel="noopener noreferrer">狐狸反走矣</a></li>
				<li><a href="https://blog.bxaw.name/" target="_blank" rel="noopener noreferrer">白熊阿丸的小屋</a></li>
				<li><a href="https://blog.mzh.ren/zh/" target="_blank" rel="noopener noreferrer">码农真经的博客</a></li>
				<li><a href="https://pewae.com/" target="_blank" rel="noopener noreferrer">破袜子</a></li>
				<li><a href="https://www.suiyan.cc/" target="_blank" rel="noopener noreferrer">碎言 - SuiYan Blog</a></li>
				<li><a href="https://darmau.co/zh" target="_blank" rel="noopener noreferrer">积薪 - 文章</a></li>
				<li><a href="https://blog.zhilu.site/" target="_blank" rel="noopener noreferrer">纸鹿摸鱼处</a></li>
				<li><a href="https://lawtee.com/" target="_blank" rel="noopener noreferrer">老T博客</a></li>
				<li><a href="https://weekly.howie6879.com/" target="_blank" rel="noopener noreferrer">老胡的周刊</a></li>
				<li><a href="https://weekly.shawnxie.top/" target="_blank" rel="noopener noreferrer">肖恩技术周刊</a></li>
				<li><a href="https://hulatu.com/" target="_blank" rel="noopener noreferrer">胡拉图</a></li>
				<li><a href="https://onojyun.com/" target="_blank" rel="noopener noreferrer">莫比乌斯</a></li>
				<li><a href="https://www.loyhome.com/" target="_blank" rel="noopener noreferrer">落园</a></li>
				<li><a href="https://1q43.blog/" target="_blank" rel="noopener noreferrer">虹线</a></li>
				<li><a href="https://sugarat.top/weekly" target="_blank" rel="noopener noreferrer">视野修炼 - 技术周刊</a></li>
				<li><a href="http://www.ruanyifeng.com/blog/" target="_blank" rel="noopener noreferrer">阮一峰的网络日志</a></li>
				<li><a href="https://ameow.xyz/categories/weekly" target="_blank" rel="noopener noreferrer">阿猫的博客</a></li>
			</ul>
		</noscript>
	</main>

</body>
</html>