@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }
Credits
Authors:
Special Containment Procedures:
SCP-001-INT - Original/Thaumiel Documentation:
[REDACTED BY ORDER OF THE ADMINISTRATOR]1 |
[Awaiting Declassification]2 |
SCP-001-INT - Revised/Keter Documentation:
An exclusionary site must be built in a remote area with minimal human population to safely contain and defend SCP-001-INT3. At all times, no sapient, sentient or autonomous anomalies (including anomalous personnel) are allowed on the site or past the defensive perimeter. All trespassers will be terminated on sight.
Note: The use of the number 5 in the construction of SCP-001-INT's containment site and containment procedures is highly recommended.4
SCP-001-INT is to be kept in a 5 by 5 by 5 meter reinforced containment chamber 50 meters below the geometric center of the site, connected only, via an elevator shaft rigged with C4 military grade explosives.
The containment chamber's walls must consist of 50 centimeters of reinforced concrete and a stainless steel outer shell with a universal thickness of 5 centimeters.
A defensive perimeter must be built 500 meters away from the geometric center of the site.
50 units of combined Automatic Defense Systems, Lang-Scranton Stabilizers Scranton Boxes5 Scranton Reality Anchors, Mobile Task Forces & Technical Support Teams must be stationed evenly on the defensive perimeter.
If any entities attempt to come closer than 500 meters to the defensive perimeter, they will be engaged with non-lethal force and incapacitated, Then amnesticated and released in the nearby settlement. If the approaching entities show any anomalous properties, a low-level containment breach will be declared and a containment team will immediately subdue and transfer the entities to the nearest foundation site for proper containment.
Any aggressive entities that reach up to 50 meters to the defensive perimeter must be engaged with lethal force and terminated by any means necessary.
If at any point the defensive perimeter is breached by an attacking force, a medium-level containment breach will be declared and all security personnel anywhere in the site must engage the intruders.
Also, all non-security personnel must evacuate the site immediately.
In the case of the attacking force reaching SCP-001-INT's elevator shaft, a high-level containment breach is declared which results in the detonation of all explosives within the shaft and the on-site warhead.
Post detonation of the on-site warhead, all available Mobile Task Forces from nearby sites will be sent to re-contain SCP-001-INT.
Note: SCP-001-INT must be under constant surveillance for any of the following activities, these activities are signs of undiscovered intrusion and all appropriate declarations must apply, even if no sign of physical intrusion is seen:
SCP-001-INT's waterfall activates = Declaration of a low-level containment breach.
The liquid from SCP-001-INT's Waterfall turns into a Violet color = Declaration of a medium-level containment breach.
SCP-001-INT's mirror becomes transparent, resulting in a Doorway-Scenario = Declaration of a high-level containment breach.
Note: To block O5 access to this document, but also give access to necessary personnel other that the Ethics Committee, an special clearance was made for this document called level 5/C. This clearance was given to the head researchers of SCP-001-INT's containment and captains of the on-site security/technical teams.
Description:
SCP-001-INT is a 1.5 by 2.5 by 0.5 meter mirror fountain with a stone frame weighing approximately 500 kilograms. The mirror is a solid plate of smoothly polished bronze6 and the frame is a solid piece of carved Black Serpentine.
The frame consist of a semi-circle extrusion at the bottom, resembling a very small pond that forms the base of the mirror. A rounded roof and two cylindrical pillars at each side. Carvings on the frame represent ancient Elamite designs. The pond is filled with regular non-anomalous H²O but the pond refills the lost water with the same rate as it loses water.
Radioisotope analysis indicates that the object is approximately 5000 years old and its materials belong to the early bronze age. Although the carvings on stone frame appear to be made at later date by unknown tools. The mirror & the stone frame are impervious to all forms of physical damage and possibly have been made with anomalous tools.
The object appears to exhibit various properties relative to the presence of sentient anomalies. At first SCP-001-INT's bronze plate has been observed to exhibit a waterfall-like motion. Another property of the object is that the water in the semi-circle extrusion at the base of the object turns into a purple-violet color in periods of 2min-52min, the same cannot be removed from the object.
The primary property of SCP-001-INT is that the object's bronze plate becomes transparent, thereby leading to other universes which research has shown to have no anomalies of any kind, at the same time sentient anomalies within a 500 km radius attempt to reach the object, whereby they have a very intelligent approach.
Recovery note:
Object was found & reported by an embedded foundation agent during an anomalous attack on an MC&D's auction house which resulted in ██ casualties, located at ██████ ST, Whitechapel, London on ██/██/19██7. The object was secured with no foundation losses, due to the only surviver being the mentioned agent.
Note: Agent ████8 reported that her MC&D supervisors claimed that the object, was part of Lord Theodore Thomas Blackwood's anomalous collection.9Blackwood.
Interview 001-INT-01:
[Awaiting Declassification]10 |
Interview 001-INT-02:
[Awaiting Declassification]11 |
Interview 001-INT-03:
[Awaiting Declassification]12 |
Exploration 001-INT-01:
[Awaiting Declassification]13 |
Addendum 001-INT-01:
After SCP-507's interview14 regarding his encounter with SCP-001-INT was anonymously sent to me, I requested an off-the-record exploration through the anomaly from my contacts at the Pataphysics Department15. Long story short, an operative of Project Gestalt16 reported that the O5-Council is using SCP-001-INT to decommission high-risk, disruptive, cost consuming & hard to contain anomalies, even though they knew from 507's interview that they were dooming entire universes per every anomaly that goes through the object. After gathering more evidence, I requested a committee meeting and reported my findings to the Administrator. After the meeting17, by order of the Administrator, SCP-001-INT's containment procedures were revised & the original documentation was redacted for non-committee personnel. Also, members of the O5-Council were amnesticated & banned from access/knowledge of SCP-001-INT's documentation & current location.
-Dr. Jeremiah Cimmerian, Ethics Committee Liaison, English Branch.
Addendum 001-INT-02:
To insure that SCP-001-INT's exclusionary site can be built/rebuilt efficiently, multiple international branches of the SCP Foundation18 started a cooperation to contain & protect the object, providing research & security personnel to work together on the construction of SCP-001-INT's containment site.
- Dr. Nieliux-δ-6, Head of SCP-001-INT Containment, German Branch.
Addendum 001-INT-03:
It appears that the rate of intrusions into the defensive perimeter by members of the Fifth Church is significantly higher than other groups of interest. Enhanced interrogation of a captured church member has revealed that they believe SCP-001-INT is an actual doorway into the Fifth World/Dimension. Therefore they persistently attack SCP-001-INT's containment site. Project Gestalt operatives tested different containment scenarios by using the captured church member, in order to find a way to stop Fifthist intrusions. Testing results were that containment procedures oriented around number 5 are capable of nullifying SCP-001-INT's compulsion effect on the Fifthists.
Update: SCP-001-INT's containment procedures have been updated accordingly19 and currently Fifthist intrusions are extremely rare. My hypothesis is that by adjusting SCP-001-INT's containment procedures to sacred Fifthist standards, it has the effect of conflicting with the original mental compulsion of the object, rendering it ineffective.
- Dr. Nieliux-δ-6, Head of SCP-001-INT Containment, German Branch.
Addendum 001-INT-04:
Some anomalous entities are capable of approaching SCP-001-INT without being detected by security units, due to LSS20 units only limiting their intrusions. Therefore, these units were replaced with more efficient Scranton Boxes and later on, with the latest versions of SRA21 units.
- Dr. Nieliux-δ-6, Head of SCP-001-INT Containment, German Branch.
Addendum 001-INT-05:
As a construct of Project Gestalt, I've seen many narratives & universes, in which the foundation willingly destroys humanity just to preserve normalcy, or sacrifices universes just to buy more time for their own universe. But I'm proud that my foundation is trying to avoid this evil trend. I'm sorry that my exploration mission22 led to another universe experiencing the horror of living in an anomalous world. I tried as best as I could to warn them, to ready them for what's coming, I don't think they will succumb, I lived through as much spirals as i could to make sure of that.
I'm content that with my help, our foundation prevented countless universes from becoming anomalous. now… they can keep on living in a normal world and not experience what we do. Our job is to Secure, Contain and Protect, In a sense… we fully protected those worlds from anomalies. I should be happy, but at the end, it's not easy to be happy while you're the source of an entire universe's misfortune.
- Agent Truth, Project Gestalt Operative, Pataphysics Department, English Branch.
« SCP-000-INT | SCP-001-INT | SCP-002-INT »
Cite this page as:
"Doorway to Non-Anomalous" by Agent Truth, Dr.Nieliux & Agent Daal, from the International Translation Archive of the SCP Foundation. Source: https://scp-int.wikidot.com/intcon2023-truth-s-proposal. Licensed under CC-BY-SA. |
For more information, see Licensing Guide (hosted on EN).
Licensing Disclosures