E5B4A9E6BA8320C2B720E6B8
: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 }

为保证观感,请尽量使用电脑视图阅读本文。

评分: +26+x

LEVEL
Cloud-404

生存等级生存等級
3

逃离逃離:5/5
无路可逃無路可逃

环境環境:5/5
死区死區

实体實體:0/5
无敌对实体無敵對實體

4C6576656C20436C6F75642D343034E698AFE4BA91E5AEA4E79A84E7ACAC343034E5B182E38082E585B6E
58F91E78EB0E697B6E997B4E5B7B2E4B88DE58FAFE88083E38082

E68F8FE8BFB0

Screenshot_20230804_202120_com.mojang.minecraftpe_edit_1448041849482691.jpg

E8B79DE7A6BBE8BF87E8BF9CE38082

4C6576656C20436C6F75642D343034E4BD8DE4BA
8EE5908EE5AEA4E79A84E8BEB9E7BC98E59CB0E5B8 A6EFBC8CE585B6E4BCBCE4B98EE59BA0E8B79DE7A6
BBE5908EE5AEA4E79A84E58E9FE782B9E8BF87E8BF9
CE8808CE8A2ABE99499E8AFAFE59CB0E68B89E4BCB
8E79D80E38082

E8AFA5E5B182E7BAA7E8A1A8E78EB0E4B8BAE4B880E
78987E6B5B7E59F9FEFBC8CE697A0E6B395E68EA2E6B
58BE588B0E8BEB9E7958CE38082E8A2ABE5B8A6E585
A5E8AFA5E5B182E7BAA7E79A84E68980E69C89E4BBA
AE599A8EFBC8CE59D87E4BC9AE59CA8E58887E585A5E79A84E4B880E79EACE68AA5E5BA9FEFBC8CE59
BA0E6ADA4E5AFB9E4BA8EE8AFA5E5B182E7BAA7EFBC8CE5B09AE697A0E6B395E79FA5E69993E4BBBBE
4BD95E58786E7A1AEE4BFA1E681AFEFBC8CE8808CE585B3E4BA8EE8AFA5E5B182E7BAA7E79A84E59BBEE
5838FE59D87E4B8BAE6A8A1E68B9FE38082

E8AFA5E5B182E7BAA7E8B28CE4BCBCE58F97E588B0E4B880E7A78DE2809CE8B79DE7A6BBE78EB0E8B1A1
E2809DE79A84E5BDB1E5938DEFBC8CE4BA8EE8AFA5E5B182E7BAA7E79A84E4BA8BE789A9EFBC8CE58C85
E68BACE6B581E6B5AAE88085EFBC8CE5B086E4BC9AE8A2ABE68B89E4BCB8E68890E5AFB9E4BA8EE585B6
E69CACE8BAABE4B88DE59088E5B8B8E79086E79A84E995BFE5BAA6E4B88EE5AEBDE5BAA6EFBC9BE4B894
E59BA0E6ADA4E78EB0E8B1A1E79A84E58F91E7949FEFBC8CE8AFA5E5B182E7BAA7E59CA8E4B880E4B8AAE5
9D90E6A087E8BDB4E4B88AE6AF8FE99A94E4B880E6AEB5E59BBAE5AE9AE79A84E8B79DE7A6BBEFBC8CE4
BC9AE8A2ABE4B880E7A78DE9808FE6988EE79A84E7958CE99990E5BCBAE588B6E99A94E696ADEFBC8CE79B
AEE5898DE5B9B6E697A0E5B7B2E79FA5E696B9E6B395E7A9BFE8B68AE585B6E7958CE99990E38082

4C6576656C20436C6F75642D343034E5AD98E59CA8E58FA6E4B880E789B9E6AE8AE78EB0E8B1A1EFBC8C
E585B6E4BCBCE4B98EE4B88EE2809CE8B79DE7A6BBE78EB0E8B1A1E2809DE68C82E992A9E38082E58DB
3E4BA8EE8AFA5E5B182E7BAA7E58685E79A84E789A9E4BD93E59D87E697A0E6B395E68EA5E8A7A6EFBC9BE8
8BA5E6B581E6B5AAE88085E5B09DE8AF95E68EA5E8A7A6E69F90E4B880E789A9E4BD93EFBC8CE585B6E68E
A5E8A7A6E79A84E983A8E4BD8DE4BEBFE4BC9AE4BB8EE789A9E4BD93E8A1A8E99DA2E79BB4E68EA5E7A9B
FE8BF87EFBC8CE8808CE6B581E6B5AAE88085E6ADA4E697B6E4B99FE4B88DE4BC9AE4BAA7E7949FE8A7A6E
6849FEFBC8CE4BD86E789A9E4BD93E4BB8DE4BC9AE5AFB9E6ADA4E5819AE587BAE58F8DE9A688EFBC8CE4
BD86E58F8DE9A688E79A84E69588E69E9CE4BCBCE4B98EE58F97E588B0E4BA86E5818FE7A7BBEFBC9BE4B8
BEE4BE8BE8808CE8A880EFBC8CE88BA5E5B086E4B880E9A297E79FB3E5AD90E4B8A2E585A5E6B5B7E4B8AD
EFBC8CE58899E585B6E59CA8E6B5B7E99DA2E4B88AE4BAA7E7949FE79A84E6B3A2E7BAB9E4BC9AE4B88EE58
5B6E4BAA7E7949FE4B880E4B8AAE59D90E6A087E8BDB4E4B88AE79A84EFBC8CE79BAEE6B58BE5A4A7E7BAA
6E4B8BA316DE79A84E5818FE7A7BBE38082

E6ADA4E78EB0E8B1A1E79A84E5BDB1E5938DE88C83E59BB4E8B28CE4BCBCE58C85E68BACE4BA86E6B6B2E4
BD93EFBC8CE8BF99E6848FE591B3E79D80E6B581E6B5AAE88085E59CA8E58887E585A5E8AFA5E5B182E7BAA7E
79A84E4B880E79EACEFBC8CE4BEBFE4BC9AE59E82E79BB4E4B88BE890BDEFBC8CE69C9FE997B4E4B88DE4B
C9AE4BAA7E7949FE4BBBBE4BD95E998BBE7A28DEFBC9BE8BF99E4BDBFE5BE97E8AEB0E5BD95E588B0E58887
E585A5E8BF87E8AFA5E5B182E7BAA7E79A84E6B581E6B5AAE88085EFBC8CE887B3E4BB8AE69CAAE883BDE58
F96E5BE97E88194E7B3BBE38082E4BA8EE8AFA5E5B182E7BAA7E4B8ADEFBC8CE899BDE69C89E5A49AE7A78DE
5AE9EE4BD93E79BAEE587BBE8AEB0E5BD95EFBC8CE4BD86E58F97E8AFA5E78EB0E8B1A1E5BDB1E5938DEFBC8
CE8BF99E4BA9BE5AE9EE4BD93E697A0E6B395E5AFB9E6B581E6B5AAE88085E5B195E5BC80E694BBE587BBE38
082

E782B9E78AB6E6B5B7

Screenshot_20230804_202251_com.mojang.minecraftpe_edit_1448047785032690.jpg

E8BEB9E5A283E38082

E782B9E78AB6E6B5B7E698AF4C6576656C20436C6F7
5642D343034
E4BA8EE58FA6E4B880E59D90E6A087E
8BDB4E69E81E99990E78AB6E68081E4B88BE79A84E7
BB93E69E84E38082E79BB8E6AF94E4BA8EE8AFA5E5
B182E7BAA7E79A84E5A4A7E5A49AE695B0E58CBAE5
9F9FEFBC8CE8AFA5E7BB93E69E84E58685E79A84E7
958CE99990E59CA8E5B9B3E99DA2E4B88AE79A84E4
B8A4E4B8AAE59D90E6A087E8BDB4E59E82E79BB4E5
8886E5B883E5B9B6E5BCBAE588B6E99A94E696ADE3
8082E58DB3E4BDBFE6B581E6B5AAE88085E4B88DE5
8F97E4B88AE69687E68980E68F90E78EB0E8B1A1E79A
84E5BDB1E5938DEFBC8CE585B6E59CA8E8AFA5E7BB93E69E84E79A84E6B4BBE58AA8E4B99FE5A487E58F97
E99990E588B6E38082E59CA8E8AFA5E7BB93E69E84EFBC8CE789A9E4BD93E5B086E58F97E588B0E69DA5E88
7AAE4B8A4E59D90E6A087E8BDB4E696B9E59091E79A84E68B89E689AFE38082

E59BA0E8AFA5E7BB93E69E84E8B79DE7A6BBE8AFA5E5B182E7BAA7E79A84E4B8ADE5BF83E782B9E8BF87E8
BF9CEFBC8CE79BAEE5898DE5B09AE697A0E6B395E58F96E5BE97E8AFA5E7BB93E69E84E79A84E69BB4E5A49
AE4BFA1E681AFE38082

E59FBAE59CB0E38081E5898DE593A8E4B88E

E7A4BEE58CBA

E8AFA5E5B182E7BAA7E58685E4B88DE5AD98E59CA8E4BBBBE4BD95E5B7B2E79FA5E79A84E59FBAE59CB0E3
8081E5898DE593A8E5928CE7A4BEE58CBAEFBC8CE4B894E5B7B2E8AF81E5AE9EE59CA8E6ADA3E5B8B8E683
85E586B5E4B88BE4B88DE58FAFE883BDE38082

E585A5E58FA3E4B88EE587BAE58FA3

E585A5E58FA3

E4BA8EE69F90E4B880E5B182E7BAA7E79A84E8BEB9E7BC98E59CB0E5B8A6E58887E585A5E4B880E78987E5
AE8CE585A8E9808FE6988EE79A84E58CBAE59F9FE58FAFE8BF9BE585A5E8AFA5E5B182E7BAA7EFBC9BE8AFA
5E585A5E58FA3E59CA8E697A0E99990E5B182E7BAA7E4B8ADE8B79DE7A6BBE4B8ADE5BF83E69E81E8BF9CEF
BC8CE69C89E8AEB0E8BDBDE5A4A7E6A682E59CA8E8B79DE4B8ADE5BF8331363737373231361316DE5A484E59
08CE6A0B7E58FAFE8A18CE38082

E587BAE58FA3

E5B09AE69CAAE58F91E78EB0E4BBBBE4BD95E7A8B3E5AE9AE587BAE58FA3EFBC8CE4B894E68980E69C89E9
9D9EE5B8B8E8A784E58887E587BAE696B9E5BC8FE59CA8E8AFA5E5B182E7BAA7E8BF91E4B98EE697A0E69588
E38082


©️ The Cloudrooms云室维基 (2022-2025) - 本站不遵循CC协议。