YHN-KHE-0200
: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 }
评分: 0+x


》》欢迎《《

+%#42~zjen

[你好]

陈述事实,然后记录他们

从很多角度而言,协会,不,全人类都不过是涸辙之鲋。

你觉得YHN-KHE-200是个什么呢?

事实上,之所以YHN-KHE-200的实验被暂停,并不是因为研究明白了,或者没有研究手段方向了,而是不能再研究了。

是我们在对YHN-KHE-200的研究之中,多种手段都被投入使用,其中包括了一项正在试验的平行宇宙建造技术,我们按照正常历史推进,过去了成千上百年,那个宇宙也不过诞生了,一些无意识的,没有智慧的东西。

为什么呢?

们是试图逆推全部,来寻找原因,很可惜,无论我们投入什么,他都很那自然演化出文明,正好,YHN-KHE-200被发现了,抱着试试的态度,它被加入了初始变量,很有意思,人类,这个之前投入了无数因素甚至直接投入人类都没能诞生的种族,出现了。

这意味着什么?

我们思考,是疾病让我们出现吗?不对,因为普通的疾病诞生在这个实验宇宙之中,成千上万遍,是YHN-KHE-200,它有什么不同呢?和其他异常相比。

让我们突然意识到,它有什么不同,思考,是我们人类最大的优势…吗?是的,我们人类的大脑在已知生物中是最聪明的。这体现在很多方面,譬如学习、分析能力以及记忆能力上。人类能够从大自然中学习技能和知识,通过大脑的分析能力进行模拟演练,提高狩猎成功率和降低受伤几率。

但这与人类诞生无关

对于异常而言,思考不是优势,所以,在异常与人类同台竞技的时候,人类一败涂地,但这为什么会影响人类诞生呢?
……
……
……
……
……
我们可以容忍故事开始于缥缈,却不能允许故事终结于未知。

我们动了,不该动的东西,还记得故事的开始吗?

哦,对,两位深潜部外派驻扎

对,但为什么是,是与“海”密切相关的深潜?为什么不是时空,为什么,不是更有利的谬论?为什么,不让更多的,更专业的人参与,而是放在了那座即将拆毁重建的Area-11?

是的,他们带来了一件东西,YHN-KHE-200可以被认为是…祂的附加品。

“我 他们

带来了一位神的…一块脊柱碎片…


多么有意思啊


让协会愿意抛弃一个收容区域全部的人来研究,甚至带入现实宇宙?

祂,是人类的起源,或者说,智慧生命的起源?我们没见过祂,没有记录,没有实验,只有死亡,研究者的死亡,昭示着祂的存在。


...



这是谁的记录?



删不掉?



….



不对



….



这不是网站上的文字,它,它在我眼睛上!



》》文件已更新,旧档案按照档案规定并入新文档末尾附录《《

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

异常编号:YHN-KHE-200

项目名称:“涸辙之鲋”

危险等级:defunct1

归档者:陈璐


收容措施:

一间与外界相对隔绝的大型收容隔间,内部分为隔离室1与隔离室2,两间隔离室间以气密加厚甬道相连接。在确保在上一位“感染者”于隔离间1中死亡前,带入一名新的受试人员,要求其携带一套简易一次性医疗器具进入,并为“感染者”进行简易医疗或者作出医疗行为,之后将受试人员带入隔绝收容间2中,确认感染后处决上一位“感染者”并清理隔间1,并为下一次该流程提供干净的收容隔间。2]时刻监视受试者的身体状况,确保其不会进入潜伏期。每位处于收容隔间的员工都应当在离开后进入为期十五天的自我隔离,以确保自身没有感染。

在超大型收容隔间旁边开辟一间标准收容隔间,外部需要明确标注收容了一种被命名为YHN-KHE-200的异常,并做出定期检查、维护、实验等措施,内部放置一套标准医务室隔间桌椅,桌上放置一个密封盒子,其上标志了YHN-KHE-200的标签,并且使全站点人员相信YHN-KHE-200已被收容。


描述:

YHN-KHE-200是一种非实体病毒,其具体表现为:受感染者会因为心理因素导致现实的身躯产生相应表现的疾病或者一些超出常规医学的疾病。YHN-KHE-200造成的疾病在目前而言基本都是对人类身躯和心理造成的疾病,即使是原始类型也不会产生模因污染或者认知危害、血肉污染等类型疾病,根据多项测试的数据和area-11三分之二员工损失的结果报告,我们可以确认YHN-KHE-200的传播方式是根据观察者决定的,只要观察者确定YHN-KHE-200就在这间连监控都没有的隔离室中,便不会出现感染状态。但出于未知原因,YHN-KHE-200的感染事件仍时不时出现在全世界各个医院之中,协会不得不推广相应措施以遏制YHN-KHE-200的传播。

YHN-KHE-200被正式确认为一种全新异常疾病,按照研究记录,正式命名为“思维病毒”3

YHN-KHE-200除了被协会按照TP协议保留在收容隔间的感染者身上留有最原始的思维病毒之外,大多数泄露的YHN-KHE-200都会因为未知原因在极短时间内分化成阿尔法、贝塔、伽马三种类型,并且固化不再改变或者突变。

  • 阿尔法类型:感染性疾病和各类慢性病
  • 贝塔类型:自身免疫病和遗传类疾病
  • 伽马类型:心理疾病
  • 原始类型:未被泄露的原始思维病毒,即YHN-KHE-200,通常根据感染者内心想法畸形演化发展成疾病。除了在Area-11爆发的超速生长和逆生长、还在从Area-11转移其他多个站点运输途中产生了多种异常效应疾病。

YHN-KHE-200在演化成对应疾病后,比起原种类疾病,更加稳定,例如在同样是肺癌患者中,因YHN-KHE-200而导致的患者始终处于肺癌早期,不会继续演化,甚至这种情况会持续到患者自然死亡,期间不会在同一位置换上相同疾病。

YHN-KHE-200可以被确认为部分收容失效,或者说从未完成收容,自████年的Area-11的泄露事件开始,全球心理疾病和各类肿瘤性、感染性疾病呈现极速上升趋势。针对YHN-KHE-200的目前状态,针对全球的Personality Protection process协议4被正式推广。


附录

    • _

    》》您正在观看的是旧文档《《

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

    异常编号:YHN-KHE-200

    项目名称:“特殊疾病”

    危险等级:SECURE

    归档者:陈璐


    收容措施:

    一间与外界相对隔绝的大型收容隔间,内部分为隔离室1与隔离室2,两间隔离室间以气密加厚甬道相连接。在确保在上一位“感染者”于隔离间1中死亡前,带入一名新的受试人员,要求其携带一套简易一次性医疗器具进入,并为“感染者”进行简易医疗或者作出医疗行为,之后将受试人员带入隔绝收容间2中,确认感染后处决上一位“感染者”并清理隔间1,并为下一次该流程提供干净的收容隔间。时刻监视受试者的身体状况,确保其不会进入潜伏期。每位处于收容隔间的员工都应当在离开后进入为期十五天的自我隔离,以确保自身没有感染。


    描述:

    YHN-KHE-200是一种传播方式未知的疾病,感染者在初期表现为样貌年轻化,皮肤和精神状态都会有所恢复或者提升,各项检查均表现出感染者身体素质有所好转,甚至是部分异常效应造成的精神疾病类也有所好转。

    随着感染进入中期,样貌的逆生长更为明显,一般而言,感染者在中期普遍会年轻10岁左右,对于儿童的测试则呈现截然相反的状态,十二岁以下儿童普遍飞速成长到了16-18岁左右,但不论是儿童的加速生长还是成人的逆生长,都只局限在表面,相关检查表明感染者内部器官均无变化,维持在感染前的正常时期状态,感染中期的过程将不会持续太久,尤其是当感染者发觉所谓的年轻化时,这个过程会从十五天缩短到三到四小时结束,随后进入感染末期。

    当感染者进入末期时,大多数人会死于极速且不可扭转的器官衰竭,少部分死于脑死亡或者极度的兴奋,而极少数感染者会进入潜伏期,潜伏期时无任何异常表现,从各项数据来看,比起中期而言,内部器官和各项数据甚至有所提升,体内先前所有的疾病完成治愈,身体素质有所强化,可以说,潜伏期如果不消失,甚至持续下去,我们甚至可以认为YHN-KHE-200人为制造了永生者。

    潜伏期的结束和消失不可预料,相关实验均未能完成统计,但可以知道的是,当感染者潜伏期结束后,YHN-KHE-200的感染方式将会发生极大扭转,感染者会在四到六小时内死亡,期间任何“接触”感染者的方式都会造成感染,并且这种感染在感染者死亡前都会进行复数传播,即被传播者同样会无意识继续传播。

    YHN-KHE-200的传播方式一度被认定为是接触传播,后来又被认定为是言语传播,截止最后一位测试感染者死亡,仍然没有确凿证据可以确定其具体传播方式,一种被命名为“Personality Protection process”的流程是目前唯一确定可以较为精确控制传播对象的感染方式。

    YHN-KHE-200来源于一名深潜部门外派驻扎6员工,在抵达驻扎区域,完成消杀观察程序后的三天内,该名员工在自身检查中发现自身异常,并自行隔离上报,随后协会正式研究该异常疾病。


    附录

      • _





















    检测到新页面,点击此处以跳转至该页面



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