Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
alex037yang
OpenXG-RAN
Commits
0316386c
Commit
0316386c
authored
Jan 19, 2018
by
Hongzhi Wang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt TBS for msg3
parent
f0394783
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
14 deletions
+14
-14
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
+10
-10
openair1/PHY/LTE_TRANSPORT/dlsch_tbs_full.h
openair1/PHY/LTE_TRANSPORT/dlsch_tbs_full.h
+4
-4
No files found.
openair1/PHY/LTE_TRANSPORT/dlsch_decoding.c
View file @
0316386c
...
...
@@ -197,8 +197,8 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
t_nrLDPC_dec_params
*
p_decParams
=
&
decParams
;
t_nrLDPC_time_stats
procTime
;
t_nrLDPC_time_stats
*
p_procTime
=&
procTime
;
int16_t
z
[
68
*
128
];
int8_t
l
[
68
*
128
];
int16_t
z
[
68
*
384
];
int8_t
l
[
68
*
384
];
//__m128i l;
int16_t
inv_d
[
68
*
384
];
int16_t
*
p_invd
=&
inv_d
;
...
...
@@ -434,8 +434,8 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
(
uint8_t
*
)
&
dummy_w
[
r
][
0
],
(
r
==
0
)
?
harq_process
->
F
:
0
);
#ifdef DEBUG_DLSCH_DECODING
LOG_
D
(
PHY
,
"HARQ_PID %d Rate Matching Segment %d (coded bits %d,unpunctured/repeated bits %d, TBS %d, mod_order %d, nb_rb %d, Nl %d, rv %d, round %d)...
\n
"
,
//
#ifdef DEBUG_DLSCH_DECODING
LOG_
I
(
PHY
,
"HARQ_PID %d Rate Matching Segment %d (coded bits %d,unpunctured/repeated bits %d, TBS %d, mod_order %d, nb_rb %d, Nl %d, rv %d, round %d)...
\n
"
,
harq_pid
,
r
,
G
,
Kr
*
3
,
harq_process
->
TBS
,
...
...
@@ -444,7 +444,7 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
harq_process
->
Nl
,
harq_process
->
rvidx
,
harq_process
->
round
);
#endif
//
#endif
#ifdef DEBUG_DLSCH_DECODING
printf
(
" in decoding dlsch->harq_processes[harq_pid]->rvidx = %d
\n
"
,
dlsch
->
harq_processes
[
harq_pid
]
->
rvidx
);
...
...
@@ -545,11 +545,11 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
printf
(
"harq process dr iteration %d
\n
"
,
p_decParams
->
numMaxIter
);
//66*p_decParams->Z
if
(
A
<
1000
){
//
if (A < 1000){
for
(
int
cnt
=
0
;
cnt
<
66
*
p_decParams
->
Z
;
cnt
++
){
inv_d
[
cnt
]
=
(
-
1
)
*
harq_process
->
d
[
r
][
96
+
cnt
];
}
}
//
}
for
(
int
cnt
=
0
;
cnt
<
8
;
cnt
++
){
printf
(
"dr %d inv_d %d
\n
"
,
harq_process
->
d
[
r
][
96
+
cnt
],
inv_d
[
cnt
]);
...
...
@@ -587,19 +587,19 @@ uint32_t dlsch_decoding(PHY_VARS_UE *phy_vars_ue,
memset
(
pv
,
0
,
2
*
p_decParams
->
Z
*
sizeof
(
int16_t
));
//memset(pl,0,2*p_decParams->Z*sizeof(int8_t));
if
(
A
<
1000
){
//
if (A < 1000){
for
(
i
=
2
*
p_decParams
->
Z
/
8
,
j
=
0
;
i
<
(
68
*
p_decParams
->
Z
/
8
+
1
);
i
++
,
j
++
)
{
pv
[
i
]
=
_mm_loadu_si128
((
__m128i
*
)(
&
inv_d
[
8
*
j
]));
}
}
/*
}
else{
for (i=2*p_decParams->Z/8, j = 0; i < (68*p_decParams->Z/8+1); i++, j++)
{
pv[i]= _mm_loadu_si128((__m128i*)&harq_process->d[r][96+8*j]);
}
}
}
*/
for
(
i
=
0
,
j
=
0
;
j
<
(
68
*
p_decParams
->
Z
/
16
);
i
+=
2
,
j
++
)
{
//printf("mm packs i %d j %d\n", i, j);
...
...
openair1/PHY/LTE_TRANSPORT/dlsch_tbs_full.h
View file @
0316386c
...
...
@@ -24,14 +24,14 @@
/** \brief "Transport block size table"
* (Table 7.1.7.2.1-1 in 3GPP TS 36.213 V8.6.0)
*/
unsigned
int
TBStable
[
TBStable_rowCnt
][
110
]
=
{{
16
,
32
,
56
,
88
,
120
,
152
,
176
,
208
,
224
,
256
,
288
,
328
,
344
,
376
,
392
,
424
,
456
,
488
,
504
,
536
,
568
,
600
,
616
,
648
,
680
,
712
,
744
,
776
,
776
,
808
,
840
,
872
,
904
,
936
,
968
,
1000
,
1032
,
1032
,
1064
,
1096
,
1128
,
1160
,
1192
,
1224
,
1256
,
1256
,
1288
,
1320
,
1352
,
1384
,
1416
,
1416
,
1480
,
1480
,
1544
,
1544
,
1608
,
1608
,
1608
,
1672
,
1672
,
1736
,
1736
,
1800
,
1800
,
1800
,
1864
,
1864
,
1928
,
1928
,
1992
,
1992
,
2024
,
2088
,
2088
,
2088
,
2152
,
2152
,
2216
,
2216
,
2280
,
2280
,
2280
,
2344
,
2344
,
2408
,
2408
,
2472
,
2472
,
2536
,
2536
,
2536
,
2600
,
2600
,
2664
,
2664
,
2728
,
2728
,
2728
,
2792
,
2792
,
2856
,
2856
,
2856
,
2984
,
2984
,
2984
,
2984
,
2984
,
3112
},
unsigned
int
TBStable
[
TBStable_rowCnt
][
110
]
=
{{
16
,
32
,
152
,
88
,
120
,
152
,
176
,
208
,
224
,
256
,
288
,
328
,
344
,
376
,
392
,
424
,
456
,
488
,
504
,
536
,
568
,
600
,
616
,
648
,
680
,
712
,
744
,
776
,
776
,
808
,
840
,
872
,
904
,
936
,
968
,
1000
,
1032
,
1032
,
1064
,
1096
,
1128
,
1160
,
1192
,
1224
,
1256
,
1256
,
1288
,
1320
,
1352
,
1384
,
1416
,
1416
,
1480
,
1480
,
1544
,
1544
,
1608
,
1608
,
1608
,
1672
,
1672
,
1736
,
1736
,
1800
,
1800
,
1800
,
1864
,
1864
,
1928
,
1928
,
1992
,
1992
,
2024
,
2088
,
2088
,
2088
,
2152
,
2152
,
2216
,
2216
,
2280
,
2280
,
2280
,
2344
,
2344
,
2408
,
2408
,
2472
,
2472
,
2536
,
2536
,
2536
,
2600
,
2600
,
2664
,
2664
,
2728
,
2728
,
2728
,
2792
,
2792
,
2856
,
2856
,
2856
,
2984
,
2984
,
2984
,
2984
,
2984
,
3112
},
{
24
,
56
,
88
,
144
,
176
,
208
,
224
,
256
,
328
,
344
,
376
,
424
,
456
,
488
,
520
,
568
,
600
,
632
,
680
,
712
,
744
,
776
,
808
,
872
,
904
,
936
,
968
,
1000
,
1032
,
1064
,
1128
,
1160
,
1192
,
1224
,
1256
,
1288
,
1352
,
1384
,
1416
,
1416
,
1480
,
1544
,
1544
,
1608
,
1608
,
1672
,
1736
,
1736
,
1800
,
1800
,
1864
,
1864
,
1928
,
1992
,
1992
,
2024
,
2088
,
2088
,
2152
,
2152
,
2216
,
2280
,
2280
,
2344
,
2344
,
2408
,
2472
,
2472
,
2536
,
2536
,
2600
,
2600
,
2664
,
2728
,
2728
,
2792
,
2792
,
2856
,
2856
,
2856
,
2984
,
2984
,
2984
,
3112
,
3112
,
3112
,
3240
,
3240
,
3240
,
3240
,
3368
,
3368
,
3368
,
3496
,
3496
,
3496
,
3496
,
3624
,
3624
,
3624
,
3752
,
3752
,
3752
,
3752
,
3880
,
3880
,
3880
,
4008
,
4008
,
4008
},
{
32
,
72
,
152
,
176
,
208
,
256
,
296
,
328
,
376
,
424
,
472
,
520
,
568
,
616
,
648
,
696
,
744
,
776
,
840
,
872
,
936
,
968
,
1000
,
1064
,
1096
,
1160
,
1192
,
1256
,
1288
,
1320
,
1384
,
1416
,
1480
,
1544
,
1544
,
1608
,
1672
,
1672
,
1736
,
1800
,
1800
,
1864
,
1928
,
1992
,
2024
,
2088
,
2088
,
2152
,
2216
,
2216
,
2280
,
2344
,
2344
,
2408
,
2472
,
2536
,
2536
,
2600
,
2664
,
2664
,
2728
,
2792
,
2856
,
2856
,
2856
,
2984
,
2984
,
3112
,
3112
,
3112
,
3240
,
3240
,
3240
,
3368
,
3368
,
3368
,
3496
,
3496
,
3496
,
3624
,
3624
,
3624
,
3752
,
3752
,
3880
,
3880
,
3880
,
4008
,
4008
,
4008
,
4136
,
4136
,
4136
,
4264
,
4264
,
4264
,
4392
,
4392
,
4392
,
4584
,
4584
,
4584
,
4584
,
4584
,
4776
,
4776
,
4776
,
4776
,
4968
,
4968
},
{
40
,
104
,
176
,
208
,
256
,
328
,
392
,
440
,
504
,
568
,
616
,
680
,
744
,
808
,
872
,
904
,
968
,
1032
,
1096
,
1160
,
1224
,
1256
,
1320
,
1384
,
1416
,
1480
,
1544
,
1608
,
1672
,
1736
,
1800
,
1864
,
1928
,
1992
,
2024
,
2088
,
2152
,
2216
,
2280
,
2344
,
2408
,
2472
,
2536
,
2536
,
2600
,
2664
,
2728
,
2792
,
2856
,
2856
,
2984
,
2984
,
3112
,
3112
,
3240
,
3240
,
3368
,
3368
,
3496
,
3496
,
3624
,
3624
,
3624
,
3752
,
3752
,
3880
,
3880
,
4008
,
4008
,
4136
,
4136
,
4264
,
4264
,
4392
,
4392
,
4392
,
4584
,
4584
,
4584
,
4776
,
4776
,
4776
,
4776
,
4968
,
4968
,
4968
,
5160
,
5160
,
5160
,
5352
,
5352
,
5352
,
5352
,
5544
,
5544
,
5544
,
5736
,
5736
,
5736
,
5736
,
5992
,
5992
,
5992
,
5992
,
6200
,
6200
,
6200
,
6200
,
6456
,
6456
},
{
56
,
120
,
208
,
256
,
328
,
408
,
488
,
552
,
632
,
696
,
776
,
840
,
904
,
1000
,
1064
,
1128
,
1192
,
1288
,
1352
,
1416
,
1480
,
1544
,
1608
,
1736
,
1800
,
1864
,
1928
,
1992
,
2088
,
2152
,
2216
,
2280
,
2344
,
2408
,
2472
,
2600
,
2664
,
2728
,
2792
,
2856
,
2984
,
2984
,
3112
,
3112
,
3240
,
3240
,
3368
,
3496
,
3496
,
3624
,
3624
,
3752
,
3752
,
3880
,
4008
,
4008
,
4136
,
4136
,
4264
,
4264
,
4392
,
4392
,
4584
,
4584
,
4584
,
4776
,
4776
,
4968
,
4968
,
4968
,
5160
,
5160
,
5160
,
5352
,
5352
,
5544
,
5544
,
5544
,
5736
,
5736
,
5736
,
5992
,
5992
,
5992
,
5992
,
6200
,
6200
,
6200
,
6456
,
6456
,
6456
,
6456
,
6712
,
6712
,
6712
,
6968
,
6968
,
6968
,
6968
,
7224
,
7224
,
7224
,
7480
,
7480
,
7480
,
7480
,
7736
,
7736
,
7736
,
7992
},
{
56
,
120
,
208
,
256
,
328
,
408
,
488
,
552
,
632
,
696
,
776
,
840
,
904
,
1000
,
1064
,
1128
,
1192
,
1288
,
1352
,
1416
,
1480
,
1544
,
1608
,
1736
,
1800
,
1864
,
1928
,
1992
,
2088
,
2152
,
2216
,
2280
,
2344
,
2408
,
2472
,
2600
,
2664
,
2728
,
2792
,
2856
,
2984
,
2984
,
3112
,
3112
,
3240
,
3240
,
3368
,
3496
,
3496
,
3624
,
3624
,
3752
,
3752
,
3880
,
4008
,
4008
,
4136
,
4136
,
4264
,
4264
,
4392
,
4392
,
4584
,
4584
,
4584
,
4776
,
4776
,
4968
,
4968
,
4968
,
5160
,
5160
,
5160
,
5352
,
5352
,
5544
,
5544
,
5544
,
5736
,
5736
,
5736
,
5992
,
5992
,
5992
,
5992
,
6200
,
6200
,
6200
,
6456
,
6456
,
6456
,
6456
,
6712
,
6712
,
6712
,
6968
,
6968
,
6968
,
6968
,
5608
,
7224
,
7224
,
7480
,
7480
,
7480
,
7480
,
7736
,
7736
,
7736
,
7992
},
{
72
,
144
,
224
,
328
,
424
,
504
,
600
,
680
,
776
,
872
,
968
,
1032
,
1128
,
1224
,
1320
,
1384
,
1480
,
1544
,
1672
,
1736
,
1864
,
1928
,
2024
,
2088
,
2216
,
2280
,
2344
,
2472
,
2536
,
2664
,
2728
,
2792
,
2856
,
2984
,
3112
,
3112
,
3240
,
3368
,
3496
,
3496
,
3624
,
3752
,
3752
,
3880
,
4008
,
4008
,
4136
,
4264
,
4392
,
4392
,
4584
,
4584
,
4776
,
4776
,
4776
,
4968
,
4968
,
5160
,
5160
,
5352
,
5352
,
5544
,
5544
,
5736
,
5736
,
5736
,
5992
,
5992
,
5992
,
6200
,
6200
,
6200
,
6456
,
6456
,
6712
,
6712
,
6712
,
6968
,
6968
,
6968
,
7224
,
7224
,
7224
,
7480
,
7480
,
7480
,
7736
,
7736
,
7736
,
7992
,
7992
,
7992
,
8248
,
8248
,
8248
,
8504
,
8504
,
8760
,
8760
,
8760
,
8760
,
9144
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9528
,
9528
},
{
328
,
176
,
262
,
392
,
504
,
600
,
712
,
808
,
936
,
1032
,
1128
,
1224
,
1352
,
1480
,
1544
,
1672
,
1736
,
1864
,
1992
,
2088
,
2216
,
2280
,
2408
,
2472
,
2600
,
2728
,
2792
,
2984
,
2984
,
3112
,
3240
,
3368
,
3496
,
3496
,
3624
,
3752
,
3880
,
4008
,
4136
,
4136
,
4264
,
4392
,
4584
,
4584
,
4776
,
4776
,
4968
,
4968
,
5160
,
5160
,
5352
,
5352
,
5544
,
5736
,
5736
,
5992
,
5992
,
5992
,
6200
,
6200
,
6456
,
6456
,
6456
,
6712
,
6712
,
6968
,
6968
,
6968
,
7224
,
7224
,
7480
,
7480
,
7736
,
7736
,
7736
,
7992
,
7992
,
8248
,
8248
,
8248
,
8504
,
8504
,
8760
,
8760
,
8760
,
9144
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9528
,
9912
,
9912
,
9912
,
10296
,
10296
,
10296
,
10488
,
10680
,
10680
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11448
},
{
104
,
224
,
328
,
472
,
584
,
712
,
840
,
968
,
1096
,
1224
,
1320
,
1480
,
1608
,
1672
,
1800
,
1928
,
2088
,
2216
,
2344
,
2472
,
2536
,
2664
,
2792
,
2984
,
3112
,
3240
,
3368
,
3368
,
3496
,
3624
,
3752
,
3880
,
4008
,
4136
,
4264
,
4392
,
4584
,
4584
,
4776
,
4968
,
4968
,
5160
,
5352
,
5352
,
5544
,
5736
,
5736
,
5992
,
5992
,
6200
,
6200
,
6456
,
6456
,
6712
,
6712
,
6712
,
6968
,
6968
,
7224
,
7224
,
7480
,
7480
,
7736
,
7736
,
7992
,
7992
,
8248
,
8248
,
8504
,
8504
,
8760
,
8760
,
8760
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9912
,
9912
,
9912
,
10296
,
10296
,
10296
,
10680
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11448
,
11448
,
11832
,
11832
,
11832
,
12216
,
12216
,
12216
,
12576
,
12576
,
12576
,
12960
,
12960
,
12960
,
12960
,
13536
,
13536
},
{
328
,
176
,
328
,
392
,
504
,
600
,
712
,
808
,
936
,
1032
,
1128
,
1224
,
1352
,
1480
,
1544
,
1672
,
1736
,
1864
,
1992
,
2088
,
2216
,
2280
,
2408
,
2472
,
2600
,
2728
,
2792
,
2984
,
2984
,
3112
,
3240
,
3368
,
3496
,
3496
,
3624
,
3752
,
3880
,
4008
,
4136
,
4136
,
4264
,
4392
,
4584
,
4584
,
4776
,
4776
,
4968
,
4968
,
5160
,
5160
,
5352
,
5352
,
5544
,
5736
,
5736
,
5992
,
5992
,
5992
,
6200
,
6200
,
6456
,
6456
,
6456
,
6712
,
6712
,
6968
,
6968
,
6968
,
7224
,
7224
,
7480
,
7480
,
7736
,
7736
,
7736
,
7992
,
7992
,
8248
,
8248
,
8248
,
8504
,
8504
,
8760
,
8760
,
8760
,
9144
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9528
,
9912
,
9912
,
9912
,
10296
,
10296
,
10296
,
11192
,
10680
,
10680
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11448
},
{
104
,
224
,
328
,
680
,
584
,
712
,
840
,
968
,
1096
,
1224
,
1320
,
1480
,
1608
,
1672
,
1800
,
1928
,
2088
,
2216
,
2344
,
2472
,
2536
,
2664
,
2792
,
2984
,
3112
,
3240
,
3368
,
3368
,
3496
,
3624
,
3752
,
3880
,
4008
,
4136
,
4264
,
4392
,
4584
,
4584
,
4776
,
4968
,
4968
,
5160
,
5352
,
5352
,
5544
,
5736
,
5736
,
5992
,
5992
,
6200
,
6200
,
6456
,
6456
,
6712
,
6712
,
6712
,
6968
,
6968
,
7224
,
7224
,
7480
,
7480
,
7736
,
7736
,
7992
,
7992
,
8248
,
8248
,
8504
,
8504
,
8760
,
8760
,
8760
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9912
,
9912
,
9912
,
10296
,
10296
,
10296
,
10680
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11448
,
11448
,
11832
,
11832
,
11832
,
12216
,
12216
,
12216
,
12576
,
12576
,
12576
,
12960
,
12960
,
12960
,
12960
,
13536
,
13536
},
{
120
,
256
,
392
,
536
,
680
,
808
,
968
,
1096
,
1256
,
1384
,
1544
,
1672
,
1800
,
1928
,
2088
,
2216
,
2344
,
2536
,
2664
,
2792
,
2984
,
3112
,
3240
,
3368
,
3496
,
3624
,
3752
,
3880
,
4008
,
4264
,
4392
,
4584
,
4584
,
4776
,
4968
,
4968
,
5160
,
5352
,
5544
,
5544
,
5736
,
5992
,
5992
,
6200
,
6200
,
6456
,
6456
,
6712
,
6968
,
6968
,
7224
,
7224
,
7480
,
7480
,
7736
,
7736
,
7992
,
7992
,
8248
,
8504
,
8504
,
8760
,
8760
,
9144
,
9144
,
9144
,
9528
,
9528
,
9528
,
9912
,
9912
,
9912
,
10296
,
10296
,
10680
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11448
,
11832
,
11832
,
12216
,
12216
,
12216
,
12576
,
12576
,
12576
,
12960
,
12960
,
12960
,
13536
,
13536
,
13536
,
13536
,
14112
,
14112
,
14112
,
14112
,
14688
,
14688
,
14688
,
14688
,
15264
,
15264
,
15264
,
15264
},
{
136
,
296
,
456
,
616
,
776
,
936
,
1096
,
1256
,
1416
,
1544
,
1736
,
1864
,
2024
,
2216
,
2344
,
2536
,
2664
,
2856
,
2984
,
3112
,
3368
,
3496
,
3624
,
3752
,
4008
,
4136
,
4264
,
4392
,
4584
,
4776
,
4968
,
5160
,
5160
,
5352
,
5544
,
5736
,
5736
,
5992
,
6200
,
6200
,
6456
,
6712
,
6712
,
6968
,
6968
,
7224
,
7480
,
7480
,
7736
,
7992
,
7992
,
8248
,
8248
,
8504
,
8760
,
8760
,
9144
,
9144
,
9144
,
9528
,
9528
,
9912
,
9912
,
10296
,
10296
,
10296
,
10680
,
10680
,
11064
,
11064
,
11064
,
11448
,
11448
,
11832
,
11832
,
11832
,
12216
,
12216
,
12576
,
12576
,
12960
,
12960
,
12960
,
13536
,
13536
,
13536
,
13536
,
14112
,
14112
,
14112
,
14112
,
14688
,
14688
,
14688
,
15264
,
15264
,
15264
,
15264
,
15840
,
15840
,
15840
,
16416
,
16416
,
16416
,
16416
,
16992
,
16992
,
16992
,
16992
,
17568
},
{
144
,
328
,
504
,
680
,
872
,
1032
,
1224
,
1384
,
1544
,
1736
,
1928
,
2088
,
2280
,
2472
,
2664
,
2792
,
2984
,
3112
,
3368
,
3496
,
3752
,
3880
,
4008
,
4264
,
4392
,
4584
,
4776
,
4968
,
5160
,
5352
,
5544
,
5736
,
5736
,
5992
,
6200
,
6200
,
6456
,
6712
,
6712
,
6968
,
7224
,
7480
,
7480
,
7736
,
7992
,
7992
,
8248
,
8504
,
8504
,
8760
,
9144
,
9144
,
9144
,
9528
,
9528
,
9912
,
9912
,
10296
,
10296
,
10680
,
10680
,
11064
,
11064
,
11448
,
11448
,
11448
,
11832
,
11832
,
12216
,
12216
,
12576
,
12576
,
12960
,
12960
,
12960
,
13536
,
13536
,
13536
,
14112
,
14112
,
14112
,
14688
,
14688
,
14688
,
14688
,
15264
,
15264
,
15264
,
15840
,
15840
,
15840
,
16416
,
16416
,
16416
,
16992
,
16992
,
16992
,
16992
,
17568
,
17568
,
17568
,
18336
,
18336
,
18336
,
18336
,
18336
,
19080
,
19080
,
19080
,
19080
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment