: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-315
危险等级:SECURE
归档者:济
特殊收容措施:
YHN-KHE-315存放于站点心理咨询室的书架,任何工作人员都可自行借阅。
YHN-KHE-315存放于area-普罗维登斯站点的心理咨询室的保险柜中,该保险柜密码仅有站长与心理咨询室负责人知晓,每周需要修改一次保险柜密码以确保其保密性。经过一名研究员即以上权限的人员允许后即可阅读YHN-KHE-315并将其使用于站点工作人员的心理医疗中。
发现记录
研究员a因████收容失效事故导致其肉体残疾同时伴有严重的受创性应激与重度抑郁倾向,据管理层议定研究员a不适合参加第一线的研究工作,于是使决定其退居二线于家中处理边缘工作,1936年6月1日下午,研究员a于美国罗德岛州普罗维登斯的家中整理废旧物品时发现了YHN-KHE-315的存在。该研究员表述“自己在看到它的内容时产生了一种强烈的如同在母亲怀抱下的放松舒适感,就连身上的残疾与心中的烦恼都显得淡然了。”故此研究员a确定其具备异常特性并就近将其上交给协会位于普罗维登斯的站点。
描述
常态下的YHN-KHE-315
YHN-KHE-315外形类似于普通A4大小的信纸,纸张整体为淡黄色,上有淡蓝色的勿忘草属植物纹样,信件文字内容为叶绿色,具体材质不明,暂不确定是否有信封存在。在YHN-KHE-315遭受破坏后,其将会在10分钟内自主修复并恢复原状,具体修复时间由其损坏的严重程度决定。
YHN-KHE-315有一定的认知修改能力,具体表现为其文本将会在不同的阅读者中呈现不同的内容。
在不同人眼中YHN-KHE-315具备一定的共同特征,据阅读者口述总结内容如下:
- YHN-KHE-315的信件内容以叶绿色手写体工整书写,其内容将以阅读者的母语进行呈现
- YHN-KHE-315的信件的收件人一栏中填写了阅读者的姓名,寄件人一栏中填写了阅读者人生中最重要人的姓名。
- YHN-KHE-315的信件内容将会采用寄件人的语气、用语、书写习惯,手写体的字体会因为寄件人的不同,形成阅读者记忆中的寄件人字体并呈现阅读者最希望寄件人对其说的话。
- YHN-KHE-315会对阅读者施加一定的精神影响,具有安定镇静的效果。
- YHN-KHE-315将会对结束阅读的阅读者施加额外的精神影响,如减少病痛感知,治愈心理疾病,积极乐观等。
- YHN-KHE-315能力影响时效极长,在该档案归档前并没有自主解除该能力影响的案例出现。
补充:
第一位自主解除该能力影响的个体案例,出现于该异常项目归档的三年后,后陆续有个体摆脱YHN-KHE-315的精神影响,影响时间平均为6年。
研究记录
研究员a在将YHN-KHE-315上交后,为初步验证其异常特性影响,协会立即对研究员a进行了全套体检并进行隔离观察,同时与其退居二线初的测试结果做对比,结果显示研究员a相对于阅读YHN-KHE-315前,焦虑症状明显好转,且在听到关键词██后,不会产生应激反应。同时研究员a处于一种积极的心理情绪中,并明确表示“想要重回一线继续开展研究性工作!”
█博士对研究员a进行的访谈书面记录
- █博士
- “您好a先生,很高兴能再次在协会里看到您,您即使是退居二线却仍然能为协会做出如此巨大的贡献,真是让我万分敬佩呢。”
- 研究员a
- “博士您的语气,还是和往常一样的阴阳怪气令人不适啊,先不谈这个,您要问我什么问题呢?”
- █博士
- “也对,叙旧的事等会再说,嗯…让我看看,第一个问题是你在YHN-KHE-315上读到的内容是什么?”
- 研究员a
- “那是母亲给我写的信,绿色的字迹很好看很雅致,就像她以前在我的识字读本上写的那样,她在信里嘱托了我好多好多的事情,就像她以前在我耳边絮叨的一样呢。”
- █博士
- “这样啊,你看到的内容是与我看到的不一样的,第二个问题你当时是如何判断这是异常的?明明这种类型的文字也能够打动人心令你温暖的不是嘛?”
- 研究员a
- “嗯,在我读了开头时确实是这样认为的,可是在后面她写了些我妈妈不该知道的东西,先提前说一下,额,我的母亲在我大学时就已经因为生病去世了。它这上面写了我在协会里发生的事情,就比如那次事件导致的残疾。而且我因为惊讶不小心给它撕了一个缺口,但是过了一会儿在我完成阅读后缺口消失了。”
- █博士
- “嗯…节哀,那我的问题问完了,可以请你先回去了。”
- 研究员a
- “节哀?这可不像您会说的话啊?不过让我恢复一线工作的事情真的不考虑一下嘛?”
- █博士
- “呵呵,回来工作?恕我直言,你的身体可真是,如同马克吐温笔下那充斥着厄运的未婚夫,带着你最后的一条腿,好好休息吧。”
笔录至此结束
本次实验后协会寻找了一定的志愿者对YHN-KHE-315进行阅读并收集了调查报告
志愿者调查结果记录摘选
姓名:霍华德·菲利普
年龄:46岁
身份:作家
身体/心理状况:体态瘦削,常年受夜惊困扰,身患肠癌
YHN-KHE-315显示寄信人为一位阿拉伯诗人,其信件内容大多讲述了其年少时期的幻梦。完成阅读后,阅读者表示了对该寄信人存在的惊异,同时其身体疼痛程度在心理作用下,得到减缓,能够安然入睡直到天明,YHN-KHE-315的影响一直维持至其死亡。
姓名:乔治·埃德加
年龄:8岁
身份:孤儿院幼童
身体/心理状况:轻微的营养不良
YHN-KHE-315显示寄信人为该幼童的母亲,其内容为“妈妈很抱歉自己没有能力再见你一次,或者再拥抱你一次了,你啊要记得不要挑食,要多吃饭,赶快长大,成为一个优秀的大人,我的孩子未来一定会是一个帅小伙呢!每天啊你要记得按时洗澡,还有一定一定不要熬夜,保证睡眠;要多交朋友,至少要有几个值得你信赖的朋友,你要好好学习功课,谁都有擅长和不擅长,就算学习遇到困难也不用太过失落,要相信你自己哦,虽然妈妈不在了,但天上的星星总有一颗是我,吹过你身上的风也总有一阵是我,要健健康康快快乐乐的长大哦,我爱你。”阅读后,阅读者对于生活与学习的积极性大幅度提高。
据后续调查该志愿者的母亲于1932年死于一场枪击案中。
姓名 安娜·克里斯蒂娜
年龄:16岁
身份:高中二年级生
身体/心理状况:亚健康,带有严重的焦虑症状
YHN-KHE-315显示寄信人为其恋爱对象,具体内容阅读者并没有向我们透露,在阅读前该高中生明显处于焦虑状态,并在阅读过程中显得逐渐安定,同时面色逐渐红润,当阅读完成后阅读者的焦虑状态彻底消失。
经群众实验测定YHN-KHE-315可用于站点内工作人员的心理恢复,所有工作人员皆可自主借阅。
——█博士
验证研究员a口中YHN-KHE-315自我修复的性质
- 将YHN-KHE-315放入碎纸机中,如同正常纸张般变为碎片,在持续的观测下,碎片的物理位置发生变化,并在九分三十六秒时重新组合为YHN-KHE-315。
- 增加实验步骤 再次将YHN-KHE-315放入碎纸机中,取走部分纸张碎片置于密闭空间中,碎片的物理位置发生变化,并在九分四十八秒时重新组合为YHN-KHE-315。
- 尝试使用YHN-KHE-315作为书写纸张,采用水笔、铅笔皆成功留下字迹,但在十分钟后字迹消失,YHN-KHE-315恢复原状。
后经过多次实验得出结论:
YHN-KHE-315的复原速度与损坏的程度一般成正比例关系,且复原时间不会超过十分钟,在还原过程中YHN-KHE-315碎片物理位置的移动,不会受其物理位置限制。同时在YHN-KHE-315书写同样会被视作对该异常进行损坏,会在十分钟内进行复原。
(或许我们可以用它来传递信息?)
别犯蠢了最多十分钟能传递什么信息,老老实实用你的固定电话机吧。
——█博士
对YHN-KHE-315进行采样分析,书写该异常的墨汁为勿忘草属植物叶片汁液,具体植物品种不明;蓝色植物纹样由勿忘草属植物花瓣汁液绘制,具体植物品种不明,与数据库内容进行对比未发现类似纹样。后对其进行碳14年代测定,发现YHN-KHE-315于1927年被制造,同年有出版读物《梦寻█境卡██》
一名可消耗人员在完成对YHN-KHE-315的阅读后,情绪变得激动不稳定,三分钟后该可消耗人员产生了重度狂躁症状,试图攻击并杀死身旁的看护人员,被安保人员及时击毙。在此过程中,所有观测到YHN-KHE-315的人都发现,信纸上的字迹转变为红色并且显示了一句话“无爱无情者,没有资格苟活于世。”维持该状态十分钟后,YHN-KHE-315转变回常态。
后经调查发现,该名可消耗人员在被送入协会前,曾因虐杀其父母妻女被判处死刑。
批注
由此可知,YHN-KHE-315具有一定的智能与精神操控能力,还是有点危险的可能的,所以你们给我立刻把它封存锁进保险箱里去啊!特别是你们这些随性的家伙不准再在把YHN-KHE-315随便乱摆在心理咨询室的书架上了!听见没有?
——█博士
放屁!也就你这种整天做亏心事的家伙,才会害怕这个异常的能力了!
附录
由复印机影印的YHN-KHE-315,其内容不具备认知修改能力,可正常阅读
1937年3月15日 归档
« YHN-KHE-0314 | YHN-KHE-0315 | YHN-KHE-0316 »

