: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 }
项目编号:YHN-KHE-071
项目名称:天枢
危险等级:INDEINDESCRIBABLE
收容措施:该项目的收容措施为将其置于YHN-KHE-071-2内,确保该项目为沉睡状态后,在其四周增加九个及以上的异常增强设备来强化YHN-KHE-071-2对于YHN-KHE-071的致幻性
与此同时,为防止有人被YHN-KHE-071-1影响,故布置大范围天幕来遮挡YHN-KHE-071-1,且YHN-KHE-071在被收容时会发出无意识的能量波动,该波动会直接影响到YHN-KHE-071-1产生的模因影响强度,故需要每日确保天幕为开启状态
组织明令禁止除了博士会和███及██主管以外的任何人靠近YHN-KHE-071的百米范围内,且由于YHN-KHE-071在被收容时表现出的不可控状态,██博士在和██的站点主管商议后,决定将YHN-KHE-071置于██站点地下百米处,以防止YHN-KHE-071在被收容时散发的无意识波动影响到站点成员及其异常
且由于YHN-KHE-071在被收容时有概率苏醒,故需要三名站点成员经过审批后,穿着YHN-KHE-071-3并饮用浓度为0.01%的YHN-KHE-071-4后,前往YHN-KHE-071沉睡处确保异常增强设备正常启动以及YHN-KHE-071处于沉睡状态
若发现YHN-KHE-071处于非沉睡状态且四周异常增强设备失效,请在确保你还是你自己的情况下,饮用浓度为0.05%的YHN-KHE-071-4,并离开██站点并向组织报告,博士会和███会前往处理YHN-KHE-071
在此之前,请先去确保YHN-██是开启状态,若YHN-██为关闭状态,请立刻将其开启并汇报给组织或是站点主管,若显示YHN-██关闭状态大于五分钟,请立刻寻找站点主管或是博士会成员来开启天幕阻挡YHN-KHE-071-1的模因污染
描述:YHN-KHE-071为一位身高为176cm,体重为60kg,拥有金色双眼的成年“人类”男子,据其所述(见附录1),其本相为YHN-KHE-071-1(距离地球123光年外的天枢星),其四周3m散发着未知的能量波动,据悉,该能量波动会造成随机类模因污染(见实验记录1)
YHN-KHE-071相较于其他异常,对人类较为友好,且一般情况下YHN-KHE-071不会主动出现于都市中,对于YHN-KHE-071的初步发现为YHN-KHE-071主动进入协会商议自己的收容措施,且留下了YHN-KHE-071-2和YHN-KHE-071-3来收容自己,在此基础上,赠予组织了YHN-KHE-4和YHN-KHE-5
据其所述,由于██影响,导致YHN-KHE-071出现了不可逆的影响,并且导致远在123光年外的YHN-KHE-071-1也出现了较大影响,故YHN-KHE-071将自身和天枢星的绝大部分能量,转换为了YHN-KHE-071-2,YHN-KHE-071-4和YHN-KHE-071-5来抑制其自身和天枢星的模因影响
YHN-KHE-071-2为天枢星核,一个大小为5×5×5m的半透明球状核心,在容纳YHN-KHE-071后会开始发生不规则状态的旋转,且散发出相同于YHN-KHE-071周身的能量,但诡异的是,该能量不会对任何物质造成任何效果,却会对生命体造成远超YHN-KHE-071周身能量的模因影响,据计算,YHN-KHE-071-2如果发生爆炸,所产生的威力约为9.2664×10^27次方吨TNT炸药爆炸所产生的威力
YHN-KHE-071-3为YHN-KHE-071自主用天枢星自身材料和YHN-KHE-071-4制造出的装甲,共10副,YHN-KHE-071-3拥有强大的模因抗性和精神污染抗性,且YHN-KHE-071-3的硬度约为中子星的十分之一左右,怪异的是YHN-KHE-071-3的重量甚至不足5kg,且YHN-KHE-071-3内部流动的不明液体所蕴含的能量大约为2.7×10^14次方焦耳
YHN-KHE-071-4为一瓶由未知材料储存的250ml的YHN-KHE-071的血液,据悉(见实验记录071-2),该血液内蕴含着强大的能量和模因类污染,但却在稀释后可以提升模因和精神的影响抗性,并且可以用于制作其他类型的模因或精神类抗性药剂或是装备
YHN-KHE-071-5为一个约为52cm,并镶嵌了一个类似于小型YHN-KHE-071-2的项链,据YHN-KHE-071所述,该项链是由天枢星的能量汇聚而成,并在此基础上多次淬炼,镶嵌之物为天枢星的核心能量,与YHN-KHE-071-2同源,YHN-KHE-071-5的能力为可以改变任何物质或是生物的状态,并且在佩戴时会大幅度提高身体机能和对于模因和精神力异常的抵抗能力,由于YHN-KHE-071-5被施加了绑定诅咒,所以该物品在目前情况下有且仅有██博士可以佩戴
YHN-KHE-071-6为一个大小约为50×50×50mm的金色球体,被置于75×75mm的特殊材料制成的底座上方,据悉,无论是球体还是底座,都和YHN-KHE-071-2和YHN-KHE-071-3的材料同源,YHN-KHE-071-6可以有效的抑制绝大多数的模因类异常,其有效范围约为以THN-KHE-071-6中心三十米左右,在该区域内的大多数模因类异常不会生效,且其他异常的能力会被大幅度压制(见实验记录071-3)
071:你是这个这个站点的主管?
主管:嗯,是的没错,我的名字是██,██站点主管
071:嗯,那我就把话说明了,我应该叫…异常?你们是这么叫的吧?我快失控了,如果失控的话可能会对你们造成伤害,所以…我来让你们收容我自己
主管:看得出来,正常人不会让其他人离自己太远,也不会产生远超正常数值的能量波动
071:你们组织真的很厉害,在这种情况下还能发现并收容那么多异常,我很好奇你们是怎么做到的,可以讲讲吗,不可以的话就算了,毕竟每个人都有自己的隐私,我尊重你们
主管:很感谢您的尊重,不如我们先谈谈您刚刚说的收容?
071:哈?不是吧,我大老远的跑过来,刚坐下你就要收容我啊
主管:很抱歉,但是收容所有异常是我们的职责
071:…嗯,很敬业,我很佩服,那就说说这件事吧,由于██的影响,天枢星也受到了强烈的██,所以…我现在很不稳定
主管:等等,你刚刚说…天枢星,是在123光年外的那颗天枢星?
071:是的没错,就是那个东西,我的…嗯…██所化?时间太久了,我记不清楚了,反成你只需要知道,我就是它,它就是我,这就行了
主管:哦,好的,那我们继续来谈论这件事,请讲
071:由于我害怕我失控之后对于人类或是别的什么造成强烈的危害,所以我选择在我还算稳定的情况下前来跟你们商议自己的收容计划,毕竟如果我要是失控了,你们或许会损失很多,那样就可能会导致一部分异常突破收容或是失控,我可不希望看到那样的情况
主管:所以说…您想到的收容方式或是需要的收容方式是什么
071:这个…我并不需要你们提供什么东西,你们只需要把我放在一个很偏远的地方或者地下,并且确保我在沉睡就可以了,对了,你们组织里应该会有增强异常的东西吧?
主管:这是当然,可如果您只是需要这样的话,似乎并没有必要来这里让我们去收容你
071:是的,所以我喜欢跟聪明人说话,一点都不费力,我需要把我装进这个东西里
(071拿出了071-2)
071:它是天枢星的星核,可以有效的避免我和天枢星失控,当然,你们需要时不时的去检查一下,免得发生什么…呃,难以形容的事情
主管:这…可您身上所散发的能量会对我们的成员造成危害
071:啊,这个不用担心,我有备而来
(071拿出了071-3,071-4,071-5和071-6)
071:十副装备,一瓶我的血液,和一个带有天枢星能力的项链,去检查我的时候,穿上这个装备,然后稀释一下我的血液饮用就好,至于这个项链…我无所谓,你想给谁都可以,当然,也可以自己带,至于这个像装饰品的东西…我保证他会起到大作用
主管:哦,好的,那么请问什么时候可以收容你呢
071:…啊,你们对于收容我真的好执着啊,算了,过一会我就去自己把自己收容掉,还有就是,不要打扰我沉睡,要不然…
主管:这是当然。
嗨,主管?
嗯?你问我为什么还不收容自己,哈哈,我这不是想玩一会嘛,都说了今天我肯定会去沉睡的,就让我再玩一会呗。
啊,我就知道主管是个通情达理的人!要来一起喝一杯吗主管?
啊?禁令,唉,真扫兴,还想着能跟以前一样呢。
你问我什么样的以前?哈哈哈,这我就要和你好好讲一讲了,秦皇汉武,唐宗宋祖,你想听哪个?
肯定的啊,我都经历过,每一个都是青史留名!
哈哈哈哈,嗯?不信?嘿,那我就跟你讲讲,蒙恬认识吧!厉害吧!嘿嘿,是我!
哈?你说不可能?那哪有什么不可能的,你活得久还是我活得久?
对吧!所以说没什么不可能的,只是不知道而已,后来?后来我就基本不在了,自从东汉末年,我再次在江东英年早逝之后,我就没那么干过。
那为什么我会知道?很简单啊,因为我一直在看着。
在哪…这个不能告诉你,秘密。
喂喂喂,异常也有自己的秘密好吧,什么话这是。
正是因为经历过太久,知道的太多,故友有太多,所以我就不想呆在这了呗。
哈哈哈…说笑了主管,只是…劝君更尽一杯酒,西出阳关无故人而已。
开玩笑,我怎么可能难过,我只是…一个异常而已。
哈,没什么的,啊,天黑了啊,我要去收容自己咯,对了主管,你知道一句话吗?
天枢为轴,星辰承舆,宇宙律动铸众生!
哈哈哈哈,开个玩笑,我怎么可能那么强。
… …. .. .. .- .. . …. .- .. … …. .. -..- .. -. … …. . -. —. … …. .. . . .. .-.. .- .. …. .- .. … …. .. .- ..- . . .- -. . . - -… .. -. —. -… ..- -..- .. .- -. —. —.. .- .. -.-. .- -. -. ..- .. …. . -..- .. . … …. .. —.- .. -. —. .-.. . …. - ..- … …. .. .. …. .. … …. .. .- .. ..- .- .. .- - …. - .- — . -. —.. .. .- .. -… .-
是灾厄,还是新生,是未来,还是绝望,我并不想再参与这些事情了,后世之事,就交由他们自己吧。
在世界中刚诞生出宇宙时,宇宙光芒黯淡,一切尚未孕育之时,发生了一场爆炸,天文学家称其为宇宙大爆炸,在那时就诞生了一颗明亮的星辰,而后万物开始诞生,白矮星,中子星,恒星,行星,包括黑洞,甚至是反物质,一切的一切就此而生,围绕着那颗明亮的星辰,宇宙的法则开始律动,世间的一切开始构造显现,星球,星系,星云,一次又一次的毁灭,一次又一次的诞生,那颗星辰看着这所有的一切,一言不发,祂是宇宙的中心,也是宇宙的核心,宇宙的门户因此而生,也会因此而灭,祂渐渐的感觉到无聊,感觉到孤独,这里什么都没有,哪怕一切因祂而生,
在无数次的毁灭和诞生中祂终于忍不住了,祂消散了,和那些爆炸的星球一样,宇宙瞬间没有了承轴,就如同大树的主干被砍伐,轰的一声,宇宙爆炸了,整个世界陷入了死寂,这是第一次的死亡,祂不知何时再次醒来,一如上次那样,一切再次围绕着祂诞生,祂再一次承载着一切,无尽的岁月里并没有时间的概念,祂只觉得无聊,祂突发奇想,似乎想到了什么,第二个宇宙逐渐开始诞生,接着是第三个第四个…祂记不清自己到底创建了多少个,祂只知道看着这些家伙膨胀爆炸是唯一的乐趣,但是在这个时候,祂似乎注意到了什么,但是祂记不清,只当是一时的恍惚,后来宇宙中诞生了文明,诞生了生命,
祂大喜过望,化为它们其中的一员,从微小到巨大,从地下到天上,祂又经历了一次又一次的更迭,宇宙中的文明数不胜数,祂发现了许多远超那些文明的生命,也发现了甚至有跟自己同级的生命,但是祂并不在意,只要它们不来找我,那就什么事都没有,祂这么想着,于是祂又逐渐又开始无聊起来,祂把一些文明融合起来,想尝试创造出一个新的文明,可是祂失败了,祂再次陷入了沉睡,在无尽岁月之后,祂醒了过来,宇宙中的那些生命又增加了许多,甚至在宇宙之外还诞生了让祂都感到忌惮之物,祂渐渐的发现了什么,好似明白了什么事情,
于是祂将大多数能力封存,似乎真正的化为了一颗星辰,祂看见远处有一个新的文明,那是祂喜欢的模样,祂观察了许久,再度化作其中的一员,进入了这个崭新的文明,可是祂渐渐的发现,这个物种的生命太短了,不过百年之际,祂有了许多朋友,可是那些朋友也都逝去,祂让他们重新回来,找了一个新的地方陪着祂,可是他们却说了些祂听不懂的话语,祂知道他们也想活着,可是他们却没有选择活着,祂最后放弃了,祂只是行走于世间,再没有去融入这个族群,祂就这么看着这个文明长大,发展,直至再度陷入沉眠,这可比之前的时光有趣多了,祂这么想着…
【该附录由██博士在YHN-KHE-071陷入沉眠时进入其梦境并阅读其记忆后一比一复原,完全是异常的思想,虽然…我们并不能理解它到底是怎么想的——研究员卡麦尔-纳德】
实验记录:071-2
实验目标:解析071周身的异常能量
实验概况实验对象的编号为1677,1678,1679,在1677靠近该项目后,1677的身体发生了快速衰老,在靠近该项目的五秒内,1677的身体和思想大概衰老了二十年左右,1678在靠近该项目后,并没有发生什么明显变化,但是在几秒后1678接到了一个电话,他那几千万的财产全部损失,回到了一无所有的状态,1679在靠近该项目后,并没有产生什么变化,但却在十几秒后突然暴毙,经查,1679的全身器官完好无损,在1679置于该项目五分钟后,1679却又再次活了过来
实验结论:该项目周身所产生的能量具有随机性模因影响,目前我们无法观测和计算出071周身的能量到底包含了多少类模因影响,但是唯一确认的是,071周身能量所造成的模因影响远超大部分模因类异常,且有可能再次被071周身能量治愈
实验记录:071-2
实验目标:研究YHN-KHE-071-4的能量和模因影响
实验概况:实验对象为1680,1681,1682和1683,1680在饮用了1%浓度的071-4后,表现出强烈的不适,在三秒后就畸变为了异常,后1680被击毙,1681在饮用了0.1%浓度的071-4后,表现出稍微的不适,并产生了模因影响使其认为自己是一个蘑菇,后1681被带走治疗,1682在饮用了0.05%浓度后未表现出异常,且还表现出远超正常指标的模因及精神类抗性,但在三个时辰后显示1682的身体机能整体下降了5%左右,1683在饮用了0.01%浓度的071-4后,并未表现出异常,且模因和精神抗性显著提高,三日内除虚弱外,也未有任何影响。
实验结论071-4确实具有很强大的模因类能量,但在稀释后却可以制作为模因类抗性药剂,实验结果已上报组织。
实验记录:071-3
实验目标:研究YHN-KHE-071-6的有效范围和能力
实验概况:实验对象为1684和1685(一对杀人犯夫妻),在启动██来增强模因类异常后,1684和1685由于101的影响,产生了强烈的互相厌恶和仇恨,再将该项目置于其中,过了数分钟后,101对于1684和1685的影响显著下降,在标记点5m,10m,15m,25m…之后发现,该项目的能力会随着距离增加而削弱,最远距离为50m。
实验结论:071-6对于模因类异常确实有很强大的克制作用,甚至对于101造成的影响都有显著效果,且50m的距离可以有效应对大部分异常,在经过站点主管和██博士商议后决定将071-6上交组织。
« YHN-KHE-0070 | YHN-KHE-0071 | YHN-KHE-0072 »

