第19次破晓
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }
评分: +6+x

光敏性癫痫警告

报告-1

编写者:Dr.A
报告时间:2068/1/19


已成功抵达异常空间#19,各项数据指标皆处于正常范围内。尚未发生任何异常现象。研究计划可执行。


-统计-
驻留人员:617/617
待处决者:300/300
空间连接状态:正常
当前现实:稳定


报告-2

编写者:Dr.A
报告时间:2068/1/21


研究计划已开始执行。当前物资充沛。昼夜循环正常。种植尝试成功。养殖尝试失败。借助异常,临时设施已搭建完成。温度存在上升现象,但差距<0.1℃,故此忽略。

sunset-3156440_1280.jpg

异常空间#19内部。目前,我们未能突破至水面以下区域,可能需要调动其他异常,望批准。

截止当前,仍未出现其他异常现象。

在获取可突破水面的异常后,我们将按计划派遣一批待处决者进行“下潜”尝试。


-统计-
驻留人员:617/617
待处决者:300/300
空间连接状态:正常
当前现实:稳定


报告-3

编写者:Dr.A
报告时间:2068/1/26


有了异常的帮助,我们成功突破了水面,这也得以让我们进行“下潜”尝试。

我们派遣了5名配有标准潜水服、通讯设备与生理特征检测器的待处决者进入一艘可远程操控的大型特质潜艇内,其中备有10瓶标准规格的氧气罐,外部安置有6处大视野监控,内部安置有1处无死角监控与3处隐藏的微型摄像头。同时,艇内安装有一现实监控器与5处窃听器。

以下是记录。


[00:01:19]
-待处决者被送入潜艇内部。5人份的物资被运输至艇内。正在确认无线电连接。
[]
[00:10:32]
-准备工作完毕。下潜开始。此时艇内各项数值正常。待处决者未报告出任何不适。值得一提的是,在潜艇进入水中时,水面处出现异常的空间波动,这也导致其在完全没入水中后变得完全不可见,但无线电与监控在出现短暂失效后迅速恢复了稳定状态。
[]
[00:43:54]
-深度:约2km
-所有待处决者皆报告听到了一种微弱的类似于号角的声音自深处传出,但无论是无线电还是提前安装的窃听器皆无法捕捉到这种异常的声音。外部监控画面仍然一片漆黑。潜艇各项数值处于正常范围内。
[]
[01:06:07]
-深度:约4km
-3名待处决者报告了些许胸闷气短的状况,这被认为是正常现象。现实监控器传输回的信息显示,潜艇当前所处深度的现实已经处于一种较为不稳定的状态,但其各项数值仍处于正常范围内。
[]
[01:59:34]
-深度:约7km
-所有待处决者报告道“又一次听到了先前的号角声”,他们称,虽然“仍然很微弱”,但“这次似乎更近了”。通讯设备与窃听器未能捕捉到声音。潜水艇部分数值出现异常。
[]
[02:04:12]
-深度:约9km
-潜艇所处现实已极不稳定,其外壳出现少许崩坏现象。所有待处决者出现不由自主的颤栗现象。我们推测当前位置已接近真正的“海面”
[]
[02:51:44]
-深度:约16km
-待处决者报告听到了巨大而沉闷的号角声,其位置似乎非常接近潜艇。但通讯器与窃听器仍未能捕捉到。潜艇当前所处现实出现“扭曲”现象。艇内各项数值全部处于高危状态。
-继续下潜。
[]
[03:11:07]
[]
-深度:未知
-随着通讯器对面待处决者的尖叫与一连串的撞击声,我们与潜艇断开了联系。以下是潜艇外部监控最后传回的画面。

monster

不明物体。
于此空间进行的第一次“下潜”宣告失败。


-统计-
驻留人员:617/617
待处决者:295/300
空间连接状态:正常
当前现实:存在波动,较稳定


报告-4

编写者:Dr.A
报告时间:2068/2/2


异常空间#19的现实愈发崩坏,昨日,水面上甚至出现了片刻的“扭曲”现象,这使得我们直接损失了6名人员与4名待处决者,引起了一定恐慌。现向上申请一批现实稳定装置,以此继续计划。

后续回复:已批准。


-统计-
驻留人员:611/617
待处决者:291/300
空间连接状态:正常
当前现实:不稳定

报告-5

编写者:Dr.A
报告时间:2068/2/16


目前,此空间的现实暂时稳定下来了。于此空间进行的第二次“下潜”尝试将于2068/2/19中午展开。


-统计-
驻留人员:611/617
待处决者:291/300
空间连接状态:正常
当前现实:稳定


“第19次破晓事件记录-1”

编写者:Dr.A
记录时间:2068/2/19


第二次“下潜”已开始,除待处决者增加至10名与潜艇上安装了一枚现实干涉器以外,其他配置不变。以下是记录。


[数据删除]

水中的那个东西又来了。但它在现实干涉器启动后便被绞成了碎片。

不过,我们现在才意识到这个行为究竟有多蠢。

它在防止我们进入水底的浮层

是的,是的,我们接触到了浮层。很不可思议。当时,我们还在为此欢呼。哈。

在那里,我们的监控完全失效。在待处决者们颤抖的声音中,我们得知,他们极远的观察到了一面混沌、散发出无尽刺眼红光的且无边界的墙壁。随后,信号丢失。

其被猜测是异常空间#1~18内发生的18次“破晓”事件中出现的那颗诡异发光的混沌天体。

而水中的那玩意拼了命也要阻止我们,可能也是因为这个吧。哈,希望并非如此。他妈的。

每一次“破晓”皆意味着一个异常空间的崩塌,这是人尽皆知的。只要及时撤出,便能逃避掉“破晓”。这也是计划被批准的原因。

但这次不同往常,异常空间与主世界的连接断开了。

是的,我们被困住了。

我将会把所有报告放入YHN-KHE-[数据删除]中,以保证主世界的协会能接收到我们的报告。

不,不是报告。

现在,标题正式更名为“第19次破晓事件记录”


-统计-
驻留人员:611/617
待处决者:281/300
空间连接状态:断开连接
当前现实:崩坏


“第19次破晓事件记录-2”

编写者:Dr.A
报告时间:2068/3/01


整个空间开始出现崩坏现象,现实扭曲指数开始不断攀升。

温度开始升高。说起来,自我们进入这个空间起,它就一直在升温呢。

目前,伤员81名,死者17名。

啊,反正都要死了,我畅所欲言了,协会应该不会介意吧?


-统计-
驻留人员:596/617
待处决者:279/300
空间连接状态:断开
当前现实:崩坏

“第19次破晓事件记录-3”

编写者:Dr.A
记录时间:2068/3/03


仅仅过去两天,死者便新增了61名,伤员更是数不胜数。

现实扭曲现象越来越严重了。空间连接仍然未能修复。恐慌我已经控制不住了。

温度很高,尤其是水面。

似乎有什么东西要上来了。


-统计-
驻留人员:535/617
待处决者:231/300
空间连接状态:断开
当前现实:崩坏


“第19次破晓事件记录-4”

编写者:Dr.A
记录时间:2068/3/08


死者人数到达了316名,每天都有人在死亡和受伤。

我救不了他们。

我只能记录下这一切。

水面已经沸腾,我知道,有东西在靠近。

空间连接仍然未能修复。

……所有人都会死。

我只能眼睁睁看着他们争先恐后地将自己的遗嘱放入YHN-KHE-[数据删除]。然后,迎着破晓的到来,在疯狂与高温中起舞,进行最后一次狂欢。

我救不了他们。

我救不了他们。

我救不了他们。


-统计-
驻留人员:219/617
待处决者:201/300
空间连接状态:断开
当前现实:完全崩坏


“第19次破晓事件记录-5”

编写者:Dr.Dyin
记录时间:2068/3/15


A死了。他于今天才被发现自杀于临时设施当中。所有人都在狂欢,若不是尸体都臭了,恐怕都没人会去他的房间看一眼。他甚至没能留下遗嘱。啧啧,真惨啊。不过我们也一样吧。嘿嘿。

管他呢。

如你在文档开头所见,我是Dyin。在A自尽后,我理所应当的成为了这所临时设施的最高管理员。不过这有什么用呢?连接早就断掉了,我们只能像被执行了凌迟的犯人一般,等待着“破晓”的开始,不是吗?就和那些待处决者一样。

啧…

狗屎。


-统计-
驻留人员:未统计/617
待处决者:未统计/300
空间连接状态:断开
当前现实:完全崩坏

“第19次破晓事件记录-终”

编写者:Dr.Dyin
记录时间:2068/3/19


SUN

破晓已然到来,光芒愈发刺眼。


统计
没必要了。


以下是Dr.Dyin传输至总部的最后讯息:

再见。






除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License