论坛
BBS
空间测绘
发表
发布文章
提问答疑
搜索
您还未登录
登录后即可体验更多功能
立即登录
我的收藏
提问答疑
我要投稿
IOT
[17914] 2020-12-13_记一次腾讯极客技术挑战-最小的输出自身MD5值的程序
文档创建者:
s7ckTeam
浏览次数:
3
最后更新:
2025-01-18
IOT
3 人阅读
|
0 人回复
s7ckTeam
s7ckTeam
当前离线
积分
-54
6万
主题
-6万
回帖
-54
积分
管理员
积分
-54
发消息
2020-12-13_记一次腾讯极客技术挑战-最小的输出自身MD5值的程序
记
一
次
腾
讯
极
客
技
术
挑
战
-
最
小
的
输
出
自
身
M
D
5
值
的
程
序
原
创
w
8
a
y
H
a
c
k
i
n
g
就
是
好
玩
2
0
2
0
-
1
2
-
1
3
只
允
许
6
4
位
的
E
L
F
可
执
行
程
序
,
总
共
有
三
个
赛
道
,
x
8
6
-
6
4
,
a
r
m
6
4
,
m
i
p
s
6
4
。
不
太
熟
悉
汇
编
,
三
个
赛
道
基
本
上
都
是
用
g
c
c
来
完
成
,
辅
助
少
量
的
汇
编
代
码
修
改
。
最
终
成
绩
x
8
6
-
6
4
4
7
2
字
节
第
1
5
名
a
r
m
6
4
8
1
6
字
节
第
8
名
m
i
p
s
6
3
1
0
2
4
字
节
第
7
名
一
开
始
有
想
过
可
否
用
碰
撞
实
现
,
研
究
了
几
天
后
发
现
毫
无
头
绪
,
就
先
用
普
通
的
方
法
尝
试
啦
。
x
8
6
-
6
4
主
要
几
个
点
1
.
不
依
赖
任
何
库
进
行
独
立
编
译
,
对
于
程
序
和
的
操
作
,
用
内
联
汇
编
调
用
系
统
中
断
完
成
,
计
算
m
d
5
算
法
中
需
要
用
到
绝
对
值
计
算
和
s
i
n
函
数
,
都
d
i
a
o
y
2
.
直
接
在
内
存
中
读
取
自
身
,
省
掉
了
读
取
文
件
操
作
的
步
骤
3
.
计
算
m
d
5
的
时
候
,
根
据
m
d
5
算
法
的
原
理
,
以
每
6
4
字
节
为
一
块
进
行
计
算
,
下
一
块
的
h
a
s
h
是
根
据
上
一
块
的
h
a
s
h
算
出
的
,
我
们
可
以
直
接
算
出
第
一
块
至
倒
数
第
二
块
的
h
a
s
h
,
硬
编
码
写
入
,
程
序
只
用
进
行
最
后
一
次
块
的
计
算
,
节
省
体
积
。
4
.
对
e
l
f
h
e
a
d
e
r
处
理
,
e
l
f
h
e
a
d
e
r
有
些
标
识
位
置
可
以
利
用
a
.
b
.
可
以
根
据
指
令
大
小
来
做
对
应
填
充
5
.
对
汇
编
指
令
的
简
单
处
理
a
.
先
用
g
c
c
生
成
汇
编
文
件
,
然
后
对
它
做
一
些
简
单
的
处
理
b
.
一
个
简
单
处
理
的
脚
本
6
.
手
动
处
理
a
.
开
头
的
可
删
除
,
程
序
初
始
化
时
寄
存
器
默
认
会
为
0
打
印
退
出
c
.
s
e
d
-
i
"
s
/
.
s
e
c
t
i
o
n
.
*
/
/
g
"
m
y
_
3
_
a
m
d
.
s
s
e
d
-
i
"
s
/
.
i
d
e
n
t
.
*
/
/
g
"
m
y
_
3
_
a
m
d
.
s
s
e
d
-
i
"
s
/
p
u
s
h
q
.
*
/
/
g
"
m
y
_
3
_
a
m
d
.
s
s
e
d
-
i
"
s
/
.
s
i
z
e
_
s
t
a
r
t
.
*
/
/
g
"
m
y
_
3
_
a
m
d
.
s
s
e
d
-
i
"
s
/
.
a
l
i
g
n
4
/
/
g
"
m
y
_
3
_
a
m
d
x
o
r
l
%
e
c
x
,
%
e
c
x
b
.
程
序
参
考
源
码
4
.
1
2
.
2
5
.
1
.
#
d
e
f
i
n
e
S
Y
S
_
w
r
i
t
e
1
2
.
#
d
e
f
i
n
e
S
Y
S
_
e
x
i
t
6
0
3
.
#
d
e
f
i
n
e
L
E
F
T
R
O
T
A
T
E
(
x
,
c
)
(
(
(
x
)
<
<
(
c
)
)
|
(
(
x
)
>
>
(
3
2
-
(
c
)
)
)
)
5
.
s
t
a
t
i
c
v
o
i
d
w
r
i
t
e
(
c
h
a
r
*
d
,
i
n
t
l
)
6
.
{
7
.
_
_
a
s
m
_
_
v
o
l
a
t
i
l
e
(
"
s
y
s
c
a
l
l
"
8
.
:
9
.
:
"
a
"
(
S
Y
S
_
w
r
i
t
e
)
,
"
D
"
(
1
)
,
"
S
"
(
(
l
o
n
g
)
d
)
,
"
d
"
(
l
)
1
0
.
:
"
r
c
x
"
,
"
r
1
1
"
,
"
m
e
m
o
r
y
"
)
;
1
1
.
}
1
3
.
s
t
a
t
i
c
l
o
n
g
d
o
u
b
l
e
f
s
i
n
_
m
y
(
l
o
n
g
d
o
u
b
l
e
a
)
1
4
.
{
1
5
.
l
o
n
g
d
o
u
b
l
e
r
e
s
;
1
6
.
a
s
m
_
_
v
o
l
a
t
i
l
e
_
_
(
"
f
s
i
n
;
n
t
"
1
7
.
"
f
a
b
s
;
n
t
"
1
8
.
:
"
=
t
"
(
r
e
s
)
1
9
.
:
"
0
"
(
a
)
2
0
.
:
"
m
e
m
o
r
y
"
)
;
2
1
.
r
e
t
u
r
n
r
e
s
;
2
2
.
}
2
3
.
v
o
i
d
_
s
t
a
r
t
(
v
o
i
d
)
2
4
.
{
2
6
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
s
g
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
0
x
4
0
0
0
0
0
;
2
7
.
c
o
n
s
t
s
h
o
r
t
i
n
i
t
i
a
l
_
l
e
n
=
4
6
6
;
/
/
固
定
需
要
填
写
2
8
.
c
o
n
s
t
s
h
o
r
t
n
e
w
_
l
e
n
=
(
(
(
(
i
n
i
t
i
a
l
_
l
e
n
+
8
)
/
6
4
)
+
1
)
*
6
4
)
-
8
;
2
9
.
s
h
o
r
t
o
f
f
s
e
t
=
n
e
w
_
l
e
n
-
(
n
e
w
_
l
e
n
%
6
4
)
;
/
/
最
后
一
个
块
的
位
置
通
过
计
算
获
得
3
0
.
s
t
a
t
i
c
u
n
s
i
g
n
e
d
i
n
t
d
i
g
e
s
t
[
4
]
=
{
1
,
2
,
3
,
4
}
;
/
/
需
要
填
写
3
1
.
m
s
g
[
i
n
i
t
i
a
l
_
l
e
n
]
=
0
x
8
0
;
3
2
.
*
(
l
o
n
g
*
)
(
m
s
g
+
n
e
w
_
l
e
n
)
=
i
n
i
t
i
a
l
_
l
e
n
<
<
3
;
/
/
固
定
需
要
填
写
l
o
n
g
改
成
c
h
a
r
能
节
省
4
字
节
,
未
测
试
3
4
.
3
9
.
7
4
.
8
0
.
8
9
.
3
3
.
u
n
s
i
g
n
e
d
i
n
t
*
w
=
(
u
n
s
i
g
n
e
d
i
n
t
*
)
(
m
s
g
+
o
f
f
s
e
t
)
;
3
5
.
u
n
s
i
g
n
e
d
i
n
t
a
=
d
i
g
e
s
t
[
0
]
;
3
6
.
u
n
s
i
g
n
e
d
i
n
t
b
=
d
i
g
e
s
t
[
1
]
;
3
7
.
u
n
s
i
g
n
e
d
i
n
t
c
=
d
i
g
e
s
t
[
2
]
;
3
8
.
u
n
s
i
g
n
e
d
i
n
t
d
=
d
i
g
e
s
t
[
3
]
;
4
0
.
f
o
r
(
i
n
t
i
=
0
;
i
<
6
4
;
i
+
+
)
4
1
.
{
4
2
.
u
n
s
i
g
n
e
d
i
n
t
f
;
4
3
.
i
n
t
g
;
4
4
.
i
f
(
i
<
1
6
)
4
5
.
{
4
6
.
f
=
(
b
&
c
)
|
(
(
~
b
)
&
d
)
;
4
7
.
g
=
i
;
4
8
.
}
4
9
.
e
l
s
e
i
f
(
i
<
3
2
)
5
0
.
{
5
1
.
f
=
(
d
&
b
)
|
(
(
~
d
)
&
c
)
;
5
2
.
g
=
(
5
*
i
+
1
)
%
1
6
;
5
3
.
}
5
4
.
e
l
s
e
i
f
(
i
<
4
8
)
5
5
.
{
5
6
.
f
=
b
^
c
^
d
;
5
7
.
g
=
(
3
*
i
+
5
)
%
1
6
;
5
8
.
}
5
9
.
e
l
s
e
6
0
.
{
6
1
.
f
=
c
^
(
b
|
(
~
d
)
)
;
6
2
.
g
=
(
7
*
i
)
%
1
6
;
6
3
.
}
6
4
.
l
o
n
g
d
o
u
b
l
e
t
1
=
f
s
i
n
_
m
y
(
i
+
1
)
;
6
5
.
c
o
n
s
t
u
n
s
i
g
n
e
d
l
o
n
g
l
o
n
g
t
2
=
(
u
n
s
i
g
n
e
d
l
o
n
g
l
o
n
g
)
1
<
<
3
2
;
6
6
.
u
n
s
i
g
n
e
d
i
n
t
k
=
(
u
n
s
i
g
n
e
d
i
n
t
)
(
t
2
*
t
1
)
;
6
7
.
f
+
=
a
+
k
+
w
[
g
]
;
6
8
.
a
=
d
;
6
9
.
d
=
c
;
7
0
.
c
=
b
;
7
1
.
c
o
n
s
t
c
h
a
r
r
[
]
=
{
7
,
1
2
,
1
7
,
2
2
,
5
,
9
,
1
4
,
2
0
,
4
,
1
1
,
1
6
,
2
3
,
6
,
1
0
,
1
5
,
2
1
}
;
7
2
.
b
=
b
+
L
E
F
T
R
O
T
A
T
E
(
f
,
r
[
i
/
1
6
*
4
+
i
%
4
]
)
;
7
3
.
}
7
5
.
d
i
g
e
s
t
[
0
]
+
=
a
;
7
6
.
d
i
g
e
s
t
[
1
]
+
=
b
;
7
7
.
d
i
g
e
s
t
[
2
]
+
=
c
;
7
8
.
d
i
g
e
s
t
[
3
]
+
=
d
;
7
9
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
d
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
&
d
i
g
e
s
t
[
0
]
;
8
1
.
c
h
a
r
x
[
3
2
]
;
8
2
.
f
o
r
(
i
n
t
i
=
0
;
i
<
3
2
;
i
+
+
)
8
3
.
{
8
4
.
i
n
t
a
=
(
m
d
[
i
/
2
]
>
>
(
4
*
(
1
-
i
%
2
)
)
)
&
0
x
F
;
8
5
.
c
h
a
r
c
=
a
>
=
1
0
?
a
+
(
'
a
'
-
1
0
)
:
a
+
'
0
'
;
8
6
.
x
[
i
]
=
c
;
8
7
.
}
8
8
.
w
r
i
t
e
(
&
x
,
3
2
)
;
8
9
.
9
0
.
编
译
流
程
1
.
生
成
汇
编
代
码
3
.
手
动
优
化
汇
编
代
码
4
.
汇
编
生
成
二
进
制
1
.
改
造
e
l
f
2
.
t
r
i
m
-
s
r
c
.
c
9
1
.
_
_
a
s
m
_
_
v
o
l
a
t
i
l
e
(
"
s
y
s
c
a
l
l
"
9
2
.
:
9
3
.
:
"
a
"
(
S
Y
S
_
e
x
i
t
)
,
"
D
"
(
0
)
9
4
.
:
"
r
c
x
"
,
"
r
1
1
"
,
"
m
e
m
o
r
y
"
)
;
9
5
.
}
2
.
C
F
L
A
G
S
=
"
-
s
t
a
t
i
c
-
O
s
-
W
l
,
-
-
o
m
a
g
i
c
-
f
f
u
n
c
t
i
o
n
-
s
e
c
t
i
o
n
s
-
W
l
,
-
-
g
c
-
s
e
c
t
i
o
n
s
-
n
o
s
t
a
r
t
f
i
l
e
s
-
n
o
d
e
f
a
u
l
t
l
i
b
s
-
n
o
s
t
d
l
i
b
-
n
o
s
t
d
i
n
c
-
f
o
m
i
t
-
f
r
a
m
e
-
p
o
i
n
t
e
r
-
f
n
o
-
s
t
a
c
k
-
p
r
o
t
e
c
t
o
r
-
f
n
o
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
a
s
y
n
c
h
r
o
n
o
u
s
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
u
n
r
o
l
l
-
l
o
o
p
s
-
f
m
e
r
g
e
-
a
l
l
-
c
o
n
s
t
a
n
t
s
-
f
n
o
-
i
d
e
n
t
-
f
i
n
l
i
n
e
-
f
u
n
c
t
i
o
n
s
-
c
a
l
l
e
d
-
o
n
c
e
-
I
.
/
-
f
d
a
t
a
-
s
e
c
t
i
o
n
s
"
g
c
c
$
C
F
L
A
G
S
m
y
3
a
m
d
.
c
-
S
-
m
a
v
x
-
m
s
s
e
-
m
a
v
x
2
-
f
f
a
s
t
-
m
a
t
h
#
-
f
v
e
r
b
o
s
e
-
a
s
m
.
/
c
h
a
n
g
e
_
a
s
m
.
s
h
#
自
动
优
化
汇
编
代
码
那
部
分
a
.
C
F
L
A
G
S
=
"
-
s
t
a
t
i
c
-
O
s
-
W
l
,
-
-
o
m
a
g
i
c
-
f
f
u
n
c
t
i
o
n
-
s
e
c
t
i
o
n
s
-
W
l
,
-
-
g
c
-
s
e
c
t
i
o
n
s
-
n
o
s
t
a
r
t
f
i
l
e
s
-
n
o
d
e
f
a
u
l
t
l
i
b
s
-
n
o
s
t
d
l
i
b
-
n
o
s
t
d
i
n
c
-
W
l
,
-
-
b
u
i
l
d
-
i
d
=
n
o
n
e
-
f
o
m
i
t
-
f
r
a
m
e
-
p
o
i
n
t
e
r
-
f
n
o
-
s
t
a
c
k
-
p
r
o
t
e
c
t
o
r
-
f
n
o
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
a
s
y
n
c
h
r
o
n
o
u
s
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
u
n
r
o
l
l
-
l
o
o
p
s
-
f
m
e
r
g
e
-
a
l
l
-
c
o
n
s
t
a
n
t
s
-
f
n
o
-
i
d
e
n
t
-
f
i
n
l
i
n
e
-
f
u
n
c
t
i
o
n
s
-
c
a
l
l
e
d
-
o
n
c
e
-
I
.
/
"
g
c
c
$
C
F
L
A
G
S
m
y
_
3
_
a
m
d
.
s
-
o
t
e
s
t
_
a
m
d
6
4
o
b
j
d
u
m
p
-
S
t
e
s
t
_
a
m
d
6
4
s
t
r
i
p
-
s
t
e
s
t
_
a
m
d
6
4
#
s
t
r
i
p
减
少
1
0
8
8
-
7
0
4
=
3
8
4
.
.
/
.
.
/
s
s
t
r
i
p
t
e
s
t
_
a
m
d
6
4
#
s
s
t
r
i
减
少
7
0
4
-
4
9
2
=
2
1
2
l
s
-
l
|
g
r
e
p
t
e
s
t
.
/
t
e
s
t
_
a
m
d
6
4
e
c
h
o
m
d
5
s
u
m
t
e
s
t
_
a
m
d
6
4
a
.
r
m
s
e
l
f
m
d
5
-
t
e
s
t
.
.
/
.
.
/
e
l
f
t
o
c
-
E
t
e
s
t
_
a
m
d
6
4
>
s
e
l
f
m
d
5
.
h
m
v
s
e
l
f
m
d
5
.
h
.
.
/
.
.
/
g
+
+
-
g
-
o
.
.
/
.
.
/
t
r
i
m
-
e
l
f
.
.
/
.
.
/
t
r
i
m
-
s
r
c
.
c
&
&
.
.
/
.
.
/
t
r
i
m
-
e
l
f
l
s
-
l
|
g
r
e
p
s
e
l
f
c
h
m
o
d
7
7
7
s
e
l
f
m
d
5
a
.
#
i
n
c
l
u
d
e
"
s
e
l
f
m
d
5
.
h
"
#
i
n
c
l
u
d
e
<
f
c
n
t
l
.
h
>
#
i
n
c
l
u
d
e
<
u
n
i
s
t
d
.
h
>
#
i
n
c
l
u
d
e
<
s
t
d
l
i
b
.
h
>
#
i
n
c
l
u
d
e
<
s
t
d
i
o
.
h
>
#
i
n
c
l
u
d
e
<
s
t
r
i
n
g
.
h
>
/
/
t
y
p
e
d
e
f
s
t
r
u
c
t
{
/
/
u
n
s
i
g
n
e
d
c
h
a
r
e
_
i
d
e
n
t
[
E
I
_
N
I
D
E
N
T
]
;
/
*
M
a
g
i
c
n
u
m
b
e
r
a
n
d
o
t
h
e
r
i
n
f
o
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
t
y
p
e
;
/
*
O
b
j
e
c
t
f
i
l
e
t
y
p
e
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
m
a
c
h
i
n
e
;
/
*
A
r
c
h
i
t
e
c
t
u
r
e
*
/
/
/
E
l
f
6
4
_
W
o
r
d
e
_
v
e
r
s
i
o
n
;
/
*
O
b
j
e
c
t
f
i
l
e
v
e
r
s
i
o
n
*
/
/
/
E
l
f
6
4
_
A
d
d
r
e
_
e
n
t
r
y
;
/
*
E
n
t
r
y
p
o
i
n
t
v
i
r
t
u
a
l
a
d
d
r
e
s
s
*
/
/
/
E
l
f
6
4
_
O
f
f
e
_
p
h
o
f
f
;
/
*
P
r
o
g
r
a
m
h
e
a
d
e
r
t
a
b
l
e
f
i
l
e
o
f
f
s
e
t
*
/
/
/
E
l
f
6
4
_
O
f
f
e
_
s
h
o
f
f
;
/
*
S
e
c
t
i
o
n
h
e
a
d
e
r
t
a
b
l
e
f
i
l
e
o
f
f
s
e
t
*
/
/
/
E
l
f
6
4
_
W
o
r
d
e
_
f
l
a
g
s
;
/
*
P
r
o
c
e
s
s
o
r
-
s
p
e
c
i
f
i
c
f
l
a
g
s
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
e
h
s
i
z
e
;
/
*
E
L
F
h
e
a
d
e
r
s
i
z
e
i
n
b
y
t
e
s
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
p
h
e
n
t
s
i
z
e
;
/
*
P
r
o
g
r
a
m
h
e
a
d
e
r
t
a
b
l
e
e
n
t
r
y
s
i
z
e
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
p
h
n
u
m
;
/
*
P
r
o
g
r
a
m
h
e
a
d
e
r
t
a
b
l
e
e
n
t
r
y
c
o
u
n
t
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
s
h
e
n
t
s
i
z
e
;
/
*
S
e
c
t
i
o
n
h
e
a
d
e
r
t
a
b
l
e
e
n
t
r
y
s
i
z
e
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
s
h
n
u
m
;
/
*
S
e
c
t
i
o
n
h
e
a
d
e
r
t
a
b
l
e
e
n
t
r
y
c
o
u
n
t
*
/
/
/
E
l
f
6
4
_
H
a
l
f
e
_
s
h
s
t
r
n
d
x
;
/
*
S
e
c
t
i
o
n
h
e
a
d
e
r
s
t
r
i
n
g
t
a
b
l
e
i
n
d
e
x
*
/
/
/
}
E
l
f
6
4
_
E
h
d
r
;
/
/
t
y
p
e
d
e
f
s
t
r
u
c
t
/
/
{
/
/
E
l
f
6
4
_
W
o
r
d
p
_
t
y
p
e
;
/
*
S
e
g
m
e
n
t
t
y
p
e
*
/
/
/
E
l
f
6
4
_
W
o
r
d
p
_
f
l
a
g
s
;
/
*
S
e
g
m
e
n
t
f
l
a
g
s
*
/
/
/
E
l
f
6
4
_
O
f
f
p
_
o
f
f
s
e
t
;
/
*
S
e
g
m
e
n
t
f
i
l
e
o
f
f
s
e
t
*
/
/
/
E
l
f
6
4
_
A
d
d
r
p
_
v
a
d
d
r
;
/
*
S
e
g
m
e
n
t
v
i
r
t
u
a
l
a
d
d
r
e
s
s
*
/
/
/
E
l
f
6
4
_
A
d
d
r
p
_
p
a
d
d
r
;
/
*
S
e
g
m
e
n
t
p
h
y
s
i
c
a
l
a
d
d
r
e
s
s
*
/
/
/
E
l
f
6
4
_
X
w
o
r
d
p
_
f
i
l
e
s
z
;
/
*
S
e
g
m
e
n
t
s
i
z
e
i
n
f
i
l
e
*
/
/
/
E
l
f
6
4
_
X
w
o
r
d
p
_
m
e
m
s
z
;
/
*
S
e
g
m
e
n
t
s
i
z
e
i
n
m
e
m
o
r
y
*
/
/
/
E
l
f
6
4
_
X
w
o
r
d
p
_
a
l
i
g
n
;
/
*
S
e
g
m
e
n
t
a
l
i
g
n
m
e
n
t
*
/
/
/
}
E
l
f
6
4
_
P
h
d
r
;
i
n
t
m
a
i
n
(
i
n
t
a
r
g
c
,
c
h
a
r
*
a
r
g
v
[
]
)
{
s
i
z
e
_
t
s
i
z
e
=
s
i
z
e
o
f
(
f
o
o
)
;
/
/
-
s
i
z
e
o
f
(
f
o
o
.
_
e
n
d
)
;
有
些
部
分
参
考
了
知
乎
上
的
一
篇
文
章
,
有
修
改
p
r
i
n
t
f
(
"
f
o
o
s
i
z
e
:
%
d
n
"
,
s
i
z
e
)
;
f
o
r
(
i
n
t
i
=
8
;
i
<
1
6
;
+
+
i
)
{
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
i
]
=
0
x
F
F
;
/
/
1
0
可
修
改
,
留
2
位
跳
转
}
f
o
o
.
e
h
d
r
.
e
_
v
e
r
s
i
o
n
=
0
x
A
A
A
A
A
A
A
A
;
/
/
2
可
修
改
,
留
2
位
跳
转
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
=
0
x
F
F
F
F
F
F
F
F
F
F
F
F
F
F
F
F
;
/
/
6
可
修
改
,
留
2
跳
转
f
o
o
.
e
h
d
r
.
e
_
f
l
a
g
s
=
0
x
C
C
C
C
C
C
C
C
;
/
/
2
可
修
改
,
留
2
跳
转
/
/
l
o
n
g
c
o
d
e
_
t
e
x
t
=
o
f
f
s
e
t
o
f
(
e
l
f
,
t
e
x
t
)
+
A
D
D
R
_
T
E
X
T
;
/
/
p
r
i
n
t
f
(
"
代
码
段
偏
移
位
置
o
f
f
s
e
t
%
d
,
%
d
n
"
,
o
f
f
s
e
t
o
f
(
e
l
f
,
t
e
x
t
)
,
c
o
d
e
_
t
e
x
t
)
;
/
/
f
o
o
.
e
h
d
r
.
e
_
e
n
t
r
y
=
c
o
d
e
_
t
e
x
t
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
8
]
=
0
x
E
B
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
9
]
=
o
f
f
s
e
t
o
f
(
e
l
f
,
t
e
x
t
)
-
1
0
;
/
/
*
(
l
o
n
g
*
)
(
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
+
9
)
=
c
o
d
e
_
t
e
x
t
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
9
]
=
o
f
f
s
e
t
o
f
(
e
l
f
,
t
e
x
t
)
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
0
]
=
c
o
d
e
_
t
e
x
t
<
<
4
;
/
/
p
r
i
n
t
f
(
"
n
e
w
e
n
t
r
y
%
d
n
"
,
e
n
t
r
y
)
;
f
o
o
.
e
h
d
r
.
e
_
e
n
t
r
y
=
A
D
D
R
_
T
E
X
T
+
8
;
/
/
c
o
p
y
6
b
y
t
e
s
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
8
]
=
f
o
o
.
t
e
x
t
[
0
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
9
]
=
f
o
o
.
t
e
x
t
[
1
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
0
]
=
f
o
o
.
t
e
x
t
[
2
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
1
]
=
f
o
o
.
t
e
x
t
[
3
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
2
]
=
f
o
o
.
t
e
x
t
[
4
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
3
]
=
f
o
o
.
t
e
x
t
[
5
]
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
4
]
=
0
x
E
B
;
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
5
]
=
2
4
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
6
]
=
0
x
E
B
;
/
/
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
3
]
=
1
0
6
;
/
/
2
6
p
r
i
n
t
f
(
"
j
m
p
%
d
n
"
,
f
o
o
.
e
h
d
r
.
e
_
i
d
e
n
t
[
1
5
]
)
;
f
o
r
(
i
n
t
i
=
0
;
i
<
s
i
z
e
o
f
(
f
o
o
.
t
e
x
t
)
-
6
;
+
+
i
)
{
f
o
o
.
t
e
x
t
[
i
]
=
f
o
o
.
t
e
x
t
[
i
+
6
]
;
}
s
i
z
e
-
=
6
;
/
/
c
o
p
y
8
b
y
t
e
s
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
0
]
=
f
o
o
.
t
e
x
t
[
0
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
1
]
=
f
o
o
.
t
e
x
t
[
1
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
2
]
=
f
o
o
.
t
e
x
t
[
2
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
3
]
=
f
o
o
.
t
e
x
t
[
3
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
4
]
=
f
o
o
.
t
e
x
t
[
4
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
5
]
=
f
o
o
.
t
e
x
t
[
5
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
6
]
=
f
o
o
.
t
e
x
t
[
6
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
7
]
=
f
o
o
.
t
e
x
t
[
7
]
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
f
l
a
g
s
)
)
[
0
]
=
0
x
E
B
;
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
f
l
a
g
s
)
)
[
1
]
=
7
0
;
/
/
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
f
l
a
g
s
)
)
[
2
]
=
7
0
;
/
/
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
s
h
o
f
f
)
)
[
7
]
=
0
x
E
B
;
/
/
(
(
c
h
a
r
*
)
(
&
f
o
o
.
e
h
d
r
.
e
_
f
l
a
g
s
)
)
[
0
]
=
7
1
;
f
o
r
(
i
n
t
i
=
0
;
i
<
s
i
z
e
o
f
(
f
o
o
.
t
e
x
t
)
-
8
;
+
+
i
)
{
f
o
o
.
t
e
x
t
[
i
]
=
f
o
o
.
t
e
x
t
[
i
+
8
]
;
}
s
i
z
e
-
=
8
;
/
/
o
u
t
p
u
t
F
I
L
E
*
f
d
=
f
o
p
e
n
(
"
s
e
l
f
m
d
5
-
t
e
s
t
"
,
"
w
b
"
)
;
s
i
z
e
_
t
n
=
f
w
r
i
t
e
(
&
f
o
o
,
s
i
z
e
,
1
,
f
d
)
;
p
r
i
n
t
f
(
"
最
终
大
小
:
%
d
n
"
,
s
i
z
e
)
;
r
e
t
u
r
n
0
;
}
a
r
m
6
4
a
r
m
6
4
和
上
面
有
些
许
不
一
样
1
.
没
有
省
掉
m
d
5
最
后
一
轮
的
运
算
,
因
为
发
现
省
不
省
大
小
一
样
。
没
有
从
汇
编
层
面
去
研
究
原
因
-
=
。
2
.
m
d
5
中
的
k
值
是
硬
编
码
上
去
的
,
发
现
用
c
语
言
实
现
一
个
s
i
n
函
数
体
积
很
大
,
没
有
找
到
优
化
的
方
法
代
码
3
.
1
0
.
1
7
.
2
2
.
2
9
.
3
2
.
3
7
.
1
.
#
d
e
f
i
n
e
S
Y
S
_
w
r
i
t
e
0
x
4
0
/
/
6
4
2
.
#
d
e
f
i
n
e
S
Y
S
_
e
x
i
t
0
x
5
d
/
/
9
3
4
.
s
t
a
t
i
c
v
o
i
d
w
r
i
t
e
(
c
o
n
s
t
v
o
i
d
*
b
u
f
,
l
o
n
g
s
i
z
e
)
5
.
{
6
.
r
e
g
i
s
t
e
r
l
o
n
g
x
8
_
_
a
s
m
_
_
(
"
x
8
"
)
=
S
Y
S
_
w
r
i
t
e
;
7
.
r
e
g
i
s
t
e
r
l
o
n
g
x
0
_
_
a
s
m
_
_
(
"
x
0
"
)
=
1
;
8
.
r
e
g
i
s
t
e
r
l
o
n
g
x
1
_
_
a
s
m
_
_
(
"
x
1
"
)
=
(
l
o
n
g
)
b
u
f
;
9
.
r
e
g
i
s
t
e
r
l
o
n
g
x
2
_
_
a
s
m
_
_
(
"
x
2
"
)
=
s
i
z
e
;
1
1
.
_
_
a
s
m
_
_
_
_
v
o
l
a
t
i
l
e
_
_
(
1
2
.
"
s
v
c
0
"
1
3
.
:
1
4
.
:
"
r
"
(
x
8
)
,
"
r
"
(
x
0
)
,
"
r
"
(
x
1
)
,
"
r
"
(
x
2
)
1
5
.
:
"
m
e
m
o
r
y
"
,
"
c
c
"
)
;
1
6
.
}
1
8
.
s
t
a
t
i
c
v
o
i
d
_
e
x
i
t
(
)
1
9
.
{
2
0
.
r
e
g
i
s
t
e
r
l
o
n
g
x
8
_
_
a
s
m
_
_
(
"
x
8
"
)
=
S
Y
S
_
e
x
i
t
;
2
1
.
r
e
g
i
s
t
e
r
l
o
n
g
x
0
_
_
a
s
m
_
_
(
"
x
0
"
)
=
0
;
2
3
.
_
_
a
s
m
_
_
_
_
v
o
l
a
t
i
l
e
_
_
(
2
4
.
"
s
v
c
0
"
2
5
.
:
2
6
.
:
"
r
"
(
x
8
)
,
"
r
"
(
x
0
)
2
7
.
:
"
m
e
m
o
r
y
"
,
"
c
c
"
)
;
2
8
.
}
3
0
.
/
/
l
e
f
t
r
o
t
a
t
e
f
u
n
c
t
i
o
n
d
e
f
i
n
i
t
i
o
n
3
1
.
#
d
e
f
i
n
e
L
E
F
T
R
O
T
A
T
E
(
x
,
c
)
(
(
(
x
)
<
<
(
c
)
)
|
(
(
x
)
>
>
(
3
2
-
(
c
)
)
)
)
3
3
.
v
o
i
d
_
s
t
a
r
t
(
v
o
i
d
)
3
4
.
{
3
5
.
c
o
n
s
t
s
h
o
r
t
i
n
i
t
i
a
l
_
l
e
n
=
8
2
4
;
3
6
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
s
g
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
0
x
4
0
0
0
0
0
;
3
8
.
s
t
a
t
i
c
c
o
n
s
t
c
h
a
r
r
[
]
=
{
7
,
1
2
,
1
7
,
2
2
,
5
,
9
,
1
4
,
2
0
,
4
,
1
1
,
1
6
,
2
3
,
6
,
1
0
,
1
5
,
2
1
}
;
3
9
.
s
t
a
t
i
c
c
o
n
s
t
u
n
s
i
g
n
e
d
i
n
t
k
[
6
4
]
=
{
4
0
.
0
x
d
7
6
a
a
4
7
8
,
0
x
e
8
c
7
b
7
5
6
,
0
x
2
4
2
0
7
0
d
b
,
0
x
c
1
b
d
c
e
e
e
,
4
1
.
0
x
f
5
7
c
0
f
a
f
,
0
x
4
7
8
7
c
6
2
a
,
0
x
a
8
3
0
4
6
1
3
,
0
x
f
d
4
6
9
5
0
1
,
4
2
.
0
x
6
9
8
0
9
8
d
8
,
0
x
8
b
4
4
f
7
a
f
,
0
x
f
f
f
f
5
b
b
1
,
0
x
8
9
5
c
d
7
b
e
,
4
3
.
0
x
6
b
9
0
1
1
2
2
,
0
x
f
d
9
8
7
1
9
3
,
0
x
a
6
7
9
4
3
8
e
,
0
x
4
9
b
4
0
8
2
1
,
4
4
.
0
x
f
6
1
e
2
5
6
2
,
0
x
c
0
4
0
b
3
4
0
,
0
x
2
6
5
e
5
a
5
1
,
0
x
e
9
b
6
c
7
a
a
,
4
5
.
0
x
d
6
2
f
1
0
5
d
,
0
x
0
2
4
4
1
4
5
3
,
0
x
d
8
a
1
e
6
8
1
,
0
x
e
7
d
3
f
b
c
8
,
4
6
.
0
x
2
1
e
1
c
d
e
6
,
0
x
c
3
3
7
0
7
d
6
,
0
x
f
4
d
5
0
d
8
7
,
0
x
4
5
5
a
1
4
e
d
,
4
7
.
0
x
a
9
e
3
e
9
0
5
,
0
x
f
c
e
f
a
3
f
8
,
0
x
6
7
6
f
0
2
d
9
,
0
x
8
d
2
a
4
c
8
a
,
4
8
.
0
x
f
f
f
a
3
9
4
2
,
0
x
8
7
7
1
f
6
8
1
,
0
x
6
d
9
d
6
1
2
2
,
0
x
f
d
e
5
3
8
0
c
,
4
9
.
0
x
a
4
b
e
e
a
4
4
,
0
x
4
b
d
e
c
f
a
9
,
0
x
f
6
b
b
4
b
6
0
,
0
x
b
e
b
f
b
c
7
0
,
5
0
.
0
x
2
8
9
b
7
e
c
6
,
0
x
e
a
a
1
2
7
f
a
,
0
x
d
4
e
f
3
0
8
5
,
0
x
0
4
8
8
1
d
0
5
,
5
1
.
0
x
d
9
d
4
d
0
3
9
,
0
x
e
6
d
b
9
9
e
5
,
0
x
1
f
a
2
7
c
f
8
,
0
x
c
4
a
c
5
6
6
5
,
5
9
.
6
5
.
6
7
.
6
9
.
7
1
.
8
0
.
5
2
.
0
x
f
4
2
9
2
2
4
4
,
0
x
4
3
2
a
f
f
9
7
,
0
x
a
b
9
4
2
3
a
7
,
0
x
f
c
9
3
a
0
3
9
,
5
3
.
0
x
6
5
5
b
5
9
c
3
,
0
x
8
f
0
c
c
c
9
2
,
0
x
f
f
e
f
f
4
7
d
,
0
x
8
5
8
4
5
d
d
1
,
5
4
.
0
x
6
f
a
8
7
e
4
f
,
0
x
f
e
2
c
e
6
e
0
,
0
x
a
3
0
1
4
3
1
4
,
0
x
4
e
0
8
1
1
a
1
,
5
5
.
0
x
f
7
5
3
7
e
8
2
,
0
x
b
d
3
a
f
2
3
5
,
0
x
2
a
d
7
d
2
b
b
,
0
x
e
b
8
6
d
3
9
1
5
6
.
}
;
5
7
.
u
n
s
i
g
n
e
d
i
n
t
a
,
b
,
c
,
d
;
5
8
.
u
n
s
i
g
n
e
d
i
n
t
h
0
,
h
1
,
h
2
,
h
3
;
6
0
.
/
/
I
n
i
t
i
a
l
i
z
e
v
a
r
i
a
b
l
e
s
-
s
i
m
p
l
e
c
o
u
n
t
i
n
n
i
b
b
l
e
s
:
6
1
.
h
0
=
0
x
6
7
4
5
2
3
0
1
;
6
2
.
h
1
=
0
x
e
f
c
d
a
b
8
9
;
6
3
.
h
2
=
0
x
9
8
b
a
d
c
f
e
;
6
4
.
h
3
=
0
x
1
0
3
2
5
4
7
6
;
6
6
.
c
o
n
s
t
i
n
t
n
e
w
_
l
e
n
=
(
(
(
(
i
n
i
t
i
a
l
_
l
e
n
+
8
)
/
6
4
)
+
1
)
*
6
4
)
-
8
;
6
8
.
m
s
g
[
i
n
i
t
i
a
l
_
l
e
n
]
=
0
x
8
0
;
7
0
.
*
(
u
n
s
i
g
n
e
d
l
o
n
g
l
o
n
g
*
)
(
m
s
g
+
n
e
w
_
l
e
n
)
=
i
n
i
t
i
a
l
_
l
e
n
<
<
3
;
7
2
.
f
o
r
(
i
n
t
o
f
f
s
e
t
=
0
;
o
f
f
s
e
t
<
n
e
w
_
l
e
n
;
o
f
f
s
e
t
+
=
6
4
)
7
3
.
{
7
4
.
u
n
s
i
g
n
e
d
i
n
t
*
w
=
(
u
n
s
i
g
n
e
d
i
n
t
*
)
(
m
s
g
+
o
f
f
s
e
t
)
;
7
5
.
/
/
I
n
i
t
i
a
l
i
z
e
h
a
s
h
v
a
l
u
e
f
o
r
t
h
i
s
c
h
u
n
k
:
7
6
.
a
=
h
0
;
7
7
.
b
=
h
1
;
7
8
.
c
=
h
2
;
7
9
.
d
=
h
3
;
8
1
.
/
/
M
a
i
n
l
o
o
p
:
8
2
.
f
o
r
(
i
n
t
i
=
0
;
i
<
6
4
;
i
+
+
)
8
3
.
{
8
4
.
u
n
s
i
g
n
e
d
i
n
t
f
;
8
5
.
i
n
t
g
;
8
6
.
i
f
(
i
<
1
6
)
8
7
.
{
8
8
.
f
=
(
b
&
c
)
|
(
(
~
b
)
&
d
)
;
8
9
.
g
=
i
;
9
0
.
}
9
1
.
e
l
s
e
i
f
(
i
<
3
2
)
9
2
.
{
9
3
.
f
=
(
d
&
b
)
|
(
(
~
d
)
&
c
)
;
9
4
.
g
=
(
5
*
i
+
1
)
%
1
6
;
9
5
.
}
9
6
.
e
l
s
e
i
f
(
i
<
4
8
)
9
7
.
{
9
8
.
f
=
b
^
c
^
d
;
9
9
.
g
=
(
3
*
i
+
5
)
%
1
6
;
1
0
0
.
}
1
0
1
.
e
l
s
e
1
0
2
.
{
1
0
3
.
f
=
c
^
(
b
|
(
~
d
)
)
;
1
0
4
.
g
=
(
7
*
i
)
%
1
6
;
1
0
5
.
}
1
0
6
.
f
+
=
a
+
k
[
i
]
+
w
[
g
]
;
1
0
7
.
a
=
d
;
1
0
8
.
d
=
c
;
1
1
2
.
1
1
8
.
1
2
1
.
编
译
1
.
生
成
汇
编
代
码
b
.
对
a
r
m
的
汇
编
不
太
熟
悉
,
就
删
掉
了
e
x
i
t
后
面
的
,
可
以
优
化
两
字
节
2
.
汇
编
代
码
生
成
二
进
制
m
i
p
s
6
4
m
i
p
s
6
4
同
a
r
m
6
4
代
码
差
不
多
,
优
化
一
下
就
可
以
直
接
用
了
。
同
样
是
s
i
n
函
数
无
法
实
现
,
k
值
硬
编
码
进
去
,
占
用
了
好
多
字
节
。
3
.
1
6
.
1
0
9
.
c
=
b
;
1
1
0
.
b
=
b
+
L
E
F
T
R
O
T
A
T
E
(
f
,
r
[
i
/
1
6
*
4
+
i
%
4
]
)
;
1
1
1
.
}
1
1
3
.
h
0
+
=
a
;
1
1
4
.
h
1
+
=
b
;
1
1
5
.
h
2
+
=
c
;
1
1
6
.
h
3
+
=
d
;
1
1
7
.
}
1
1
9
.
u
n
s
i
g
n
e
d
i
n
t
d
i
g
e
s
t
[
4
]
=
{
h
0
,
h
1
,
h
2
,
h
3
}
;
1
2
0
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
d
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
&
d
i
g
e
s
t
;
1
2
2
.
c
h
a
r
b
u
f
[
3
2
]
;
1
2
3
.
f
o
r
(
i
n
t
i
=
0
;
i
<
3
2
;
i
+
+
)
1
2
4
.
{
1
2
5
.
c
h
a
r
a
=
(
m
d
[
i
/
2
]
>
>
(
4
*
(
1
-
i
%
2
)
)
)
&
0
x
F
;
1
2
6
.
c
h
a
r
c
=
a
>
=
1
0
?
a
+
(
'
a
'
-
1
0
)
:
a
+
'
0
'
;
1
2
7
.
b
u
f
[
i
]
=
c
;
1
2
8
.
}
1
2
9
.
w
r
i
t
e
(
&
b
u
f
,
3
2
)
;
1
3
0
.
_
e
x
i
t
(
)
;
1
3
1
.
}
a
.
C
F
L
A
G
S
=
"
-
s
t
a
t
i
c
-
O
s
-
W
l
,
-
-
o
m
a
g
i
c
-
f
f
u
n
c
t
i
o
n
-
s
e
c
t
i
o
n
s
-
W
l
,
-
-
g
c
-
s
e
c
t
i
o
n
s
-
n
o
s
t
a
r
t
f
i
l
e
s
-
n
o
d
e
f
a
u
l
t
l
i
b
s
-
n
o
s
t
d
l
i
b
-
n
o
s
t
d
i
n
c
-
f
o
m
i
t
-
f
r
a
m
e
-
p
o
i
n
t
e
r
-
f
n
o
-
s
t
a
c
k
-
p
r
o
t
e
c
t
o
r
-
f
n
o
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
a
s
y
n
c
h
r
o
n
o
u
s
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
u
n
r
o
l
l
-
l
o
o
p
s
-
f
m
e
r
g
e
-
a
l
l
-
c
o
n
s
t
a
n
t
s
-
f
n
o
-
i
d
e
n
t
-
f
i
n
l
i
n
e
-
f
u
n
c
t
i
o
n
s
-
c
a
l
l
e
d
-
o
n
c
e
-
I
.
/
-
f
d
a
t
a
-
s
e
c
t
i
o
n
s
"
g
c
c
$
C
F
L
A
G
S
m
y
_
3
_
a
r
m
.
c
-
S
-
f
f
a
s
t
-
m
a
t
h
-
f
v
e
r
b
o
s
e
-
a
s
m
#
-
f
v
e
r
b
o
s
e
-
a
s
m
a
.
C
F
L
A
G
S
=
"
-
s
t
a
t
i
c
-
O
s
-
W
l
,
-
-
o
m
a
g
i
c
-
f
f
u
n
c
t
i
o
n
-
s
e
c
t
i
o
n
s
-
W
l
,
-
-
g
c
-
s
e
c
t
i
o
n
s
-
n
o
s
t
a
r
t
f
i
l
e
s
-
n
o
d
e
f
a
u
l
t
l
i
b
s
-
n
o
s
t
d
l
i
b
-
n
o
s
t
d
i
n
c
-
W
l
,
-
-
b
u
i
l
d
-
i
d
=
n
o
n
e
-
f
o
m
i
t
-
f
r
a
m
e
-
p
o
i
n
t
e
r
-
f
n
o
-
s
t
a
c
k
-
p
r
o
t
e
c
t
o
r
-
f
n
o
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
a
s
y
n
c
h
r
o
n
o
u
s
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
u
n
r
o
l
l
-
l
o
o
p
s
-
f
m
e
r
g
e
-
a
l
l
-
c
o
n
s
t
a
n
t
s
-
f
n
o
-
i
d
e
n
t
-
f
i
n
l
i
n
e
-
f
u
n
c
t
i
o
n
s
-
c
a
l
l
e
d
-
o
n
c
e
-
I
.
/
"
g
c
c
$
C
F
L
A
G
S
m
y
_
3
_
a
r
m
.
s
-
o
t
e
s
t
_
a
r
m
6
4
o
b
j
d
u
m
p
-
S
t
e
s
t
_
a
r
m
6
4
s
t
r
i
p
-
s
t
e
s
t
_
a
r
m
6
4
l
s
-
l
|
g
r
e
p
t
e
s
t
_
a
r
m
1
.
#
d
e
f
i
n
e
S
Y
S
_
e
x
i
t
5
0
5
8
2
.
#
d
e
f
i
n
e
S
Y
S
_
w
r
i
t
e
5
0
0
1
4
.
s
t
a
t
i
c
v
o
i
d
_
e
x
i
t
(
)
5
.
{
6
.
r
e
g
i
s
t
e
r
u
n
s
i
g
n
e
d
l
o
n
g
_
_
a
0
a
s
m
(
"
$
4
"
)
=
0
;
7
.
_
_
a
s
m
_
_
_
_
v
o
l
a
t
i
l
e
_
_
(
8
.
"
l
i
$
2
,
%
0
n
"
9
.
"
s
y
s
c
a
l
l
n
"
1
0
.
"
.
s
e
t
p
o
p
"
1
1
.
:
1
2
.
:
"
i
"
(
S
Y
S
_
e
x
i
t
)
,
"
r
"
(
_
_
a
0
)
1
3
.
:
"
$
2
"
,
"
$
8
"
,
"
$
9
"
,
"
$
1
0
"
,
"
$
1
1
"
,
"
$
1
2
"
,
"
$
1
3
"
,
"
$
1
4
"
,
"
$
1
5
"
,
"
$
2
4
"
,
1
4
.
"
m
e
m
o
r
y
"
)
;
1
5
.
}
1
7
.
s
t
a
t
i
c
i
n
l
i
n
e
i
n
t
_
w
r
i
t
e
(
c
h
a
r
*
b
u
f
,
i
n
t
l
e
n
)
1
8
.
{
2
4
.
3
4
.
4
0
.
6
0
.
6
6
.
6
8
.
7
0
.
7
2
.
7
5
.
1
9
.
r
e
g
i
s
t
e
r
u
n
s
i
g
n
e
d
l
o
n
g
_
_
a
0
a
s
m
(
"
$
4
"
)
=
(
u
n
s
i
g
n
e
d
l
o
n
g
)
1
;
2
0
.
r
e
g
i
s
t
e
r
u
n
s
i
g
n
e
d
l
o
n
g
_
_
a
1
a
s
m
(
"
$
5
"
)
=
(
u
n
s
i
g
n
e
d
l
o
n
g
)
b
u
f
;
2
1
.
r
e
g
i
s
t
e
r
u
n
s
i
g
n
e
d
l
o
n
g
_
_
a
2
a
s
m
(
"
$
6
"
)
=
(
u
n
s
i
g
n
e
d
l
o
n
g
)
l
e
n
;
2
2
.
r
e
g
i
s
t
e
r
u
n
s
i
g
n
e
d
l
o
n
g
_
_
a
3
a
s
m
(
"
$
7
"
)
;
2
3
.
u
n
s
i
g
n
e
d
l
o
n
g
_
_
v
0
;
2
5
.
_
_
a
s
m
_
_
_
_
v
o
l
a
t
i
l
e
_
_
(
2
6
.
"
l
i
$
2
,
%
2
n
"
2
7
.
"
s
y
s
c
a
l
l
n
"
2
8
.
"
m
o
v
e
%
0
,
$
2
n
"
2
9
.
:
"
=
r
"
(
_
_
v
0
)
,
"
=
r
"
(
_
_
a
3
)
3
0
.
:
"
i
"
(
S
Y
S
_
w
r
i
t
e
)
,
"
r
"
(
_
_
a
0
)
,
"
r
"
(
_
_
a
1
)
,
"
r
"
(
_
_
a
2
)
3
1
.
:
"
$
2
"
,
"
$
8
"
,
"
$
9
"
,
"
$
1
0
"
,
"
$
1
1
"
,
"
$
1
2
"
,
"
$
1
3
"
,
"
$
1
4
"
,
"
$
1
5
"
,
"
$
2
4
"
,
3
2
.
"
m
e
m
o
r
y
"
)
;
3
3
.
}
3
5
.
#
d
e
f
i
n
e
L
E
F
T
R
O
T
A
T
E
(
x
,
c
)
(
(
(
x
)
<
<
(
c
)
)
|
(
(
x
)
>
>
(
3
2
-
(
c
)
)
)
)
3
6
.
v
o
i
d
_
_
s
t
a
r
t
(
v
o
i
d
)
3
7
.
{
3
8
.
c
o
n
s
t
s
h
o
r
t
i
n
i
t
i
a
l
_
l
e
n
=
1
0
5
6
;
3
9
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
s
g
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
0
x
1
2
0
0
0
0
0
0
0
;
4
1
.
s
t
a
t
i
c
c
o
n
s
t
c
h
a
r
r
[
]
=
{
7
,
1
2
,
1
7
,
2
2
,
5
,
9
,
1
4
,
2
0
,
4
,
1
1
,
1
6
,
2
3
,
6
,
1
0
,
1
5
,
2
1
}
;
4
2
.
s
t
a
t
i
c
c
o
n
s
t
u
n
s
i
g
n
e
d
i
n
t
k
[
6
4
]
=
{
4
3
.
0
x
d
7
6
a
a
4
7
8
,
0
x
e
8
c
7
b
7
5
6
,
0
x
2
4
2
0
7
0
d
b
,
0
x
c
1
b
d
c
e
e
e
,
4
4
.
0
x
f
5
7
c
0
f
a
f
,
0
x
4
7
8
7
c
6
2
a
,
0
x
a
8
3
0
4
6
1
3
,
0
x
f
d
4
6
9
5
0
1
,
4
5
.
0
x
6
9
8
0
9
8
d
8
,
0
x
8
b
4
4
f
7
a
f
,
0
x
f
f
f
f
5
b
b
1
,
0
x
8
9
5
c
d
7
b
e
,
4
6
.
0
x
6
b
9
0
1
1
2
2
,
0
x
f
d
9
8
7
1
9
3
,
0
x
a
6
7
9
4
3
8
e
,
0
x
4
9
b
4
0
8
2
1
,
4
7
.
0
x
f
6
1
e
2
5
6
2
,
0
x
c
0
4
0
b
3
4
0
,
0
x
2
6
5
e
5
a
5
1
,
0
x
e
9
b
6
c
7
a
a
,
4
8
.
0
x
d
6
2
f
1
0
5
d
,
0
x
0
2
4
4
1
4
5
3
,
0
x
d
8
a
1
e
6
8
1
,
0
x
e
7
d
3
f
b
c
8
,
4
9
.
0
x
2
1
e
1
c
d
e
6
,
0
x
c
3
3
7
0
7
d
6
,
0
x
f
4
d
5
0
d
8
7
,
0
x
4
5
5
a
1
4
e
d
,
5
0
.
0
x
a
9
e
3
e
9
0
5
,
0
x
f
c
e
f
a
3
f
8
,
0
x
6
7
6
f
0
2
d
9
,
0
x
8
d
2
a
4
c
8
a
,
5
1
.
0
x
f
f
f
a
3
9
4
2
,
0
x
8
7
7
1
f
6
8
1
,
0
x
6
d
9
d
6
1
2
2
,
0
x
f
d
e
5
3
8
0
c
,
5
2
.
0
x
a
4
b
e
e
a
4
4
,
0
x
4
b
d
e
c
f
a
9
,
0
x
f
6
b
b
4
b
6
0
,
0
x
b
e
b
f
b
c
7
0
,
5
3
.
0
x
2
8
9
b
7
e
c
6
,
0
x
e
a
a
1
2
7
f
a
,
0
x
d
4
e
f
3
0
8
5
,
0
x
0
4
8
8
1
d
0
5
,
5
4
.
0
x
d
9
d
4
d
0
3
9
,
0
x
e
6
d
b
9
9
e
5
,
0
x
1
f
a
2
7
c
f
8
,
0
x
c
4
a
c
5
6
6
5
,
5
5
.
0
x
f
4
2
9
2
2
4
4
,
0
x
4
3
2
a
f
f
9
7
,
0
x
a
b
9
4
2
3
a
7
,
0
x
f
c
9
3
a
0
3
9
,
5
6
.
0
x
6
5
5
b
5
9
c
3
,
0
x
8
f
0
c
c
c
9
2
,
0
x
f
f
e
f
f
4
7
d
,
0
x
8
5
8
4
5
d
d
1
,
5
7
.
0
x
6
f
a
8
7
e
4
f
,
0
x
f
e
2
c
e
6
e
0
,
0
x
a
3
0
1
4
3
1
4
,
0
x
4
e
0
8
1
1
a
1
,
5
8
.
0
x
f
7
5
3
7
e
8
2
,
0
x
b
d
3
a
f
2
3
5
,
0
x
2
a
d
7
d
2
b
b
,
0
x
e
b
8
6
d
3
9
1
}
;
5
9
.
u
n
s
i
g
n
e
d
i
n
t
a
,
b
,
c
,
d
;
6
1
.
/
/
I
n
i
t
i
a
l
i
z
e
v
a
r
i
a
b
l
e
s
-
s
i
m
p
l
e
c
o
u
n
t
i
n
n
i
b
b
l
e
s
:
6
2
.
/
/
h
0
=
0
x
6
7
4
5
2
3
0
1
;
6
3
.
/
/
h
1
=
0
x
e
f
c
d
a
b
8
9
;
6
4
.
/
/
h
2
=
0
x
9
8
b
a
d
c
f
e
;
6
5
.
/
/
h
3
=
0
x
1
0
3
2
5
4
7
6
;
6
7
.
s
t
a
t
i
c
u
n
s
i
g
n
e
d
i
n
t
h
a
s
h
[
4
]
=
{
1
,
2
,
3
,
4
}
;
6
9
.
c
o
n
s
t
i
n
t
n
e
w
_
l
e
n
=
(
(
(
(
i
n
i
t
i
a
l
_
l
e
n
+
8
)
/
6
4
)
+
1
)
*
6
4
)
-
8
;
7
1
.
m
s
g
[
i
n
i
t
i
a
l
_
l
e
n
]
=
0
x
8
0
;
7
3
.
*
(
u
n
s
i
g
n
e
d
l
o
n
g
l
o
n
g
*
)
(
m
s
g
+
n
e
w
_
l
e
n
)
=
i
n
i
t
i
a
l
_
l
e
n
<
<
3
;
7
4
.
i
n
t
o
f
f
s
e
t
=
1
2
3
3
;
7
6
.
u
n
s
i
g
n
e
d
i
n
t
*
w
=
(
u
n
s
i
g
n
e
d
i
n
t
*
)
(
m
s
g
+
o
f
f
s
e
t
)
;
7
7
.
/
/
I
n
i
t
i
a
l
i
z
e
h
a
s
h
v
a
l
u
e
f
o
r
t
h
i
s
c
h
u
n
k
:
8
2
.
1
1
4
.
1
1
9
.
编
译
7
8
.
a
=
h
a
s
h
[
0
]
;
7
9
.
b
=
h
a
s
h
[
1
]
;
8
0
.
c
=
h
a
s
h
[
2
]
;
8
1
.
d
=
h
a
s
h
[
3
]
;
8
3
.
/
/
M
a
i
n
l
o
o
p
:
8
4
.
f
o
r
(
i
n
t
i
=
0
;
i
<
6
4
;
i
+
+
)
8
5
.
{
8
6
.
u
n
s
i
g
n
e
d
i
n
t
f
;
8
7
.
i
n
t
g
;
8
8
.
i
f
(
i
<
1
6
)
8
9
.
{
9
0
.
f
=
(
b
&
c
)
|
(
(
~
b
)
&
d
)
;
9
1
.
g
=
i
;
9
2
.
}
9
3
.
e
l
s
e
i
f
(
i
<
3
2
)
9
4
.
{
9
5
.
f
=
(
d
&
b
)
|
(
(
~
d
)
&
c
)
;
9
6
.
g
=
(
5
*
i
+
1
)
%
1
6
;
9
7
.
}
9
8
.
e
l
s
e
i
f
(
i
<
4
8
)
9
9
.
{
1
0
0
.
f
=
b
^
c
^
d
;
1
0
1
.
g
=
(
3
*
i
+
5
)
%
1
6
;
1
0
2
.
}
1
0
3
.
e
l
s
e
1
0
4
.
{
1
0
5
.
f
=
c
^
(
b
|
(
~
d
)
)
;
1
0
6
.
g
=
(
7
*
i
)
%
1
6
;
1
0
7
.
}
1
0
8
.
f
+
=
a
+
k
[
i
]
+
w
[
g
]
;
1
0
9
.
a
=
d
;
1
1
0
.
d
=
c
;
1
1
1
.
c
=
b
;
1
1
2
.
b
=
b
+
L
E
F
T
R
O
T
A
T
E
(
f
,
r
[
i
/
1
6
*
4
+
i
%
4
]
)
;
1
1
3
.
}
1
1
5
.
h
a
s
h
[
0
]
+
=
a
;
1
1
6
.
h
a
s
h
[
1
]
+
=
b
;
1
1
7
.
h
a
s
h
[
2
]
+
=
c
;
1
1
8
.
h
a
s
h
[
3
]
+
=
d
;
1
2
0
.
/
/
u
n
s
i
g
n
e
d
i
n
t
d
i
g
e
s
t
[
]
=
{
h
0
,
h
1
,
h
2
,
h
3
}
;
1
2
1
.
u
n
s
i
g
n
e
d
c
h
a
r
*
m
d
=
(
u
n
s
i
g
n
e
d
c
h
a
r
*
)
&
h
a
s
h
;
1
2
2
.
f
o
r
(
i
n
t
i
=
0
;
i
<
3
2
;
i
+
+
)
1
2
3
.
{
1
2
4
.
c
h
a
r
a
=
(
m
d
[
i
/
2
]
>
>
(
4
*
(
1
-
i
%
2
)
)
)
&
0
x
F
;
1
2
5
.
c
h
a
r
c
=
a
>
=
1
0
?
a
+
(
'
a
'
-
1
0
)
:
a
+
'
0
'
;
1
2
6
.
_
w
r
i
t
e
(
&
c
,
1
)
;
1
2
7
.
}
1
2
8
.
_
e
x
i
t
(
)
;
1
2
9
.
}
1
.
C
F
L
A
G
S
=
"
-
s
t
a
t
i
c
-
O
s
-
W
l
,
-
-
o
m
a
g
i
c
-
f
f
u
n
c
t
i
o
n
-
s
e
c
t
i
o
n
s
-
f
f
a
s
t
-
m
a
t
h
-
W
l
,
-
-
b
u
i
l
d
-
i
d
=
n
o
n
e
-
W
l
,
-
-
g
c
-
s
e
c
t
i
o
n
s
-
n
o
s
t
a
r
t
f
i
l
e
s
-
n
o
d
e
f
a
u
l
t
l
i
b
s
-
n
o
s
t
d
l
i
b
-
n
o
s
t
d
i
n
c
-
f
o
m
i
t
-
f
r
a
m
e
-
p
o
i
n
t
e
r
-
f
n
o
-
s
t
a
c
k
-
p
r
o
t
e
c
t
o
r
-
f
n
o
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
a
s
y
n
c
h
r
o
n
o
u
s
-
u
n
w
i
n
d
-
t
a
b
l
e
s
-
f
n
o
-
u
n
r
o
l
l
-
l
o
o
p
s
-
f
m
e
r
g
e
-
a
l
l
-
c
o
n
s
t
a
n
t
s
-
f
n
o
-
i
d
e
n
t
-
f
i
n
l
i
n
e
-
f
u
n
c
t
i
o
n
s
-
c
a
l
l
e
d
-
o
n
c
e
-
I
.
/
-
f
d
a
t
a
-
s
e
c
t
i
o
n
s
"
回复
举报
上一个主题
下一个主题
高级模式
B
Color
Image
Link
Quote
Code
Smilies
您需要登录后才可以回帖
登录
|
立即注册
本版积分规则
发表回复
!disable!!post_parseurl!
使用Markdown编辑器编辑
使用富文本编辑器编辑
回帖后跳转到最后一页