-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathannes-farewell.html
More file actions
1135 lines (923 loc) · 56.1 KB
/
annes-farewell.html
File metadata and controls
1135 lines (923 loc) · 56.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-corrections" lang="en-corrections">
<head>
<title>Anne's Farewell (3 of 3) - The Backrooms</title>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/init.combined.js"></script>
<script type="text/javascript">
var URL_HOST = 'www.wikidot.com';
var URL_DOMAIN = 'wikidot.com';
var USE_SSL = true ;
var URL_STATIC = 'https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc';
// global request information
var WIKIREQUEST = {};
WIKIREQUEST.info = {};
WIKIREQUEST.info.domain = "backrooms-wiki.wikidot.com";
WIKIREQUEST.info.siteId = 4431268;
WIKIREQUEST.info.siteUnixName = "backrooms-wiki";
WIKIREQUEST.info.categoryId = 38105090;
WIKIREQUEST.info.themeId = 1;
WIKIREQUEST.info.requestPageName = "annes-farewell";
OZONE.request.timestamp = 1763637413;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "annes-farewell";
WIKIREQUEST.info.pageId = 1437004555;
WIKIREQUEST.info.lang = "en-corrections";
OZONE.lang = "en-corrections";
var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
</script>
<script type="text/javascript">
require.config({
baseUrl: URL_STATIC + '/common--javascript',
paths: {
'jquery.ui': 'jquery-ui.min',
'jquery.form': 'jquery.form'
}
});
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<meta name="og:title" content="Anne's Farewell (3 of 3)"/>
<meta name="og:description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:site_name" content="The Backrooms Wiki"/>
<meta name="og:type" content="article"/>
<meta name="description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:image" content="http://backrooms-wiki.wikidot.com/local--files/start/opengraphhallprint.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="twitter:card" content="summary"/>
<meta http-equiv="content-language" content="en-corrections"/>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/WIKIDOT.combined.js"></script>
<style type="text/css" id="internal-style">
/* modules */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/css/pagerate/PageRateWidgetModule.css);
/* theme */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--theme/base/css/style.css);
@import url(http://backrooms-wiki.wikidot.com/local--files/component:theme/nulim-norm.min.css);
</style>
<link rel="shortcut icon" href="/local--favicon/favicon.gif"/>
<link rel="icon" type="image/gif" href="/local--favicon/favicon.gif"/>
<link rel="apple-touch-icon" href="/local--iosicon/iosicon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/local--iosicon/iosicon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/local--iosicon/iosicon.png" />
<meta name="msapplication-TileImage" content="/local--wp8icon/wp8icon.png"/>
<link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18234656-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
_gaq.push(['old._setAccount', 'UA-68540-5']);
_gaq.push(['old._setDomainName', 'none']);
_gaq.push(['old._setAllowLinker', true]);
_gaq.push(['old._trackPageview']);
</script>
<script type="text/javascript">
window.google_analytics_uacct = 'UA-18234656-1';
window.google_analytics_domain_name = 'none';
</script>
<link rel="manifest" href="/onesignal/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: null,
});
});
</script>
<meta name="google-adsense-account" content="ca-pub-7805322678042888"/>
<style>
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
#side-bar .side-block.languages { margin-top: 0; }
.side-block.languages .heading { margin-top: 1em; }
#side-bar .side-block.socials {
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
#side-bar .side-block .sidebar-social {
background: rgb(var(--dark-gray-monochrome, 30, 30, 30));
color: rgb(var(--white-monochrome, 240, 240, 240));
display: inline-flex;
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
margin: 0.25rem;
padding: 5px;
border-radius: 5px;
text-decoration: none;
align-items: center;
justify-content: center;
transition: 0.1s;
}
#side-bar .side-block .sidebar-social:visited {
color: rgb(var(--white-monochrome, 240, 240, 240));
}
#side-bar .side-block .sidebar-social:is(:hover, :focus) {
background: rgb(var(--bright-accent, 90, 90, 90));
}
@media screen and (max-width: 56.25rem) {
#side-bar .side-block .sidebar-social {
width: 1.6rem;
height: 1.6rem;
font-size: 1.6rem;
margin: 0.3rem;
}
}
</style>
<style>
/* Site Theme */
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Anuliminal/1);
/* Collapsible Sidebar */
@import url("https://backrooms-wiki.wikidot.com/component:sidebar-theme/code/1");
/* User Flairs */
@import url("https://backrooms-wiki.wikidot.com/component:user-flairs/code/1");
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Merriweather&display=swap');
:root {
--logo-image: url()
--body-font: 'Merriweather', serif;
--header-font: 'Merriweather', serif;
--title-font: 'Merriweather', serif;
--header-title: "The Backrooms";
--header-subtitle: "Goodbye";
--pale-gray-monochrome: 220, 220, 220;
--white-monochrome: 255, 251, 240;
}
#skrollr-body {
background-image: url("http://backrooms-wiki.wikidot.com/local--files/level-365/StormClouds3.jpg");
background-size: inherit;
}
body{
font-family: 'Merriweather', serif;
}
#login-status {
color: rgb(var(--swatch-text-light));
}
.lightblock {
background-color:rgb(255,255,255);
font-family: 'Merriweather', serif;
}
.styled-quote {
background-color:rgb(255,255,255);
font-family: 'Merriweather', serif;
}
.darkblock {
background-color:rgb(77, 74, 65);
font-family: 'Merriweather', serif;
color: rgb(220, 220, 220);
}
.dark-styled-quote {
background-color:rgb(77, 74, 65);
font-family: 'Merriweather', serif;
color: rgb(220, 220, 220);
border-left: 0.5rem solid rgb(255, 251, 240);
}
:is(blockquote,.blockquote,div.blockquote,[class*=blockquote]) {
--box-shadow: rgba(var(--swatch-menubg-black-color),0.1);
display: block;
clear: both;
margin: 0.5em 40px;
box-shadow: 0 0.0625rem 0.125em rgba(0,0,0,.1);
box-shadow: 0 0.0625rem 0.125em var(--box-shadow);
border: 0.0625rem dashed rgba(var(--swatch-border-color),.25);
background-color: #f4f4f4;
background-color: rgb(var(--swatch-secondary-color));
padding: 0 1em;
font-family: 'Merriweather', serif;
}
.wiki-content-table th {
color: #DCDCDC !important;
background-color: #4D4A41 !important;
}
.sd-container {
--sd-text:255, 255, 255;
}
</style>
<style>
.creditRate {
float: right;
}
</style>
<style>
#u-infobox {
opacity: 0 !important;
pointer-events: none;
will-change: opacity;
transition: 0.2s;
display: flex;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
position: fixed;
z-index: 20;
background-color: rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.5);
justify-content: center;
align-items: center;
}
#page-content div.rate-box-with-credit-button > .creditButton > p > a::after {
background-color: rgb(var(--swatch-primary));
}
#u-infobox:target {
opacity: 1 !important;
pointer-events: unset;
}
.infobox-title {
--wght: 800;
display: flex;
justify-content: flex-start;
margin: 0;
padding: 1.5ex 1.25rem;
background-color: rgb(var(--modal-header-bg, var(--swatch-primary-darker)));
background-image: linear-gradient(125deg,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 25%,transparent 25%,transparent 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 75%,transparent 75%,transparent 100%);
background-size: 3rem 4.35rem;
color: rgb(var(--modal-header-txt, var(--swatch-text-secondary-color)));
font-family: var(--header-font);
font-size: 1.5em;
font-weight: var(--wght);
line-height: 1ex;
text-transform: uppercase;
}
.infobox {
display: grid;
width: 60vw;
border: 0;
background-color: rgb(var(--modal-bg, var(--white-monochrome)));
box-shadow: inset 0 0 0 .125rem rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25),.5rem .25rem 1rem 0 rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25);
color: rgb(var(--modal-body-text, var(--swatch-text-general)));
}
.infobox-footer {
width: 100%;
margin: 1rem 0 1em;
padding: 1rem 1rem 0 0;
box-shadow: 0-.0625rem 0 0 rgba(var(--modal-header-stripe, var(--swatch-primary)),.2);
text-align: right;
}
.infobox-title p, .infobox-footer p {
all: unset;
}
.infobox-body {
display: grid;
margin: 0 1rem;
padding: 0;
}
</style>
<style>
.rater .page-rate-widget-box { /* removes gap */
margin: 0;
}
@keyframes badrate { /* bar flashes red when in deletion threshold */
from {box-shadow: 10px 10px 0px 200px rgba(255,0,0,0.8) inset;}
to {box-shadow: 10px 10px 0px 200px rgba(255,0,0,0) inset;}
}
</style>
<style>
.licensebox .collapsible-block-link {
margin-left: inherit;
padding: inherit;
transition: inherit;
opacity: inherit;
color: inherit;
font-weight: inherit;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/list/ListPagesModule.js"></script>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/pagerate/PageRateWidgetModule.js"></script>
</head>
<body id="html-body">
<div id="skrollr-body">
<a name="page-top"></a>
<div id="container-wrap-wrap">
<div id="container-wrap">
<div id="container">
<div id="header">
<h1><a href="/"><span>The Backrooms</span></a></h1>
<h2><span>You've been here before.</span></h2>
<!-- google_ad_section_start(weight=ignore) -->
<div id="search-top-box" class="form-search">
<form id="search-top-box-form" action="dummy" class="input-append">
<input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/>
</form>
</div>
<div id="top-bar">
<div class="list-pages-box">
</div>
<div class="top-bar">
<ul>
<li><a href="/start">Home</a></li>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/top-rated-pages-this-month">Top Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a>
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
</ul>
</li>
<li><a href="/entities">Entities</a>
<ul>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
</ul>
</li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Community
<ul>
<li><a href="/forum:start">Forums</a></li>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/contest-archive">Contest Archive</a></li>
<li><a href="/page-of-the-week-archive">Page Of The Week Archive</a></li>
<li><a href="/featured-archive">Featured Archive</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/site-rules">Site Rules</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/art-page-policy">Art Page Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
</ul>
</li>
</ul>
</div>
<div class="mobile-top-bar">
<div class="open-menu">
<p><a href="#side-bar">≡</a></p>
</div>
<ul>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
<li><a href="/forum:start">Forums</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div>
<div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div>
</div>
<div id="content-wrap">
<div id="side-bar">
<div class="side-block socials"><a class="sidebar-social fa-brands fa-x-twitter" href="/twitter"><span style="font-size:0%;">Twitter</span></a><a class="sidebar-social fa-brands fa-discord" href="/discord"><span style="font-size:0%;">Discord</span></a><a class="sidebar-social fa-brands fa-facebook" href="https://www.facebook.com/profile.php?id=61575995663725/"><span style="font-size:0%;">Facebook</span></a><a class="sidebar-social fa-brands fa-instagram" href="https://www.instagram.com/backrooms.wikidot/"><span style="font-size:0%;">Instagram</span></a><a class="sidebar-social fa-brands fa-bluesky" href="https://bsky.app/profile/ts.thebackrooms.wiki/"><span style="font-size:0%;">Bluesky</span></a><a class="sidebar-social fa-brands fa-tumblr" href="/tumblr"><span style="font-size:0%;">Tumblr</span></a></div>
<div class="side-block">
<div class="menu-item"><a href="/">Main</a> | <a href="/forum:start">Forum</a></div>
</div>
<div class="side-block">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">For New Users</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">– hide block</a></div>
<div class="collapsible-block-content">
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
<div class="menu-item">
<p><a href="/greenlight-policy">Greenlight Policy</a></p>
</div>
<div class="menu-item">
<p><a href="http://backrooms-wiki.wikidot.com/forum/c-6898685/introductions">Forum: Introduce Yourself</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="side-block languages"><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div></div>
<div class="side-block">
<div class="heading">
<p><strong>Library</strong></p>
</div>
<div class="menu-item">
<p><a href="/normal-levels-i">Levels</a>|<a href="/unnumbered-levels">Unnumbered Levels</a></p>
</div>
<div class="menu-item">
<p><a href="/entities">Entities</a>|<a href="/unnumbered-entities">Unnumbered Entities</a></p>
</div>
<div class="menu-item">
<p><a href="/phenomena">Phenomena</a>|<a href="/objects">Objects</a>|<a href="/tales">Tales</a></p>
</div>
<div class="menu-item">
<p><a href="/poi-s">POI's</a>|<a href="/groups-list">Groups</a>|<a href="/canons">Canons</a></p>
</div>
<div class="menu-item">
<p><a href="/joke-entries">Joke Pages</a>|<a href="/themes">Themes</a>|<a href="/components">Components</a></p>
</div>
<div class="menu-item">
<p><a href="/art-gallery">Art Gallery</a>|<a href="/hubs-hub">Hubs Hub</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Wiki</strong></p>
</div>
<div class="menu-item">
<p><a href="/how-many-pages">How Many Pages?</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-this-month">Top Rated New Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-by-year">Top Pages by Year</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages">Top Pages of All Time</a></p>
</div>
<div class="menu-item">
<p><a href="/most-recently-created">Newly Created Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/underread-and-underrated">Underread Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/random:random-page">Random Page</a></p>
</div>
<div class="menu-item">
<p><a href="/lowest-rated-pages">Lowest Rated Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/system:page-tags">Tags</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Community</strong></p>
</div>
<div class="menu-item">
<p><a href="/system:join">Join The Wiki</a></p>
</div>
<div class="menu-item">
<p><a href="/forum:start">Forum</a> - <a href="/forum:recent-posts">New Posts</a></p>
</div>
<div class="menu-item">
<p><a href="/translations-hub">Translations Hub</a></p>
</div>
<div class="menu-item">
<p><a href="/authors-pages">Authors' Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/meet-the-staff">Meet The Staff</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Resources</strong></p>
</div>
<div class="menu-item">
<p><a href="/faq">FAQ</a></p>
</div>
<div class="menu-item">
<p><a href="/guide-hub">Guide Hub</a></p>
</div>
<div class="menu-item">
<p><a href="http://www.backrooms-sandbox-2.wikidot.com">Sandbox</a></p>
</div>
<div class="menu-item">
<p><a href="/system:recent-changes">Recent Changes</a></p>
</div>
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
</div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
<p><a class="open-menu" href="#side-bar"><br /></a></p>
<a class="close-menu" href="##"><br />
<img src="https://scp-wiki.wdfiles.com/local--files/nav:side/black.png" style="z-index:-1; opacity: 0.3;" alt="black.png" class="image" /><br /></a>
</div>
<!-- google_ad_section_end -->
<div id="main-content">
<div id="action-area-top"></div>
<div id="page-title">
Anne's Farewell (3 of 3)
</div>
<div id="page-content">
<div class="creditRate">
<div class="rateBox">
<div class="rate-box-with-credit-button"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+37</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div>
<div class="creditButton">
<p><a class="fa fa-info" href="#u-infobox"></a></p>
</div>
</div>
</div>
</div>
<br />
<div style="clear:both; height: 0px; font-size: 1px"></div>
<div id="u-infobox" style="z-index: 999;">
<div class="infobox">
<div class="infobox-title">
<p>Info</p>
</div>
<div class="infobox-body">
<div style="max-height: 60vh; overflow: auto; z-index: 999;">
<p>Article by <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/robert-goerman" onclick="WIKIDOT.page.listeners.userInfo(6447777); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=6447777&amp;size=small&amp;timestamp=1761062851" alt="Robert Goerman" style="background-image:url(https://www.wikidot.com/userkarma.php?u=6447777)" /></a><a href="http://www.wikidot.com/user:info/robert-goerman" onclick="WIKIDOT.page.listeners.userInfo(6447777); return false;">Robert Goerman</a></span></p>
<p><a href="/goerman">My Author Page</a></p>
<p>Theme created by <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/mc-crafter-24-7" onclick="WIKIDOT.page.listeners.userInfo(8055101); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8055101&amp;size=small&amp;timestamp=1761062851" alt="MC_Crafter_24_7" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8055101)" /></a><a href="http://www.wikidot.com/user:info/mc-crafter-24-7" onclick="WIKIDOT.page.listeners.userInfo(8055101); return false;">MC_Crafter_24_7</a></span></p>
</div>
<div class="infobox-footer">
<p><a class="button btn" href="###">Close</a></p>
</div>
</div>
</div>
</div>
<div class="lightblock">
<p>I remember my first fistfight. The other girl was bigger, stronger, and meaner. I was a new kid. She sucker punched me and I went to the ground, seeing stars, dazed and crying. The bully stood there and taunted me. This fight had only just begun, but I already saw the end of the battle in my mind. That other girl would run for home, holding her bloody nose. The universe picked me up and dusted me off. I clenched my fist and proved my worth.</p>
<p>Anne Dunne<br />
<a href="/the-m-e-g">M.E.G.</a> Team "Looking Glass"</p>
</div>
<p>The <a href="/entity-190">Man in Black</a> stood triumphant and mocked the failed attempt to escape. He was clothed in the flesh of a <a href="/entity-1">human</a> and wore eyes that did not see and a mouth that could not speak. That was camouflage for the locals. His vision required no visible light. Human beings, none the wiser, connected his moving lips with that telepathic voice, convincing themselves that they were hearing a sound.</p>
<p>"This ends here," he added. "You end here."</p>
<p>Amy Cochrane crab walked out of immediate harm's way, jumped to her feet, and twirled twin swords in a single, smooth motion, like a ballerina with blades. Anne Dunne assumed a lotus position in the grass and saw the end of the conflict in her mind. "We won't win this fight that way," she cautioned. "Please stand down, Hermosa Muerte."</p>
<p>"You will not win any fight," the MiB corrected.</p>
<p>"You are wrong," the psychic told her assassin. "I have seen your fate. It isn’t…"</p>
<p>"So you can hide your thoughts from me," the Man in Black interrupted. "Little consolation when you lie dead and think no more thoughts."</p>
<p>"We are not the only ones you have to fight," Anne said, and then she was gone.</p>
<p>The MiB looked up and snarled at the Ring in the sky.</p>
<p>"About that escape, you better hurry," Amy said, keeping up her guard. "My friend in the Ring might send Anne somewhere safe."</p>
<p>He flashed his yellow eyes at the girl, growled when the enchantment had no effect, and <a href="/phenomenon-5">no-clipped</a> into the Ring.</p>
<hr />
<hr />
<p>Having studied the M.E.G. archives regarding the Harbinger Arch and Ring found on <a href="/level-710">Level 710</a>, Anne Dunne knew exactly where she was. The infamous Guestbook rested on the writing table under the North window of the Ring.</p>
<p>“Amy?” she called. “Amy!”</p>
<p>Other than the writing desk and window, a gently curving, empty hallway extended in both directions.</p>
<p>She told the One in the Ring, “You protect her. Please!”</p>
<p>“How wonderfully human,” a voice seemed to whisper in her ear. Unlike sound, telepathy offered no clues to direction and distance. “Spending your last moments filled with concern over your fellow vermin.”</p>
<p>The MiB strolled into view.</p>
<p>There was no use running.</p>
<p>The One in the Ring let the assassin get close to Anne before horizontal bars materialized and turned the hallway into a silver cage.</p>
<p>"Woe is me,” the Man in Black gasped in a frightened voice, then he grinned and stepped right through the bars like smoke. He looked directly at the wall opposite of the North window and said, “These materials have no effect on me. You know that! What are you up to?”</p>
<p>There was no answer.</p>
<p>The assassin snapped off a six-foot section of the bars like it was a dead twig.</p>
<p>“Hollow and brittle,” he declared. “Someone is getting feeble.”</p>
<p>Anne felt the MiB search the wall with his mind.</p>
<p>"Can you imagine that the weakling here, an immortal like myself, endures this appearance as an act of penance, squandering his existence by playing with humans in this pitiful place?" he asked Anne.</p>
<p>"You? Immortal?" she asked.</p>
<p>"We cannot die," came the answer, "but we can be killed. Each incarnation is a link in our chain of eternal life, with both a beginning and an ending. It is now time for you to meet the One in the Ring, before I end its misery."</p>
<p>With superhuman strength, the MiB plunged the silver pipe through the wall of the hallway. The Ring trembled, and waves of psychic energy rippled reality like heat mirages on hot pavement. He broke loose another silver rod and used it like a cutlass to tear several long gashes into the thin wall. His hands freed the mutilated panel and tossed it down the hallway.</p>
<p>Anne saw no wondrous technology. Was the Ring the entity, the benefactor? What she did see was a silver tube, roughly two feet in diameter, just floating there, at her shoulder height, with no apparatus to support it. Did this conduit run the entire quarter-mile circumference of the Ring? The silver bar that speared through the wall had passed cleanly through the duct.</p>
<p>The MiB next made two vertical cuts in the tube, joined by one long horizontal laceration. His “cutlass” splintered and shattered from the strain. He dropped it and ripped the pipeline wide open with one great effort.</p>
<p>"Behold!" the Man in Black announced, like some barker in a carnival sideshow. "I present to you your benefactor, the true friend of humanity, the great white worm, the Mighty Maggot!"</p>
<p>It was true. The One in the Ring was, indeed, a gigantic maggot.</p>
<p>Another truth became clear. The One in the Ring found itself pinned into place by the silver bar. Trapped and helpless, it could neither advance nor retreat.</p>
<p>“Killing this would be a lot easier if I could find its tiny core,” the assassin admitted. He snapped a third bar loose and stabbed the creature over and over, sending it into wriggling convulsions. “Very difficult.”</p>
<p>"Stop!" Anne screamed. Her right hand fumbled in her pocket and lashed out before any thought of doing so became conscious. The flat sculpture of thick, black metal that she held between her middle and ring fingers opened a deep, diagonal canyon across the MiB. She called this weapon the "Unicorn" because the points looked like unicorn ears and a horn when it was clenched in her fist.</p>
<p>The Man in Black did not bleed because he had no blood, no internal organs. His eyes rolled about like marbles in a bucket, and his lips no longer synchronized with that telepathic voice. He now resembled a badly dubbed foreign film.</p>
<p>“What … have … you … done?” he sputtered, those lips lagging behind.</p>
<p>“Cold iron,” Anne explained. “The historical weapon of choice against supernatural and interdimensional beings, according to legend and lore.”</p>
<p>Anne surrendered to an all-powerful wave of unconditional love from the worm. She closed her eyes and opened them to discover her right arm buried deep inside the benefactor while purple fluid spurted from its wound. When she jerked her arm free, it was stained from fingertips to elbow. The weapon was lost somewhere inside the maggot.</p>
<p>“I'm sorry,” she apologized, in tears. “I don’t know what happened.”</p>
<p>“You hit the core!” the Man in Black exclaimed. “He is dying, but you will die first.”</p>
<p>Dozens of barbed spears of cold iron, like exaggerated porcupine quills, shot down from the ceiling and up from the floor in an explosion of overkill, impaling every part of the MiB. The worm had somehow replicated the iron from the sample embedded within it and created the ending that was meant to be. This sacrifice was the One's destiny all along.</p>
<p>The benefactor no-clipped Anne to the ground below, while the assassin began a cacophony of telepathic screams. She hit the darkness running, blindly zigzagging between panic-stricken pilgrims and frantic M.E.G. personnel. There was no fighting this compulsion. She was guided by forces beyond her control. Then sunlight poured from the Harbinger Arch and she could see her house from here.</p>
<hr />
<hr />
<p>The duration of evening twilight, or the interval between sunset and night, in the <a href="/the-frontrooms">Frontrooms</a> was determined by the rotation of the Earth, the latitude, and the season of the year. It usually took a good hour or two for it to become dark. Level 710 was a different place. Day turned into night here in a matter of moments. Amy Cochrane welcomed this darkness. From the moment the night arrived, the last thing her enemies would ever see was the glint of her blades.</p>
<p>She also welcomed the approaching Marvin Matthews, chief of the M.E.G. station “Harbinger,” and some darkness disappeared. To preserve his night vision, Matthews carried his oil lamp at waist height, lighting little more than his path.</p>
<p>“There you are,” Matthews said. “Heard you were back. Very sorry to hear about Sanchez. Alberto was one of our best.”</p>
<div class="scp-image-block block-right" style="width:300px;"><a href="https://backrooms-wiki.wdfiles.com/local--files/annes-farewell/FinalMoments"><img src="https://backrooms-wiki.wdfiles.com/local--resized-images/annes-farewell/FinalMoments/medium.jpg" style="width:300px;" alt="Missing alt text." class="image" /></a>
<div class="scp-image-caption" style="width:300px; displ{$captionless}y:none;">
<p>The End of the Ring<br />
M.E.G. Archives</p>
</div>
</div>
<p>That was as far as the conversation got before the “Great Catastrophe of Level 710” commenced, before the screaming started. The current population of the level, twenty or so pilgrims and a half-dozen M.E.G. personnel, poured out of their respective tents and shanties. Many held their hands over their ears in a futile attempt to muffle the inhuman, piercing shrieks echoing in their minds.</p>
<p>Amy Cochrane “heard” these telepathic screams earlier today, on <a href="/level-19">Level 19</a>. This time, there was no mocking laughter.</p>
<p>“The Man in Black is in the Ring,” she told Matthews. “He’s up there with Anne Dunne.”</p>
<p>Natural sunlight beamed from the Harbinger Arch. It was a beautiful morning in the Frontrooms. The shaft of daylight emanating from the portal illuminated a narrow path across the circle of barren ground. Anne Dunne led the charge home as the scene began to flicker and fade. Not one person in this crowd seemed quick enough to make it in time.</p>
<p>It all happened so fast. A freak gust of wind lifted the psychic off her feet and carried her safely through the portal. Fire engulfed the arch and standing stones, and the rocks burned like logs soaked in gasoline. Even lacking combustibles, the circle of bare earth erupted into a bonfire and drove the spectators back. The level heaved when the blaze collapsed into a deep sinkhole and geysers of water extinguished the flames. The elements of air, fire, earth, and water had spoken.</p>
<p>That left the screaming and the Ring.</p>
<p>No one present that night would ever forget the sight of the fiery Ring in the sky burning itself into nothingness.</p>
<p>The silence was deafening.</p>
<hr />
<hr />
<p>Many day/night cycles later, Amy Cochrane greeted the dawn in her pink "Hello Kitty" nightgown and moccasins. She always found it amazing how the sky changed from day to night and back again without the benefit of a sun. What she missed most were the stars.</p>
<p>No, what she missed the most was the Ring. This sky looked so empty.</p>
<p>Mornings marked her ritual stroll to the outhouse. Level 710 was primitive, and that meant no electricity or running water. On the positive side, the level boasted a constant temperature of 70-something degrees, low humidity, and a soft breeze in the air.</p>
<p>Even without the Ring and Harbinger Arch, the level's spiritual interpretation persisted. Believers made the long journey to the recently formed Harbinger Lake and spent some quiet time at the small shrine that served as the terminus of the still operational Pilgrims Path. Wanderers were prevented from drowning in this circular lake's deep waters by a crude fence and regular security. The natural reservoir was one of the greatest supplies of pure spring water found in the Backrooms, with measurements confirming that its average depth was more than 200 feet. Wanderers could fill their canteens at a safe distance from the edge of the water thanks to a cistern hand pump, and courteous sentries watched out for anyone abusing the privilege.</p>
<p>Amy took her sweet time returning to the one-room cabin that she now called home. Today was her day off. She smiled as her fellow security technicians from Team "Harbinger" exchanged pleasantries when the night shift greeted their daylight counterparts. The M.E.G. presence had dramatically increased here lately for no apparent reason. There was loose talk about creating a settlement and establishing a community.</p>
<p>She spotted the couple waiting on her porch and picked up the pace, instantly recognizing the gray-haired scientist but not the young woman. The stranger had remarkable hair that flowed in strands of white and sparkling silver. She appeared to be in her early twenties and not much taller than five feet. From her fingertips to her elbow, the right arm was covered in a deep purple stain. It was those eyes! Each orb sported a frosted iris on a globe of ice. She wore a crimson cloak that obscured her physique. Something about this newcomer almost scared Amy to death.</p>
<p>Not much frightened Amy Cochrane.</p>
<p>"You are up early, Doctor Rhinehart," Amy observed, then asked, "Who is your amazing companion?"</p>
<div class="scp-image-block block-right" style="width:300px;"><a href="https://backrooms-wiki.wdfiles.com/local--files/annes-farewell/AnneDunne2"><img src="https://backrooms-wiki.wdfiles.com/local--resized-images/annes-farewell/AnneDunne2/medium.jpg" style="width:300px;" alt="Missing alt text." class="image" /></a>
<div class="scp-image-caption" style="width:300px; displ{$captionless}y:none;">
<p>Anonymous painting of<br />
Anne Dunne (transformed)<br />
M.E.G. Archives</p>
</div>
</div>
<p>"Hermosa Muerte, that's a cute look for you," the stranger said in a very familiar voice.</p>
<p>"Anne! What happened?"</p>
<p>The psychic gave her a heartfelt hug and calmly suggested that they continue their conversation inside the cabin.</p>
<p>Doctor Rhinehart shut his eyes and faced the wall while Amy quickly changed into black jeans and blouse. Matching swords completed the ensemble.</p>
<p>"You can look now," Amy said. "I will boil some water for tea."</p>
<p>"Not <a href="/object-365">Seer Tea</a>," the scientist pleaded.</p>
<p>"Herbal tea," Amy laughed, "with sweetener produced by entities on this level."</p>
<p>Rhinehart made a face.</p>
<p>"I saw the Frontrooms through the Harbinger Arch that night," Amy began. "Just before the wind swept you through the portal."</p>
<p>Anne explained, “I had the option of hiding within my previous life or accepting my fate. The Backrooms is a liminal space, a threshold or border, a transitional stage. When certain people no-clip here from the Frontrooms, it is not by accident. There are higher powers at work.”</p>
<p>“Higher powers?” Rhinehart asked.</p>
<p>Amy poured three cups of herbal tea.</p>
<p>“Some good,” Anne answered. “Some not.”</p>
<p>The host added a pink fragment of sweetener to each cup. It dissolved instantly and completely. Rhinehart chanced a taste, then another, and then another.</p>
<p>“The flora shall break through time and space, to bring one and all to this peaceful place,” Anne said.</p>
<p>"Pardon me?" Amy questioned.</p>
<p>“I walked between worlds until I followed the shimmering vines. These vines led me to Hortus Aeturnus, a botanical paradise and home to 300 Ivlania. <a href="/level-414">Level 414</a> endured in silence for a very long time, hidden from the rest of the Backrooms. But now, by decree of the High Bloom of the Bouquet, these flowery folk welcome wanderers. From there, the Pilgrims Path led me here.”</p>
<p>"And back to me," Amy chirped. "Remember, you said that we will become good friends."</p>
<p>“You must become great friends,” Rhinehart added. “You are the third Musketeer.”</p>
<p>Amy shot him a quizzical look.</p>
<p>“We are creating an independent consulting agency and would be honored if you would join us. I want to call us Psychic, Science, and Swords, but Anne has her heart set on calling us Epiphany.”</p>
<p>“Two votes to one,” Amy announced. “Epiphany, it is.”</p>
<p>Anne suppressed a laugh and said, “This will work out just fine.”</p>
<p>The scientist interrupted the party. “We have our first task. There is another anomaly on Level 710. It has the appearance of a transparent sphere, filled with pinkish clouds, that is raised atop a great stone pedestal. It is nestled, out of sight, in a deep valley surrounded by hills, not more than one day’s journey from here. The Major Explorer Group has authorized me to use any and all measures at my disposal. Epiphany now represents those aforementioned measures.”</p>
<p>Amy asked everyone to join hands.</p>
<p>“All for one and one for all,” she said.</p>
<p>And so it begins.</p>
<hr />
<div style="text-align: center;">
<div class="rater" style="display: inline-flex; flex-direction: column;"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+37</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div><div class="list-pages-box"> <div class="list-pages-item">
<div style="height: 0.1rem; background-color: rgb(var(--gray-monochrome)); background-image: linear-gradient(to right, rgb(var(--bright-accent)), rgb(var(--bright-accent)) 100%, rgb(var(--gray-monochrome)) 0);"></div>
</div>
</div></div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
</div>
<div class="footer-wikiwalk-nav">
<div style="text-align: center;">
<p>« <a href="/annes-escape">Part 2</a> | Part 3</p>
</div>
</div>
<div class="licensebox">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">‡ Licensing / Citation</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">‡ Hide Licensing / Citation</a></div>
<div class="collapsible-block-content">
<p>Cite this page as:</p>
<div class="list-pages-box"> <div class="list-pages-item">
<blockquote>
<p>"<a href="/annes-farewell">Anne's Farewell (3 of 3)</a>" by Robert Goerman, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/annes-farewell">https://backrooms-wiki.wikidot.com/annes-farewell</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">+ Embed citation as HTML</a><a href="javascript:;">- Embed citation as HTML</a></div>
</div>
<div class="colmod-content"><div class="list-pages-box"> <div class="list-pages-item">
<div class="code" style="user-select: all;">
<p><span style="white-space: pre-wrap;">"<a href="https://backrooms-wiki.wikidot.com/annes-farewell">Anne's Farewell (3 of 3)</a>" by Robert Goerman, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/annes-farewell">https://backrooms-wiki.wikidot.com/annes-farewell</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</span></p>
</div>
</div>
</div></div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<hr />
<div class="content-separator" style="display: none:"></div>
<blockquote>
<p><strong>Filename:</strong> StormClouds3.jpg<br />
<strong>Author:</strong> <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/robert-goerman" onclick="WIKIDOT.page.listeners.userInfo(6447777); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=6447777&amp;size=small&amp;timestamp=1761062851" alt="Robert Goerman" style="background-image:url(https://www.wikidot.com/userkarma.php?u=6447777)" /></a><a href="http://www.wikidot.com/user:info/robert-goerman" onclick="WIKIDOT.page.listeners.userInfo(6447777); return false;">Robert Goerman</a></span><br />
<strong>License:</strong> <a href="https://creativecommons.org/licenses/by-sa/3.0">CC BY-SA 3.0</a><br />
<strong>Source Link:</strong> <a href="http://backrooms-wiki.wdfiles.com/local--files/level-365/StormClouds3.jpg">http://backrooms-wiki.wdfiles.com/local--files/level-365/StormClouds3.jpg</a></p>
</blockquote>
<blockquote>
<p><strong>Filename:</strong> FinalMoments.jpg<br />
<strong>Author:</strong> Gerd Altmann<br />
<strong>License:</strong> <a href="https://pixabay.com/service/license">Pixabay License</a><br />
<strong>Source Link:</strong> <a href="https://pixabay.com/illustrations/fire-flame-heat-hot-ring-1073217/">https://pixabay.com/illustrations/fire-flame-heat-hot-ring-1073217/</a></p>
</blockquote>
<blockquote>
<p><strong>Filename:</strong> AnneDunne2.png<br />
<strong>Author:</strong> Prettysleepy<br />
<strong>License:</strong> <a href="https://pixabay.com/service/license">Pixabay License</a><br />
<strong>Source Link:</strong> <a href="https://pixabay.com/vectors/pretty-woman-ice-queen-frozen-3351294/">https://pixabay.com/vectors/pretty-woman-ice-queen-frozen-3351294/</a></p>
</blockquote>
<div class="content-separator" style="display: none:"></div>
<div class="content-separator" style="display: none:"></div>
<p>For more information about on-wiki content, visit the <a href="/licensing-master-list">Licensing Master List</a>.</p>
</div>
</div>
</div>
</div>
</div>
<div class="page-tags">
<span>
<a href="/system:page-tags/tag/_cc#pages">_cc</a><a href="/system:page-tags/tag/_licensebox#pages">_licensebox</a><a href="/system:page-tags/tag/bittersweet#pages">bittersweet</a><a href="/system:page-tags/tag/john-rhinehart#pages">john-rhinehart</a><a href="/system:page-tags/tag/m.e.g.#pages">m.e.g.</a><a href="/system:page-tags/tag/multiverse-canon#pages">multiverse-canon</a><a href="/system:page-tags/tag/tale#pages">tale</a><a href="/system:page-tags/tag/thriller#pages">thriller</a>
</span>
</div>
<div id="page-info-break"></div>
<div id="page-options-container">
<div id="page-info">page revision: 41, last edited: <span class="odate time_1750255065 format_%25e%20%25b%20%25Y%2C%20%25H%3A%25M%20%28%25O%20ago%29">18 Jun 2025 13:57</span></div>
<div id="page-options-bottom" class="page-options-bottom">
<a href="javascript:;" class="btn btn-default" id="edit-button">Edit</a>
<a href="javascript:;" class="btn btn-default" id="pagerate-button">Rate (<span id="prw54355">+37</span>)</a>
<a href="javascript:;" class="btn btn-default" id="tags-button">Tags</a>
<a href="/forum/t-15351044/annes-farewell" class="btn btn-default" id="discuss-button">Discuss (16)</a>
<a href="javascript:;" class="btn btn-default" id="history-button">History</a>
<a href="javascript:;" class="btn btn-default" id="files-button">Files</a>
<a href="javascript:;" class="btn btn-default" id="print-button">Print</a>
<a href="javascript:;" class="btn btn-default" id="site-tools-button">Site tools</a>
<a href="javascript:;" class="btn btn-default" id="more-options-button">+ Options</a>
</div>
<div id="page-options-bottom-2" class="page-options-bottom form-actions" style="display:none">