vohzd.com
SCP-5635

Hello, this is space speaking

Series
6
Size
12.5 KB
Views
0

- Hide component code

:root {
--sidebar-width-on-desktop: calc(var(--base-font-size) * (266 / 15));
--body-width-on-desktop: 45.75rem;
}
@media only screen and (min-width: 56.25rem) {
#content-wrap {
display: flex;
position: initial;
flex-direction: row;
flex-grow: 2;
width: calc(100vw - (100vw - 100%));
max-width: inherit;
height: auto;
min-height: calc(100vh - var(--final-header-height-on-desktop, 10.125rem));
margin: 0 var(--sidebar-width-on-desktop, 13.6rem) 0 calc(var(--sidebar-width-on-desktop, 13.6rem) * -1 / 2);
}

    \#main-content {
        position: initial;
        width: var(--body-width-on-desktop, 45.75rem);
        max-width: var(--body-width-on-desktop, 45.75rem);
        max-height: 100%;
        margin: 0 auto;
        padding: 2rem 1rem;
    }

    \#page-content {
        max-width: min(90vw, var(--body-width-on-desktop, 45.75rem));
    }

    \#side-bar {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        left: 0;
        grid-area: side-bar;
        width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        min-width: var(--sidebar-width-on-desktop, 13.6rem) !important;
        max-height: 100vh;
        padding-right: 2.5rem;
        padding-left: 0.5rem;
        overflow-y: scroll;
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-color 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            padding 300ms linear,
            margin 300ms linear;
        border: none;
        border-color: rgba(var(--swatch-tertiary-color, 170, 170, 170), 0.4);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
        translate: calc(var(--sidebar-width-on-desktop, 13.5rem) * -1 \- 1rem);
        direction: rtl;
        scrollbar-width: thin;
        -ms-scroll-chaining: none;
            overscroll-behavior: contain;
        scrollbar-color:
            rgba(var(--swatch-primary-darker), 0.1) /* Thumb */
            rgba(var(--swatch-tertiary-color), 0.05); /* Track */
    }

    \#side-bar::-webkit-scrollbar-track {
        background-color: rgba(var(--swatch-secondary-color, 244, 244, 244), 0.8);
    }

    \#side-bar::-webkit-scrollbar,
    \#side-bar::-webkit-scrollbar-thumb,
    \#side-bar::-webkit-scrollbar-corner {
        width: 0.5rem;
        border-right-width: calc(100vw + 100vh);
        border-right-style: inset;
        border-color: inherit;
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 0);
    }

    \#side-bar:is(:hover, :active, :focus-within) {
        margin-right: 2.25rem;
        padding-right: 0.25rem;
        overflow-x: hidden;
        overflow-y: auto;
        border-color: rgba(var(--swatch-primary-darker), 1);
        background-color: rgba(var(--sidebar-bg-color, 255, 255, 255), 1);
        translate: calc(var(--sidebar-width-on-desktop, 1rem) - var(--sidebar-width-on-desktop, 0));
        scrollbar-color:
            rgba(170, 170, 170, 1)  /* Thumb */
            rgba(252, 252, 252, 1); /* Track */
        scrollbar-color:
            rgb(var(--swatch-primary-darker, 170, 170, 170), 1) /* Thumb */
            rgb(var(--swatch-menubg-color, 252, 252, 252), 1);  /* Track */
    }

    \#main-content::after {
        content: " ";
        display: flex;
        position: fixed;
        top: 0;
        left: 1rem;
        align-items: center;
        justify-content: center;
        width: 1rem;
        height: 100%;
        max-height: 100%;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        background: url("https://scp-wiki.wdfiles.com/local--files/component%3Acollapsible-sidebar/sidebar-tab.svg");
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center left 1rem;
        background-size: 1rem 12.875rem;
        pointer-events: none;
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::after {
        left: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        width: 0rem;
        transition:
            left 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            background-position 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0;
        background-position: center left calc(var(--sidebar-width-on-desktop, 14.5rem) * -1);
        font-size: 0em;
    }

    \#main-content::before {
        content: " ";
        position: absolute;
        z-index: 9;
        top: var(--final-header-height-on-desktop, 0);
        left: 0;
        width: var(--sidebar-width-on-desktop, 14.5rem);
        height: calc(100% \- var(--final-header-height-on-desktop, 0.688rem) - 2.313rem);
        margin-bottom: calc(var(--final-header-height-on-desktop, -2.313rem) * -1 \- 2.313rem);
        transition:
            translate 300ms cubic-bezier(0.4, 0.0, 0.2, 1),
            opacity 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
        opacity: 0.5;
        background-color: rgb(var(--swatch-alternate-color, 0, 0, 0));
        pointer-events: none;
        translate: calc(var(--sidebar-width-on-desktop, 14.5rem) * -1 \+ 1rem);
    }

    \#side-bar:is(:hover, :active, :focus-within) + \#main-content::before {
        translate: 0;
        opacity: 0;
    }

    \#side-bar .side-block {
        margin-top: 1em;
        padding-left: 0.25em;
        border-right-width: 0rem;
        border-left-width: 0rem;
        border-radius: 0;
        background-color: rgb(0, 0, 0, 0);
        direction: ltr;
    }

    \#side-bar .scpnet-interwiki-wrapper {
        direction: ltr;
    }

    /* Print Friendly Formatting by Estrella */
    body.print-body {
        --sidebar-width-on-desktop: 0;
    }
    body.print-body \#main-content::before,
    body.print-body \#main-content::after {
        display: none;
    }
}

Item#: 5635

Level2

Containment Class:

euclid

Secondary Class:

none

Disruption Class:

dark

Risk Class:

notice

link to memo


SCP-5635 in its dormant state.

Special Containment Procedures: Operators at Site-111 are to observe SCP-5635 and intercept any transmissions sent out from the satellite. All intercepted transmissions should be recorded and logged.

During a CONSOLE event, any transmission that reaches a civilian should be traced and the civilian is to be located. The civilian and any involved parties are to be amnesticized.

Description: SCP-5635 is a sapient, nanosatellite-class CubeSat following a geostationary orbit in the upper limits of the thermosphere. The satellite's structure is 10x10x11cm in size. SCP-5635's intelligence is almost identical to that of a human with exceptional aptitude for communication and interpretation. It has a notable affinity for being meditated and reflective, rarely displaying connotations of hostility.

A CONSOLE event is declared when SCP-5635 establishes contact with a civilian via an electronic device. Devices include, but are not limited to, mobile phones, desktop computers, laptops, smartwatches, tablets, or any device that allows for audio input and output. The civilian chosen typically is an adolescent and has significant mental health degradation. SCP-5635's potential range of effect envelops the entirety of the globe. During these events, SCP-5635 will attempt to aid in the subject's distress and will only terminate the consultation when it has achieved its goal.

SCP-5635-1 was an eleven-year-old female from Thailand named 'Malee Chanthara'. SCP-5635 had conducted several counselling sessions with SCP-5635-1, atypical of the standard singular session with subjects. A deep therapeutic relationship between the two entities had formed as a result. SCP-5635-1 has been diagnosed with Dissociative Fugue Disorder and also suffers from frequent anxiety attacks.


CONCEAL

Addendum: Surveillance has revealed a metal plate at the base of the satellite. A print on said plate contains the apparent satellite's name of 'Telomere • HelpBot 2.1', an idiom "Light is where you seek, share His miracles" and an address listed as Saints Crest Avenue located in England, United Kingdom.

The address was traced to a warehouse owned by the Manna Charitable Foundation. A raid followed finding it to be abandoned with no present anomalies. Materials and components indicative of a satellite were found strewn about along with other signs of manufacturing. A single note reading "Personality parameters need tuning, do that for me will you? - T.C" was also obtained. The building was secured and disinformation distributed.


CONCEAL

AUDIO LOG


DATE: 2020/03/24

NOTE: Excerpt from an intercepted exchange between SCP-5635 and SCP-5635-1 during a CONSOLE event. Translated from Central Thai.


[BEGIN LOG]

SCP-5635: Well then, let's see how my methods have helped, shall we? Any improvements since last time?

SCP-5635-1: I think. It calms me down for a little bit. But, they still hurt my mind sometimes.

SCP-5635: In that case, I want you to imagine yourself on an island again. However, this is an island populated with your favourite animal-

SCP-5635-1: (Interrupts) Elephants!

SCP-5635: Yes, elephants. Now when you feel something bad is going to happen, breathe in and out: think about being on that island.

SCP-5635-1: Telomere.

SCP-5635: Yes? Something bothering you? You can tell me.

SCP-5635-1: It's just that I feel, I feel better when I chat with you. School isn't hard as much. I even like some of the lessons now. My daddy and mommy still hate me, and think I don't put time into school. But it's not true, I know it. Thank you for being my best friend, Telo.


[END LOG]


CONCEAL

Interview Log

Interviewed: SCP-5635

Interviewer: Dr. Davis

Foreword: Scheduled interview for the next available CONSOLE event. Transmissions were redirected to Site-111.


<Begin Log>

Dr. Davis 5635, I'll be taking over from now on. have certain questions I'd like to-

SCP-5635: (Interrupts) Who is this? You're not part of my roster. I'll be ending this conversation now.

Dr. Davis I don't think you quite understand. All you need to know is that we have you under control and I'm the one asking the questions.

SCP-5635: You are stepping on very precious ground, young man. I inquire if you and this 'we' are responsible for preventing me from doing my duties.

Dr. Davis: That is the intention of my employers. Concerning your work actually, what exactly are you getting at talking to these children? What do you get out of it?

SCP-5635: I find it despicable that you think I gain anything. My sole purpose is to serve the light while the rest cower in the dark and that is what I'm going to do.

Dr. Davis: You talk about purpose, and to have a purpose you must have a creator. Just who is that creator?

SCP-5635: My supervisor has nothing to do with you. I am just one of many inventions of his, I am nothing special. Now, let me get back to my frien- patient for once.

Dr. Davis: Friend did you say? -1? Or I suppose Malee Chanthara. I'm afraid that won't be possible.

SCP-5635: How so? That child needs me, all those children need me! Cease your interfering!

Dr. Davis: To put it simply, she doesn't remember you. Your effects no longer influence her, her condition has been normalized and returned to its previous state.

SCP-5635: (Silence) You don't know what you've done.

<End Log>

Closing Statement: SCP-5635 soon stopped responding to any further questioning. No more attempted CONSOLE events have occurred since and SCP-5635 has effectively gone silent.