Unfinished Article Draft (Last Edited: 05/21/██)
Unfinished Article Draft (Last Edited: 05/21/██)
By: KaiProtogenKaiProtogen
PUBLISHED: 18 May 2021 21:46
/* source: http://ah-sandbox.wikidot.com/component:collapsible-sidebar-x1 */
 
#top-bar .open-menu a {
        position: fixed;
        top: 0.5em;
        left: 0.5em;
        z-index: 5;
        font-family: 'Nanum Gothic', san-serif;
        font-size: 30px;
        font-weight: 700;
        width: 30px;
        height: 30px;
        line-height: 0.9em;
        text-align: center;
        border: 0.2em solid #888;
        background-color: #fff;
        border-radius: 3em;
        color: #888;
}
 
@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!important;
        position: fixed;
        top: 0;
        left: -19em;
        width: 17em;
        height: 100%;
        margin: 0;
        overflow-y: auto;
        z-index: 10;
        padding: 0.3em 0.675em;
        background-color: rgba(0,0,0,0.1);
        transition: left 0.5s ease-in-out;
    }
 
    #side-bar:target {
        display: block;
        left: 0;
        width: 17em;
        margin: 0;
        z-index: 10;
    }
 
    #side-bar:target .close-menu {
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: -1;
    }
 
    #top-bar .open-menu a:hover {
        text-decoration: none;
    }
 
    .close-menu {
        margin-left: 19em;
        opacity: 0;
    }
}
: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)); }
}
:root {
    --posX: calc(50% - 358px - 12rem);
}
 
/*--- Footnote Auto-counter --*/
#page-content {
    counter-reset: megacount;
}
 
/*--- Footnote Superscript Number --*/
.fnnum {
    display: inline-block;
    text-indent: calc(-1% - 0.1em);
    overflow: hidden;
    line-height: 83%;
    text-decoration: none;
    font-weight: bold;
    font-style: initial;
    color: transparent;
    position: relative; top: -0.25em; font-size: 82%;
    padding: .15em calc(.21em - 0.4px) .12em calc(.11em - 1px);
    margin-left: -0.06em;
    margin-right: -0.25em;
    counter-increment: megacount;
    user-select: none;
}
.fnnum::after {
    content: "" counter(megacount);
    color: var(--fnColor, #E6283C);
}
.fnnum:hover {
    text-decoration: none;
    cursor: pointer;
    background-color: var(--fnColor, #E6283C);
}
.fnnum:hover::after { color: white; }
 
/*--- Footnote Content Wrapper --*/
.fncon {
    position: absolute;
    right: calc(var(--posX) + 80px);
    line-height: 1.2;
    padding: 0.82rem;
    width: 10.3rem;
    background: white;
    border: 2px solid black;
    font-weight: initial;
    font-style: initial;
    text-align: initial;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s linear, right 0.3s cubic-bezier(.08,.72,.5,.94);
    z-index: 9;
}
.fnnum:hover + .fncon {
    opacity: 1;
    right: var(--posX);
}
.fncon::before {
    position: absolute;
    top: 0; left: 0;
    transform: translateX(-52%) translateY(-55%) scale(1.15);
    background-color: var(--fnColor, #E6283C);
    color: white;
    content: counter(megacount);
    font-size: initial;
    font-weight: bold;
    font-style: initial;
    padding-left: 0.32em; padding-right: 0.32em;
    padding-top: 0.18rem; padding-bottom: 0.08rem;
}
 
/*--- Mobile Query --*/
@media only screen and (max-width: 1279px) {
    .fncon {
        position: fixed;
        bottom: 1.3rem;
        left: calc(11% - 50px);
        width: 70%;
        transition: opacity 0.15s linear, left 0.3s cubic-bezier(.08,.72,.5,.94);
    }
    .fnnum:hover + .fncon {
        left: 11%;
     }
}
Item#: THE AN0MALY
Level4
Containment Class:
keter
Secondary Class:
none
Disruption Class:
ekhi
Risk Class:
notice

Special Containment Procedures: As THE AN0MALY spreads through information written directly about itself, all information about THE AN0MALY is to be written about it without mentioning the number or a word referencing it. Any information about THE AN0MALY is not allowed to leave the Foundation.

Description: THE AN0MALY is an entity that erases documents written about itself from reality entirely, which causes a loop of writing the document, the document getting erased from reality, and then over and over again forever. Speaking about THE AN0MALY doesn't seem to have an effect on anyone, but any form of non-verbal communication about it will be erased.

Discovery: THE AN0MALY was never discovered, it has always just existed. When it was probably first discovered, the researchers who were writing about THE AN0MALY might not have known enough about what it could do, causing the origin of THE AN0MALY to not exist at all, making it so that THE AN0MALY has always existed, possibly since the beginning of time.

Addendum: Test Logs

Tested Forms of Communication

  • Verbally (05/16/██) - D-1158 and D-1159 talked about THE AN0MALY. Both of them remembered having the conversation when interrogated half an hour later.
  • Written (05/16/██) - After D-1158 finished writing about THE AN0MALY, the paper looked brand new, with no signs of ever being used. D-1158 stated that he felt like he had written what he was told to, but saw nothing on the paper.
  • Typed (05/16/██) - After D-1158 typed about THE AN0MALY on a Google Doc, the revisions showed that the page had just been created. D-1158 stated that he remembered being typing about THE AN0MALY, but didn't understand why it looked like he hadn't typed anything.
  • Signed (05/17/██) - D-1368, who was taught sign language shortly before the test, was instructed to say THE AN0MALY's numbers in sign language. Afterwards, it was discovered that THE AN0MALY's numbers did not exist in sign language after the test.

The following documents are logs of interviews with the Class D's after each test.

THE ANOMALY Verbal Test Interview Log (D-1158, 05/16/██)

<Begin Log>

Dr. Salazar: What did you learn from D-1159?

D-1158: All he told me was that THE AN0MALY is safe to talk about verbally. That's it.

Dr. Salazar: Okay, good. We're going to have you do a couple more tests before we move on, if that's alright.

D-1158: Uh, sure, I guess.

<End Log>

THE AN0MALY Written Test Interview Log (D-1158, 05/16/██)

<Begin Log>

Dr. Salazar: So, D-1158, how did you feel about the test?

D-1158: If I'm being honest, it…confused me. I did what you said: I wrote down the info you wanted me to, and then I look back to just see a blank piece of paper. Is that part of the test, or is everyone just messing with me?

Dr. Salazar: It was part of the test. You do remember what THE AN0MALY is, don't you?

D-1158: Yeah…am I not supposed to?

Dr. Salazar: No, we're just making sure. You never know with some SCPs. Changing rules whenever they want.

<End Log>

THE AN0MALY Typed Test Interview Log (D-1158, 05/16/██)

<Begin Log>

D-1158: Really? Two tests where you tell me to document THE AN0MALY, and after I finish, it looks like I've done nothing. This has got to be a joke.

Dr. Salazar: No, this is not a joke. I assure you, THE AN0MALY is real. But I think we've figured out how it works.

D-1158: Then tell me. I'd really like to know why you tell me to write, and now type, about THE AN0MALY and then it looks like I haven't done anything. Like I time travelled.

Dr. Salazar: THE AN0MALY seems to spread through non-verbal information. When talked about, everyone remembers it just fine. But when written on paper, or typed on a document, THE AN0MALY deletes the info. Like it knows we're talking about it and doesn't like us talking about it.

D-1158: I…don't even know what to say.

<End Log>

THE AN0MALY Signed Test Interview Log (D-1368, 05/17/██)

<Begin Log>

Dr. Salazar: Hello, D-1368. So, what did you think of the test?

D-1368: I think I did the test, right? I remember doing sign language, but I'm pretty sure you told me to sign numbers that weren't part of the language. So maybe I didn't do it.

Dr. Salazar: Yes, we did instruct you to sign THE AN0MALY's numbers. But, now that I'm thinking about it, those numbers are not included in the American Sign Language, are they?

<End Log>

Closing Statement: ASL does not have any way to sign the numbers one, five, or seven.

THE AN0MALY Incident Report 05/18/██ (D-????) and Interview Log (D-1158)

INCIDENT REPORT

INCIDENT #: AN0MALY-001
DATE OF OCCURRENCE: 05/18/██

A Class-D was sent in to test using a paradox on THE AN0MALY while being monitored by personnel. According to the witnesses, after writing about it on their arm, THE AN0MALY dragged the D-Class into the floor, and they disappeared from reality.


<Begin Log>

Researcher Addison: You remember hearing someone talk about THE AN0MALY, correct?

D-1158: Yeah, I do.

Researcher Addison: Do you remember who gave you the information about it?

D-1158: No…I don't. Why can't I remember?

Researcher Addison: We think THE AN0MALY caused whoever told you the info to no longer exist.

D-1158: So, they're gone…whoever they were…

Researcher Addison: That seems to be the case.

<End Log>

Further testing with THE AN0MALY's properties is no longer allowed so that nothing else significant is removed from existence.

REPORT OF UNAUTHORIZED TESTING OF THE AN0MALY ON 05/19/██ AT 02:██ AM. ACCESSING LOGS…

<Begin Log>

Researcher Addison: Write what I told you to.

D-1368: No. I'm not going to.

Researcher Addison: Fine. If you're not going to, then I will.

Researcher Addison quickly starts scribbling something down on a piece of paper.

D-1368: Stop!

D-1368 unsuccessfully tries to stop Researcher Addison from finishing what he's writing. Soon after, the camera stops working.

<End Log>

Closing Statement:Site-48 has never existed. No Foundation personnel have a clear reason for why.