: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-714
危险等级:INTRANQUIL
归档者:A
特殊收容措施:
无。在大雾天气下可协调当地政府部门,通知受灾区域居民关闭门窗避免外出,封锁对应区域道路。
防护措施:
由于关键信息仍待调查,目前仅能以正常团雾的观测手段确认可能的714个体。
在浓雾区域中行动时,调查人员须确保通讯畅通,以最低3人的人数组队慢速行进。条件允许时可乘坐大型载具通过。后方行动指挥处需实时监控调查人员位置和动向以及区域内能见度变化。
当能见度低于10米时,可作原地戒备修整,确认通讯设备状态,保持与外界通讯。
描述
该异常项目外部特征以及出没规律与同名自然现象相同,常见于雨后、大雾天气。
根据目前行动记录及相关信息,可确认:
- YHN-KHE-714成型后,会将以显著高于该异常个体移速的速度(最低为正常成年人行走步速,约5km/h)完整进入其覆盖范围内的事物转移至一处与现实相似的未知空间(下称编号YHN-KHE-714-1),在转移过程发生时会短暂出现未知原因导致的电磁干扰,目前尚未有可靠技术可避免对电子设备的影响。从714-1内部的脱离、除进入714以外的进入方式尚未得到确认。由于其内部可能存在的磁场干扰等未知因素的影响,目前无法探明714-1包括持续时间在内的各项数据。
- 将在一块区域内同一次大雾天气下,自第一个714个体生成至最后一个714个体消失的整个过程称为一个YHN-KHE-714的活跃周期。目前确认同一活跃周期下的所有714个体均对应同一个714-1,但不同周期内的714-1是否为同一个体仍然有待调查。
- 以现有的人员失踪记录,714目前确认的、具有实际影响效果的覆盖范围半径在1米至700米左右。但根据正常的团雾现象推测,其可能的极限范围半径将达到5公里。
- YHN-KHE-714的结构极为脆弱,任何运动物体都有可能对714个体造成破坏并使其部分失去异常影响。
YHN-KHE-714多在地面上出现,尚未有确切记录和足够的证据证明714个体在海面上出没。
YHN-KHE-714可确认的相关异常事故最早发生在1873年4月欧洲█国,但根据当时协会的相关调查结果,其活动时间最早可追溯至18世纪初。
附录
自1873年至本档案结稿,确认的YHN-KHE-714活动记录共93起,由YHN-KHE-714导致的失踪人员约有1500人。最严重的一次事故发生于1952年的欧洲█国,该次事件中大雾天气持续5天,后由协会推定的714活跃时间为第一日晚至第4日中午。有227平民在此次事件中失踪,其中152人确定是受YHN-KHE-714活动影响进入714-1而失联,另有19名协会调查人员进入714-1后失联。
在该事件中,当地协会分部共三个邻近站点自第二日起出动共32名调查人员紧急开展714调查行动。
因此前共5次调查活动获取的相应数据,协会研制了相应的通讯设备共1127套,分发至此前有受灾记录区域的邻近站点。配备该设备的19名调查人员先后接触714且均在被传送后3至10分钟内成功与各自站点重新取得联系,确认了该版本通讯设备的稳定运作,并与参与此次行动站点临时组建的指挥中心保持通讯直至浓雾消散前3小时左右。
此次行动首次确认了异常的电磁干扰现象仅在714转移物体时出现,且此现象针对电子设备产生的影响确实可修复;获取了714的传送目标地点实为一处未知空间,即YHN-KHE-714-1这一重要信息;714-1的内部景象与正常现实极为相似,但天空为灰色,具备充足的光照但无法用肉眼观测到太阳和月球。在同一活跃周期内,产生的714个体会将符合传送条件的对象送入同一个714-1内。
经另外数次研究行动后,确认:
- YHN-KHE-714会传送物体的瞬间产生电磁干扰,其对电子设备会产生持续时间不定的影响,该影响尚未有可靠技术可避免。同一次活动周期中产生的714个体会将符合传送条件的对象传送至同一个714-1内。
- 进入714-1的物体将出现于在现实中被传送时的对应位置,并维持传送前的运动状态。在进入714-1后,可以通过在内部组装电子通讯设备或等待其恢复后与外界取得联系,该状态在保证通讯设备可正常运作的情况下将持续至此次YHN-KHE-714的活动周期结束。
- 714-1的空间大小、边界及形状视现实侧雾气覆盖区域而定,且内部景象同样决定于现实对应区域,其中的物体均具备现实中所拥有的功能。仅有天空颜色始终呈现为灰色,深浅度取决于现实中对应区域正常雾气中的可见度。714-1内有对应现实区域晴朗天气下、随时间变化的光照,但不存在对应的天体。
- 若雾气区域内的物品状态发生变化,则714-1中的对应物品会在对应位置实时复现变化过程,该过程无法在714-1内部被任何手段阻挡。若现实中雾气覆盖区域收缩或发生移动,则714-1内部面积将同样实时作相应变化。该过程中若在收缩的边缘区域有被传送进入的物体,则该对象将会朝收缩方向被推出相应距离。
- 被传送进入714-1后,将无法通过除使用现实通讯设备以外的任何方式与现实侧建立交流;在714-1可以在第4点的前提下移动、破坏内部物体,但此类行为无法反映于现实侧。
- 由于714与正常团雾的高度相似性,目前仅可知其活动周期通常会在雾气消散前结束;当活动周期结束后,现实侧将无法再与714-1内部联系。因此目前无法确认714-1在714活动周期和对应区域的大雾天气结束后的状态。
注意:
基于上述第3点内容,推测在714受灾区域内雾气消散、或是最后一个714个体消失后,714-1可能会立即以收缩边界的形式崩溃,故所有进入714-1中的对象大概率会因此而先受到挤压导致的严重损伤,后随714-1消失。
故自1987年起,协会开始尝试使用搭载摄影设备的遥控器械辅助进行714的调查活动;同年9月,协会将714的研究方针修改为隔离观察,避免任何人员出于非必要目的进入可能的714灾区。
协会曾多次尝试运送中大型勘测器械进入714-1内部以进行实地勘测。但以协会常规机械载体运输的方式通常会因为714与载体接触的部分被气流干扰甚至直接破坏而无法成功。又因为难以辨别714个体以及各次行动的环境与天气因素影响,以测定714实际最大生效范围、实际所能传输物体种类、单个个体平均持续时间、714成分为目标在内的尝试均已失败。
但通过此类行动可总结得出以下结论:
- 714的实际异常影响受其传送筛选机制与自身的脆弱结构的双重影响,当生物体搭乘于正常运作且正在行驶中的载具(如机动车)上时,被714传送的概率几乎为零,远低于正常行走或驾驶助动车。
- 而当处于后者情景下时,亦可通过在接触714前立即减慢行进速度并停留原地等待714自行消散或救援以避免被传送进入714-1。
该附录为被协会站点area-31于2004年3月18日8点对分区内安全屋进行日例检查时发现的传输文件。
协会检查对应安全屋的系统日志后,确认了发送者为协会调查员Carl Taylor,因人事调动于2004年3月12日从站点area-54出发前往area-27,按照既定路线于17日途径██镇后失踪。此文件为Carl Taylor随身携带的信息终端自17日21点57分起至18日3点43分,分为多个部分发送至该安全屋。
由于文件内容混乱,以下内容已经过整合处理。
*(下划线为勘测记录,正常字体为个人日志,斜体字为音频转译文字;由于文件分包发送,故下述内容中所标注时刻实际为协会安全屋终端的接收时间。)
见鬼。真不应该走夜路的,衣服都脏了。
下面是不是有家旅店来着……
录音怎么开——
在大约9:25的时候,我按照原定计划离开██镇。大约在往西步行了约20分钟,然后我滑倒了,大概磕到了头,这地方天黑前下了场雨,而这一段山路太不好走了。
我昏迷,失去意识时间也许不是很长,我不知道。醒过来的时候发讯器的录音开着,也许有人袭击了我,也许是某个异常;起码根据设备上的时间和周围的情况来看暂时没什么问题,我决定改变计划,先返回城镇作休整。
先这样。
终端没法连上协会站点了。这回坏事。
啊——(此处省略数句语气词)
(叹气)该死。
终端只能连上之前休整时待过的安全屋。之前好像说这个通讯功能是归一个独立元件管的,运气好吧。但那破地方没人呆,(叹气)虽然到了那儿可以自己操作发信,但要走过去不太现实,我摔伤的可不止脑袋,还有膝盖。
现在只能回镇子里那间旅店了,幸好不远。
接下来保险起见还是把录音开着。设了两小时自动发讯。如果我想得起来再自己发吧。
……
……
怎么灰蒙蒙的全是云。还要下雨吗。
……
……
谢天谢地,还没关门。
老板,还有房么?
老板?
……
你妈的别装睡了,气都不憋的。
还装?我急着呐。
……老板?
……
有人吗?
起床了!
……
(手枪上膛)
最后通牒。你要是个人就给我老老实实地爬起来。
(深重的叹气声)
(门板碰撞)
我、呵。(吸气)我操——
714!
天色是灰色的。物体是可以随意移动的,人是叫不醒的。
我在714-1里。
这地方我可熟了。我前队长的队长死在这里,我前队长死在这里。我,我经过了改编之后队长没当成,这东西今天吃到我可算是掉了份了。
但我赶路的时候没起雾啊……
补充:猜测714-1新增进入方式
我得想办法自救。
我得想办法自救。
我得想办法自救。
如果我是莫名其妙进来的,也许也有出去的法子。
呃——(深呼吸)
该动起来了。
抵达了最初的苏醒处附近。714-1的边缘已经收缩,或者移动了约15米。714-1的边界没办法很好地辨别,在缺乏光照的夜晚下接近透明。
……
沿着边界步行了约40分钟,没有发现任何与协会记录信息相悖处。
……
现在是1:07。714-1的覆盖面积已经缩减到了城镇居民区内。同时天空灰色深度正在持续下降。两个现象与雾气覆盖范围和浓度下降的关联推论相符。
疑问:若雾气持续转淡,那么在最后的消散阶段,覆盖范围理应仍有相当的面积,但从现实侧角度观测雾气实际上已经十分稀薄且各自分散,是否714-1也同样如此?但鉴于先前的探索人员均未有关于“人员随714-1变形而被迫分离”的类似描述,是否可以认为714-1对“雾气”概念也有特殊定义?
关于一开始提出的补充猜想,什么新入口的,我现在觉得不太可能了。这地方天气邪门儿的很,起雾散雾都很快,在这个季节10多分钟内起一场大雾也不是一件特别让人特别难以接受的事。我应该是没办法活到8点的。
大概是之前手滑了,竟然到现在才发现录音功能又给关掉了。也好,免得把我前面骂的脏话给录下来。
(打火声)
呼——咳。刚路过的时候从街区附近的小店随手摸了包烟,特地还挑了个贵的,味道不对啊。
——不管了。反正现在也过不去了,刚刚起了风,把714-1直接吹了好大一段距离。大概又吹散了不少。否则少说也要给那混蛋两拳。或者像那旅店老板一样给两颗枪子,哈。
——谁叫他不理我的,虽然这和他没关系。但这和我也没关系。咱们就是两个世界的人了。
——这和我有什么关系呢?
——我要没进协会,本来也该去玩玩笔,怎么会现在烟枪不离手。
——这和我有什么关系?
——这和Cole那老家伙也没有关系。1989年,我进协会前两个月“敲窗人”就已经解散了,后面,9月还是12月来着,又因为714出现把他叫回去。一把年纪,他扛着东西就扎进去了。
——啊不对,是进来。
队长啊,我现在也进来啦。
就当是遗言吧。如果有人能ccccccccccccccccccccccccccccccccccccccccccccc
(持续的衣料摩擦声)
(重物跌落声)
操!
竟然睡着了?
……好挤。
老子遗言都没写啊混蛋!
(枪响。共12声。)
呵。
……
(打火声)
——714的档案每个版本都没写过死人有多少。
——我入队那年Cole告诉我,光调查员就起码400人。1952年4月份那场说是上了32套设备,“敲窗人”当时一共撒下去210多个人,几次下来底都赔光了。到现在又有多少也没人知道了。
我不管你是谁。好好查查。
我没什么遗愿,别看我21岁就被拉进来,连像样的恋爱都没谈过,身边人都换了几批,哪能有什么挂念的。
——但这事我现在想起来了。当时Cole进去之后,外面有好几个婊子养的在放枪。这事蹊跷的地方多了去了。
——不高兴。抽烟都抽不痛快。
……
……
——哦,对了,前面的那个疑问别管了,没什么意义。我是说这玩意儿查不明白。我们甚至不知道714-1会在什么时候没。如果你能看到这一个内容,起码还能证明我现在还没和外面断联系。现在我把自动发送程序调到15分钟一次。至于后面的事情,对个时间什么的应该不用我教吧?
……
……
(枪响)
……
(无)
(无)
补充:
根据18日站点area-31提交的调查报告,确认当地于17日21:53分突发大雾天气,证实Carl Taylor发送的记录文件中关于“进入方式”的推测无误。大雾于18日4:11分消散,而根据文件接收记录推测此次714-1失效时间在3:43至3:58之间。非常遗憾,该情报与过往数次相似目的的行动结果相同,对目前714的研究结论并未起到任何建设性作用。
“敲窗人”,是由█国西部共15个站点于1867年发起,经协会总部批准,合作组建的具有独立武装部队的特别收容联合部门,管辖活动范围主要为欧洲西北部。
官方行动方针以隔离、研究、收容或销毁具有大规模影响能力的自然相关异常为主,并与当地各国政府达成合作,通过一定的必要情报交流,换取官方警备部队的临时行动指挥权。
1952年,由于██市的大雾天气,为避免YHN-KHE-714可能造成的严重次生灾害,其时可行动人员共481人的“敲窗人”采取紧急隔离行动,先后出动217人,共有121人失踪,73人确认进入YHN-KHE-714-1而不幸遇难。
“敲窗人”本身由于行动内容的高危险性,自此往后多次出现人手不足的问题;又因为其具有特殊的政府合作资源,其行动基层乃至部分管理层人员被逐渐由部分站点主管直接掌控。
后续由于714研究出现纰漏,其生成方式被认为与烟雾中的特定成分浓度相关,并得出了“可通过合成特定材料以生成714,进而制造出大规模杀伤性武器”这一错误结论。而“敲窗人”因此被秘密操控用于进一步实验和研究714以制造战争武器,在1957至1993年间,area-52、area-54、area-57多次为相关研究主动在各自辖区的不同区域内大范围创造714生成的有利条件,并在引发相当程度的灾害后,命令“敲窗人”前往隔离镇压。
后由于1987年起协会总部更改了714的研究方针,且在随后的报告中证谬了原先的“成分说”,相关武器计划被搁置。而此后两年内area-52、area-54、area-57单方面秘密解散“敲窗人”,内部成员重新整编进入正常收容部队或后勤部门,但该行为始终未向协会部门上报,且“敲窗人”部门被以加入大量消耗人员的方式虚报人数,用于申请研究行动甚至抚恤津贴直至2001年。
2003年站点area-31接收到附录-3中Carl Taylor发出的通讯文件后立即将情况上报协会总部。时年5月,area-54宣布解散,area-52与area-57被重新整编,相关涉事人员全部停职查办,随后根据其情节严重程度实行包括降职、没收资产、入编消耗人员在内的处罚。
«YHN-KHE-0713 | YHN-KHE-0714 | YHN-KHE-0715 »

