保安施設ファイル: サイト-44
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        bottom: 0.5em;
        left: 0.5em;
        z-index: 15;
        font-family: san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888 !important;
        background-color: #fff !important;
        border-radius: 3em;
        color: #888 !important;
        text-decoration: none!important;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -25em;
        width: 17em;
        height: 100%;
        background-color: rgb(184, 134, 134);
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        -webkit-transition: left 0.5s ease-in-out 0.1s;
        -moz-transition: left 0.5s ease-in-out 0.1s;
        -ms-transition: left 0.5s ease-in-out 0.1s;
        -o-transition: left 0.5s ease-in-out 0.1s;
        transition: left 0.5s ease-in-out 0.1s;
    }
 
    #side-bar:after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
 
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        border: 1px solid #dedede;
        z-index: 10;
    }
 
    #side-bar:target + #main-content {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.3) 1px 1px repeat;
        z-index: -1;
    }
}
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        bottom: 0.5em;
        left: 0.5em;
        z-index: 15;
        font-family: san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888 !important;
        background-color: #fff !important;
        border-radius: 3em;
        color: #888 !important;
        text-decoration: none!important;
}
 
@media (min-width: 768px) {
 
    .mobile-top-bar {
        display: block;
    }
 
    .mobile-top-bar li {
        display: none;
    }
 
    #main-content {
        max-width: 708px;
        margin: 0 auto;
        padding: 0;
        transition: max-width 0.2s ease-in-out;
    }
 
    #side-bar {
        display: block;
        position: fixed;
        top: 0;
        left: -25em;
        width: 17em;
        height: 100%;
        background-color: rgb(184, 134, 134);
        overflow-y: auto;
        z-index: 10;
        padding: 1em 1em 0 1em;
        -webkit-transition: left 0.5s ease-in-out 0.1s;
        -moz-transition: left 0.5s ease-in-out 0.1s;
        -ms-transition: left 0.5s ease-in-out 0.1s;
        -o-transition: left 0.5s ease-in-out 0.1s;
        transition: left 0.5s ease-in-out 0.1s;
    }
 
    #side-bar:after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.2);
 
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        border: 1px solid #dedede;
        z-index: 10;
    }
 
    #side-bar:target + #main-content {
        left: 0;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(0,0,0,0.3) 1px 1px repeat;
        z-index: -1;
    }
}
: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)); }
}

財団施設 » 保安施設ファイル: サイト-44

評価: +19+x

Site-44logo.png

SCP財団保安施設ファイル

サイト-44

正式名称: SCP財団ブリテン諸島主要調査・収容施設

サイト識別コード: BIPRC-Site-44


Foulness.jpg

サイト-44の正面入り口

設立日: 1840年1月1日

創設時管理官: ウィリアム・オズ

所在地: イングランド、エセックス州、フォウルネス島

カバーストーリー: MoD(国防省)兵器試験場

サイト機能: 収容、調査、機動部隊の配備・訓練

規模(人工施設): 面積 10.9km2

目的: ブリテン諸島内およびその周辺での財団の運用のための主要拠点。超常現象の確保収容に関する王立財団(HMFSCP)により当初設置された施設上に建設。地上で兵器試験や訓練を時折実施する国防省の協力を得て運用。未確認動物学部門本部。


我らの伝承を暴く

サイト-44が本部を擁する財団未確認動物学部門は、異常・思弁動物学的研究の先駆けとなっています。本部門は本サイトの多機能地下調査区画を主に利用していましたが、現在は主要施設の上に基地を設置しています。

ネス湖の怪物にせよ、ナックラヴィーにせよ、ブラックシャックにせよ、グレートブリテンはその規模にしては民間伝承に由来する異常動物相が異様に集中しています。英国で遭遇した幻想的な野獣の物語は数百にも上り、アメリカ大陸に匹敵します。財団以前の過去の時代には、イングランドの田園地方、スコットランドの高原、アイルランドの原野、ウェールズの森林にある小さな町のことごとくに、疲れた旅人にその物語を伝える独特な生物が存在したようです。ここにおいて、未確認動物学部門の主要な目標の1つは、未確認動物の有効性の評価です。全ての物語を本物の異常野生生物に起源を持つものと見なすことは非常に容易ですが、これは単なる非現実的な視座に過ぎず、我々が回避すべく努めるものです。この強みは ⸺ 数ある中でも ⸺ 本部門がアマチュアの未確認動物ハンターから一線を画す点です。

CryptozoologyDivisionDark.png

未確認動物学部門記章

未確認生態学・未確認考古学・未確認古生物学および一般的な生物学的研究をカバーする未確認動物学部門は、異常野生生物や異常生態圏全体の理解に極めて重要です。他の財団職員は未確認動物を「不自然な」ものと見るかもしれませんが、本部門はそれらが「自然な」世界に対する我々の理解にどのように適合するか認識することを目標としています ⸺ 我々は彼らを非異常の動物と平等に、複雑な生物学的生命として取り扱います。財団にとって彼らの活動は、進行中の未確認動物関連事件の理解だけでなく、新たに発見された異常存在と彼らの地域共同体との間の民俗学的関連の調査にも必要不可欠です。

1926年に最初の専用Cryptid R&C居住ユニットが増設されて以来、本部門はサイト-44において存在感を増し ⸺ 最終的に1991年に専用基地を獲得しました。フォウルネスの地で未確認動物学部門は現代の未確認動物採集における様々な革新 ⸺ すなわちボドミン=ファウナ・カウンター1やアッテンボロー・クリプティッド=ロッド ⸺ を巻き起こし、またStan’s Cryptid Procurementのような複数の財団フロント企業を設立し、さらに民間伝承生物の目録化と研究を後押ししました。サイト-44の研究専門分野は未確認動物学部門以外にも存在しますが、サイト-44職員の約45%は未確認動物学部門に所属しており、本サイトの調査チームの主要部を構成しています。


サイトマップ

44Layout.jpg
(第1地下階層、クリックで拡大)

● 地下施設
● 地上施設
● 地上住宅
● アクセスポイント


職員情報

サイト管理官: カーター・C.・カーター2

管理官補佐: ジェームズ・カーター

人事・警備管理官補佐: W・ハンチェンタック

調査管理官補佐: ジェームズ・カーター

収容管理官補佐: フローレンス・ウィング

記録保管部長: F・オズ

現場職員:

  • 部局長: 11
  • 博士職員: 75
  • 研究職員: 345
  • 管理職員: 41
  • 保守: 144
  • 警備: 300
  • Dクラス: 56
  • その他: 29

施設・棟

セクター1(地下): 居住区画および管理事務所
職員住宅 - 全ての職員は小型居住区画が与えられます。居住区画内には壁に設置されたベッドのほかに、小型の机、椅子、棚、おまけとして「I 💚 Site-44」ポスター(要望に応じて交換可)があります。
オフィスビル - 事務所には1台のコンピューター、椅子、机、および小型の観葉植物があります。午後12時までフレッシュコーヒーが提供されます。

セクター2(地下): Safeクラス収容

セクター3(地下): Euclidクラス収容

セクター4(地下): Keterクラス収容

セクター5: 秘密の地上施設で構成されます。多くの場合多機能であり、機動部隊本部、製造、温室、臨時収容として利用される場合が多いです。

ユニット1(水中): サイト-44の最北に位置します。ボートでのアクセスが可能であり、ばら積み貨物の貯蔵庫として主に利用されます。

ユニット2(地下): サイト-44の最西端に位置します。本土の連絡橋と直結します。ユーティリティトンネルを除く他の全ての設備から隔離されており、孤立した収容区域を要する異常存在の保管に用いられます。通常は植物相を基本とする異常存在が保管されているため、ユニット2での2ヶ月間の業務は勤勉な職員の間で褒章と考えられています。

その他:
地上住宅 - 1831年に政府がフォウルネス島を押収した際、チャーチエンドとコーツエンドという小規模な町が存在しました。これらの2つの町は1900年に買収されて以降、研究員や財団関係者が在住するようになりました。希望する場合、高ランク職員は地上住宅での居住が許可される場合があります。

FoulnessLookout.jpg

本土への連絡橋の近傍に位置する監視所

ユーティリティトンネル - 物資や人員の効率的移動に用いられる広い通路。歩道脇に小規模のトラムシステム3が走り、遠方のユニットへの迅速な移動が可能です。

アクセスエレベーター - 主要複合施設の西端には、地上とサイトの全階層とを接続する大型の円形アクセスリフトが存在します。格納庫へ直結しており、高速ヘリコプターの着陸や積み荷の受け取りに利用されます。1940年代に原子力兵器製造複合施設の中心に建設されました(詳細は沿革を参照)。

低層階 - サイト-44の深層階には、かうてのHMFSCPによる建造時から残存する隠蔽・封鎖された部屋や通路が存在する可能性があります。異様な気流や、壁を叩いた際の異音、正体不明の明らかなヒトの口笛に気付いた場合、 直ちにレベル4職員に通知してください。

未確認動物学基地 - 未確認動物学部門により管理されている、部分的に地下に位置する複合施設。英国の異常生物密度が異様に高いことから建設されました4。民間伝承に登場する小規模~中規模の異常実体の保管・調査に用いられます。

カフェテリア - 一般的な食堂。職員への通知 - 絶え間なく要望が寄せられたため、間もなく金曜日のピザ提供を再開します。私へメッセージを送らないでください。 - カーター管理官


機動部隊

機動部隊 ガンマ-4 (“緑の牡鹿”)

small.jpg

機動部隊任務: 機動部隊ガンマ-4は森林あるいは他の自然環境での異常存在の調査・収容を専門とします。自然環境、回収、標的の追跡に長けています。

収容支援対象オブジェクト:

サイト防衛部隊

機動部隊任務: 全世界の財団運営サイトで利用されるデフォルトの基地機動部隊です。別名イエローバイザー。


収容された異常存在一覧要約

異常存在ID オブジェクトクラス
SCP-5767 Neutralised
SCP-6330 Uncontained
SCP-6448 Keter
SCP-6516 Safe
SCP-6877 Euclid
SCP-6884 Euclid
SCP-7088 Euclid
SCP-7557 Safe

サイト概要・沿革

44Location.jpg

サイト-44の地理的位置

サイト-44はブリテン諸島内およびその周辺での財団の運用のための主要拠点として機能します。

新たに発見される異常存在が増加していたことから、1700年代後半にイギリス政府は異質な生物・人工物・現象の保管・研究の必要性が生じたことを認識しました。この理解は超常現象の確保収容に関する王立財団の創設に繋がりました。その結成時点において小規模であった当該団体は英国で最も頭脳明晰な人材のみで構成されており、彼らは現代科学に反する事物の調査を任務としました。しかし活動が拡大するにつれ、団体が業務を遂行するための専用施設が必要であると判断されました。1831年に全部で3ヶ所の基地に権限が与えられました。当時のサイト-44はサイト-グリーンであり、この他にサマセット州チェダーに位置するサイト-レッド(現在の財団保管庫サイト-46)、ヨークシャー州█████に位置するサイト-ブルーが存在しました。サイト-ブルーは財団による占領を受けず、限定的な運用しか行われず放棄されたと見られます5。これらの全ては1830年代当時で可能な限りの最高水準の建築と素材が用いられており、1840年1月1日に竣工・開業しました。

これら3施設はイギリス政府により広範に利用され、HMFSCPは数十年間の運用を経て持続的に発展しました。しかし諸外国が気付いたように、最も秀でた科学的頭脳を以てしても理解のおよばない事物、すなわち、我々の現実の基本法則を逸脱する事物は無視できないまでに著明になりました。人類の最善の努力を尽くして異常存在を捕獲・収容するため、資金と資源の投資先を1個の統一された団体に指定す国際協定が締結されました。189█年に██団体におよぶ異常調査機関が統合されてSCP財団およびその系列機関が発足しました。創設メンバーの1つであったHMFSCPは新たな機関へ莫大な投資を行うことになり、充実したサイトを現在の国際的団体が即座に利用することが可能となりました。この時点でHMFSCPは正式に解散し、財団へ完全に統合されました。ロンドンへの近接性を鑑みてサイト-グリーンが英国の異常調査の筆頭に選出され、他のサイトは諸島の各所に建設が予定されました。財団はサイト-グリーンおよびレッドを導入し、██████████████のおそれからサイト-ブルーを残しました6。占領は試みられず、当該所有地は立ち入り禁止となっています。

1890年代前半に当時移行中であったサイト-グリーン7の代表はサイト-12の主要施設の建設を監督しました。サイト-12は将来的に英国における財団の第2管理拠点として機能する可能性がありました。加えて、サイト-44の崩壊や突発的廃止が発生した場合、サイト-12がバックアップの役割として引き継ぎが可能となりました。

サイト-44は1901年に正式に設立され、新たに入手された地位と国際的支援により急速な発展を遂げました。財団は旧式の構造物を更新し、ユーティリティトンネルを隔離されたユニットに接続、ユニット1を増設、主要複合施設を大幅に拡張しました。サイト-44は北欧での収容活動において極めて重要な部分を占めました。

第二次世界大戦開戦に際し、フォウルネスはイギリス政府からイギリス陸軍の一般軍事演習地帯として利用されるよう要請されました。これは複数の収容上の課題を誘発するだけでなく、SCP財団法的合意書(1900年)の第12頁第6章第5行および第6行に違反します8。この要請は却下されましたが、国際的な核戦争の脅威が高まりつつある中でイギリス政府はSCP法的合意書の法の抜け穴 ⸺ 現在は修正済み ⸺ を利用し、フォウルネス島での核兵器製造を認可されました。島では大規模の円形トンネルが下向きに掘削され、大規模な核兵器格納庫と製造施設としての利用が見込まれていました。核戦争は実現しませんでしたが、島の当該施設は1956年夏に原子力兵器の製造を停止しました。この空間は速やかに財団に受け渡され、主に航空機・車両・貨物用の地下昇降機へ改造されました。それらの統合は、サイト-44の継続的な成長・管理に極めて重要であることが証明されています。

サイトは1970年代までさらなる改修を遂げ、この時点で旧施設部分の全てが置換されたと判断されています9。21世紀に入っても最新の状態を維持するようサイト-グリーンの部分は非常に頑強に建造されており、依然として施設の多くの領域に残存しています。これらの領域の完全なリストを希望する場合、アーキビストであるF・オズに連絡してください10。正面玄関のデスクのすぐ裏にはサイト-グリーンへの元の通路が存在します。通路に舗装された暗灰色のレンガは、現在「サイト-44」と記されている新しい白塗りのコンクリートと対照的です。

未確認動物学部門は英国における異常生物の異様な密集を1991年に認識し、運用を円滑化すべくサイトの増築を開始し、その後間もなくSCP-6448の調査を担当しました。この増築以降、サイト-44は異常動物学・異常生態学的研究の進展で有名になりました。

2013年の大規模収容違反では、C・カーター元研究員がサイト内に閉じ込められた職員のために傑出した決断力・思考力・戦術支援を示しました。通信が途絶した3日間カーターは生存者の大集団を安全な場所に導く責任を負い、最終的に外部との通信を確立して救援を要請し、増援部隊が到着可能になるまで警戒を怠りませんでした。元サイト管理官が収容違反中に凶暴な異常存在によって終了されたこともあり、カーター・C・カーターはその勇敢さ・人員への献身・戦術意識により、先の事案の後にサイト管理官に昇進し、わずか26歳で現職に就任した史上最年少の1人になりました。彼は高い管理能力を持ち、財団への長年の奉仕を通じて数多の収容事案を防いできました。

現在において、サイト-44は北欧における財団の根拠地であり、未確認動物に根差した調査の支柱として存在しています。本サイトは発足から約2世紀、財団への貢献を重ねて100年以上が経過してなお、本来の目的を遂行しています。

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