YHN-KHE-0006
: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 }
评分: +2+x
%E5%8D%8F%E4%BC%9A%E6%A0%87%E8%AF%86.png

项目名称:薪柴

项目编号:YHN-KHE-0006

危险等级:SECURE

归档者:Bit Lawrence



描述:

我们就是薪柴。


附录

%E5%8D%8F%E4%BC%9A%E6%A0%87%E8%AF%86.png

项目名称:文明透镜

项目编号:YHN-KHE-0006

危险等级:INDESCRIBABLE

归档者:米迦勒博士、Raphmandas博士



描述:

<数据删除>
YHN-KHE-006经确认实为海中部分存在观察世界内部状态时生成的工具用造物。


附录

须知

请各位博士注意:
由于观测设施条件不足,目前仍未有足够安全有效的方法支持小规模个人观测。为各位的身心安全考虑,请勿轻信除米迦勒博士亲自授意以外,来自任何人员或异常的相关提议。同时,请各位不要尝试主动加入或潜入深潜部进行相关研究。

IMG_1311.png

YHN-KHE 十五人议会





【一片纯白的羽毛,留在YHN-KHE-006收容室的角落】

【你认为它非常可疑】

【进行解析】

【……】


2013年8月10日2点16分

米迦勒的直觉总不会错。故而他往往能知道在什么时候该做什么事,摸清潜藏在表象之下某些危险的轮廓。当敌人找上门时,他们总会悲哀的发现,这位博士待他们竟如对熟识的老友一般周到。

脚下这条走廊上的灯泡在上个月就都已换新。米迦勒曾以为自己在短时间内并不会再踏上这里,如今只觉得这想法在天真程度上几乎与某位同事对休假的渴望不相上下。眼下他只想尽快地忙完这些,好将精力集中在自己的事上。

他在一扇本不应敞开的门前停下脚步。走廊的光漫进室内的阴影中,映照出一个颀长的身影来。米迦勒望了望走廊尽头的办公室,确认了那里面确实空无一人后,终于决定用更简单的方法辨别那背对着他的灰发身影是何许人。

神说:“要有光。”——米迦勒按下门旁的电灯开关——就有了光。

“Raphmandas博士。”米迦勒叹着气,“我以为你知道我会在这个时候来的。”

“这不代表我一定要在办公室里等你,米迦勒博士。”灰发博士没什么动作,淡漠的声音自房间的那一头飘过来,无起伏的语调让米迦勒蹙起眉。他踏进房间,发现头顶上的灯泡忽明忽暗,仿佛一个将死的生物正喘息着。

米迦勒感到不适。也许是因为这忽闪的光。但这并未影响他看清房间内的景象:他身前正是仍背对着他的Raphmandas,以及离后者极近的,一张每个协会研究员标配的办公桌,而左右两边则是紧密排列,朝着各自尽头延伸的铁架,上面间隔不一地摆放着一个个木箱。负责摆放这些物什的人一定费了不少心思,才在这一块极广阔的区域里硬生生摆弄出了逼仄感。

灰发的同事仍旧没有转身,他似乎正专心处理着手上的工作。那张办公桌虽然被对方的身体挡住了小半,但米迦勒可以看到上面摆着一个与他身旁那些一般无二的木箱,盖子敞开着。而他来到这里并不是看一场收纳直播的。他得开始了。

“Raphmandas,我就直说了,我并不认为你滥用057在协会里制造异常是一个多么正常的决定。把一堆已经失效的档案‘嫁接’到一间空置的收容室?你明知道我们可以有更安全的交流方式。”

“在这点上,我们彼此彼此。那五个人的名单送到的时间恰到好处,不是吗?你在时间把握得相当好,成功地让他们一起死在一个‘异常’上。”

米迦勒摇了摇头。眼前的非人生物在经历了漫长岁月后依然对某些事物不屑一顾。他走上前去,从怀里掏出了一叠卷起的纸张:“结果事情还没解决,你干的好事。Bit Lawrence几乎就要顺着你给的方向把所有东西都写出来了,你就这么把他的报告直接放在邮件里用协会公共网络发给我?”他在桌上摊开纸张,另外小心地从里面拿出一张卷起的画纸,正要接着开口,却被Raphmandas打断了:“完美之作,显而易见。我已经看过了。有些异常哪怕走了还是会给我们留难题。”

呵。多年来天使早已经习惯同事待物之上漠然的态度。很快他将听到一番关于某个异常的长篇大论,然而——

“这些是Bit Lawrence的遗物,”Raphmandas从木箱里拿出一架在协会绝对不多见,而只有在学校的课堂上才会看到的光学显微镜说道。“他的衣服只有研究员那几套的配置,都已经处理掉了。”

Bit Lawrence原本是一名细胞生物学的研究生。曾有场异常收容行动因为信息不全导致了一起爆炸,而他当时正在一所恰巧在受灾区域内的一所学校当志愿者。米迦勒读过档案。自接到关于那收容室中异常情况的消息后,他就猜到了将会发生什么。为了排查协会里有谁会遭此横祸,他研究推算了协会里每一个成员自出生直至当时的人生轨迹。

趁着身旁同事继续擦拭手上物件灰尘的空挡,米迦勒没有接话,反倒是再环视了一圈。他这才注意到那些木箱上贴着名牌,那些逝者离开了本应有的日常来到协会,而今却又留下了这些确认了暂时无害但仍然不能流入市场的遗物离开人世。他们最后也许连一点痕迹都不会留下,毕竟这些木箱也仅是在这里停留一段时日而已。再过两个月不到,它们也将被集中销毁,为后来者腾出空间。

“这里原本是图书室。”米迦勒说道,“在你来总部上任三个月前,负责这里的图书管理员去世了。”

“Ernest Watts,我记得。死于心脏衰竭。”Raphmandas应道。

这位老人虽然在协会中生活了许久,但却始终和异常保持了相当的距离,生活平常得像外面的退休老头,也许是为了缅怀过往,许多人都与他有着相当亲密的朋友关系。当他去世时,那场面属实是混乱了好一阵,甚至后来依规定要回收书籍时还有几人私自藏匿。不过后续查清了Ernest确实是正常死亡,也便罚了几份检讨就轻轻揭过。只是Raphmandas借着057的由头一起来到协会后,早前尚是顾问的他顺手就干起了图书管理员的老本行。故而这里也慢慢就改成了遗物们的太平间,但考虑到研究员们的集体反对,终究还是把Ernest的桌子留了下来。

Raphmandas吹去显微镜上的灰尘,话头又跳回到了米迦勒尚未来得及展示的那幅画上。“你我都了解来自海中的存在破坏力有多强,但也不必担心。这一次的持续时间很短,充其量仅是祂的一瞥。接下来就没什么事了。”

“说得轻巧。高层已经和几个博士谈过了,如果不是我接下了这收尾工作,无论哪一个来都不是你几句话就能请回去的,何况他们恐怕对你也有不小的兴趣。

“不过,话又说回来了,”米迦勒目光转到Raphmandas的手上,猜着那本硬皮书此刻在何处,“绘画家真的被烧却了?”

那双手顿了顿。“烧了一部分,或者全部。”Raphmandas又吹了口气,确认了显微镜确实整洁如新后,又从木箱里的几个物镜里拈了一个出来,“这重要吗?目前祂不在是事实,但祂的画在。一个ORIGINSUPREME怎么会需要蝼蚁去关心祂的死活?”

所以祂以后还会在。

“但不可否认的是,现在确实没人记得祂。所以我干脆就把那份作废档案一起放过去了。”Raphmandas放下物镜,它们和一些装有教学标本的载玻片因为原本在Bit的房间里就藏得够深,反而省去了清灰的功夫。米迦勒看着他又把显微镜拿起,手停在半空中,似乎试图在那张空荡荡的桌面上找到一个合适的位置。他这才想起,那位老人在这桌子上也曾放过一台不插电的显微镜,在阳光不错的时候总会试着用它去观察一些随处可见的东西,比如一片叶子,一滴白开水。

Raphmandas放下显微镜,接通电源,确认了还能正常工作后满意地点了点头:“你知道吗?Ernest曾经问过伍德一个问题。”

米迦勒绷紧了后背,他没想到会在这时候听到这个名字。

“现在不如由你来试着回答看看。

“‘如果载玻片上有一个文明,那么它们眼中的神,会是什么样子的?’”

抛出问题后,Raphmandas便自顾自地继续在木箱中翻拣着,间隙里抬头看了一眼米迦勒,发现对方一时竟失言矗立,脸侧已然有了一个高速旋转的无色魔方,不由得哑然:“打机锋的又不是我。”

“显微镜?”

Raphmandas摇了摇头。他撑着桌面,米迦勒则双手抱胸,两位博士对视着,任由沉默蔓延。

最后Raphmandas拿起两个物镜装好。既已至此,就没有再猜下去的必要了。

“伍德当时的回答是,‘物镜’。

“但Ernest自己的答案是,‘透镜’。两个称呼,但指的是一个东西。”

既然对方都这么强调了,就说明这里有概念上的差别。

“载玻片上的文明只能看见一块镜片。”米迦勒简短地陈述着自己的猜测。

咔哒。咔哒。

Raphmandas拨转显微镜上的转换器,语调故作庄严:

“祂以渺远天边的雷声开路。”

“祂以深远地底的光芒作引。”

“于是我们抬头,窥见祂的威容。”

他打开显微镜的光源开关,对着米迦勒一笑:“效果如何?我现编的。”

笑容一展即收。米迦勒面无表情:“我也想问一个问题。”

Raphmandas挑挑眉,偏头探手从木箱里拿了一个教学标本,安装在载物台上,试着调整起两个准焦螺旋,不置可否地说道:“讲。”

眼见这名曾自称是图书管理员,现在也确实在协会兼任着这份工作的同事似乎又回归了先前那淡漠的模样,米迦勒呼了口气,提问道:“这次在目镜前的,是不是‘你’?”

Raphmandas似是已经做好了正式观察前的调整,直起身来,推动目镜转向米迦勒。

米迦勒不明所以,但Raphmandas示意他凑上去。犹豫了一阵,他决定照做。

他看见一群怪物翻滚着消亡。

他看见一个画家抬起头来,转瞬之间便只留下一幅画作。

刹那间米迦勒冷汗爬满额头。他确信只需一瞬859就能破坏这台显微镜——

然而。

他看见五个人。他认识这五个人,数天前才读完了他们的档案。那么熟悉的五张脸。

Raphmandas转身走到窗前,推开将尽的夜色。

“你有多久没有在人前张开翅膀过了?还是说一定要现在才能想起这里本应不只有我一位需要被关注?”

风裹挟着他最后的话语冲入房间。

“那个问题,如此明显的暗示,你竟然都没有,不,不肯想到。

“天使长,是你,‘你’在看着。”

%E5%8D%8F%E4%BC%9A%E6%A0%87%E8%AF%86.png

项目名称:空房

项目编号:YHN-KHE-0006

危险等级:SCOURGE

归档者:大聪明



特殊收容措施:无特殊措施。维持YHN-KHE-006原有配置。不定时更换防爆门密码。正常状态下禁止人员出入。


描述

位于协会总部异常收容区,门牌标号为YHN-KHE-006的空置水泥房间。房间内无任何设施,结构符合协会制式要求,且配备了可正常使用的防爆密码门。

第一发现者为某协会异常收容区值班人员。该人员在例行巡查时误入该房间,并在其内部水泥地中央发现数份纸质档案。协会在收到援助请求后随即增派武装人员进入并实施了救援与初步探查流程。

目前已确认:
发现人员无身体异常。

YHN-KHE-006内部发现的档案证实为异常档案。记录格式符合协会规定,但所记录的异常项目均未找到对象。现以交移博士会管理。

YHN-KHE-006及其生成的档案均可被破坏。以此方式获取的样本经研究显示其构成物质的属性与其外在表现相符。被破坏的YHN-KHE-006在无人员以任何形式观察的情况下将立即完成自我修复。若尝试破坏其生成的档案,则YHN-KHE-006将在该档案被成功破坏的同时生成对应完整物品。生成位置可在其内部空间的任意处。


附录




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