SCP-2932


: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)); }
}
評価: +76+x
kaktus2.png
forest2.jpg

SCP-2932の入り口へ続く小路。

アイテム番号: SCP-2932

オブジェクトクラス: Thaumiel

特別収容プロトコル: 現在、SCP-2932はその発見地にて収容されています。機動部隊グザイ-9 ("看守団") には封じ込め努力を遂行する任務が与えられており、これには近隣の町村においてのSCP-2932に関する公衆知識の抑制、SCP-2932と接触した個人に対する記憶処理が含まれています。SCP-2932の周囲にはフェンスで囲まれた保安境界が設立されており、内部が自然保護区であることを示す警告標識が立てられています。境界は日常的に巡視を行ってください。

機動部隊グザイ-9には、SCP-2932から脱走したSCP-2932-1実体の封じ込めを、SCP-2932-Aと共に遂行する命令も与えられています。SCP-2932を起源とする、おそらくEuclidからKeterクラスに相当する実体に関する情報がSCP-2932-Aから得られており、この情報は文書の後半に掲載されています。機動部隊グザイ-9の職員に加え、SCP-2932に割り当てられた他の財団職員もこの情報に習熟してください。

SCP-2932-2の修復の試みは進行中です。オブジェクトの複雑さとその性質のため、職員は既に脆弱な状態にあるSCP-2932-2を擾乱することのないように、任務中には特に気を使わなければなりません。SCP-2932-2の機能を熟知した財団スタッフの医師が6時間のシフトで常駐し、緊急時には常に対応が可能であることを保障してください。この文書の後半で、このオブジェクトに関するSCP-2932-Aより収集された情報が詳述されています。SCP-2932-2には全般的な機能障害が発生しており、現在のSCP-2932の機能を維持するために実験的なエネルギー供給システムが稼働しています。供給が不十分であると判明した場合、機動部隊グザイ-9と追加の保安要員は大規模収容違反シナリオに備えてください。

注: しばしば警備生物からの反撃を受ける結果となるため、職員は遺伝子照合生物を用いた認証を試みるべきでないことに注意してください。

収容メモアップデート: 財団プロトコル2513.99に基づき、SCP-2932は収容状態を維持したままプロジェクト・パラゴンに移管されます。その他の収容手順に変更はありません。

説明: SCP-2932は、ペルー中東部の「El Sira共同保護区」内に存在する大規模な有機的構造体です。SCP-2932は、樹木、蔓植物、他の植物性生物で形成されたドーム状の外装を持っています。外装の周囲は、SCP-2932内部から成長した生物発光性の照明で照らされています。SCP-2932全体に存在する他の植物性生命体を含め、SCP-2932の発見以前にはこれらの植物種は知られていませんでした。ドーム状構造は破壊不能であり、ドームに損傷を与える試みは多くの場合、SCP-2932を保護する役割を持った運動能力のある植物性生命体による攻撃的、敵対的な反撃を招く結果となります。SCP-2932の正門は構造の南側に位置しており、SCP-2932内部に位置する実体による許可、または、門の付近の遺伝子照合生物による認証なしには開くことができません。

SCP-2932の地上階の内装は、アーチ型の廊下と大きな複数の部屋で構成されています。これらはSCP-2932の外装と同様に有機質で、全域に同様の発光生物が見られます。SCP-2932-1実体に関する情報でこのセクションから回収されたものは、SCP-2932-Aから得られた情報と共に纏められています。

SCP-2932の下層階は地下に位置し、大部分は広大な開けた空洞で占められています。この中には無数のキャットウォークが走り、多数存在する足場の間を繋いでいます。壁は一面に、極めて耐久性のある植物性物質で構成された繭状の莢で覆われており、莢の大きさは空洞を下るほど増大します。これらの莢の用途はSCP-2932-1実体の封じ込めであるようです。各莢の右側には様々な植物性物質で構成された装置が付属しており、それに取り付けられた半透明のシリカ製タッチパネルが莢とのインターフェースとして機能します。莢の中に封じ込められたSCP-2932-1実体に関する情報が閲覧可能ですが、莢の開閉機構は適切な遺伝情報を持たない個人に対してロックされています。これらの莢の圧倒的多数が無傷で活動状態にありますが、少なくとも██個は引き裂かれています。

SCP-2932-Aは、SCP-2932に居住しその維持管理を行う、年老いたクラスI近似ヒト型実体です。SCP-2932-Aは6本の主要な付属肢を有し、後方の2本を用いて直立歩行します。SCP-2932-Aの胴体は2つの体節からなり、双方の体節は長く細かい毛で覆われています。頭部は大まかな卵型で2対の眼が存在し、1対は昆虫の複眼に、もう1対は脊椎動物の眼に類似しています。頭部の前面にはヒトに似た口と、物を把持できる長い鼻状の構造が存在します。SCP-2932-Aの頭頂部は大部分灰色の長く細かい髪に覆われていますが、無数の小さな棘も存在します。背面には昆虫に似た4枚の翅が存在し、これには適切に治癒しなかった傷跡が残っています。

SCP-2932-2は血管に富む巨大な臓器で、SCP-2932の地下空洞の中心に浮かんでおり、その主要なエネルギー源となっています。SCP-2932-2は毎分8回程度の速度で拍動しますが、緊急時には毎分3回にまで拍動を低下させることが判明しています。SCP-2932-AによるとSCP-2932-2は、自身の体で監獄を構築し、心臓を施設の維持のために配置した女神ティターニアのものです。

SCP-2932-Aより得られた情報から、SCP-2932はかつて造られ、今も機能し続ける、無数の生物や他の実体を封じ込めるために設計された大規模拘禁システムであると推定されています。SCP-2932の当初の所有者に起きた破滅的事態(より詳細な情報は文書Α-1596-1000を参照してください。)により、サイトは封鎖されて封じ込め任務はSCP-2932の基幹要員の手に移り、SCP-2932-Aはその看守の役割を勤めていました。時とともに残された職員は死亡、逃亡、消失し、施設は荒廃を始めました。これに加え、SCP-2932の主要エネルギー源であるSCP-2932-2の脆弱化が進んだことから、複数の封じ込め莢が機能不全を起こしてその内容物を放出したものと考えられます。


インタビュー2932-A: 次のインタビューはSCP-2932の初期探索中、財団職員がSCP-2932-Aによって構造内への立ち入りを許可された直後に行われました。SCP-2932-Aは自身の母語とケチュア語しか話せなかったため、当初のコミュニケーションは言語の壁に阻まれました。インタビューは通訳の到着時点で行われました。

補遺2932-1: 次の記録は潜在的に危険なSCP-2932-1実体に関するものとして端末から収集されたもので、ほとんどの封じ込め機構は活動状態にあります。SCP-2932-Aから得られた注記も掲載しています。また、SCP-2932-Aは全エントリについての完全な翻訳も提供しました。

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