: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 > * {
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 (prefers-reduced-motion) {
div.anom-bar-container { --timeScale: 0; }
}
/*-------------------------*/
@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; max-width: 1%;}
to { opacity: 1; max-width: 100%;}
}
@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)); }
}
Containment Class:
euclid
Special Containment Procedures: SCP-5616 is to be contained in a 15 x 7.5 x 3 meter cell, with the following additions:
- One kitchen cupboard
- One standard oven (Can be any brand, 5616 has no preference.)(Oven is to remain unplugged, can
- only be plugged in during testing due to a potential fire hazard.)
- One bench One non magnetic bench (5616 cannot have a metal bench, see Incident 5616-1.)
- 35 slices of bread, any kind
If any of the above malfunction or run out, these are to be resupplied/restocked within 12-18 hours to prevent SCP-5616-1 from manifesting. Any manifestation of SCP-5616-1 is to be reported to security immediately. If 5616 shows any sign of severe distress, it is to be asked the reason for it. The reason given should be fulfilled to prevent 5616-1 from appearing.
In the event of 5616-1 manifesting, security personnel are to guard the chamber doors, and keep them locked until the requested item is at the chamber.
If 5616 leaves the chamber, the zone it is in is to be locked down, and it is to be locked in whatever room it exited into. This is to be continued until the requested item is deposited into the room. If this escalates into the door system failing, the on-site warhead is to be detonated as a last attempt to destroy 5616-1.
Description: SCP-5616 is a biped humanoid resembling a human, but with a toaster replacing his head. The toaster has no markings, being completely smooth and having no manufacturer’s logo, and is made of an unidentified material. Toaster is colored a light blue, but seems to change gradually to a dark blue depending on the specimen’s mood. The organism seems to be able to speak, despite having no visible speaker or mouth. 5616 claims to be named “Toasty”, and also claims to be named by a ‘Broken Shard Security’, and has said that it’s preferred pronouns are he/him. When asked to elaborate on this ‘Security’, it says that it will not divulge information to unknown organizations. No apparent gender is seen, as the body of 5616 is made of the same material as the ‘toaster head’. The body is colored the same as the head, and will change colors with it. The ‘toaster head’ has two eyes drawn on its ‘front’ in permanent marker, and the eyes move like normal eyes.
5616 does not require sleep, but does like to sit down once in a while.
SCP-5616-1 is another anomaly which will appear when 5616 is uncomfortable and/or in distress, and has been for a period of time ranging from 12 to 18 hours. This being is a ball of white smoke, and is extremely violent. 5616-1 will ‘protect’ 5616 by attacking anything that moves in its range (recorded to be up to 5 meters). Attacks have ranged from surrounding a victim’s head and suffocating, completely engulfing the victim’s weapon and disintegrating it (First recorded engulfed weapon was a FN P90), and to even making humans vanish completely. Conventional firearms do not seem to affect the entity, nor do melee weapons such as short knives. 5616-1's attacks are extremely fast, ranging from .5 to 1 second(s). If 5161 sees an object that will lift it's distress, 5161-1 will disappear.
5616 has shown a large amount of knowledge on anomalies contained by the SCP Foundation, as well as multiple that are not. This knowledge poses a substantial threat to the Foundation, which is one of the main reasons of it's containment, the other being 5616-1.
SCP-5616 does not seem to dislike its containment. When asked, it said it was nicer than the area it used to live in, but also said it would prefer it’s old containment chamber that the ‘Broken Shard Security’ had given it.
5616 seems to enjoy putting bread inside of it’s head slots, and toasting it. It also enjoys giving the toast to people, and anyone eating it has reported that it was perfectly toasted. Testing on the bread shows nothing unusual in its composition.
SCP-5616 was found in an abandoned apartment flat in Kolkata, West Bengal, India. Personnel were sent after rumors of a ‘metal man with a box on his head’ were circulated around the city, including rumors of 5616-1 and odd deaths. Upon discovery, 5616 was extremely cooperative, and tried its best to explain the 5616-1 anomaly and warn the operatives about it. It's story was not believed until the first manifestation of 5616-1.
SCP-5616-2 is a document made out of a material similar to paper, but extremely sturdy and flexible. It was found attached to 5616 with some sort of adhesive upon discovery. The following text is written on the document, and the document seems to be updated by unknown means.
BROKEN SHARD SECURITY
CTA-441
“Toaster Head”
HARMFUL
CTA-441 is a sentient anomaly, resembling a human with a toaster head.
441 is constructed of coralmetal, with color shifters. Our scanners indicate that it does have a functioning organic brain, but of unknown material. Two eyes are drawn on in permarker, and function like normal eyes. 441 is able to speak, but no audio output devices have been shown in scans or visually. CTA-441-B is a hazardous anomaly, and has a range of 3-5 meters. 441-B will only manifest if 441 is in prolonged discomfort for up to 18 hours. If the reason for discomfort is lifted, 441-B will disappear. For this reason, 441 is classified as HARMFUL. I could write in some boring descriptions, but you can infer what it is by taking a look at the holo-image which is in the security database.
441 is to be kept in a 15 x 15 x 3 meter cell, with the following additions:
One kitchen cupboard
One standard cooker (Can be any brand, 441 has no preference.)
One cushioned floaterchair
35 slices of bread, any kind
In the unlikely event that 441-B does appear, explain to 441 why we cannot provide what it asked for. This usually works, if it does not, lock down the room and begin negotiation. If this escalates even further, have the laser grid burn the toaster. It should be sufficient to knock out the anomaly, but not kill it.
441 is currently residing at Shorea Lab See Note_3.
Note_1 - Seriously, stop giving coral to the toaster, he doesn’t like it. - Commander
Note_2 - After what happened with 155, access to 441 is restricted to C-2+. - Dr. Crawfer
Note_3 - 441 is currently on the planet which is in the other galaxy opened by the Warp Disruptor. We’ve only managed to send one trooper, and the information returned says 441 is currently in containment by a ‘SCP Foundation’. They seem to function much like our own Security, but they only seem to contain anomalies, not govern other planets (Or in this area’s case, landmasses.) Containment is in the position ████████████. Once the disruptor’s portal is large enough, we’ll send an attack frigate through.- Commander
Note_4 - Hey hold on, doesn’t this document update all other copies? - Dr. Crawfer
Note_5 - Eh, what’re they gonna do. It’s just a retrieval mission, drop in and get out. - Commander
5616 is currently contained at Containment Site 177.
Incident 5616-1: On 21-05-2017, 5616 began pacing its cell and glancing at the metal bench that had been given to him. Surveillance records show that they did not toast a single slice of bread that day. At 0521, the first manifestation of 5616-1 was observed. It appeared directly after a request for a wooden bench. 12 security personnel were lost before a wooden bench was pushed into the room, and 3 additional personnel were 'vanished' by 5616-1. Upon 5616 turning the ‘eyes’ of it’s head towards the bench, 5616-1 disappeared. During this incident, 5616-1 did not chase personnel when they left the room, leading us to believe it is a defensive measure, not an offensive measure. After the event, Researcher Chaudhuri questioned 5616 about the discomfort. 5616 said that it was continuously getting stuck to the bench, like a magnet, which means that 5616 is built out of some sort of magnetic material. It offered apologies for the manifestation of 5616-1, and said it could not control it. Containment Procedures have since been revised.
NOTES:
We should consider moving 5616’s class to Keter, considering 5616 may ask for something we cannot provide. And, is anyone even remotely worried about what the document says? How does this 'Broken Shard Security' know so much? - Researcher Chaudhuri