Phenomenon 52 - “鲸落”
: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 }

PHENOMENON 52 — “鲸落”
鱼类学家 Cadriel Huynh
报告 #2
1BMM-1

过去一周内,在Level 7水体(下称“六号海域”)的底部共记录到52(伍拾贰)具鲸鱼尸体。尸体的尺寸、形状、腐烂程度各不相同。其中部分呈现为幼鲸形态。这些尸体于六号海域海底的多个地点被发现,栖于此前并不存在的喷口与山丘之上。

团队称被发现的第一具尸体为BMM-12,其被发现于海面下2000(贰仟)英寻3的深处。它位于一座海底山上,形态几乎完好,截至报告写成之际,它仍然留在那里。从定量数据来看,它并无异常之处。鉴于所在位置以及保存需求,无法对其进行称重,但记录到其身长约为52(伍拾贰)英尺4。截至此刻,尸体的性别尚待确认。

研究人员与实地专家亲自检查了水下图像、小块组织样本以及尸体本体,确定了其来自北太平洋。BMM-1完全可能是在加州湾迁徙时误入六号海域的。由于尸体状态完好无损,死因尚未确认——尚不知晓进入六号海域是否为致死原因。鲸鱼体表未见牙齿或吸盘造成的疤痕组织,不过其腹部与内脏尚待检查。记录到正常的藤壶附着层。

BMM-1这一存在本身并不异常。相反,是那些尸体吸引的生物,繁育出了鲸落前从未记录的新样本。团队观测到形似人体的大型多细胞生物在尸体上爬行,这些生物类似于Homo sapiens智人,但具有若干不同特征。它们的皮肤半透明而紧绷,五官苍白空洞。其身体缺乏毛发,天性离群索居。目前,我们团队将之归类为Homo piscis鱼人5,但部分科学家反对将其归入人属的分类。

H. piscis6——许是光线的幻觉,又或是缺乏光线所致——那两个位于胸骨上部、与肺有几分相像的大型气囊,看起来似乎会散发藻绿色的生物荧光。它们的身体似乎不受深海极端水压的影响,动作敏捷,仿佛在陆地上行走一般。与人类相比,它们的趾间蹼格外清晰。随着更多此类生物显现,成像系统与尸体的状况皆在劣化。鉴于3(叁)名研究员在直视尸体眼睛后当即自杀,我们团队一致决定叫停对于BMM-1之研究。7

BMM-1至今仍是谜团。

冷漠

采访者:Cadriel H.
受访者:两年前的男人,下文以“他”称谓,姓名不详。


本档案包含机密信息。未经适当授权或具备足够资质者,不得查阅。查阅本材料前,强烈建议接受心理评估。

鱼类学家Cadriel Huynh8
报告 #5 — BMM-2

发现Balaenoptera musculus musculus-1后不久,团队又于BMM-1坠落地址5(伍)英寻远的地方发现了另一具同物种的鲸鱼尸体。该尸体被命名为BMM–2。它在坠落地址停留了3(叁)天,随即消失无踪。截止至报告写成之际,仍未发现BMM–2的踪迹。

由于研究人员拒绝与尸体接触,也拒绝参与讨论任何相关问题,有关BMM–2的数据极度稀缺。上述行为包括但不限于:拒绝说出词组鲸鱼、BMM-1、BMM-2Homo piscis。部分人甚至到了避免与谈论六号海域之人共处一室的地步。与BMM-2接触的人报告有恶心、食欲不振、极度悲伤发作以及一种迫近的厄运感。9尽管如此,我们仍在努力工作,以保证收集到充足的有关BMM-2的数据。

BMM-2的腐败程度显然高于BMM-1。 鲸鱼右侧的大部分躯体已被吞噬;对咬痕的分析仍在进行中。匪夷所思的是,它的身体在触感上明显冷于周围的水,并未与周遭环境达成平衡,这很古怪。BMM-2显著小于BMM-1,记录称长度为20(贰拾)英寸,这表明其可能是幼鲸。它的背部生长有不规则的藤壶;一些科学家试图论证,这可能是在拼写某种信息。尽管与BMM-1相比,尸体状况颇为夸张,但并未发现或拍摄到伤痕。待发现BMM-2时,其大部分内脏已遭食用或破坏。性别与死因皆待确认。目前实验室正在对BMM-2的少量组织样本和影像进行检查,但结果尚无定论。

截至此刻,又有2(贰)名研究人员自杀。需要更多信息。

我不禁疑惑,这一切是否值得。


photograph

图像 1 — 我想你,我的小天使。我不会游泳。

植物学家Cadriel Huynh
报告 #52 — 最终报告

在有记录的52(伍拾贰)例鲸落事件中,最后一例并不是由蓝鲸造成的。

PM-110 ,亦称抹香鲸,状态堪称完美。鲸鱼外部无可见损伤,在下落期间便已垂死。PM-1发出的叫声在峰值时突破了230(贰佰叁拾)分贝;上述叫声在抵达海底后即刻停止,无任何回声。记录体型为52(伍拾贰)英尺。未观测到Homo piscis以PM-1为食。性别与死因皆待确认。其尸体的温度与质地均与预期相符。尸体中气体累积,但尚未因此爆炸。尸体并无异常之处。

PM-1曾是完美的。可如今PM-1是灰暗的,PM-1已死。

初次记录PM-1的尖叫时,房间中的几名科学家开始哭泣。一位刚升职的新研究员,在接下来的一个小时里一动不动地坐在桌前,未曾眨眼。另一名年轻人咬穿了他自己的手指,不得不被强行送往急救部门。

Level 7标准时间约14:00,我得知46(肆拾陆)名同事以登上工作楼顶跳楼的方式集体自杀,总人数升至51(伍拾壹)。在获悉该信息后,我继续工作。如今,索求知识对我而言已是唯一重要的事务。我必须明白原因。尽管过去一周内,蓝鲸每隔数小时便会零星出现,但鲸落现象似乎在PM-1出现后结束了。没有一名同事活着留下来帮我,我独自一人在办公室里,反复听着PM-1的叫声。

影像资料显示无异常,但我需要靠近。此类深潜行动需要至少2(贰)名具备足够资质的人员参与,尤其是在应对此类似乎十分危险的现象时。但PM-1与余下的尸体都不同。从他头部渗出的蜡状液体,似乎有某种诡谲的吸引力。如果我冒这个险,一切都能解决。我能彻底修复六号海域。我将学会在水下呼吸。

键入这篇报告时天色已晚,只有几根行将归于灰烬的蜡烛点映着我的工作区。说它们“归于灰烬”似乎有些古怪。它们从未见识过死亡。PM-1明白死亡是怎样的。我的余光中映着它那无力、毫无生机的身体;每次闭眼,我都能见到那灰尘色的尸体。那下面有什么在等待着我,是某个我已忘记该如何念出名字的东西…

我身体的每一处都渗透着疲倦。桌子上放着一张照片,我不愿将它翻过来。直到我重新赢得看向它的资格前,就让它继续扣着吧。

我私自给PM-1起了天使的绰号。我没有告诉任何人,也再没有其他能够诉说的人了。这是我的最后一篇报告,也极有可能是最后一次潜入深海的勘探。

我是团队中的第52名自杀者。


鲸落:


一具鲸鱼尸体沉入深海,为海底生物提供新生态系统的基石。一具鲸鱼尸体沉入深海,为海底生物提供新生态系统的基石。一具鲸鱼尸体沉入深海,空寂无物,乌有之境。一具鲸鱼尸体沉入深海,为海底生物提供新生态系统的基石。一具鲸鱼尸体沉入深海,一场消失无踪的终幕。一具鲸鱼尸体沉入深海,为海底生物提供新生态系统的基石。一具鲸鱼尸体沉入深海,骨骼锐利,血肉腐朽。一具鲸鱼尸体沉入深海,为海底生物提供新生态系统的基石。

这气味如同咸空气与汗水。深渊带里,在那至深之境,一具躯体正在另一具躯体上匍匐。饥渴之物在此汇聚——一团无定形的肿块。那并非动物的尸体,而是某种更为腐朽、更难以定义的存在,是令人作呕的欲望的积聚,如同黑霉一般染指那贴着剥落黄纸的墙壁凹陷处。在那样的心智里,饥饿定义了一切。

一名男子躺在走廊的地板上,走廊里只亮着一盏灯。拂晓尚未降临。

— 在哪?
— 当然是在海边了。

他的胸腔里有一阵搏动,紧贴着那层包裹着它的身体壁。他的半截身子穿过了地板。他的身体被另一句身体包裹着,他阖上眼。却并未唤起什么特别的东西。他欲要变得冷漠无情、无欲无求,但这不可能。海底有着热泉喷口。栖息在那里的尸体宛如完美的蜡像,被盐分所保存。

你知道海有多深吗?

一项研究发现,超深渊带中100%的端足类动物胃中都含有至少一种合成材料。他的指甲之下渗着血。嘴里含着玻璃。皮肤覆盖着微生物的白色斑点。多么有趣啊,呼吸着含氯的空气,那是一人盛夏的欢愉。

同我一起漫步吧。

一名男子望向水面,其上覆盖着闪烁的狭长白光,看起来如同海鸟展开宽阔的翅膀。他不害怕下方等候的事物——他的自由落体,以及他那如子弹般击碎水面的身体。他当然知道那样做的后果。蠢人才会不知道。

飞翔是什么感觉?

就如同将你的五脏六腑颠倒一般。这感觉是那么美妙。直到你落下,你方才会觉察你到了天上。他看见那水体,那浩瀚而可怖的美,他想去那里。在地板上,在世界之巅,在一根纵向细针的顶点,他身体的暗热搏动着。它开始减缓。

我们会过上轻松的生活。

一条超速的船将一只鲸鱼自下颌处一分为二。她啜泣着死去。她的尸体盘旋下落,一缕缕鲜红的血液环绕着它。一只声频失常的鲸鱼悲鸣着。无人能听见她。

溺亡是什么意思?

一名男子走上屋顶,他赤裸着,身上覆着白雪。此时正是仲夏。他的鼻子红了。空气炎热而闷湿。一块块海洋垃圾倾盆而下,洒在水面上。宛若亲吻,宛若星尘,宛若太空垃圾。如此之美丽,那最柔软的东西。一名男子一头扎入水中52(伍拾贰)英尺之处,折断了脖颈。他在抵达海底前便已身亡。

死人真是种古怪的东西。

我曾爱过他。如今再没人会为我哭泣。拂晓之后,我究竟何时才能不再等他回家?我再也记不得了。把那细针放进我的身体里吧,亲爱的,放进来就好。每个清晨,我醒来,洗去手上的鲜血。最美好的梦境,恰恰是你记不住的那些。

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