7901-PCS


: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)); }
}

。すまりなと能可不がとこむ読、りなと1-7901-PCSに的久恒はルイァフ当に内以間時42。すで中行進が反違容収の7901-PCS

門部達伝誤より警告

«記録終了»

カレ博士: 誤伝達部門です。

クランシー管理官: わかった。じゃ改めて、あなたはどこで働いてるの?

カレ博士: だと思います。きっとうまくいくはずです。[…] 実はもう14ページの終わりです。はっきりさせときましょうか。

クランシー管理官: いい?

(沈黙。)

クランシー管理官: なるほどね。ってことは、問題はファイルが逆になってるゆえの明瞭さね。

カレ博士: そこはまだ取り組んでいるところです。7901-PCSはファイル構造をゆがめるため、そこの解消には時間がかかります。これがどうなるかは見てみるしか — 最悪の場合、最初からやり直さないと。今の草案は安定してます。標準的な文書の一部が不足してますが、意図的なものです。一貫性を保つためです。

クランシー管理官: 状況が悪化したときに逆転させる方法は?

カレ博士: 指定を与えてみれば安定するかもと考え、今のところは、そうなってます。でも1-7901-PCSを逆転させることはといえば、まだどうにもなりません。どのようにターゲットを選択して統合するのか、中に入ってから具体的にどうなってるのかははっきりとはわかってません。そこの不安定性が一番のハードルです。

クランシー管理官: リンクなんてどうやったの?

カレ博士: 即興での対応が必要でした — ある時点では、端末から出てきた後にそいつを文字通り2つのティッシュ箱の間で跳ね返らせました。速く動いてました。実際の方法としては、命名法関連付け — 要はそいつに名前つける — のと、リンクが確立された後に実体を物理的にターゲットファイルに入れるのの組み合わせですね。おびき寄せました。

クランシー管理官: これで上手くいくと思う? 別のものをターゲットにしたら? そういう性質じゃなかった?

カレ博士: はい。士博ンマフホが最初に感染して、彼を名前で呼ぶことができなくなりました — そいつは全実例を壊しました。しかしその名前を使うのをやめたら、7901-PCSは彼から離れて私のSCiPNET端末のフォルダにくっつきました。彼の名前はまだ崩壊してますが、肉体の方は問題なしです。マシューズは壊れた名前 — 士博ンマフホ — を再利用すればそいつを引っ張り出せると突き止めました。そこでまっさらなファイルで試しました。上手くいきました。

クランシー管理官: それで7901-PCSなんて指定にしてると — その呼び名をそいつが食うから。面白い。収プロの草案で見た気がする。

カレ博士: えぇ。マシューズと私で最初のアイデアはまとめましたが、チームで改良しました。最優先はそいつを休眠状態で安定させて、文書全体を食らって読めなくなるなんてことをさせないことですから。「餌を与えられてる」限りは、その場から動きません。

クランシー管理官: ふーん。堅実な仕事ね。こういう収容プロトコルにかけちゃあいっつも満足なものをお出ししてくれてるから — 他の部門じゃそういうことはあんまりない。

(沈黙。)

カレ博士: 今は逆方向です。"堅実な仕事"です。

クランシー管理官: (書類をシャッフルする) ふんふん。

カレ博士: 実はほんのちょっとだけ編集がいるんですが。ちょっと待ってください、(書類をシャッフルする。カレ博士はクランシー管理官に紙束を手渡す) これです。準備できたらいつでもどうぞ。

クランシー管理官: 昨日のコピーを持ってきた。これで全部?

カレ博士: あぁ、それは困りもんですね。何か助けがいれば言ってください。それで、昨夜これは終わらせてウィルソンさんに送りました。良さげですか?

クランシー管理官: また会えてうれしい — 話すのもしばらくぶり。この部門の方にはあんまりいなかったから。監督司令部は毎年この時期になると仕事を山積みにするのが大好きみたい。

«記録開始»


転写

—エリ・フォークレイ、誤伝達部門管理官

以下の会話はVCP-PCS/7901の下で行われました。職員は、スクリプトからの逸脱は命名法違反に繋がる可能性があることに留意してください。

誤伝達部門

財団より通達

補遺7901.1: 追加情報

現在まで、恒久的な感染を逆転させる方法は発見されていません。

2ダルォフ カレ博士のSCiPNET端末上のファイルフォルダ 2ダルォフに入れられたものは1-7901-PCS実例のように名前が変更される。これらのファイルの内容は影響を受けないままである。 18分
士博ンマフホ 誤伝達部門の補助研究員 士博ンマフホを影響を受けていない肩書で呼称する試みは全て失敗した。 1時間23分
-シイメ ガルッチ研究員の犬 逆方向に歩き、吠え、食べる。 13時間54分: 恒久的影響
ガラス製メーソンジャー 当初、士博ンマフホにより物理的な収容チャンバーとして使用された。 瓶の開口部に物品を入れようとすると見えない壁にぶつかる。蓋を閉めてから、ガラスの外側から滑り込ませることで物品を入れることができる。 32時間9分: 恒久的影響
アイテム 説明 影響 期間

1-7901-PCSは7901-PCSに感染した、あるいは感染している物体または対象です。実体が十分速やかに除去されれば実例は元の状態に戻る可能性がありますが、曝露期間によっては軽微な影響が残留する場合があります。既知の1-7901-PCS実例の要約済みリストは以下の通りです。

7901-PCSは極めて人目を避け、実体が1-7901-PCSの恒久的な実例に再配置されるか、引きはがされるまで選択した標的に留まる傾向にあります。

物体的には、7901-PCSは反射性の黒いゲルでできた小型の頭足類に類似しています。滑走とジャンプを組み合わせて周囲を移動します。標的を選択すると、7901-PCSは触手裏側の吸盤を使って吸い付きます。標的に接続すると、7901-PCSは非実体化します。

説明: 7901-PCSは感染性、擬似ミーム性、寄生性を持つ実体であり、物理的物体・生物・概念構造における、記述子・内容・伝達機能を逆転させ再配置することが可能です。主に名前、分類、参照チェーンに影響します。

口頭収容プロトコルPCS/7901に従い、全職員は常時"7901-PCS"の指定でそれを呼称せねばなりません。逸脱しないでください。即興で対応しないでください。自由形式での説明を試みないでください。

特別収容プロトコル: 7901-PCSは当ファイルに収容されています。


アイテム番号: 7901
レベル4
収容クラス:
keter
副次クラス:
{$secondary-class}
撹乱クラス:
{$disruption-class}
リスククラス:
{$risk-class}

by PlaguePJP

評価: +23+x
blank.png












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