马克·达姆的备忘录(B.N.T.G.终端)
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

关于那些亚人的处置



发件人:马克·达姆
moc.gtnb|64679#moc.gtnb|64679

收件人:德雷斯·霍安
moc.gtnb|43748#moc.gtnb|43748



2057/10/02 11:30:00德雷斯·霍安

主管,想必您一定听说了,最近在Level S-20 森林旅商 前哨出现了一些骚动。一伙亚人闯入了我们前哨,他们使用由红色树叶制成的火药对我们的商铺进行了攻击。不过在我们安行部第十五中队的小伙子们赶到后,那伙亚人全部都被我们逮捕了。

他们大多数是相貌正常的亚人,也有几个带着猫耳的亚人。如果你要问我为什么这么笃定他们是亚人,因为他们朝我们前哨冲锋的时候大喊着我从未听过的语言。

只是,我们在处置他们的时候犯了难。按理说,他们在被我们逮捕后就属于我们的财产了,我们应当给他们发配去当奴隶的。但是,因为语言不通的问题,我们完全没办法指挥他们进行采矿。

所以,我想请示一下您,希望您指导一下这些亚人的处理方式。

Re:关于那些亚人的处置



发件人:德雷斯·霍安
moc.gtnb|43748#moc.gtnb|43748

收件人:马克·达姆
moc.gtnb|64679#moc.gtnb|64679



2057/10/03 01:10:00马克·达姆

正好,达姆中队长,我已经调了一个专家组去你们中队,你现在的任务是带领你的队友,配合专家组翻译亚人们的语言,研究他们的文化和身体构造。这不仅解决你提的问题,还能将数量愈发庞大的亚人族群纳入我们的潜在合作伙伴。


关于亚人的研究报告

研究人员:亚伯·史密斯
报告时间:2060.12.06


对于亚人的研究已经进入收尾阶段,因此我们就目前的研究结果进行一个阶段性的总结。

亚人语言完全翻译完毕,专家组成员已经可以和亚人们正常沟通。经过两个月的时间他们大多数也都学会了英语。我们编撰了一本包含了他们常用词汇的词典。

亚人文化基本研究完毕。在我们的威逼利诱下,他们交代了自己的来历与文化。这些亚人来自一个名为艾厄勒的星球,拥有一颗卫星艾迪纳科。这颗星球所在的星系诺圣包含一颗恒星、两颗类地行星和一颗类木行星的小型行星系。

艾厄勒上共分为九个大洲,有近两百个主权国家,这些国家组建了一个类似联合国的国际组织,叫做世界联盟(为了与前厅历史上的世界联盟区分,我们将它翻译为世界同盟)。那几个亚人自称是来自一个名叫格伦尔的小国家,是在意外切出后来到这里的。他们使用的语言自称为格伦尔语,与西班牙语很相似。他格伦尔是一个社会主义专制国家,民族分为亚人人类与亚人猫族,其区别会在下文提及。他们的艺术形式非常前卫,我们向他们之中一个自称艺术家的人提供了纸笔,他描绘的画理论上属于前厅的至上主义艺术,他们则自称为先锋艺术。

亚人身体构造,本着人道主义的思想,也是为了防止被E.O.A.抓住把柄,我们本身是不期望进行解剖的。不过,在研究完毕外体后,亚人们中的一员主动向我们提出对他进行解剖,以换去其他亚人的自由。我们最终接受了这场交易,在将他安乐死后完成了解剖。我们得出了结论,亚人人类与人类的构造完全相同,亚人猫族除猫耳外也如此。


结合上述研究,我们不得不怀疑的是,艾厄勒很可能不是后室的一个层级,而是一个非常独特的多元前厅,因为艾厄勒与后室的通道似乎是单向的。因此,这些亚人也不应当以M.E.G.所判断的实体来看待,他们是活生生的人。


社区矛盾缓和!亚人由来的真相……

12 月 13 日 6:00 于 Level S-95 B.N.T.G. 新闻部 +关注

English|日本語|繁體中文|简体中文|.sw~tiu'ylo-o|其它语言


(不结盟贸易集团新闻社 2 月 8 日电)3 年前至今,后室中频繁出现说着未知语言,耳朵为兽耳的人类,其真相是……

自 2057 年 9 月 1 日起,后室,尤其是S层群中开始出现一种使用未知语言的人类,M.E.G.最初将其定义为一种实体,并将其命名为亚人。

自此之后,亚人的目击报告成指数级上升,亚人们迅速聚集在一起形成了规模不一的组织。同时,因为语言不通的原因,亚人组织与人类社区的矛盾与日俱增,逐渐由口头矛盾上升到肢体矛盾。

这种矛盾在2059年升至顶峰。7月11日下午3点6分,因为Level S-20的领土纠纷,一批有组织的亚人携带武器闯入了以Level S-1、Level S-20的M.E.G.基地为首的数十个据点,造成了超过B.N.T.G. 通用电子加密币 1000万的物质损失,同时造成M.E.G.通用数据库瘫痪 12 天。M.E.G.随即展开报复行动,下达通缉令,以高昂赏金悬赏亚人的头颅,这一年有近上千人类与亚人死于战斗。

M.E.G.与B.N.T.G.作为后室人类文明的先驱,很快便开始了对其语言的破译,同时B.N.T.G.也展开了对亚人文化的研究。

而就在2060年 12 月 6 日,B.N.T.G.完成了对一亚人群体的研究,我们发现了亚人的真相——亚人并不是实体,他们同样是人类。他们来自一个名叫艾厄勒的多元前厅

在完成了部分亚人语言的破译后,B.N.T.G.与M.E.G.率先展开和亚人组织的三边会议,并在领土方面达成一致。亚人组织与其多元前厅人类社区的矛盾渐渐缓和,与亚人的沟通也由交流代替武器。B.N.T.G.率先开放了面对亚人的服务,并允许亚人进入B.N.T.G.工作。

我们应当给予其同人类一样的尊重,因为在这茫茫后室,作为人类的我们必须团结一致。


B.N.T.G.4月入职员工报告及分析

4月初,在我们与M.E.G.的全面战争结束后,伴随着胜利的是各基地基础设施的大量损坏与员工的普遍损失。因此,在本月,我们扩充了招募额定数量,以求基础设施的重建和各部门的重新运作。

本月,我们共招募了2458名员工,其中人类占258名,实体占7名,亚人占2193名。其中,入职安行部1的员工达971名,占各部门中的大头。

必须要警惕的是,一些亚人在公司内带头组建了工会组织,吸纳了大量的亚人、人类甚至实体加入。我们暂不确定其是否会做出超出争取员工权益外的事,因此人事部建议对其进行管控。

同时,亚人在组织内员工的数量占比越来越大,包括基层员工与高层员工。我们必须思考亚人是否会逐渐取缔组织内人类的地位。

因此,不管怎样,亚人在公司内正在形成一种威胁,我们或许该做出一些行动了。

B.N.T.G.人事部
2065/04/30


%E6%97%A0%E6%A0%87%E9%A2%9869_20251003201948.png

名称: 艾塞科·罗西(Isacco Rossi)

职位: B.N.T.G.第 27 任董事会主席

权限: ε 级权限

资质: 较高的政治学、经济学与历史学水平,曾担任B.N.T.G.建筑部第九中队队长、建筑部主管、财政部主管。其为亚人,于艾厄勒时担任格伦尔经济委员会委员长。

资料库访问: 全部

备注: 暂无

联系方式: 发送电子邮件至moc.gtnb|44844#moc.gtnb|44844,或前往商人之家十五号窗口进行预约。若有紧急情况,请通知你部部门主管


B.N.T.G.内战

2079年,罗西主席上任,她是一名来自艾厄勒的亚人,同时也是一名社会主义者。就职期间,她大力推动了各大矿区的安全设施建设,签署并落实了《B.N.T.G. 第 887 号法案——关于公司雇员的人身安全保障法》,合法化了公司矿工工会、水手工会、护航工会等十三个公司工会,为广大公司雇员的安全提供了保障。同时,她还严打腐败,对各层管理部门进行严格监督。这些行动与M.E.G.草菅人命的行为高下立判。

但是,长期盘踞在B.N.T.G.官僚集团的腐败官员们,无法容忍罗西主席进行的各种危及他们利益的行动。为了阻挠改革的进行,2059年8月23日,一支隶属安行部的特别机动队从商人之家出发,一路切行至Level S-20的B.N.T.G.据点,对正在进行改革演讲的罗西主席以莫须有的罪行进行了逮捕调查,并扶持了保守派董事会会员达克·佩安担任临时董事会主席,史称823政变。

人民群众的眼睛是雪亮的,在商人之家,一场由工厂工人、建筑工、工程师、矿工、物流专家与探险者组成的工薪阶层作为主力、少量经理作为辅力的为罗西主席申冤的巨大游行爆发。游行一开始还保持着秩序,并鲜有人意外切出,但董事会主席为了维护自己的权利,绕过董事会直接部署了两个中队的安行部防卫队前去镇压,并启动了反欧几里得装置,导致大量人员切出,造成了不小的伤亡。

这一行为彻底激怒了人们,内战爆发了。大多数的工薪阶层,包括经理与雇员,均组织起来,建立了雇员军,雇员军以亚人为主,且有40%的雇员军在艾厄勒时担任过军人。依靠散兵穿插与部分安行部部队的弃暗投明,雇员军成功占领了商人之家的行政中心,解救了罗西主席。随后雇员军与安行部防卫队依靠街垒与切行阻拦装置,使赶来的小股擅长切行作战的安行部特别机动队被迫与其展开巷战。最终,雇员军以惨痛的代价换来了胜利。

内战结束后,罗西主席重新上台,并展开了大清洗,对上层管理阶层进行了错误思想的纠正与判决,B.N.T.G.回到正轨。

——《B.N.T.G. 2081年版教科书 B.N.T.G.书籍出版社》

现如今,发展的阻碍已经在人民们轰轰烈烈的革命中,扫除了!(热烈的掌声)我们新生的B.N.T.G.,将更加包容,更加团结,更加道德,更加繁荣!(长久而持续的掌声)

——罗西主席就雇员军的行动的演讲 2079年8月25日


自我坠入后室,加入B.N.T.G.到现在,已经过去了85年,期间我已经忘记了太多的事,也记得很多事。我忘了我童年在B.N.T.G.当童工的日子是如何度过,却清晰的记得如今的B.N.T.G.不再有童工存在;我忘了我青年在B.N.T.G.遭到经理的刁难是如何忍受,却清晰的记得如今的B.N.T.G.不再存在上级欺压下级;我忘了我为孩子凑B.N.T.G.学校学费时的窘迫,却清晰的记得如今B.N.T.G.学校完全免费。

如今很多人批判B.N.T.G.的雇员和经理大多是亚人,这是对人类工作岗位的挤压。或许这是对的,但我却看到了另一面。这些来自艾厄勒的人们即使离开自己的祖国,自己的家园,也没有放弃自己的理想,我敢说他们是我见过最能干的一批人,比B.N.T.G.刚建立那会的拓荒队还热情。

当我与我的同伴们在罗西主席的演讲上喊着“罗西万岁”时,她却带着笑意的说“这些权利都是你们斗争而来的,你们应当感谢自己”。我们顿时被震惊到了,人群中回之以热烈的掌声。

最新编辑于 2089 年 1 月 1 日 17:09:47
本站不完全遵守CC BY-SA 4.0协议