SCP-6169

: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)); }
 
}
 
/*-------------------------*/
 
@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)); }
}
项目编号:項目編號:6169
等级等級2
收容等级:收容等級:
euclid
次要等级:次要等級:
none
扰动等级:擾動等級:
vlam
风险等级:風險等級:
待观察

alpaca.jpg

处于收容中的SCP-6169

特殊收容措施:应将SCP-6169收容在位于Site-19北部50km的史丹利农产品商1旗下的农场中。禁止将包含已编辑信息的文件或需要特定许可进行访问的信息带入该围场2km内的范围。可将关于测试的提案提交给驻守该地的首席研究员(现任首席研究员为Charlotte Weber)。

更新于2009年3月18日:鼓励分配到SCP-6169项目工作的人员每日与其进行互动。可容许的互动形式包括但不限于:喂食,梳毛,体检和测试等。

更新于2014年3月27日:每日互动应以友好嬉戏的态度进行,并且每日开展互动的总时长至少为一小时。

描述:SCP-6169是一匹棕色雄性羊驼(学名Vicugna pacos),其外观与无异常个体并无区别。在无人类在场的情况下,其习性不会偏离该物种的正常习性。然而,如果人员进入其20m的视线范围内并且不与其保持视觉接触,SCP-6169将表现出一系列旨在引起人员注意2的行为。只要与其保持视觉和/或肢体接触,SCP-6169就会采取友好的活动方式。

当将经过删减的资料带入距其1 km 300 m 100 m 15 m的范围内(参见附录2)时,SCP-6169的异常效应开始显现,上述资料的所有已编辑信息均会恢复。该异常似乎能认识到掩盖信息的意图,例如,文本中有意遮蔽或删除的部分会恢复到未删减状态,然而因墨水意外洒出而被覆盖的字迹会保持原状,伪造信息同样不受SCP-6169影响。将其移出该异常影响范围后,受影响资料会立即恢复到已删减状态。

已知电子和实体文本以及音频和视频媒介、已编辑资料的副本均可受到SCP-6169影响。此外,就电子文本文件而言,需要某种许可等级进行访问的信息同样被SCP-6169视为已删减资料。在此情况下,等待输入适当的认证信息的提示框,一个描绘羊驼的符号将与其并排显示。

回收:于2009年3月11日,潜伏在若干家电视服务提供商中的基金会特工收到报告称,一档划分为TV-PG3级的晚间喜剧节目中含有未删减的谩骂片段。虽然这类事件已有先例,然而在该节目在全国范围内播出的前提下,此类报告仅来自于纽约州的欢喜山镇town of Mount Pleasant。在确认原版录像中含有谩骂的片段已被删减后,基金会获悉了该地区的潜在异常。

在被发现的现场,SCP-6169站在一幅粉笔画上,画中所描绘的人似乎在参与抗议。此外,上述人物的眼部和嘴部被黑条块遮住,人物持有一张上面似乎带有类似模糊文本的标语牌 。初步的现场测试断定羊驼是异常特性来源,而画作完全不存在异常。对当地居民的采访显示无目击者,且画作和项目的发现地点没有被任何监控摄像头覆盖。鉴于事态将画作移除并预计将SCP-6169运送到Site-19。因接触到受影响电视媒体的人员数量较少,以“选择播出的节目版本时存在疏忽”的掩盖故事作为后续措施被视为已经足够。

在前往Site-19的途中,SCP-6169影响文本文档的能力显现,缺乏适当许可等级的人员此时可以访问受限信息报告。因此将SCP-6169收容于Site-19被视为不可行,启用一个由基金会前台公司购置的附近农场用以收容SCP-6169。

附录1:在SCP-6169初步被收容的几天后,这段时间里无人员与其互动,项目表现出食欲不振和总体活力的衰减。在一次医学检查中,这些症状有部分缓解,随检查程序进行其健康状况也得到总体的改善。鉴于以上情况及项目的高度社群行为,推测SCP-6169以获取人类注意力作为一种次要维持生命的方式。此推测已得到证实,人员与项目间的每日互动使项目的健康水平得到持续改善。收容措施得到相应的更新。

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