SCP-6442


: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 > * {
    white-space: nowrap;
    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 screen and (prefers-reduced-motion: reduce) {
    div.anom-bar-container { --timeScale: 0!important; }
}
 
/*-------------------------*/
 
@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; width: 1%; }
    to { opacity: 1; width: calc(100% - 0.25rem); }
}
@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)); }
}
評価: +58+x
アイテム番号: 6442
レベル5
収容クラス:
Thaumiel
副次クラス:
{$secondary-class}
撹乱クラス:
vlam
リスククラス:
critical

scp-6442.jpg

収容施設 [データ削除済] の一区画

特別収容プロトコル: 予防的な収容試行と財団の機密保持において果たす役割に鑑みて、SCP-6442はあらゆる必要手段を以て確実に保護する必要があります。

収容施設 [データ削除済] への立ち入りはSCP財団防諜局によってのみ許可されます。施設の地理的な所在地を秘匿するため、現地に配属された職員は位置測定機器の使用を認められず、到着時にクラスB記憶処理が施されます。収容体制を損なう可能性に鑑みて、現地職員は指定された緊急ゾーンや施設メンテナンスに必要な範囲を除いて、施設のレイアウトに精通することを期待も推奨もされません。

無許可で施設の退出や立ち入りを試みた者は速やかに拘留され、その後に記憶処理、降格、及び/または終了されます。

収容施設 [データ削除済] の外部は、潜入防止戦術に特化した財団製オートマトン部隊によって警備されています。一般秘匿プロトコルに従って、オートマトンは潜入者を秘密裏に終了し、敵意ある航空機を無音で撃墜し、異常な兵器への対抗奇跡術を行使できるように設計されています。


SCP-6442本体は、それぞれが最低でも50m離れた場所にあり、移動が困難になるように設計された狭い迷路状構造で相互接続された16ヶ所の同一の球形収容チャンバーの1つに存在します。各チャンバーは完全に無個性で、1ヶ所だけ入口があり、他のチャンバーと区別できるような目印はありません。如何なる財団職員もSCP-6442の正確な位置を知ることは認められません。

各収容チャンバーの内部にはタングステン合金の球体があり、その中にSCP-6442、またはほぼ同一の (しかし非異常な) 複製品が保管されています。多大な調整と労力を伴なわなければ到達できないように、各球体は対応する収容チャンバーの中心に吊り下げられています。更に、力尽くでSCP-6442を無力化及び/または回収しようとする者に対して、収容施設の内部には複数の防御手段が設けられます。現在の対応策には以下が含まれますが、それらのみに限られません。

  • 対核兵器・対固有兵器防衛プロトコル
  • 各収容チャンバーに充満するエアロゾル化したクラス I 記憶処理薬
  • スクラントン現実錨 (SRA) 。現実改変攻撃によるSCP-6442への被害を防ぐため、各チャンバーに6基ずつ設置。
  • シャンク/アナスタサコス恒常時間溝 (XACTS) 。時間操作を防ぐため、各チャンバーに1基ずつ設置。
  • 実験的ランドール/ヨッサリアン式アキヴァ無効装置 (ERYAN) 。神格の介入を防ぎ、かつ思い止まらせるため、各チャンバーに36基ずつ設置。
  • 機動部隊タウ-5 (“サムサラ”) 構築タンク。上記の対応策が不十分であるか、現地保安部隊が敵対勢力に圧倒された場合に備えて、各チャンバーに1セットずつ設置。

万が一、不測の事態によってSCP-6442を取り出す必要が生じた場合、全てのデコイをSCP-6442と共に施設外へ移送します。問題が解決し次第、SCP-6442は無作為に選ばれた16ヶ所のチャンバーのうち1つに戻されます。

国際連合・世界オカルト連合がSCP-6442の奪取に成功した場合、同組織による仮説上の予防接種の開発を阻止するため、あらゆる手段を以てSCP-6442を無力化します1。SCP-6442の教師データや構築素材は全てリバースエンジニアリングを防ぐために焼却処分されたため、SCP-6442本体の保護は最優先事項と見做されます。


異常コミュニティ内における緊張状態と、抗争緩和会議が難航していることに鑑みて、上記の特別収容プロトコルは無期限に継続されます。O5評議会指令に則り、本プロトコルは防諜局によって3ヶ月ごとに再承認または更新される必要があります。

保安上の懸念があるため、本文書からは完全版の収容プロトコルに含まれる未決部分が除外されています。


説明: SCP-6442はSCP財団の防諜局とミーム部門が制作した刻銘です。SCP-6442は機密指定された炭素繊維系エラストマーから成る球体の内部に彫り込まれています。

刻銘の最低73%を知覚した時点で、曝露者の全ての神経学的機能は瞬時かつ完全に停止します — この効果は非有機生命体を含むあらゆる知性体に及びます。現在までのところ、SCP-6442は財団が制作した中で最も強力な認識災害であり、曝露者が生き延びるには認知抵抗値742以上が必要だと推定されています2。従って、予防接種は実行に移せず、潜在的に不可能だと見做されています。

2023年に制作され、収容下に置かれて以来、SCP-6442は最低でも8,000体の全知能力実体を成功裏に無力化しており、そのうち少なくとも2,000体は世界オカルト連合に雇用されていました。

特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。