SCP-CN-1948
:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
/*--- Motion Accessibility ---*/
@media (prefers-reduced-motion) {
    div.anom-bar-container { --timeScale: 0; }
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
评分: +36+x





根据监督者议会的命令

以下文件为5/CN-1948级机密。禁止未经授权的访问。

是否已确定授权?


.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

.

欢迎您,已授权的人员。

.

.

.

.

.

.

.

.

.

基金会记录与信息安全管理部的通知

该文档中以不同形式出现了认知危害,且表现并不明显。文档中出现了少数非文档编辑者本意的表达语句,因此请在任何情况下保持警惕。认知危害抑制装置正在修复中。


5/CN-19485/CN-1948

最高机密

classified-lv5.png

项目编号: SCP-CN-1948

项目等级: Enochian

特殊收容措施:任何人类尸体都应被火化处理,基金会人员应对任何新生儿进行记忆删除以尽可能遏制SCP-CN-1948现象的发生。任何人员不得将死亡前的记忆称为“往世”或“前世”,禁止将濒死体验称为“走马灯”。任何被证实有过此发言的员工将被视为II级认知危害触媒对待。

无论任何情况发生,SCP-CN-1948都不是已收容的。尽可能停止对项目的思考和研究,因其将永远存在。Site-CN-82-γ将对该项目永远负责。

描述:SCP-CN-1948是一系列发生在全体人类身上的现象。SCP-CN-1948-1为全体人类,但不排除存在其它类似生命经历此类过程的可能。在任何情况下,SCP-CN-1948都处于“未收容”状态,唯一可能的解决方法仅有全体人类的存在彻底消失,或任何其它形式制止人类衰老死亡的手段。

该现象通常表现为SCP-CN-1948-1从产生完整自我意识至死亡的全过程,且此过程的死亡并非客观认知上的死亡。此死亡可认为是人类个体意识的永久消失,即彻底不再存在。此过程已被划分为多个阶段,具体请见下文。

由于SCP-CN-1948-3的不稳定性,现存或新出现的SCP-CN-1948-1-α可能进入任何已失去或半失去意识的人类个体体内。此过程通常会导致其因疾病或先天性缺陷的身体立即恢复正常,原因未知。但由于此性质的发现,项目的性质变得更加无法具体确认。



早期,SCP-CN-1948被误认为是非异常的、可在世界上客观存在的。在对其进行检测并确认SCP-CN-1948-1逆模因记忆存在的真实性后,项目被编为异常。在少数SCP-CN-1948-1个体的记忆中搜寻到了未被逆模因化的记忆。此类个体通常为有神论者,在世界上被多数人群所知。1

保留记忆读取权力的SCP-CN-1948-1个体在起初大多通过编造事实和逃避来尽量避免将拥有记忆的事实告知外界。基金会人员通过多种手段强制获取了其记忆,并确认了SCP-CN-1948-1-α能够经过超过100次的“循环”;且由于次数过多,SCP-CN-1948X-1将有██%的概率在第███次循环后保留上一次死亡的记忆。并且,在一次记忆保留发生后,项目将不受SCP-CN-1948-3影响。

██████████████是不可避免的████。此类异常事物被认为由已消亡的████或████重赋予非常规能量导致。此过程可能由████████████进行,但其所发生的后果是████████。██████████████而言更加危险。

在任何情况下,来自SCP-CN-1948-3的信息内容是不可预知的。由于人类个体的异常性质,因此任何已知的人类和被群众认知为人类的个体2均可能以异常形式出现在音频/视频记录中。

附录:SCP-CN-1948在一次多人殉职后被另一基金会人员发现。在此前发生了一次大规模收容突破,出现了大量的人员伤亡。在距收容失效发生地超过2000千米外的另一站点,一个保留记忆的SCP-CN-1948-1-α疑似进入了一个年龄为3周岁的SCP-CN-1948-1体内。随后,SCP-CN-1948-1表现出非常态的恐惧,在失去理智的情况下被工作人员强制麻醉。该个体在受麻醉后因身体原因死亡。

附件:


高机密文件

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