apipost-cli 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +46 -0
- package/bin/apipost-reports//346/265/213/350/257/225.html +750 -0
- package/bin/apipost-reports//346/265/213/350/257/225.json +98111 -0
- package/bin/cli.js +214 -0
- package/bin/template.js +803 -0
- package/package.json +30 -0
|
@@ -0,0 +1,750 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Document</title>
|
|
7
|
+
<style>
|
|
8
|
+
body {
|
|
9
|
+
padding: 30px 20%;
|
|
10
|
+
}
|
|
11
|
+
.apipost-logo {
|
|
12
|
+
width: 121px;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
15
|
+
height: 35px;
|
|
16
|
+
}
|
|
17
|
+
.apipost-report-wrap .apipost-report-wrap-tpl .report-info {
|
|
18
|
+
padding-top: 30px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.apipost-report-wrap .apipost-report-wrap-tpl .report-info .report-item {
|
|
22
|
+
padding-bottom: 10px;
|
|
23
|
+
color: #666666;
|
|
24
|
+
font-weight: 400;
|
|
25
|
+
font-size: 14px;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.apipost-report-wrap-tpl .report-info .report-item .label {
|
|
29
|
+
display: inline-block;
|
|
30
|
+
width: 135px;
|
|
31
|
+
text-align: right;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.apipost-report-wrap-tpl .report-info .report-item .value {
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.apipost-report-wrap-tpl .report-info .report-item .value a {
|
|
38
|
+
color: #ff6907;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.apipost-report-wrap .dashed {
|
|
42
|
+
height: 1px;
|
|
43
|
+
width: 100%;
|
|
44
|
+
border: 1px dashed #d8d8d8;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.report-title {
|
|
48
|
+
padding-top: 15px;
|
|
49
|
+
display: flex;
|
|
50
|
+
align-items: center;
|
|
51
|
+
}
|
|
52
|
+
.report-title img {
|
|
53
|
+
width: 15px;
|
|
54
|
+
height: 17px;
|
|
55
|
+
}
|
|
56
|
+
.report-title .title {
|
|
57
|
+
padding-left: 10px;
|
|
58
|
+
font-weight: 400;
|
|
59
|
+
font-size: 18px;
|
|
60
|
+
color: #fa7600;
|
|
61
|
+
}
|
|
62
|
+
.report-table {
|
|
63
|
+
margin-top: 30px;
|
|
64
|
+
}
|
|
65
|
+
.report-table table {
|
|
66
|
+
width: 100%;
|
|
67
|
+
border: 1px solid #e9e9e9;
|
|
68
|
+
border-collapse: collapse;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.report-table table th {
|
|
72
|
+
font-weight: 400;
|
|
73
|
+
font-size: 12px;
|
|
74
|
+
color: #666666;
|
|
75
|
+
background: #f4f4f4;
|
|
76
|
+
height: 32px;
|
|
77
|
+
border: 1px solid #e9e9e9;
|
|
78
|
+
text-align: center;
|
|
79
|
+
}
|
|
80
|
+
.report-table table td {
|
|
81
|
+
background: #ffffff;
|
|
82
|
+
height: 32px;
|
|
83
|
+
color: #666666;
|
|
84
|
+
font-weight: 400;
|
|
85
|
+
font-size: 12px;
|
|
86
|
+
border: 1px solid #e9e9e9;
|
|
87
|
+
text-align: center;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.report-info-list {
|
|
91
|
+
width: 100%;
|
|
92
|
+
display: flex;
|
|
93
|
+
align-items: center;
|
|
94
|
+
flex-wrap: wrap;
|
|
95
|
+
padding-top: 15px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.report-info-list .report-info-item {
|
|
99
|
+
display: inline-flex;
|
|
100
|
+
align-items: center;
|
|
101
|
+
width: 25%;
|
|
102
|
+
padding-bottom: 15px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.report-info-list .report-info-item img {
|
|
106
|
+
width: 13px;
|
|
107
|
+
height: 13px;
|
|
108
|
+
}
|
|
109
|
+
.report-info-list .report-info-item span {
|
|
110
|
+
padding-left: 10px;
|
|
111
|
+
font-weight: 400;
|
|
112
|
+
font-size: 12px;
|
|
113
|
+
color: #666666;
|
|
114
|
+
}
|
|
115
|
+
.test-detail {
|
|
116
|
+
padding-top: 15px;
|
|
117
|
+
padding-bottom: 15px;
|
|
118
|
+
}
|
|
119
|
+
.test-detail .toggle-arrow {
|
|
120
|
+
display: flex;
|
|
121
|
+
align-items: center;
|
|
122
|
+
}
|
|
123
|
+
.test-detail .icon-bg {
|
|
124
|
+
display: inline-flex;
|
|
125
|
+
justify-content: center;
|
|
126
|
+
align-items: center;
|
|
127
|
+
width: 16px;
|
|
128
|
+
height: 16px;
|
|
129
|
+
background: #f2f2f2;
|
|
130
|
+
border-radius: 3px;
|
|
131
|
+
}
|
|
132
|
+
.test-detail img {
|
|
133
|
+
width: 8px;
|
|
134
|
+
height: 4px;
|
|
135
|
+
}
|
|
136
|
+
.test-detail span.title {
|
|
137
|
+
font-weight: 400;
|
|
138
|
+
font-size: 16px;
|
|
139
|
+
padding-left: 10px;
|
|
140
|
+
color: #2b2b2b;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.test-detail .test-event-list {
|
|
144
|
+
width: 100%;
|
|
145
|
+
}
|
|
146
|
+
.test-detail .test-event-list .test-event-item {
|
|
147
|
+
}
|
|
148
|
+
.test-detail .test-event-list .test-event-item .loop {
|
|
149
|
+
padding: 10px 0;
|
|
150
|
+
font-weight: 400;
|
|
151
|
+
font-size: 12px;
|
|
152
|
+
color: #666666;
|
|
153
|
+
}
|
|
154
|
+
.test-detail .test-event-list .test-event-item .panel {
|
|
155
|
+
display: flex;
|
|
156
|
+
align-items: center;
|
|
157
|
+
height: 36px;
|
|
158
|
+
font-weight: 400;
|
|
159
|
+
font-size: 12px;
|
|
160
|
+
background: #f8f8f8;
|
|
161
|
+
border-radius: 5px;
|
|
162
|
+
}
|
|
163
|
+
.test-event-list .test-event-item .panel .status {
|
|
164
|
+
width: 16px;
|
|
165
|
+
height: 16px;
|
|
166
|
+
margin-left: 25px;
|
|
167
|
+
margin-right: 30px;
|
|
168
|
+
}
|
|
169
|
+
.test-event-list .test-event-item .panel .index {
|
|
170
|
+
padding-right: 30px;
|
|
171
|
+
color: #666666;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.test-event-list .test-event-item .panel .method {
|
|
175
|
+
padding-right: 30px;
|
|
176
|
+
color: #26cea4;
|
|
177
|
+
}
|
|
178
|
+
.test-event-list .test-event-item .panel .name {
|
|
179
|
+
padding-right: 30px;
|
|
180
|
+
color: #666666;
|
|
181
|
+
}
|
|
182
|
+
.test-event-list .test-event-item .panel .link a {
|
|
183
|
+
text-decoration: none;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.test-event-list .test-event-item .item-info {
|
|
187
|
+
width: 100%;
|
|
188
|
+
display: flex;
|
|
189
|
+
align-items: center;
|
|
190
|
+
padding: 10px;
|
|
191
|
+
font-weight: 400;
|
|
192
|
+
font-size: 12px;
|
|
193
|
+
color: #666666;
|
|
194
|
+
}
|
|
195
|
+
.test-event-list .test-event-item .item-info span {
|
|
196
|
+
display: inline-block;
|
|
197
|
+
width: 25%;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.test-event-list .test-event-item .assert-info {
|
|
201
|
+
display: flex;
|
|
202
|
+
width: 100%;
|
|
203
|
+
font-weight: 400;
|
|
204
|
+
font-size: 12px;
|
|
205
|
+
}
|
|
206
|
+
.test-event-list .test-event-item .assert-info .assert-label {
|
|
207
|
+
min-width: 60px;
|
|
208
|
+
}
|
|
209
|
+
.test-event-item .assert-info .response-panel {
|
|
210
|
+
width: 100%;
|
|
211
|
+
}
|
|
212
|
+
.test-event-item .assert-info .response-panel img {
|
|
213
|
+
width: 12px;
|
|
214
|
+
height: 12px;
|
|
215
|
+
margin: 0 10px;
|
|
216
|
+
}
|
|
217
|
+
.test-event-item .assert-info .response-panel .success,
|
|
218
|
+
.test-event-item .assert-info .response-panel .error {
|
|
219
|
+
display: flex;
|
|
220
|
+
align-items: center;
|
|
221
|
+
width: 100%;
|
|
222
|
+
height: 34px;
|
|
223
|
+
}
|
|
224
|
+
.test-event-item .assert-info .response-panel .success {
|
|
225
|
+
background: #f1faf3;
|
|
226
|
+
color: #2ba58f;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.test-event-item .assert-info .response-panel .error {
|
|
230
|
+
background: #ffedee;
|
|
231
|
+
color: #ff4c4c;
|
|
232
|
+
}
|
|
233
|
+
.show {
|
|
234
|
+
display: block;
|
|
235
|
+
}
|
|
236
|
+
.hide {
|
|
237
|
+
display: none;
|
|
238
|
+
}
|
|
239
|
+
.chart-wrap {
|
|
240
|
+
display: flex;
|
|
241
|
+
align-items: center;
|
|
242
|
+
padding-top: 15px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.chart-wrap .api {
|
|
246
|
+
display: flex;
|
|
247
|
+
align-items: center;
|
|
248
|
+
width: 50%;
|
|
249
|
+
}
|
|
250
|
+
.chart-wrap .api .api-des {
|
|
251
|
+
display: flex;
|
|
252
|
+
flex-direction: column;
|
|
253
|
+
padding-left: 50px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.chart-wrap .api .api-des .api-title {
|
|
257
|
+
padding-bottom: 15px;
|
|
258
|
+
font-weight: 600;
|
|
259
|
+
font-size: 16px;
|
|
260
|
+
color: #666666;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
.chart-wrap .api .api-des .api-label {
|
|
264
|
+
padding-bottom: 10px;
|
|
265
|
+
font-weight: 400;
|
|
266
|
+
font-size: 12px;
|
|
267
|
+
color: #666666;
|
|
268
|
+
}
|
|
269
|
+
#api-pie,
|
|
270
|
+
#assert-pie {
|
|
271
|
+
width: 80px;
|
|
272
|
+
height: 80px;
|
|
273
|
+
}
|
|
274
|
+
</style>
|
|
275
|
+
<script src="https://img.cdn.apipost.cn/cdn/test-report/js/template-web.js"></script>
|
|
276
|
+
<script src="https://img.cdn.apipost.cn/cdn/test-report/js/echarts.min.js"></script>
|
|
277
|
+
</head>
|
|
278
|
+
<body>
|
|
279
|
+
<div id="app">
|
|
280
|
+
<img class="apipost-logo" src="https://img.cdn.apipost.cn/new_www/index_img/apipost-logo_or.svg" />
|
|
281
|
+
<div class="apipost-report-wrap"></div>
|
|
282
|
+
</div>
|
|
283
|
+
|
|
284
|
+
<script type="text/html" id="tpl">
|
|
285
|
+
<div class="apipost-report-wrap-tpl">
|
|
286
|
+
<h1>{{value.report_name}}</h1>
|
|
287
|
+
<div class="report-info">
|
|
288
|
+
<div class="report-item">
|
|
289
|
+
<span class="label">测试用例/测试套件:</span>
|
|
290
|
+
<span class="value">{{value.report_name}}</span>
|
|
291
|
+
</div>
|
|
292
|
+
<div class="report-item">
|
|
293
|
+
<span class="label">测试时间:</span>
|
|
294
|
+
<span class="value">{{value.start_time}}</span>
|
|
295
|
+
</div>
|
|
296
|
+
<div class="report-item">
|
|
297
|
+
<span class="label">测试工具:</span>
|
|
298
|
+
<span class="value"><a href="https://www.apipost.cn/download.html">apipost客户端</a></span>
|
|
299
|
+
</div>
|
|
300
|
+
</div>
|
|
301
|
+
<div class="dashed"></div>
|
|
302
|
+
|
|
303
|
+
<div class="report-title">
|
|
304
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/doc.png" alt="" />
|
|
305
|
+
<span class="title">测试结果</span>
|
|
306
|
+
</div>
|
|
307
|
+
<div class="chart-wrap">
|
|
308
|
+
<div class="api">
|
|
309
|
+
<div id="api-pie"></div>
|
|
310
|
+
<div class="api-des">
|
|
311
|
+
<span class="api-title">接口</span>
|
|
312
|
+
<span class="api-label"
|
|
313
|
+
>接口通过率:{{formatRate({ passed: value?.http?.passed, failure:
|
|
314
|
+
value?.http?.failure }, value?.http?.passed)}}</span
|
|
315
|
+
>
|
|
316
|
+
<span class="api-label"
|
|
317
|
+
>接口失败率:{{formatRate({ passed: value?.http?.passed, failure:
|
|
318
|
+
value?.http?.failure }, value?.http?.failure)}}</span
|
|
319
|
+
>
|
|
320
|
+
</div>
|
|
321
|
+
</div>
|
|
322
|
+
<div class="api">
|
|
323
|
+
<div id="assert-pie"></div>
|
|
324
|
+
<div class="api-des">
|
|
325
|
+
<span class="api-title">断言</span>
|
|
326
|
+
<span class="api-label"
|
|
327
|
+
>断言通过率:{{formatRate({ passed: value?.assert?.passed, failure:
|
|
328
|
+
value?.assert?.failure }, value?.assert?.passed)}}</span
|
|
329
|
+
>
|
|
330
|
+
<span class="api-label"
|
|
331
|
+
>断言失败率:{{formatRate({ passed: value?.assert?.passed, failure:
|
|
332
|
+
value?.assert?.failure }, value?.assert?.failure)}}</span
|
|
333
|
+
>
|
|
334
|
+
</div>
|
|
335
|
+
</div>
|
|
336
|
+
</div>
|
|
337
|
+
<div class="report-table">
|
|
338
|
+
<table>
|
|
339
|
+
<thead>
|
|
340
|
+
<tr>
|
|
341
|
+
<th></th>
|
|
342
|
+
<th>请求总数</th>
|
|
343
|
+
<th>通过</th>
|
|
344
|
+
<th>失败</th>
|
|
345
|
+
</tr>
|
|
346
|
+
</thead>
|
|
347
|
+
<tbody>
|
|
348
|
+
<tr>
|
|
349
|
+
<td>接口</td>
|
|
350
|
+
<td>{{value.http.failure + value.http.passed}}</td>
|
|
351
|
+
<td>{{value.http.passed}}</td>
|
|
352
|
+
<td>{{value.http.failure}}</td>
|
|
353
|
+
</tr>
|
|
354
|
+
<tr>
|
|
355
|
+
<td>断言</td>
|
|
356
|
+
<td>{{value.assert.failure + value.assert.passed}}</td>
|
|
357
|
+
<td>{{value.assert.passed}}</td>
|
|
358
|
+
<td>{{value.assert.failure}}</td>
|
|
359
|
+
</tr>
|
|
360
|
+
</tbody>
|
|
361
|
+
</table>
|
|
362
|
+
</div>
|
|
363
|
+
|
|
364
|
+
<div class="report-info-list">
|
|
365
|
+
<div class="report-info-item">
|
|
366
|
+
<span>开始时间 : {{value.start_time}}</span>
|
|
367
|
+
</div>
|
|
368
|
+
<div class="report-info-item">
|
|
369
|
+
<span>结束时间 : {{value.end_time}}</span>
|
|
370
|
+
</div>
|
|
371
|
+
<div class="report-info-item">
|
|
372
|
+
<span>总耗时 : {{value.long_time}}</span>
|
|
373
|
+
</div>
|
|
374
|
+
<div class="report-info-item">
|
|
375
|
+
<span>总响应时间 : {{value.total_response_time}}ms</span>
|
|
376
|
+
</div>
|
|
377
|
+
<div class="report-info-item">
|
|
378
|
+
<span>平均响应时间 : {{value.average_response_time}}ms</span>
|
|
379
|
+
</div>
|
|
380
|
+
<div class="report-info-item">
|
|
381
|
+
<span>总响应数据大小 : {{value.total_received_data}}kb</span>
|
|
382
|
+
</div>
|
|
383
|
+
<div class="report-info-item">
|
|
384
|
+
<span>未测接口 : {{value.ignore_count}}</span>
|
|
385
|
+
</div>
|
|
386
|
+
</div>
|
|
387
|
+
|
|
388
|
+
<div class="dashed"></div>
|
|
389
|
+
{{if value.type === 'single'}}
|
|
390
|
+
<div class="report-title">
|
|
391
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/doc.png" alt="" />
|
|
392
|
+
<span class="title">测试情况</span>
|
|
393
|
+
</div>
|
|
394
|
+
|
|
395
|
+
<div class="action-wrap">
|
|
396
|
+
<div class="test-detail failed">
|
|
397
|
+
<div class="toggle-arrow">
|
|
398
|
+
<span class="icon-bg">
|
|
399
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/arrow.png" class="arrow" alt="" />
|
|
400
|
+
</span>
|
|
401
|
+
<span class="title">失败情况</span>
|
|
402
|
+
</div>
|
|
403
|
+
<div class="test-event-list show">
|
|
404
|
+
{{each value.logList.filter(item => item.http_error === 1 || item.assert_error === 1) item
|
|
405
|
+
key}}
|
|
406
|
+
<div data-text="{{key}}" id="{{key}}" class="test-event-item">
|
|
407
|
+
<div class="panel">
|
|
408
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
409
|
+
<div class="index">{{key + 1}}</div>
|
|
410
|
+
<div class="method">{{item?.request?.method}}</div>
|
|
411
|
+
<span class="name">{{item?.request?.name}}</span>
|
|
412
|
+
<div class="link">
|
|
413
|
+
<a href="{{item?.request?.url}}">{{item?.request?.url}}</a>
|
|
414
|
+
</div>
|
|
415
|
+
</div>
|
|
416
|
+
<div class="item-info">
|
|
417
|
+
<span>请求状况:{{(item?.http_error === 1 || item.assert_error === 1) ? '失败' : '成功'}}</span>
|
|
418
|
+
<span>状态码:{{item?.response?.data?.response?.code}}</span>
|
|
419
|
+
<span>响应时间:{{item?.response?.data?.response?.responseTime}}ms</span>
|
|
420
|
+
<span>响应数据大小:{{item?.response?.data?.response?.responseSize}}kb</span>
|
|
421
|
+
</div>
|
|
422
|
+
{{if item?.assert && item?.assert.length > 0}}
|
|
423
|
+
<div class="assert-info">
|
|
424
|
+
<span class="assert-label">断言:</span>
|
|
425
|
+
<div class="response-panel">
|
|
426
|
+
{{each item?.assert assert cKey}} {{if assert.status === 'error'}}
|
|
427
|
+
<div class="error">
|
|
428
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
429
|
+
<span>{{assert?.expect}}</span>
|
|
430
|
+
</div>
|
|
431
|
+
{{/if}} {{if assert.status !== 'error'}}
|
|
432
|
+
<div class="success">
|
|
433
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
434
|
+
<span>{{assert?.expect}}</span>
|
|
435
|
+
</div>
|
|
436
|
+
{{/if}} {{/each}}
|
|
437
|
+
</div>
|
|
438
|
+
</div>
|
|
439
|
+
{{/if}}
|
|
440
|
+
</div>
|
|
441
|
+
{{/each}}
|
|
442
|
+
</div>
|
|
443
|
+
</div>
|
|
444
|
+
<div class="dashed"></div>
|
|
445
|
+
<div class="test-detail success">
|
|
446
|
+
<div class="toggle-arrow">
|
|
447
|
+
<span class="icon-bg">
|
|
448
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/arrow.png" alt="" />
|
|
449
|
+
</span>
|
|
450
|
+
<span class="title">测试详情</span>
|
|
451
|
+
</div>
|
|
452
|
+
<div class="test-event-list show">
|
|
453
|
+
{{each value.logList item key}}
|
|
454
|
+
<div data-text="{{key}}" id="{{key}}" class="test-event-item">
|
|
455
|
+
<div class="panel">
|
|
456
|
+
{{if item.http_error === -1}}
|
|
457
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
458
|
+
{{/if}} {{if item.http_error === 1}}
|
|
459
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
460
|
+
{{/if}}
|
|
461
|
+
|
|
462
|
+
<div class="index">{{key + 1}}</div>
|
|
463
|
+
<div class="method">{{item?.request?.method}}</div>
|
|
464
|
+
<span class="name">{{item?.request?.name}}</span>
|
|
465
|
+
<div class="link">
|
|
466
|
+
<a href="{{item?.request?.url}}">{{item?.request?.url}}</a>
|
|
467
|
+
</div>
|
|
468
|
+
</div>
|
|
469
|
+
<div class="item-info">
|
|
470
|
+
<span>请求状况:{{(item?.http_error === 1 || item.assert_error === 1) ? '失败' : '成功'}}</span>
|
|
471
|
+
<span>状态码:{{item?.response?.data?.response?.code}}</span>
|
|
472
|
+
<span>响应时间:{{item?.response?.data?.response?.responseTime}}ms</span>
|
|
473
|
+
<span>响应数据大小:{{item?.response?.data?.response?.responseSize}}kb</span>
|
|
474
|
+
</div>
|
|
475
|
+
{{if item?.assert && item?.assert.length > 0}}
|
|
476
|
+
<div class="assert-info">
|
|
477
|
+
<span class="assert-label">断言:</span>
|
|
478
|
+
<div class="response-panel">
|
|
479
|
+
{{each item?.assert assert cKey}}
|
|
480
|
+
{{if assert.status === 'error'}}
|
|
481
|
+
<div class="error">
|
|
482
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
483
|
+
<span>{{assert?.expect}}</span>
|
|
484
|
+
</div>
|
|
485
|
+
{{/if}}
|
|
486
|
+
{{if assert.status !== 'error'}}
|
|
487
|
+
<div class="success">
|
|
488
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
489
|
+
<span>{{assert?.expect}}</span>
|
|
490
|
+
</div>
|
|
491
|
+
{{/if}} {{/each}}
|
|
492
|
+
</div>
|
|
493
|
+
</div>
|
|
494
|
+
{{/if}}
|
|
495
|
+
</div>
|
|
496
|
+
{{/each}}
|
|
497
|
+
</div>
|
|
498
|
+
</div>
|
|
499
|
+
</div>
|
|
500
|
+
{{/if}}
|
|
501
|
+
{{if value.type === 'combined'}}
|
|
502
|
+
{{each value.children child childKey}}
|
|
503
|
+
<div data-text="{{childKey}}" id="{{childKey}}">
|
|
504
|
+
<div class="report-title">
|
|
505
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/doc.png" alt="" />
|
|
506
|
+
<span class="title">{{child?.report_name}}_测试情况</span>
|
|
507
|
+
</div>
|
|
508
|
+
|
|
509
|
+
<div class="action-wrap">
|
|
510
|
+
<div class="test-detail failed">
|
|
511
|
+
<div class="toggle-arrow">
|
|
512
|
+
<span class="icon-bg">
|
|
513
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/arrow.png" class="arrow" alt="" />
|
|
514
|
+
</span>
|
|
515
|
+
<span class="title">失败情况</span>
|
|
516
|
+
</div>
|
|
517
|
+
<div class="test-event-list show">
|
|
518
|
+
{{each value.logList.filter(item => (item.http_error === 1 || item.assert_error === 1) && item.test_id === child.test_id) item
|
|
519
|
+
key}}
|
|
520
|
+
<div data-text="{{key}}" id="{{key}}" class="test-event-item">
|
|
521
|
+
<div class="panel">
|
|
522
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
523
|
+
<div class="index">{{key + 1}}</div>
|
|
524
|
+
<div class="method">{{item?.request?.method}}</div>
|
|
525
|
+
<span class="name">{{item?.request?.name}}</span>
|
|
526
|
+
<div class="link">
|
|
527
|
+
<a href="{{item?.request?.url}}">{{item?.request?.url}}</a>
|
|
528
|
+
</div>
|
|
529
|
+
</div>
|
|
530
|
+
<div class="item-info">
|
|
531
|
+
<span>请求状况:{{(item?.http_error === 1 || item.assert_error === 1) ? '失败' : '成功'}}</span>
|
|
532
|
+
<span>状态码:{{item?.response?.data?.response?.code}}</span>
|
|
533
|
+
<span>响应时间:{{item?.response?.data?.response?.responseTime}}ms</span>
|
|
534
|
+
<span>响应数据大小:{{item?.response?.data?.response?.responseSize}}kb</span>
|
|
535
|
+
</div>
|
|
536
|
+
{{if item?.assert && item?.assert.length > 0}}
|
|
537
|
+
<div class="assert-info">
|
|
538
|
+
<span class="assert-label">断言:</span>
|
|
539
|
+
<div class="response-panel">
|
|
540
|
+
{{each item?.assert assert cKey}} {{if assert.status === 'error'}}
|
|
541
|
+
<div class="error">
|
|
542
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
543
|
+
<span>{{assert?.expect}}</span>
|
|
544
|
+
</div>
|
|
545
|
+
{{/if}} {{if assert.status !== 'error'}}
|
|
546
|
+
<div class="success">
|
|
547
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
548
|
+
<span>{{assert?.expect}}</span>
|
|
549
|
+
</div>
|
|
550
|
+
{{/if}} {{/each}}
|
|
551
|
+
</div>
|
|
552
|
+
</div>
|
|
553
|
+
{{/if}}
|
|
554
|
+
</div>
|
|
555
|
+
{{/each}}
|
|
556
|
+
</div>
|
|
557
|
+
</div>
|
|
558
|
+
<div class="dashed"></div>
|
|
559
|
+
<div class="test-detail success">
|
|
560
|
+
<div class="toggle-arrow">
|
|
561
|
+
<span class="icon-bg">
|
|
562
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/arrow.png" alt="" />
|
|
563
|
+
</span>
|
|
564
|
+
<span class="title">测试详情</span>
|
|
565
|
+
</div>
|
|
566
|
+
<div class="test-event-list show">
|
|
567
|
+
{{each value.logList.filter(item => item.test_id === child.test_id) item key}}
|
|
568
|
+
<div data-text="{{key}}" id="{{key}}" class="test-event-item">
|
|
569
|
+
<div class="panel">
|
|
570
|
+
{{if item.http_error === -1}}
|
|
571
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
572
|
+
{{/if}} {{if item.http_error === 1}}
|
|
573
|
+
<img class="status" src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
574
|
+
{{/if}}
|
|
575
|
+
|
|
576
|
+
<div class="index">{{key + 1}}</div>
|
|
577
|
+
<div class="method">{{item?.request?.method}}</div>
|
|
578
|
+
<span class="name">{{item?.request?.name}}</span>
|
|
579
|
+
<div class="link">
|
|
580
|
+
<a href="{{item?.request?.url}}">{{item?.request?.url}}</a>
|
|
581
|
+
</div>
|
|
582
|
+
</div>
|
|
583
|
+
<div class="item-info">
|
|
584
|
+
<span>请求状况:{{(item?.http_error === 1 || item.assert_error === 1) ? '失败' : '成功'}}</span>
|
|
585
|
+
<span>状态码:{{item?.response?.data?.response?.code}}</span>
|
|
586
|
+
<span>响应时间:{{item?.response?.data?.response?.responseTime}}ms</span>
|
|
587
|
+
<span>响应数据大小:{{item?.response?.data?.response?.responseSize}}kb</span>
|
|
588
|
+
</div>
|
|
589
|
+
{{if item?.assert && item?.assert.length > 0}}
|
|
590
|
+
<div class="assert-info">
|
|
591
|
+
<span class="assert-label">断言:</span>
|
|
592
|
+
<div class="response-panel">
|
|
593
|
+
{{each item?.assert assert cKey}}
|
|
594
|
+
{{if assert.status === 'error'}}
|
|
595
|
+
<div class="error">
|
|
596
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/error.png" alt="" />
|
|
597
|
+
<span>{{assert?.expect}}</span>
|
|
598
|
+
</div>
|
|
599
|
+
{{/if}}
|
|
600
|
+
{{if assert.status !== 'error'}}
|
|
601
|
+
<div class="success">
|
|
602
|
+
<img src="https://img.cdn.apipost.cn/cdn/test-report/img/success.png" alt="" />
|
|
603
|
+
<span>{{assert?.expect}}</span>
|
|
604
|
+
</div>
|
|
605
|
+
{{/if}} {{/each}}
|
|
606
|
+
</div>
|
|
607
|
+
</div>
|
|
608
|
+
{{/if}}
|
|
609
|
+
</div>
|
|
610
|
+
{{/each}}
|
|
611
|
+
</div>
|
|
612
|
+
</div>
|
|
613
|
+
</div>
|
|
614
|
+
</div>
|
|
615
|
+
{{/each}}
|
|
616
|
+
{{/if}}
|
|
617
|
+
</div>
|
|
618
|
+
</script>
|
|
619
|
+
|
|
620
|
+
<script>
|
|
621
|
+
template.defaults.imports.formatRate = function (info, per) {
|
|
622
|
+
if (
|
|
623
|
+
typeof info.passed !== 'number' ||
|
|
624
|
+
typeof info.failure !== 'number' ||
|
|
625
|
+
info?.passed + info?.failure === 0
|
|
626
|
+
) {
|
|
627
|
+
return '0%';
|
|
628
|
+
}
|
|
629
|
+
if (typeof per === 'number') {
|
|
630
|
+
return ((per / (info?.passed + info?.failure)) * 100).toFixed(2) + '%';
|
|
631
|
+
}
|
|
632
|
+
return '-';
|
|
633
|
+
};
|
|
634
|
+
|
|
635
|
+
const data = {"combined_id":"0","report_id":"","report_name":"新建测试用例测试报告","env_id":"-1","user":{"role":2,"nick_name":"danceli","email":"lixinyu@apipost.cn","portrait":"https://img.cdn.apipost.cn/user/default_profile_photo/Vector-3.png","is_manager":1,"uuid":"U4KCW4275196","is_super_admin":1,"project_id":"296eb2de-2277-4434-950b-7678aae14390","id":"296eb2de-2277-4434-950b-7678aae14390/U4KCW4275196"},"total_count":1,"total_effective_count":1,"ignore_count":0,"total_received_data":545.31,"total_response_time":376,"average_response_time":376,"http_errors":[],"assert_errors":[],"ignore_errors":[],"http":{"passed":1,"passed_per":1,"failure":0,"failure_per":0},"assert":{"passed":0,"passed_per":0,"failure":0,"failure_per":0},"start_time":"2023-06-12 02:01:18","end_time":"2023-06-12 02:01:18","long_time":"0.6 秒","children":[],"type":"single","test_id":"b85feb20-fb1d-4323-be1a-ba83c7704cfa","event_status":{"1c966ced-30b3-4405-b815-7ad56715605e":"passed"},"test_events":[{"event_id":"1c966ced-30b3-4405-b815-7ad56715605e","parent_event_id":"0","data":{"parent_id":"0","target_id":"d88b3ee4-5cdb-4aee-a94a-5e471320dde1","name":"新建接口163","method":"GET","url":"www.163.com","request":{"url":"www.163.com","description":"","auth":{"type":"noauth","kv":{"key":"","value":""},"bearer":{"key":""},"basic":{"username":"","password":""},"digest":{"username":"","password":"","realm":"","nonce":"","algorithm":"","qop":"","nc":"","cnonce":"","opaque":""},"hawk":{"authId":"","authKey":"","algorithm":"","user":"","nonce":"","extraData":"","app":"","delegation":"","timestamp":"","includePayloadHash":-1},"awsv4":{"accessKey":"","secretKey":"","region":"","service":"","sessionToken":"","addAuthDataToQuery":-1},"ntlm":{"username":"","password":"","domain":"","workstation":"","disableRetryRequest":1},"edgegrid":{"accessToken":"","clientToken":"","clientSecret":"","nonce":"","timestamp":"","baseURi":"","headersToSign":""},"oauth1":{"consumerKey":"","consumerSecret":"","signatureMethod":"","addEmptyParamsToSign":-1,"includeBodyHash":-1,"addParamsToHeader":-1,"realm":"","version":"1.0","nonce":"","timestamp":"","verifier":"","callback":"","tokenSecret":"","token":""}},"body":{"mode":"none","parameter":[],"raw":"","raw_para":[],"raw_schema":{"type":"object"}},"event":{"pre_script":"","test":""},"header":{"parameter":[]},"query":{"parameter":[]},"cookie":{"parameter":[]},"resful":{"parameter":[]}}},"enabled":1,"project_id":"296eb2de-2277-4434-950b-7678aae14390","sort":1,"test_id":"b85feb20-fb1d-4323-be1a-ba83c7704cfa","type":"api","report_id":"","runtime_status":"passed"},{"event_id":"8a2d1dce-089c-460c-9c64-1099bebeb75f","parent_event_id":"0","data":{"var":"","compare":"","value":"","sleep":0,"timeout":0,"enable_data":-1,"iterationData":[]},"enabled":1,"project_id":"296eb2de-2277-4434-950b-7678aae14390","sort":2,"test_id":"b85feb20-fb1d-4323-be1a-ba83c7704cfa","type":"while","report_id":"","runtime":{"condition":" "}},{"event_id":"7ba27a88-0b1c-4f5c-bf37-7c3f9baba5a3","parent_event_id":"8a2d1dce-089c-460c-9c64-1099bebeb75f","data":{"var":"","compare":"","value":""},"enabled":1,"project_id":"296eb2de-2277-4434-950b-7678aae14390","sort":1,"test_id":"b85feb20-fb1d-4323-be1a-ba83c7704cfa","type":"if","report_id":""}],"logList":[{"test_id":"b85feb20-fb1d-4323-be1a-ba83c7704cfa","parent_id":"0","event_id":"1c966ced-30b3-4405-b815-7ad56715605e","iteration_id":"a78fc850-edbc-4f02-85b7-2268a1670bc3","type":"api","target_id":"d88b3ee4-5cdb-4aee-a94a-5e471320dde1","request":{"parent_id":"0","target_id":"d88b3ee4-5cdb-4aee-a94a-5e471320dde1","name":"新建接口163","method":"GET","url":"http://www.163.com","request":{"url":"http://www.163.com","description":"","auth":{"type":"noauth","kv":{"key":"","value":""},"bearer":{"key":""},"basic":{"username":"","password":""},"digest":{"username":"","password":"","realm":"","nonce":"","algorithm":"","qop":"","nc":"","cnonce":"","opaque":""},"hawk":{"authId":"","authKey":"","algorithm":"","user":"","nonce":"","extraData":"","app":"","delegation":"","timestamp":"","includePayloadHash":-1},"awsv4":{"accessKey":"","secretKey":"","region":"","service":"","sessionToken":"","addAuthDataToQuery":-1},"ntlm":{"username":"","password":"","domain":"","workstation":"","disableRetryRequest":1},"edgegrid":{"accessToken":"","clientToken":"","clientSecret":"","nonce":"","timestamp":"","baseURi":"","headersToSign":""},"oauth1":{"consumerKey":"","consumerSecret":"","signatureMethod":"","addEmptyParamsToSign":-1,"includeBodyHash":-1,"addParamsToHeader":-1,"realm":"","version":"1.0","nonce":"","timestamp":"","verifier":"","callback":"","tokenSecret":"","token":""}},"body":{"mode":"none","parameter":[],"raw":"","raw_para":[],"raw_schema":{"type":"object"}},"event":{"pre_script":"","test":""},"header":{"parameter":[]},"query":{"parameter":[{"is_checked":"1","type":"Text","key":"quanju","value":"21211","description":""}]},"cookie":{"parameter":[]},"resful":{"parameter":[]}}},"response":{"status":"success","message":"success","data":{"request":{"url":"https://www.163.com/?quanju=21211","uri":{"slashes":true,"protocol":"https:","hash":"","query":"?quanju=21211","pathname":"/","auth":"","host":"www.163.com","port":"","hostname":"www.163.com","password":"","username":"","origin":"https://www.163.com","href":"https://www.163.com/?quanju=21211"},"method":"GET","timeout":1600,"contentType":"none","header":[{"key":"User-Agent","value":"PostmanRuntime-ApipostRuntime/1.1.0"},{"key":"Cache-Control","value":"no-cache"},{"key":"Accept-Encoding","value":"gzip, deflate, br"}],"proxy":null,"request_headers":{"User-Agent":"PostmanRuntime-ApipostRuntime/1.1.0","Cache-Control":"no-cache","Accept-Encoding":"gzip, deflate, br"},"request_bodys":"","body":{"mode":"none"}},"response":{"target_id":"d88b3ee4-5cdb-4aee-a94a-5e471320dde1","responseTime":376,"responseSize":545.31,"resposneAt":"02:01:18","netWork":{"agent":"Desktop-Agent","address":{"remote":{"address":"2408:872f:200:8::1:f1","family":"IPv6","port":443}}},"status":"OK","code":200,"timingPhases":{"wait":1.0050420761108398,"dns":2.859499931335449,"tcp":37.227166056632996,"firstByte":181.28308296203613,"download":63.03016698360443,"total":375.7655420303345,"secureHandshake":90.36058402061462},"headers":{"Date":"Sun, 11 Jun 2023 18:01:17 GMT","Content-Type":"text/html; charset=UTF-8","Transfer-Encoding":"chunked","Connection":"close","Expires":"Sun, 11 Jun 2023 18:02:37 GMT","Server":"AliyunOSS","Cache-Control":"no-cache,no-store,private","Content-Encoding":"gzip","Vary":"Accept-Encoding","X-Ser":"BC204_dx-lt-yd-jiangsu-taizhou-4-cache-12, BC62_lt-liaoning-shenyang-8-cache-4, BC70_lt-liaoning-shenyang-8-cache-4","cdn-user-ip":"2408:8409:2461:8692:1da3:9eb0:15c:c4a2","cdn-ip":"2408:872f:200:8::1:f1","X-Cache-Remote":"MISS","cdn-source":"baishan"},"fitForShow":"Monaco","resMime":{"ext":"html","mime":"text/html"},"stream":{"type":"Buffer","data":[120,156,236,125,249,91,26,73,215,232,207,51,127,69,15,223,77,38,121,39,74,3,10,98,162,121,178,239,203,100,251,222,123,103,230,242,52,208,72,39,8,132,69,99,150,239,209,36,174,209,104,22,77,92,18,99,198,37,155,75,18,19,21,183,231,185,127,202,251,82,221,240,211,252,11,247,84,117,3,13,116,179,40,104,38,47,53,25,129,238,90,78,157,58,117,150,170,115,170,246,253,116,248,220,161,75,255,251,252,17,234,248,165,51,167,107,127,220,247,83,89,217,111,156,131,58,113,132,50,82,127,212,82,251,156,129,122,23,101,115,49,126,127,141,198,205,90,130,140,133,99,141,84,236,155,43,192,86,105,40,206,78,222,53,250,24,175,6,138,252,244,27,235,182,115,142,63,202,202,146,234,51,169,214,103,218,80,125,85,170,245,85,109,168,62,179,106,125,230,156,170,216,85,23,96,113,61,58,122,247,237,159,118,157,56,178,251,143,90,252,42,86,167,215,233,113,179,53,26,93,122,93,101,101,201,245,57,89,198,14,31,245,108,128,161,220,76,61,20,170,243,120,234,92,108,153,159,11,176,101,13,172,143,115,112,54,38,192,121,220,26,202,230,113,7,88,119,160,70,115,254,159,65,247,97,67,213,97,227,185,32,167,187,84,81,113,238,218,129,243,23,79,55,253,26,56,122,217,229,57,202,85,122,93,236,77,186,130,174,191,124,206,166,161,180,201,213,91,25,206,30,204,88,187,135,187,84,117,238,136,227,38,235,79,43,108,48,210,25,139,86,234,77,140,157,166,29,70,35,99,54,216,12,58,157,161,194,110,100,244,180,85,175,175,48,154,43,233,180,10,253,78,214,93,207,100,172,83,167,183,233,237,38,218,104,178,153,244,38,67,165,131,182,218,77,149,182,42,187,205,174,55,90,105,123,149,69,87,73,155,205,6,83,133,206,164,73,173,221,83,231,9,90,112,229,22,149,202,3,135,78,31,211,221,56,105,51,25,83,203,214,123,236,172,203,18,244,185,100,185,157,129,128,183,90,171,109,108,108,44,215,25,13,229,54,79,189,214,239,101,109,28,227,210,210,180,201,228,11,104,57,183,157,189,81,142,105,64,214,85,92,172,140,189,30,228,26,106,52,255,44,187,124,160,236,144,167,222,11,144,88,93,172,172,242,19,71,106,88,123,29,187,199,230,244,121,0,0,157,88,65,128,11,184,216,90,97,245,17,255,252,201,62,173,248,235,199,125,46,206,125,141,242,177,174,26,141,221,237,47,243,250,88,7,27,176,57,53,148,19,190,213,104,180,90,127,0,170,183,149,55,250,203,117,122,99,185,155,13,136,149,89,25,63,75,5,24,95,29,11,237,89,172,46,198,125,45,109,68,78,177,77,141,30,159,221,47,131,76,108,125,79,244,238,140,48,243,113,15,191,184,200,119,244,238,225,7,230,162,207,150,247,132,87,159,68,238,126,218,131,222,124,12,47,245,237,65,19,159,249,230,169,61,225,208,80,100,189,111,79,100,38,132,94,12,239,17,70,167,195,235,99,123,248,254,57,225,85,203,30,254,227,106,100,117,114,15,223,249,128,31,9,237,137,204,191,22,150,123,247,8,83,143,248,174,230,61,194,240,34,106,235,78,3,233,48,235,183,249,56,111,202,208,137,80,241,207,103,195,139,211,104,120,53,250,186,13,181,118,8,67,247,195,161,199,145,150,167,248,109,87,51,63,50,139,90,63,160,222,197,191,86,186,195,139,33,225,233,27,190,99,129,239,237,11,175,13,163,214,158,200,252,146,216,167,127,55,183,136,189,194,95,250,70,132,249,215,104,165,159,127,242,144,31,233,65,93,99,80,22,173,52,71,102,214,196,46,67,30,177,183,240,69,236,189,48,221,105,160,209,248,80,120,241,29,106,107,69,51,75,209,215,143,162,45,79,112,185,222,46,212,51,132,102,94,67,222,200,84,27,60,199,95,8,90,160,16,64,138,186,222,132,67,227,252,151,22,200,12,32,71,90,134,194,161,16,116,2,117,13,71,219,1,156,187,105,200,240,121,172,158,128,124,116,8,201,237,161,28,30,151,203,211,152,150,93,228,38,80,36,115,137,4,65,49,94,224,30,101,1,79,208,230,44,227,160,8,166,46,32,116,175,199,207,218,51,16,24,158,20,90,23,204,55,242,167,140,243,50,118,82,188,220,235,174,211,80,208,130,56,132,84,160,201,11,80,5,216,27,1,237,85,166,129,17,159,106,40,203,53,150,245,194,115,95,144,213,212,254,72,253,228,8,186,109,120,188,119,237,190,213,192,248,168,64,77,218,131,223,110,5,88,127,160,90,139,39,151,127,127,245,239,218,223,49,8,191,227,137,249,59,158,153,191,253,223,223,181,127,252,99,255,255,210,114,123,26,24,87,181,6,158,91,72,199,53,123,48,12,213,26,60,181,239,236,73,170,229,119,82,77,249,63,18,181,236,194,53,187,217,70,255,239,90,248,202,220,182,223,102,124,208,113,23,187,251,119,237,109,242,146,180,243,203,238,253,240,141,46,51,255,113,75,127,39,246,173,226,142,252,153,152,187,65,143,115,74,117,144,58,237,48,86,156,235,119,237,238,253,187,119,65,93,229,164,182,223,9,11,41,255,135,28,120,187,199,150,1,244,52,200,73,229,34,228,13,208,58,252,223,192,217,89,15,124,21,199,46,6,155,14,195,230,101,184,107,44,41,175,205,2,5,169,68,17,142,88,195,114,140,199,50,218,61,245,12,231,78,228,37,66,40,57,55,121,164,150,223,95,15,153,221,241,188,254,122,213,140,152,227,39,87,76,30,169,231,79,206,12,2,78,45,171,56,147,98,25,197,95,170,253,227,220,117,241,142,193,119,181,124,141,44,103,245,196,50,146,31,106,57,97,66,6,56,38,158,87,250,153,154,251,143,61,158,26,160,147,96,61,204,243,114,44,21,124,62,214,183,7,38,156,102,15,7,127,246,114,142,93,30,113,2,49,53,158,242,122,6,132,198,46,237,255,221,245,155,243,248,31,191,5,46,97,66,253,205,123,254,15,66,75,183,83,30,254,230,191,40,190,32,4,130,201,163,252,31,251,181,187,247,178,53,204,206,157,204,111,250,63,246,227,63,213,236,29,104,131,221,125,139,171,97,247,58,60,190,93,184,45,247,30,95,13,189,215,183,47,80,238,98,221,117,1,231,94,223,47,191,236,134,108,187,220,53,129,223,124,127,236,46,199,93,36,127,118,17,146,170,169,169,113,151,227,142,237,119,121,68,137,93,142,249,78,53,187,27,215,235,46,7,12,236,181,250,88,230,218,157,59,62,54,16,244,185,41,238,14,238,26,145,207,254,106,205,79,53,141,48,211,61,141,229,241,226,94,159,39,224,177,121,92,98,223,61,105,239,157,30,127,0,208,148,86,140,9,56,49,27,5,228,165,190,242,179,140,207,230,220,195,164,87,197,248,157,4,24,153,150,0,16,213,120,118,139,176,238,37,24,169,145,96,213,106,53,191,120,126,97,127,217,197,213,192,191,56,147,11,236,129,97,130,74,2,34,192,108,77,160,220,31,180,250,3,190,93,186,221,229,126,175,139,3,76,237,212,236,198,237,176,18,82,107,233,221,183,98,8,231,106,126,251,3,64,163,247,184,107,98,175,247,50,251,220,123,25,192,59,169,208,87,195,254,198,252,177,183,76,7,168,246,148,19,182,120,206,177,203,23,171,186,70,179,251,55,250,143,221,59,119,114,229,222,160,223,185,203,183,251,14,136,141,253,154,95,184,242,171,30,206,77,218,142,227,62,112,103,23,183,231,55,13,161,182,163,160,186,104,246,104,56,63,254,114,46,224,100,125,255,205,90,53,127,236,222,189,159,251,101,23,110,140,147,192,217,175,209,84,227,90,126,73,148,171,209,252,18,216,181,187,90,179,63,229,201,238,95,152,189,169,72,246,177,94,23,99,99,119,185,1,140,93,187,247,254,184,79,43,10,146,60,229,204,174,132,84,161,110,253,72,65,210,106,1,165,90,127,141,219,115,129,181,115,32,249,64,165,19,41,51,101,228,119,239,166,164,241,164,72,65,92,236,0,22,157,208,225,83,92,160,252,31,103,60,86,14,179,11,177,180,155,105,224,234,152,128,199,87,30,244,179,190,3,117,48,63,119,83,183,111,83,187,180,103,78,28,62,127,251,98,83,189,149,99,220,231,46,222,62,123,238,212,137,3,183,47,30,56,115,241,242,217,99,183,79,31,187,125,246,200,161,219,151,14,157,190,125,192,5,237,179,174,219,7,79,92,56,124,251,240,193,75,71,78,223,62,236,241,122,236,183,207,31,63,113,250,196,249,139,183,143,31,56,113,228,194,237,211,71,206,158,187,114,238,246,153,115,151,202,110,159,245,92,227,152,219,23,61,238,166,35,62,206,230,247,123,220,183,47,158,56,82,118,251,64,189,135,187,253,127,46,29,209,170,195,182,59,134,16,156,2,190,38,217,175,120,111,221,118,159,135,179,223,254,111,50,54,126,234,60,182,121,110,55,178,86,232,5,39,254,224,206,3,124,7,97,164,174,29,4,78,212,148,9,25,187,83,90,192,41,109,106,1,101,80,53,84,124,234,212,199,231,215,222,164,178,119,40,214,5,138,46,6,146,59,207,216,11,221,172,92,253,199,122,142,54,181,249,31,19,128,216,8,139,101,161,25,241,233,29,137,202,162,99,95,163,247,222,128,198,39,44,143,8,195,143,132,23,127,98,181,233,199,31,164,182,27,93,87,237,22,198,231,131,102,127,251,241,135,68,213,183,176,158,86,157,12,137,222,96,50,129,112,212,236,177,130,142,86,173,161,41,26,164,70,222,133,202,104,239,13,245,114,41,197,180,110,48,142,44,149,21,85,21,38,26,235,8,178,106,42,178,213,83,231,105,72,51,158,174,114,204,77,39,87,23,100,220,90,89,85,85,217,170,178,187,28,87,43,203,109,182,64,3,33,130,68,73,157,49,86,244,135,31,226,133,18,108,160,122,175,44,175,158,38,121,99,173,252,177,247,199,31,180,90,176,42,80,223,36,223,249,4,20,127,254,85,123,244,245,243,232,147,53,254,225,4,63,252,2,181,118,10,203,163,145,153,177,248,96,113,254,35,55,160,182,160,143,133,225,194,156,5,88,2,174,67,52,36,186,70,35,247,86,133,150,57,20,2,163,103,164,25,245,61,12,47,54,135,87,123,192,28,161,104,212,49,103,230,59,6,34,205,173,76,153,3,23,66,173,111,64,239,71,29,131,20,255,25,190,117,137,204,230,2,38,68,252,58,188,216,195,63,95,19,198,67,82,229,144,79,2,66,150,177,6,104,13,242,42,188,1,248,110,145,87,63,104,192,20,175,166,52,46,198,31,208,144,39,119,246,254,120,103,55,102,165,132,3,38,166,10,240,217,0,136,149,250,184,144,208,156,97,108,154,221,84,45,96,121,55,21,215,53,98,95,142,184,88,242,155,44,170,156,230,64,172,51,118,59,72,117,166,172,30,23,75,226,212,63,149,149,81,104,105,29,61,234,226,95,45,160,149,94,138,44,136,248,3,77,216,196,45,183,57,25,183,27,44,112,48,74,0,244,6,214,162,167,117,70,113,178,2,178,57,60,51,171,99,239,196,249,7,195,204,150,57,89,174,206,25,168,166,96,80,161,71,42,213,88,92,206,91,217,139,48,118,89,155,177,76,58,19,206,133,159,216,57,144,150,76,83,181,27,56,157,248,196,10,140,174,206,231,9,186,237,213,148,175,206,202,236,162,247,144,255,202,141,187,211,51,252,23,77,211,191,155,197,231,160,153,120,124,240,200,225,112,72,25,193,2,103,125,101,62,198,206,5,253,0,25,85,229,189,129,225,19,97,76,131,60,1,84,35,103,15,56,171,41,67,60,31,150,128,101,140,139,171,115,87,83,46,214,17,16,159,122,26,88,159,3,140,191,106,202,201,217,237,172,91,124,234,0,3,177,204,207,221,100,161,70,125,172,2,242,208,193,212,115,174,166,106,234,128,15,166,235,222,228,65,96,172,126,143,43,24,136,13,2,180,81,77,199,122,17,8,120,234,99,191,110,150,17,18,170,54,164,34,25,131,168,52,186,84,114,205,62,169,175,49,192,164,218,97,6,199,158,196,208,104,38,41,173,213,124,187,152,58,192,201,40,175,202,68,96,84,42,17,237,201,33,95,10,30,98,205,83,156,155,180,108,5,129,116,13,55,9,83,72,156,35,226,12,106,125,35,188,31,20,87,28,162,147,3,209,177,47,209,230,33,188,208,65,230,20,154,235,69,195,107,192,194,26,244,229,52,149,54,207,228,106,18,40,8,169,250,145,246,31,168,227,89,100,236,13,234,236,193,107,18,177,186,254,161,253,177,252,132,229,138,101,15,5,31,103,241,23,252,41,253,62,16,123,124,44,246,229,252,137,67,36,7,249,196,143,164,143,11,226,199,197,179,228,237,37,177,150,51,228,227,180,248,72,124,115,248,138,229,22,144,5,48,18,176,164,170,245,120,22,80,248,175,30,19,185,108,78,149,113,245,76,29,91,13,22,196,46,73,64,164,175,82,216,176,69,76,12,122,64,180,94,203,213,131,153,102,243,184,253,101,240,168,172,193,136,87,43,118,39,213,9,154,38,203,4,128,6,164,111,123,65,132,43,118,158,186,37,47,22,39,98,154,178,1,63,100,125,80,14,11,254,127,136,171,64,113,84,82,39,240,18,11,49,170,69,172,30,86,173,9,100,107,5,150,85,153,43,140,46,63,138,116,126,146,85,91,102,103,124,215,196,186,101,67,163,210,6,110,66,222,2,16,192,240,90,116,184,45,5,94,140,191,178,58,198,229,98,125,77,98,213,201,163,172,86,123,85,85,122,237,66,103,187,82,237,94,206,6,218,53,43,214,174,94,163,206,160,79,70,9,32,100,246,62,94,97,139,213,73,170,4,245,0,139,37,177,182,11,234,181,153,140,41,0,134,23,159,128,240,79,1,16,40,193,227,147,42,3,234,85,171,77,175,167,83,97,227,151,135,80,215,155,148,234,64,32,122,92,46,210,109,177,206,75,150,91,202,21,26,229,163,67,250,58,179,30,153,235,72,153,152,48,135,212,64,50,208,85,233,232,234,71,125,31,82,170,56,173,94,67,101,26,194,93,192,205,132,225,121,254,241,116,74,199,240,11,169,71,234,88,50,152,141,169,21,162,241,121,254,197,88,74,101,1,143,55,134,34,117,182,148,204,26,163,127,62,23,66,175,129,175,37,105,22,84,121,189,199,110,113,128,69,192,53,48,46,162,255,199,89,173,200,234,97,134,199,94,91,172,92,29,217,188,1,113,99,111,218,35,123,225,175,7,250,79,188,34,245,200,229,123,134,170,176,182,90,239,113,91,64,203,82,169,81,150,131,84,28,147,58,149,122,73,234,40,84,26,127,132,151,130,212,234,77,202,68,170,174,103,124,117,156,155,104,63,20,19,12,120,246,166,244,3,43,37,146,94,34,177,224,50,34,227,169,74,81,124,198,30,74,226,89,122,90,86,239,185,89,150,162,197,72,175,148,159,166,23,40,19,5,188,84,47,45,43,42,190,16,91,76,232,72,25,107,17,65,86,168,4,191,144,215,161,140,91,57,197,168,161,54,141,170,148,48,27,27,200,10,163,132,189,56,119,151,235,178,113,122,140,203,252,108,64,201,70,22,91,59,57,193,152,92,132,128,44,169,143,58,154,222,177,55,141,236,210,225,82,86,36,147,244,36,3,77,167,246,84,174,214,193,172,6,100,84,136,89,226,131,148,75,127,109,46,143,159,205,111,80,82,202,200,123,92,33,65,153,172,222,169,42,97,202,29,151,79,155,152,22,226,87,84,67,192,0,214,58,244,44,217,52,33,250,41,104,35,38,218,68,235,180,68,135,241,131,101,236,195,187,150,160,159,232,105,189,78,135,203,97,213,132,140,12,85,102,52,84,102,66,170,79,102,207,72,40,54,153,197,31,49,117,152,210,227,95,182,160,207,143,53,102,175,135,35,220,87,5,241,110,191,133,241,177,140,5,106,146,17,141,211,174,134,116,181,252,4,225,49,126,65,192,170,84,101,103,169,236,116,147,248,116,57,1,143,6,139,14,68,178,197,90,87,126,213,11,184,140,235,116,146,240,33,19,53,206,238,114,160,65,249,140,209,235,232,28,89,115,114,49,58,173,152,12,147,197,65,2,8,220,13,224,32,35,171,147,186,99,54,101,234,141,58,26,136,10,144,100,218,200,5,56,154,188,203,191,28,65,179,75,210,98,193,72,39,90,253,136,158,244,224,253,213,142,65,212,59,192,127,237,160,98,206,25,98,17,254,225,20,234,248,42,74,253,60,214,131,127,208,106,163,203,207,35,51,227,225,197,30,177,94,177,186,248,82,15,160,153,101,252,236,193,186,163,177,222,75,43,62,63,254,64,86,111,146,202,104,181,25,74,57,24,151,159,149,45,135,80,242,30,243,207,190,70,159,205,71,186,239,161,225,249,200,204,154,176,58,67,101,239,11,1,63,210,117,151,127,54,33,214,66,137,125,225,159,189,138,195,111,103,29,76,208,21,200,0,199,143,63,200,246,130,201,96,248,157,44,246,31,16,119,126,55,66,125,160,128,105,177,155,203,255,48,14,131,213,84,105,103,28,58,157,205,92,142,237,77,232,147,86,242,128,33,74,20,112,88,175,43,8,82,179,70,163,5,34,11,66,235,90,241,1,80,47,115,179,201,229,97,236,241,47,229,87,193,96,101,192,92,47,131,121,81,163,184,60,43,247,206,48,155,46,159,19,33,179,48,58,93,147,232,164,17,51,162,123,63,135,215,166,194,161,110,97,121,94,120,213,34,98,219,206,53,196,157,131,252,22,63,24,83,86,198,135,209,172,240,198,114,221,103,243,216,129,134,246,113,177,55,142,128,133,152,150,20,103,139,191,13,47,62,136,172,174,74,158,11,196,155,96,159,150,171,221,167,133,10,85,234,117,176,172,29,179,0,168,153,73,25,3,181,142,94,13,104,241,2,119,172,164,228,141,162,0,85,162,110,209,49,2,245,246,68,39,59,246,105,153,140,16,5,60,46,206,174,214,209,128,7,248,186,166,54,178,254,20,13,191,20,23,185,101,61,140,125,72,78,84,46,209,135,170,10,251,78,201,125,162,100,141,198,41,73,244,160,194,4,34,210,5,16,72,58,165,197,72,38,254,148,144,8,148,145,106,187,117,171,190,233,34,80,46,91,206,249,207,250,205,212,126,234,231,68,3,152,45,226,70,126,166,170,229,143,137,200,32,207,239,220,17,221,185,174,250,45,41,96,97,76,229,197,103,240,250,14,222,135,75,171,10,102,100,124,77,181,142,141,45,167,30,108,58,97,223,165,208,238,238,196,198,3,174,13,38,249,127,99,134,10,149,196,150,166,221,110,214,39,62,187,125,59,211,106,45,7,31,36,31,112,178,31,176,127,219,79,187,52,241,53,92,232,182,91,181,48,217,66,249,129,244,232,156,245,42,107,11,96,38,3,170,210,121,159,199,203,250,2,77,187,176,175,97,172,33,178,15,139,81,180,135,250,57,94,253,207,123,226,53,224,4,221,174,166,146,54,230,126,144,237,0,136,61,245,179,46,188,37,19,112,114,254,189,41,175,99,37,169,160,215,14,35,189,203,225,78,175,130,44,39,138,187,151,241,134,128,29,6,89,229,172,177,86,9,196,172,31,26,198,237,139,107,220,103,153,122,86,218,54,213,254,238,255,69,91,183,123,143,74,13,56,145,241,131,242,82,77,241,69,117,177,113,210,21,149,210,14,247,46,169,208,30,74,242,223,145,21,82,72,201,32,202,218,20,119,112,41,141,98,201,59,41,207,238,40,128,36,97,78,9,83,160,219,85,199,17,31,195,172,50,220,170,152,38,212,247,63,36,239,238,56,208,100,27,90,189,195,119,68,172,43,14,115,61,168,234,217,128,202,12,77,42,48,120,184,109,236,46,169,59,186,60,33,10,120,234,234,92,89,33,202,9,77,18,96,25,8,46,31,144,113,194,27,167,57,84,183,225,225,192,62,104,160,252,249,171,115,158,120,18,181,253,244,211,255,100,154,116,74,51,41,21,40,53,152,192,208,170,151,193,195,101,133,37,19,32,191,113,127,96,86,235,14,186,92,57,205,47,121,166,216,203,59,4,126,105,75,146,115,236,138,243,245,125,148,174,66,79,227,250,181,191,239,119,51,62,159,167,81,171,230,157,112,43,182,163,153,38,54,82,55,231,210,69,32,225,13,18,68,9,205,16,63,128,223,88,95,138,107,242,56,183,229,186,151,18,62,124,0,237,9,77,60,227,7,150,248,177,14,188,141,249,231,115,162,70,137,5,68,189,20,117,189,17,158,46,83,160,60,250,2,210,75,153,172,151,91,21,88,72,254,144,166,241,224,245,191,52,149,7,219,52,215,235,92,78,109,66,199,145,175,107,104,210,28,94,137,19,109,141,6,151,67,75,243,0,42,26,94,13,47,142,135,87,134,52,181,10,15,45,114,117,77,250,1,127,177,154,68,197,197,47,233,228,62,191,151,113,199,128,72,94,107,144,180,16,206,118,77,122,19,83,193,119,237,222,11,186,148,22,151,172,149,80,18,211,189,210,240,6,42,82,58,214,18,43,133,34,206,54,167,189,139,181,65,101,64,15,102,162,185,199,159,88,176,162,14,79,202,104,198,88,161,119,84,232,141,149,68,135,215,74,58,116,208,231,79,178,82,228,42,15,229,247,217,18,205,67,206,70,214,122,243,106,185,219,227,183,187,1,6,147,232,65,138,159,89,108,118,183,14,171,114,172,223,15,70,43,81,224,84,236,29,217,86,178,92,77,133,249,128,177,33,41,140,146,194,118,214,114,246,210,145,139,49,109,13,198,43,165,68,25,198,95,34,179,136,77,50,176,10,25,203,136,253,106,115,193,84,115,112,55,164,140,113,74,144,143,77,153,195,149,92,171,5,175,113,201,74,0,137,167,86,78,166,99,25,33,82,42,254,16,148,39,95,83,25,152,203,44,37,86,170,110,10,196,9,92,36,85,113,79,80,83,43,255,133,105,55,153,116,81,232,41,216,0,100,252,148,58,18,3,255,34,235,2,13,47,1,150,95,241,183,8,103,252,33,227,245,82,34,212,114,76,101,52,103,254,203,81,3,118,4,25,147,84,244,72,77,40,226,199,90,103,197,206,70,212,201,139,226,112,159,62,119,204,114,244,136,166,86,236,93,242,48,177,245,106,85,3,95,197,196,197,214,39,129,43,71,153,10,89,72,229,189,30,111,42,77,4,93,106,153,93,192,134,213,72,9,10,186,184,212,71,10,152,139,251,65,17,6,9,232,150,225,47,189,56,37,242,41,165,23,202,104,129,10,203,164,138,99,100,20,179,93,147,113,148,192,149,114,3,41,56,20,31,165,247,48,183,78,131,117,225,86,160,151,2,245,23,215,30,235,44,142,32,88,105,142,204,174,109,107,127,237,204,141,32,27,239,176,199,225,192,235,209,90,48,242,220,100,45,68,90,205,40,72,231,235,24,207,53,198,115,211,201,53,5,153,56,22,162,239,159,71,154,239,241,131,33,254,254,250,182,34,194,233,113,215,217,24,46,142,138,253,14,236,42,234,181,249,97,254,7,3,1,143,187,80,104,144,26,138,33,0,175,68,174,190,221,214,174,7,227,157,102,60,126,79,48,96,181,91,237,85,133,234,110,19,227,190,33,27,239,240,226,68,180,185,115,91,187,11,98,214,21,239,177,184,70,161,181,187,8,169,139,131,142,51,84,24,11,133,0,92,155,166,86,140,8,66,227,83,104,177,163,120,189,143,1,64,28,240,114,64,133,63,16,180,55,165,225,66,54,249,69,132,64,6,232,201,206,96,160,222,2,244,225,179,177,53,82,17,242,168,158,181,115,193,250,26,208,179,44,177,92,54,166,222,203,112,117,238,26,107,208,15,252,132,44,201,22,4,153,4,224,56,45,133,30,1,251,68,175,238,22,5,161,251,180,65,87,178,168,38,10,180,226,207,228,31,201,170,154,79,174,151,97,165,72,232,108,231,103,190,0,239,71,83,15,84,85,163,120,175,175,7,65,187,47,147,60,39,185,20,54,4,3,74,116,114,183,39,22,149,161,201,86,190,204,26,112,203,149,199,152,94,75,242,89,18,249,44,36,95,220,200,193,198,105,170,250,1,72,71,235,239,163,205,163,104,118,37,210,241,46,21,163,114,179,165,158,117,7,117,113,139,36,91,78,125,206,57,13,202,57,243,85,179,72,231,49,182,176,146,149,130,156,216,59,139,130,2,166,90,15,214,191,210,213,46,213,236,82,12,157,210,148,77,209,241,100,69,92,193,122,55,165,244,176,76,167,60,221,148,184,35,121,225,52,40,191,80,224,24,114,91,89,83,27,83,216,210,166,83,12,237,202,53,43,113,175,204,16,102,52,217,237,158,122,108,246,218,64,35,31,94,69,109,173,42,240,20,184,213,70,143,207,101,39,77,70,7,139,215,100,3,199,38,226,125,106,69,39,180,162,53,214,200,248,18,109,161,182,225,112,232,193,214,224,50,182,232,210,200,184,235,252,140,27,254,57,97,76,181,192,232,31,62,8,47,118,194,191,188,224,72,101,221,210,211,141,76,37,125,241,166,146,31,187,251,201,38,147,24,245,187,13,147,41,25,16,173,219,202,104,106,207,30,60,80,180,161,79,105,207,134,219,59,180,117,237,49,46,151,248,4,200,107,121,5,245,117,108,85,195,55,109,120,171,118,58,242,181,120,236,34,165,197,36,30,21,249,250,89,232,187,183,85,77,55,65,103,35,15,62,110,97,103,111,92,133,22,39,214,133,167,106,115,168,240,125,132,22,249,251,189,249,182,88,64,246,100,40,30,123,194,27,171,9,97,64,142,38,216,6,222,36,131,2,175,47,131,50,205,63,127,200,63,31,45,218,16,203,27,244,58,61,1,15,158,62,216,157,124,75,90,172,247,128,192,199,142,19,95,208,234,199,45,105,49,208,64,154,139,76,181,109,77,7,193,32,4,206,16,29,253,172,78,79,5,166,26,73,183,168,243,91,175,90,177,74,241,102,29,244,26,97,101,32,178,246,136,248,145,108,33,12,14,143,45,232,183,96,35,59,54,165,142,158,59,116,249,226,118,113,143,138,226,113,143,122,143,155,109,146,41,174,228,64,150,109,224,31,73,112,0,7,241,96,191,164,200,221,49,97,162,56,35,15,77,94,15,122,0,217,229,202,45,143,117,243,247,138,39,17,147,219,228,188,30,98,162,65,119,183,168,69,7,231,102,220,54,96,96,209,246,71,145,151,61,91,213,106,208,141,149,156,209,16,180,90,180,38,173,220,77,153,56,236,111,11,47,14,109,81,247,92,156,184,92,220,215,6,179,104,187,88,69,101,241,88,5,14,98,144,45,41,144,131,156,182,129,83,200,193,208,90,131,77,152,105,77,171,131,82,224,6,237,44,62,16,137,99,2,108,81,153,4,52,235,245,121,236,65,91,160,60,25,237,208,81,244,242,1,10,61,217,154,238,226,93,74,145,55,221,91,229,67,197,83,4,146,26,197,75,14,4,187,249,206,221,2,206,35,149,109,133,66,204,163,0,107,115,38,6,84,60,251,108,27,230,145,28,12,248,225,98,137,247,64,109,180,121,40,188,94,60,57,148,212,42,23,208,212,158,184,180,69,109,225,248,6,124,20,94,109,252,132,184,173,105,56,166,83,218,156,55,161,113,161,115,9,117,188,23,166,7,80,199,227,45,106,191,158,241,97,61,86,218,186,31,12,193,84,46,90,203,78,150,73,120,162,212,162,153,175,96,178,108,215,20,54,21,111,10,59,24,191,19,187,219,37,164,225,179,175,104,78,141,89,21,115,22,91,25,171,76,125,15,135,62,161,233,226,113,233,148,110,227,131,236,128,79,119,134,248,145,217,237,26,100,149,253,239,194,152,70,248,8,39,217,24,147,51,43,85,199,152,146,246,73,181,106,187,153,42,205,216,185,58,78,54,103,196,115,50,183,91,30,196,152,86,147,221,233,106,196,66,106,153,28,85,89,108,198,153,140,242,196,1,65,215,175,93,181,224,173,58,140,159,123,93,104,162,61,163,212,44,26,28,54,47,208,127,28,144,231,79,34,179,247,213,41,162,232,164,111,46,30,233,59,61,65,191,156,242,59,214,195,161,169,130,83,62,222,59,146,217,106,51,95,209,71,53,109,186,168,44,244,106,121,74,127,81,247,179,112,232,67,198,94,23,96,141,218,153,218,108,120,177,139,255,178,80,228,102,235,110,166,245,118,105,29,45,188,44,114,179,73,109,106,109,92,0,236,54,236,38,126,239,13,234,104,19,222,15,22,173,225,27,142,212,254,242,19,43,194,240,243,98,154,80,114,194,198,167,155,93,13,138,202,16,106,93,216,154,54,27,89,174,137,180,217,243,158,255,50,191,93,12,74,71,23,209,136,242,49,13,172,75,174,128,181,242,139,139,219,33,54,147,0,209,122,130,1,187,199,131,183,63,58,22,208,248,64,241,84,252,228,102,29,30,143,29,196,244,218,195,232,159,197,219,114,73,105,51,38,21,197,199,68,42,254,151,163,134,117,219,137,35,174,120,116,206,182,145,94,17,93,107,88,123,80,70,119,253,131,219,227,12,32,131,66,219,196,213,115,110,162,165,241,115,197,83,206,228,45,186,184,224,13,28,203,42,244,15,162,233,226,45,189,201,155,196,30,217,48,163,34,179,211,91,210,156,232,5,173,169,21,29,159,11,65,199,138,49,3,56,250,140,73,245,87,83,1,79,202,44,51,22,148,187,133,3,174,185,90,126,116,66,24,121,32,249,176,143,204,161,225,53,197,78,164,184,75,170,62,76,123,148,201,207,146,202,228,92,153,246,50,37,72,230,180,167,142,115,31,100,29,30,31,171,228,199,39,207,122,156,171,115,186,240,113,39,241,64,17,120,227,194,229,29,62,28,246,26,199,51,121,150,242,179,204,237,241,213,51,233,110,243,105,120,247,177,117,178,240,154,212,33,20,235,34,1,41,169,193,62,248,141,69,124,83,43,12,46,163,213,126,37,143,86,37,186,72,244,33,197,213,81,172,51,30,200,148,82,213,79,101,101,168,235,21,62,99,96,112,57,58,216,38,44,223,15,47,127,149,187,174,230,62,188,212,166,35,128,82,226,112,210,99,128,36,100,231,22,226,35,127,90,6,35,2,226,134,245,165,6,66,37,185,140,199,50,37,110,229,136,123,73,99,247,217,157,240,254,60,83,71,124,164,129,143,127,126,131,218,186,229,183,66,164,99,55,207,152,33,17,173,185,141,183,106,236,16,41,145,107,252,16,69,98,254,106,52,226,185,42,226,153,52,121,202,65,5,218,215,149,55,112,9,166,227,102,27,47,192,51,252,66,68,39,60,176,136,209,55,114,199,243,196,83,21,46,37,25,141,201,32,235,204,34,200,226,104,92,57,113,94,28,138,191,86,58,132,206,37,254,197,189,216,207,238,240,242,115,24,168,191,86,58,51,153,156,249,203,9,185,95,126,90,24,89,142,75,7,155,136,90,200,130,21,145,58,229,135,136,160,153,231,56,226,150,44,76,73,145,11,36,214,173,96,88,81,18,101,27,16,14,57,177,252,3,14,50,163,165,174,203,143,95,205,40,6,8,71,100,237,150,70,198,231,213,228,203,175,164,194,217,198,58,103,46,37,213,87,134,79,96,1,6,238,81,154,205,100,128,229,189,191,12,153,241,61,3,42,178,69,170,142,228,80,241,183,47,44,115,146,96,19,69,141,63,88,87,199,250,3,82,60,109,222,124,75,94,23,12,146,84,155,106,69,41,241,144,27,37,63,197,17,75,11,162,77,14,154,72,37,72,176,228,176,209,222,137,87,41,154,155,81,123,234,58,95,22,253,71,129,103,115,110,124,130,78,178,38,148,58,233,242,16,186,106,242,84,61,174,86,22,31,42,10,193,244,113,16,87,62,51,198,215,42,141,180,2,245,137,101,196,250,98,43,200,194,251,217,13,72,73,241,248,164,50,174,190,46,151,88,169,204,29,86,100,125,80,179,24,162,174,20,27,143,227,226,57,183,205,21,180,199,226,227,241,152,196,14,85,3,25,7,13,224,211,212,148,96,83,138,95,202,133,121,38,83,69,49,136,36,62,47,27,88,241,150,179,140,225,181,162,36,167,115,13,199,78,210,213,156,65,192,40,227,46,4,49,73,85,229,24,153,187,17,150,72,37,135,46,37,166,133,95,105,124,149,219,128,188,101,238,96,189,106,3,202,17,83,121,43,138,105,232,134,103,9,12,109,92,137,220,156,190,152,68,56,1,214,30,39,30,229,5,153,56,198,107,47,29,57,92,88,93,110,35,0,219,130,13,30,91,99,28,102,229,160,146,4,204,226,213,115,56,88,116,122,82,58,136,59,65,146,219,221,23,121,71,148,221,207,19,29,17,3,15,80,95,15,255,106,236,27,234,2,112,86,209,217,138,243,184,227,125,81,118,134,77,244,37,242,165,23,128,255,127,11,66,232,29,24,220,196,33,124,27,250,129,77,38,69,38,170,236,160,151,0,95,180,108,132,79,107,232,73,11,244,67,120,243,96,251,199,33,182,210,123,209,230,244,120,92,90,43,203,217,25,98,209,196,58,149,197,156,145,54,212,196,137,82,36,250,202,18,82,157,189,147,160,43,224,32,62,209,181,31,36,125,208,231,103,57,16,59,158,253,240,6,31,49,121,230,136,233,248,197,147,23,104,83,172,215,202,14,38,137,94,227,176,154,217,105,113,16,161,227,225,165,87,223,128,93,182,133,170,5,182,231,200,217,144,74,26,70,147,39,177,214,42,26,198,56,48,221,97,179,212,179,110,103,208,114,131,115,251,130,215,60,65,139,110,67,74,135,216,120,33,116,14,177,166,92,142,69,40,180,190,145,98,144,96,48,206,252,77,212,144,24,210,50,155,132,132,62,32,187,116,205,110,241,149,19,198,22,40,151,211,29,252,214,122,131,86,237,129,131,193,166,211,191,158,58,91,127,170,254,148,108,165,6,44,64,75,147,251,102,83,130,24,179,41,4,252,192,28,190,192,181,115,41,188,188,176,45,108,91,222,59,96,82,156,77,219,160,35,93,60,207,54,234,78,29,60,110,62,16,204,216,193,108,138,130,185,220,28,94,124,130,186,67,219,222,59,188,23,130,121,246,9,248,188,192,184,175,169,245,40,155,186,0,67,6,146,86,184,55,141,122,6,190,141,78,145,11,119,129,11,218,213,186,148,85,133,8,133,248,185,167,104,98,85,232,124,251,109,116,9,79,226,253,248,2,195,58,143,175,233,132,189,70,71,211,149,52,77,239,84,233,96,54,193,138,62,182,18,215,210,81,126,126,249,91,237,32,116,81,189,131,202,94,139,137,14,242,35,61,209,137,185,232,203,7,168,187,245,155,237,160,46,67,7,149,125,211,100,29,156,237,65,111,231,99,238,170,219,173,7,230,72,175,122,181,222,170,56,186,36,186,43,58,102,68,91,31,243,115,243,255,17,58,96,202,190,186,141,241,217,51,108,161,202,85,183,120,93,202,138,29,9,185,42,204,194,36,84,164,169,229,159,206,130,197,85,56,133,174,64,10,20,16,225,166,118,2,55,55,251,147,199,43,243,233,122,164,2,105,53,164,25,245,140,69,155,135,80,107,43,106,94,217,22,190,149,12,185,120,64,168,184,255,155,119,47,34,243,211,225,165,185,237,233,133,151,105,202,230,229,17,231,164,29,143,132,161,251,82,112,135,68,204,219,0,178,193,150,106,205,49,238,186,38,142,24,115,186,108,203,3,241,208,148,104,115,225,76,228,13,75,131,58,151,199,202,184,228,67,128,125,43,115,234,66,100,225,13,122,125,175,192,195,240,45,243,121,201,150,195,123,218,162,21,151,237,152,179,124,88,61,84,90,16,78,47,59,216,111,27,44,247,51,208,252,70,236,118,165,74,206,110,147,61,47,162,112,219,196,81,146,79,69,174,140,92,238,203,179,93,75,192,27,2,60,238,246,178,45,80,95,231,154,216,20,86,126,150,13,28,97,252,44,60,12,40,238,243,203,129,15,175,180,132,23,135,182,17,254,156,92,192,98,167,41,38,251,128,229,64,78,162,99,210,246,203,168,164,94,218,113,88,158,214,238,242,250,60,121,250,25,213,162,153,215,124,199,130,240,126,86,244,42,250,198,100,150,188,22,89,214,248,215,148,123,133,164,147,231,147,14,155,207,245,172,251,171,169,71,221,3,231,21,253,67,203,42,104,187,145,174,96,141,38,43,62,142,94,118,238,60,62,111,159,156,158,78,142,213,20,150,159,240,47,70,83,14,241,151,243,90,150,92,139,71,193,167,116,13,21,254,149,116,41,154,38,233,6,172,244,11,142,174,38,174,195,170,247,216,27,56,63,103,117,145,51,242,107,99,160,200,143,121,199,247,47,53,15,137,0,37,223,25,80,47,65,146,184,168,143,212,144,148,201,105,167,100,119,247,137,239,127,216,231,212,137,95,210,47,103,72,58,131,94,82,135,40,126,164,147,111,110,65,33,209,67,156,148,211,198,170,144,180,135,70,215,85,123,220,34,20,127,36,29,131,64,234,213,27,76,166,114,27,224,7,59,18,121,226,247,125,193,107,91,189,191,204,26,180,93,99,3,242,49,214,211,122,189,86,167,167,205,90,123,133,201,204,86,58,170,174,210,180,175,190,222,90,209,64,211,180,221,6,127,12,245,52,109,10,216,68,207,13,0,87,88,30,17,134,31,9,47,254,140,173,111,198,0,150,227,4,232,194,194,216,41,124,85,5,208,7,3,176,218,153,0,83,198,216,113,79,108,22,7,231,243,7,44,58,147,211,139,113,106,197,87,123,251,116,154,24,198,96,124,42,42,233,127,84,208,241,91,174,36,87,183,244,11,237,165,123,40,43,36,7,206,52,100,219,60,190,132,71,102,157,85,235,98,235,24,87,242,77,95,0,169,19,223,82,105,193,37,49,213,66,127,246,113,162,91,180,37,105,138,36,156,155,125,251,177,139,121,141,116,97,221,78,198,225,224,92,248,168,139,26,172,0,123,129,79,238,180,49,129,196,15,114,49,3,30,16,232,214,141,10,122,103,236,22,146,26,157,70,188,218,175,70,3,111,52,210,173,154,240,3,190,19,0,196,59,88,107,52,240,91,246,85,188,48,85,42,24,255,29,43,12,15,196,155,146,57,119,29,214,48,53,9,106,62,65,42,149,70,4,251,190,147,223,73,188,66,36,189,216,87,217,55,217,232,90,227,84,142,103,82,180,181,71,88,157,65,51,67,168,239,17,26,125,136,22,239,74,51,233,135,252,46,251,194,55,71,29,199,1,104,103,153,134,131,248,150,179,75,55,2,84,13,37,94,242,174,1,150,221,192,225,147,120,170,169,223,226,108,239,86,18,143,212,16,199,191,106,74,35,109,162,46,222,213,236,73,206,224,119,122,124,129,179,73,185,82,179,96,221,188,90,30,241,152,116,172,167,38,158,249,206,158,108,80,136,65,138,217,160,16,115,101,134,194,239,220,56,20,104,252,45,63,63,145,21,23,36,87,102,40,2,155,192,5,90,90,15,47,142,8,35,45,153,161,32,185,50,67,81,103,223,56,20,252,199,209,200,131,222,108,80,136,185,50,67,113,213,191,9,40,190,12,66,19,89,161,32,185,50,67,113,115,51,35,50,60,140,22,94,100,29,17,146,43,11,117,218,54,14,69,116,249,81,116,45,23,116,196,51,102,134,197,233,218,12,74,250,58,249,151,207,178,162,132,228,202,66,30,174,141,67,17,89,91,69,51,45,217,160,16,115,101,134,2,36,146,199,13,66,96,19,24,105,107,141,60,30,68,189,227,145,246,119,252,167,101,144,246,153,81,19,203,158,101,144,156,206,192,38,166,207,167,207,192,185,179,78,31,146,43,11,28,172,149,229,54,7,72,79,78,128,244,100,5,196,205,184,55,54,64,31,63,230,194,87,73,174,44,179,120,19,124,53,58,216,143,143,169,205,54,133,73,174,108,146,142,113,223,216,196,152,8,79,159,71,238,222,203,6,137,152,43,139,156,217,4,135,135,153,137,198,123,209,240,75,254,89,111,142,51,135,148,200,12,17,158,202,55,56,102,19,4,59,48,39,12,180,9,203,243,168,111,13,205,61,205,13,50,177,80,102,200,110,108,134,233,206,116,162,181,213,172,20,76,114,101,134,130,217,132,150,36,76,246,162,229,80,86,186,33,185,50,67,225,216,156,150,4,51,4,253,57,147,59,221,144,18,89,40,249,198,38,102,118,123,15,10,181,101,211,30,197,92,153,161,176,225,91,130,174,99,105,180,33,210,93,26,200,133,233,147,92,89,120,173,117,115,250,99,118,62,39,230,202,162,32,108,98,76,176,81,145,131,220,33,185,178,224,194,189,9,53,101,254,11,90,120,153,85,77,33,185,178,208,231,205,77,216,88,161,71,57,224,66,204,149,25,138,166,77,224,2,228,107,14,116,33,230,202,34,255,146,233,34,175,1,153,88,143,228,204,54,138,108,250,70,39,7,249,197,89,241,4,63,124,246,231,211,245,28,24,89,113,77,191,181,207,209,103,111,190,37,136,80,239,28,191,180,182,221,38,113,142,203,3,197,166,151,23,143,129,95,101,197,197,230,160,32,223,254,16,75,107,200,185,74,185,44,37,141,79,69,214,95,102,95,62,193,185,50,67,102,119,109,120,106,3,122,208,167,225,172,82,152,228,202,12,4,22,192,118,198,179,97,72,64,79,229,63,191,206,138,14,146,43,191,181,11,172,221,90,61,249,209,238,195,73,152,211,89,129,33,185,178,40,176,28,100,118,111,24,43,252,194,71,52,242,57,27,32,98,174,108,246,15,235,190,233,100,213,101,81,18,17,219,89,7,227,10,64,221,42,112,101,6,103,228,3,26,153,203,98,114,168,65,113,103,239,143,137,221,29,178,210,139,247,159,126,16,151,239,101,27,117,92,163,49,182,170,159,237,154,234,196,173,212,30,119,192,154,116,19,151,90,121,217,237,78,218,164,235,157,114,106,48,118,201,150,54,233,150,173,156,138,50,156,15,74,225,173,172,183,161,140,165,228,87,38,164,118,80,118,3,73,46,197,197,104,155,164,155,52,114,42,134,175,167,208,38,221,79,161,86,204,27,180,186,184,184,119,82,194,249,144,105,176,92,197,124,131,99,220,150,0,104,241,87,241,217,237,203,189,168,117,81,86,157,184,31,153,145,2,36,234,201,118,7,77,42,158,100,183,72,169,65,158,225,170,83,224,118,78,198,141,119,174,164,107,73,51,84,147,126,109,148,54,113,111,84,142,133,108,78,206,141,139,201,174,69,82,43,153,124,40,126,106,183,101,23,76,228,86,1,185,144,65,155,116,23,68,110,5,241,109,3,218,164,235,6,212,202,201,174,12,208,38,221,25,144,51,13,40,84,154,116,156,106,42,22,100,199,151,170,119,38,233,8,210,164,227,103,115,106,51,118,238,179,236,196,103,181,114,182,160,43,16,244,37,53,54,208,142,186,7,50,22,74,61,12,56,141,211,37,142,68,86,157,209,178,243,182,146,142,82,83,43,144,124,11,178,56,31,226,83,65,118,82,151,90,121,192,136,172,65,217,201,197,217,70,218,148,97,164,27,212,135,121,120,158,127,60,157,251,144,213,49,228,50,61,126,113,145,239,200,60,71,146,34,23,241,201,48,241,152,202,140,252,68,126,6,103,218,120,37,14,0,85,175,160,94,78,36,178,19,91,85,71,216,159,122,252,102,204,173,205,227,194,27,212,240,70,67,89,24,59,249,86,163,129,239,55,131,14,6,239,240,226,195,172,187,49,205,119,172,111,122,132,146,110,23,72,235,119,226,34,139,156,202,91,131,77,218,164,59,39,148,74,85,43,223,223,160,253,175,198,38,127,19,118,56,193,7,237,119,102,107,247,42,200,166,107,140,91,225,244,177,152,176,109,153,64,161,133,88,29,84,74,82,168,79,62,223,162,173,143,193,162,205,163,112,10,48,241,11,155,64,76,93,99,184,107,152,116,35,161,247,88,176,37,17,162,250,152,85,169,140,89,26,173,198,154,178,226,13,244,0,135,111,39,15,50,238,84,116,196,72,11,139,118,146,19,6,151,168,131,25,145,92,231,105,144,51,33,48,161,187,198,50,51,161,132,140,249,47,226,159,147,184,233,24,245,46,200,139,102,104,19,59,71,171,15,107,235,7,97,184,43,51,223,72,62,139,51,233,0,84,181,50,89,66,110,237,78,18,205,130,133,188,24,228,170,52,130,162,75,22,249,70,252,141,100,78,79,50,191,138,196,23,226,74,49,246,21,159,243,187,180,142,30,117,41,184,35,97,111,26,201,35,202,78,217,156,216,107,198,101,137,185,194,88,96,178,24,41,241,117,192,227,205,209,251,70,60,5,20,251,53,81,140,189,44,238,151,162,209,233,200,131,152,195,13,241,42,129,223,177,72,31,64,149,228,219,34,249,67,1,244,58,61,77,235,244,149,162,51,85,220,115,39,230,100,19,176,224,120,33,74,58,23,134,177,199,126,226,230,99,63,137,87,151,155,189,193,216,227,5,36,200,177,69,131,29,195,224,85,192,69,64,187,68,92,74,196,242,7,236,216,157,250,122,16,212,249,203,49,143,39,81,103,191,17,31,198,235,251,25,175,183,198,116,240,8,125,244,80,149,126,167,45,225,156,227,170,209,233,118,230,239,206,35,54,141,59,125,3,122,109,49,27,113,32,155,220,179,167,54,238,109,39,243,126,142,141,26,244,24,143,151,120,166,244,163,174,152,59,97,140,90,98,131,159,68,29,88,213,152,126,118,73,87,166,175,80,32,142,184,143,26,123,35,224,226,220,215,178,140,62,246,188,146,114,234,100,62,109,110,28,56,100,15,98,103,43,5,183,58,241,149,95,43,47,12,13,164,254,198,142,118,113,79,176,196,43,2,10,52,32,189,185,117,171,190,233,98,0,176,92,206,249,47,176,140,189,9,227,150,218,79,253,44,121,221,89,192,92,109,252,153,170,166,126,254,249,206,29,77,50,57,197,92,4,149,39,65,10,56,154,164,94,197,250,16,96,172,226,31,2,45,228,192,14,144,144,1,183,234,228,236,108,53,118,75,218,235,242,120,188,53,228,27,185,22,165,129,113,213,24,104,154,222,75,74,96,124,166,182,149,226,203,152,244,154,28,117,73,217,130,62,31,190,26,27,215,224,243,96,152,0,138,50,209,219,57,63,213,79,244,76,141,211,142,146,47,101,90,251,62,149,118,249,145,102,176,184,85,43,37,130,78,173,94,226,145,41,230,137,83,81,162,5,171,7,216,190,98,57,252,38,134,142,84,23,120,178,164,16,159,53,169,239,210,132,112,174,73,213,61,90,41,101,51,145,181,255,37,106,148,66,103,7,152,228,232,30,54,137,241,26,252,204,152,250,157,53,27,79,89,116,91,124,132,144,6,31,14,196,175,60,141,204,124,66,173,111,64,210,70,39,7,98,122,117,174,205,168,249,95,111,60,109,18,231,64,29,88,163,74,83,113,164,231,22,39,3,51,26,15,68,251,122,120,177,89,184,187,20,94,154,68,175,7,195,139,93,194,208,125,212,170,118,209,246,198,147,130,150,34,59,199,114,255,161,19,135,107,204,85,166,42,221,206,43,140,11,100,82,13,109,214,91,141,108,133,94,103,119,0,35,213,155,24,179,157,182,218,140,58,179,195,170,51,154,173,230,157,23,88,59,231,99,109,32,97,112,125,59,12,7,118,232,143,194,63,185,17,1,63,245,122,248,163,211,235,77,248,163,2,254,28,63,127,242,215,195,191,94,0,177,163,163,171,116,167,77,162,91,107,109,228,201,125,212,181,30,89,95,68,189,143,254,223,2,14,217,239,236,70,61,237,66,198,123,41,210,211,55,71,7,25,206,160,113,248,88,118,191,13,102,230,53,81,89,179,52,54,213,93,187,182,211,11,12,250,140,241,248,229,99,23,47,233,142,237,172,151,126,157,56,101,174,56,2,104,106,105,67,125,31,50,94,219,186,241,148,141,141,235,12,232,83,11,26,159,10,47,62,225,103,251,195,139,67,104,245,9,234,122,11,220,189,136,99,20,211,73,165,239,223,32,123,221,252,45,183,27,79,217,22,137,98,39,59,233,42,43,43,170,104,186,194,84,105,208,153,226,14,252,226,58,21,94,226,15,77,242,93,19,209,22,181,59,51,148,211,55,55,217,148,70,226,166,191,209,126,227,58,94,41,139,172,15,242,207,103,197,128,90,124,44,200,235,65,52,174,118,121,198,198,83,182,117,75,61,173,165,171,224,15,252,59,122,234,216,137,67,231,42,64,25,215,87,154,15,27,117,49,86,248,232,79,160,153,104,255,122,120,249,3,128,42,46,169,242,247,90,97,132,212,162,116,148,211,55,55,62,73,219,17,241,251,37,176,243,156,219,239,196,1,104,162,110,210,209,22,14,189,199,7,237,60,29,69,189,147,32,30,163,47,212,46,92,221,120,202,107,61,222,26,12,4,60,110,114,235,5,176,61,225,253,75,180,250,22,224,138,76,77,162,158,207,32,177,182,138,255,201,244,218,252,117,214,100,173,154,109,204,83,121,141,143,125,142,156,54,247,21,166,155,206,96,128,99,125,87,57,237,126,98,164,26,98,43,95,48,93,177,114,52,213,35,158,5,35,139,53,218,16,0,133,214,131,85,98,227,200,98,74,12,105,233,177,36,248,236,7,23,190,96,150,12,30,235,101,193,72,215,4,40,206,77,197,70,71,147,40,255,195,190,29,156,99,151,197,194,81,251,40,253,238,91,59,228,111,98,221,219,183,163,38,80,142,203,237,168,5,243,29,255,32,1,214,59,196,160,32,89,77,119,100,197,19,27,161,241,7,137,241,77,15,239,19,3,225,122,63,135,215,166,140,252,139,49,42,118,233,64,54,154,201,210,125,124,9,4,99,115,166,247,63,86,62,214,251,90,74,151,212,251,248,139,29,148,158,170,169,161,232,196,91,229,177,72,122,154,132,137,124,17,153,212,244,79,234,77,107,179,181,157,252,72,101,92,148,39,191,252,171,202,66,13,70,166,226,106,141,88,86,109,45,111,114,0,125,236,205,33,168,144,172,199,164,135,21,218,60,46,139,171,94,30,104,133,22,38,169,68,104,85,106,86,121,244,28,37,220,159,4,67,8,13,175,197,243,231,179,188,227,119,113,118,86,252,43,95,202,193,11,74,228,33,102,121,126,47,103,139,45,202,40,45,175,168,212,1,157,143,87,67,86,168,56,251,13,139,195,99,11,66,22,249,34,12,126,127,134,13,56,61,246,106,23,235,8,236,101,27,64,35,241,215,212,227,197,110,28,172,151,88,142,193,199,99,145,101,154,234,216,193,185,201,236,156,84,149,204,208,73,123,22,241,17,110,179,145,195,115,138,52,93,238,113,147,159,187,254,23,105,113,183,44,42,24,79,207,148,90,197,56,187,212,67,247,165,240,82,76,0,11,147,48,205,65,55,130,145,96,130,118,46,112,49,192,248,2,84,234,61,35,178,181,254,244,197,33,177,37,105,169,53,117,14,108,87,74,161,103,43,87,167,124,230,120,60,127,182,179,199,241,134,35,7,92,79,123,194,120,249,130,254,138,249,87,24,85,93,149,249,252,69,49,78,91,110,219,185,172,22,29,110,81,67,17,158,82,163,225,231,223,69,239,173,242,15,58,249,129,217,232,219,101,212,243,16,91,86,171,235,209,201,54,180,210,12,127,41,1,180,139,142,33,244,184,27,178,162,241,1,80,8,81,235,71,212,215,205,247,78,131,113,28,167,11,175,211,19,80,186,136,32,169,39,248,8,116,24,28,23,115,179,169,70,195,58,28,96,183,87,59,24,59,123,194,189,151,12,213,9,60,165,170,241,10,33,89,117,245,248,0,55,110,70,190,42,13,53,200,67,112,247,227,40,93,252,50,110,248,43,134,234,226,21,0,90,111,128,15,218,168,211,193,71,133,195,97,51,89,13,58,47,77,251,26,245,13,1,63,40,191,94,28,176,203,92,163,233,74,147,173,220,235,174,219,25,112,6,235,173,110,134,115,213,84,84,26,154,244,250,202,157,215,131,140,139,11,52,225,147,186,196,133,108,28,215,75,49,174,64,1,16,169,205,64,1,153,212,128,36,206,107,173,83,191,188,33,94,192,105,168,45,10,77,213,110,22,7,184,159,106,119,153,41,70,246,43,102,147,77,47,127,61,227,114,169,207,46,121,86,145,37,103,171,252,91,77,249,140,231,149,74,227,133,11,7,196,241,52,159,83,25,79,130,57,124,44,174,196,39,68,255,209,240,98,103,180,189,27,125,156,69,227,239,80,239,56,254,222,251,40,50,246,140,127,208,195,247,246,9,227,161,188,216,1,1,252,155,97,9,122,166,162,202,170,167,109,18,75,224,26,104,218,86,143,89,66,37,72,73,67,85,42,75,208,85,85,54,233,116,70,21,150,32,197,151,67,166,68,96,58,228,150,120,69,174,200,204,192,18,226,248,203,119,246,147,66,217,204,138,124,89,68,94,36,85,155,99,247,51,115,3,245,190,169,114,137,239,120,186,203,151,156,200,212,35,11,188,52,125,224,36,62,132,66,107,172,50,26,116,21,25,199,69,159,80,9,6,218,209,227,94,161,183,75,120,187,30,93,126,20,233,252,4,108,58,242,231,160,48,213,28,9,189,231,95,244,253,141,39,121,165,205,228,168,178,137,7,117,52,234,235,236,120,49,242,186,124,146,195,236,45,208,36,207,142,198,111,107,122,23,130,132,106,179,118,186,160,147,90,241,172,159,180,243,231,192,64,248,182,13,130,108,169,160,6,3,107,15,202,117,187,227,167,174,28,63,6,202,175,217,116,229,216,25,197,209,213,39,217,11,162,251,163,232,144,243,215,74,55,26,31,66,35,115,252,224,44,234,14,161,153,63,209,226,61,252,246,233,40,106,159,70,237,109,240,61,50,219,130,122,103,165,99,173,22,23,35,83,29,197,176,24,116,197,231,28,12,109,178,210,38,135,89,228,28,86,175,1,56,135,30,115,14,191,145,166,89,67,42,231,200,193,98,40,4,42,11,85,209,183,99,124,108,144,62,107,55,143,132,146,245,177,209,148,113,64,237,77,242,241,60,123,233,202,133,51,116,165,78,127,144,54,29,84,25,207,84,219,131,95,248,24,94,156,142,54,15,69,91,158,224,208,220,80,127,116,104,10,127,239,232,67,93,163,168,175,35,186,54,88,44,157,100,11,56,139,89,87,73,155,171,12,118,201,240,112,213,1,185,219,139,99,120,228,132,201,111,75,45,41,12,41,213,230,210,243,146,193,161,154,178,69,238,200,21,198,131,87,48,237,106,117,38,157,161,138,206,56,46,50,155,99,120,5,141,62,196,171,190,227,33,254,195,20,106,123,133,186,94,161,182,126,48,18,225,187,240,240,193,223,120,126,235,77,21,38,131,89,79,139,154,131,201,193,210,180,93,95,36,155,35,43,26,191,173,201,93,32,42,170,205,218,239,146,217,145,158,54,109,86,228,98,49,26,21,135,206,144,100,83,160,153,7,225,213,207,216,145,225,245,116,120,229,121,116,184,85,52,26,249,185,167,145,249,55,104,228,141,16,90,167,164,31,227,61,248,136,172,34,152,16,250,226,51,2,214,236,208,155,29,6,157,180,248,96,179,210,180,233,38,102,4,54,23,77,27,205,27,48,33,242,199,220,246,42,250,155,165,152,218,188,59,92,82,234,55,154,210,6,207,197,200,98,146,146,70,207,4,26,171,81,171,211,153,77,58,179,202,232,165,234,244,96,174,161,145,54,252,111,97,62,186,252,16,181,13,10,35,163,104,98,85,28,212,98,73,251,34,79,114,236,100,108,175,100,172,180,195,36,74,123,195,85,59,62,0,56,88,28,105,159,5,135,223,150,168,47,8,245,212,102,238,114,73,129,87,77,185,219,85,23,47,92,57,121,10,219,85,21,7,127,53,86,101,28,144,132,254,46,172,61,68,239,30,255,181,50,132,175,95,239,124,27,94,26,197,135,28,60,108,195,135,211,60,159,224,71,70,191,201,25,109,189,138,247,177,124,172,173,204,214,144,60,167,97,46,66,191,76,70,189,217,174,55,51,14,67,5,153,206,58,253,77,59,124,222,128,233,172,175,247,208,58,159,173,174,128,211,57,59,14,191,173,25,93,24,10,170,205,218,237,111,89,119,79,118,24,19,62,124,192,135,254,46,78,81,160,161,132,67,79,81,235,52,190,141,120,120,45,188,24,18,3,223,255,90,233,14,135,186,177,89,50,60,204,63,155,192,207,73,96,120,154,91,83,206,221,84,82,226,41,241,67,138,124,207,160,163,73,206,94,241,160,66,82,224,60,103,59,141,239,85,217,79,253,236,228,236,118,214,45,139,35,220,8,136,219,157,114,39,220,95,127,61,125,250,160,57,227,146,82,133,104,185,36,49,179,184,29,211,55,31,14,77,162,246,49,236,217,223,177,142,166,251,254,90,25,21,207,40,199,222,227,99,95,35,31,223,69,7,123,194,203,11,56,12,50,188,216,206,119,223,197,158,63,5,177,95,12,197,85,109,104,248,48,85,26,43,28,102,59,77,22,42,233,107,70,232,132,209,43,183,95,242,113,154,138,31,221,111,72,240,66,200,29,51,108,54,136,202,111,103,31,99,99,132,85,187,193,142,111,140,71,138,104,201,104,2,229,234,57,78,56,7,168,72,216,129,90,206,69,50,113,31,236,193,28,43,71,188,151,85,115,38,92,163,101,69,202,1,97,229,64,202,229,196,17,247,156,99,215,207,251,127,222,77,213,82,101,196,71,123,223,142,154,212,140,59,106,119,42,33,125,223,142,59,172,203,207,170,149,81,28,40,226,44,173,194,6,82,107,145,188,183,115,153,230,228,198,140,212,242,240,137,219,34,243,66,173,110,213,233,180,61,19,226,91,27,167,140,184,75,171,78,230,110,159,121,78,37,92,230,149,241,43,247,161,79,127,155,211,210,3,69,165,235,28,197,88,141,40,169,2,41,58,108,229,121,131,254,16,93,105,208,93,60,84,161,172,195,86,36,22,53,20,249,128,120,102,161,176,60,42,76,141,162,209,135,225,197,105,254,197,163,72,71,91,100,38,196,175,188,229,191,142,253,45,4,63,94,184,116,88,105,131,163,138,149,188,165,29,6,236,251,112,173,104,59,148,89,144,150,197,8,202,159,113,101,100,131,249,25,62,249,16,77,109,214,174,254,71,10,117,130,30,93,110,242,34,145,87,73,100,72,136,86,22,27,242,162,170,99,164,36,229,55,34,197,165,198,36,65,158,121,2,40,148,139,9,170,237,163,252,111,126,136,20,84,175,20,228,41,85,189,221,130,254,251,88,94,204,124,144,157,222,160,165,141,180,89,11,255,78,24,207,31,215,27,43,177,159,120,85,85,165,241,66,70,6,169,87,147,170,179,79,195,161,161,200,250,59,28,59,79,206,231,248,87,243,8,63,176,36,188,121,16,249,184,244,175,230,23,127,7,169,74,155,225,163,170,202,110,96,171,24,43,94,90,108,104,186,238,197,71,128,5,138,228,23,144,21,105,219,47,85,11,68,53,181,89,251,186,13,235,137,25,162,26,143,184,237,233,49,141,169,171,138,149,120,77,49,211,18,33,57,67,206,20,47,82,6,125,207,90,169,81,169,82,156,203,80,65,87,24,140,248,141,122,123,42,43,164,242,91,102,229,225,169,248,180,175,228,103,22,114,161,168,90,253,219,149,54,237,19,209,192,121,203,147,14,219,17,79,216,213,214,51,62,96,7,156,187,206,203,52,1,125,52,176,54,79,208,231,103,235,124,158,160,215,26,108,218,97,56,108,208,129,174,109,56,12,255,128,210,233,84,2,39,200,147,59,77,128,186,136,186,151,163,143,59,132,150,197,240,98,40,188,220,28,94,234,136,220,91,21,222,63,16,222,175,71,166,90,208,234,199,191,86,242,219,119,33,188,17,51,198,178,164,171,59,11,193,240,170,240,7,205,24,105,125,149,145,48,188,27,58,79,5,94,58,220,148,255,67,174,72,200,198,221,240,212,72,98,113,241,123,77,137,88,78,138,92,207,60,15,139,191,200,88,116,10,171,205,17,171,91,237,90,145,107,250,230,152,138,122,202,99,125,102,51,39,122,197,70,87,210,153,197,179,189,14,156,56,175,63,80,117,234,144,120,182,23,252,58,121,242,84,229,193,56,127,137,204,46,8,195,139,225,245,49,188,101,181,250,10,245,206,134,151,39,34,235,195,252,244,196,182,243,20,236,103,65,87,233,141,216,221,194,88,101,54,209,38,3,230,41,78,147,141,187,9,148,205,97,158,82,209,0,74,148,190,144,74,84,38,140,108,191,250,84,44,122,168,205,208,237,130,112,128,76,105,139,166,114,209,154,217,150,249,173,39,227,121,236,216,133,19,71,126,53,158,169,32,227,121,82,250,117,81,166,63,116,162,222,137,200,236,11,126,104,62,58,242,137,191,215,138,250,219,196,33,142,204,206,71,214,219,81,223,179,111,99,162,235,232,10,50,223,13,58,198,86,65,28,49,42,141,172,190,9,172,37,107,113,38,122,78,168,249,59,207,248,204,20,82,155,75,255,11,54,245,179,26,80,137,163,135,210,142,27,74,181,64,124,108,131,252,176,28,241,188,29,242,52,9,253,138,133,221,236,141,64,122,97,242,52,185,112,178,133,32,102,19,45,26,91,192,39,63,207,70,185,25,166,33,105,137,85,87,94,46,158,157,19,240,4,24,87,74,83,210,25,216,73,31,178,35,223,99,203,184,73,87,193,55,114,110,187,167,177,252,226,233,19,135,143,232,46,94,162,106,168,93,248,144,181,195,208,198,174,221,187,203,235,216,192,37,174,30,190,238,141,175,90,81,137,163,143,196,163,205,208,195,81,212,49,188,241,211,143,154,108,153,206,63,10,48,156,61,216,84,176,243,143,160,166,252,14,63,18,141,209,68,113,139,116,132,117,252,0,187,99,215,174,93,128,239,26,197,241,198,229,8,7,149,15,180,83,143,103,167,148,137,188,165,56,155,199,109,241,98,8,196,175,1,59,6,52,227,245,26,210,225,254,242,75,54,96,134,233,211,105,63,219,17,77,117,215,174,89,54,120,76,147,66,213,202,231,52,41,100,76,90,0,240,146,19,192,226,231,117,171,120,78,225,19,224,133,206,14,69,147,74,142,120,220,35,124,80,54,206,159,195,86,39,158,151,146,45,97,113,101,222,175,248,251,39,149,142,231,226,98,89,152,83,130,47,30,63,122,210,124,254,242,37,51,145,35,210,175,203,170,187,162,195,75,252,147,30,97,100,148,127,62,251,175,230,145,112,40,132,38,151,249,135,83,255,106,126,1,98,5,27,235,57,202,141,237,61,83,130,104,38,102,26,159,39,93,97,168,162,245,12,109,39,38,72,224,106,0,159,32,85,65,214,113,225,155,193,153,170,153,0,9,55,233,178,156,37,149,21,71,185,120,130,230,116,118,100,174,203,160,69,166,149,218,172,93,206,241,40,204,108,253,41,128,81,242,237,167,109,103,9,103,142,30,61,126,180,234,172,238,188,104,76,194,175,99,231,206,93,56,163,194,18,226,107,76,225,197,158,200,100,75,100,117,25,172,77,190,191,53,28,122,240,247,97,6,58,189,30,187,74,216,28,180,81,95,97,37,155,58,238,42,243,213,42,224,3,238,77,49,131,76,216,249,187,178,1,53,250,168,205,208,217,18,3,248,222,83,166,157,114,172,45,38,116,90,138,106,178,97,197,142,10,47,62,224,63,140,161,222,71,248,248,228,222,89,20,26,69,43,247,248,87,11,104,165,87,109,153,62,69,175,252,254,245,67,239,230,150,14,100,179,246,248,209,211,71,117,167,46,28,16,103,45,252,58,118,241,84,149,1,132,247,131,1,180,252,85,120,214,142,79,75,95,27,199,87,135,180,181,162,245,123,225,197,1,161,159,248,38,255,157,22,229,55,146,196,139,127,110,75,214,123,129,240,253,207,227,166,195,250,3,39,15,157,38,248,150,126,29,62,173,169,141,204,188,5,76,71,198,230,34,205,45,24,217,195,175,132,249,87,252,72,39,122,242,46,28,26,142,111,205,120,191,103,178,198,169,112,164,125,244,184,158,62,123,90,111,56,65,80,125,94,252,85,97,214,212,162,201,187,225,213,126,97,234,17,154,158,140,140,77,68,166,58,241,225,66,235,239,163,205,163,168,117,66,120,49,86,162,238,141,114,147,99,23,141,103,79,94,56,101,20,185,9,254,117,249,148,177,146,92,195,132,163,193,90,151,249,142,62,126,96,46,188,244,138,191,55,11,100,46,76,61,143,204,54,151,72,59,79,60,95,58,126,192,124,214,248,171,73,196,243,81,233,23,94,230,5,102,253,113,89,174,113,241,95,59,132,150,105,96,42,209,149,87,18,23,41,145,246,134,172,220,3,191,30,51,31,58,164,35,40,63,44,254,58,118,84,83,43,180,247,135,67,143,80,79,11,142,12,92,120,41,188,253,42,188,31,69,35,111,128,113,151,184,246,6,88,200,145,203,21,103,15,156,252,245,168,200,66,142,92,174,52,31,60,121,224,50,190,101,248,81,120,249,3,255,124,22,245,77,138,27,150,64,221,168,173,135,111,121,32,116,124,44,209,245,6,241,125,224,104,197,193,35,103,42,77,103,8,190,79,72,191,46,137,30,35,195,171,56,246,117,156,28,170,213,63,136,250,122,208,199,143,37,138,206,91,197,166,43,46,94,60,124,196,32,169,216,240,235,50,125,197,20,23,138,68,27,65,175,95,70,238,118,151,24,244,198,209,124,249,184,238,180,238,96,197,175,6,137,65,147,95,151,15,3,227,248,178,128,122,158,9,51,205,194,212,92,92,50,2,31,17,250,86,254,115,24,116,41,149,82,41,149,82,41,125,207,41,247,128,6,242,24,47,192,154,141,121,237,214,67,246,255,212,205,250,109,223,129,43,109,202,151,54,229,75,155,242,165,244,159,145,114,140,177,253,158,182,251,190,137,109,189,255,0,99,184,112,120,46,109,231,101,73,223,202,118,94,9,213,165,109,188,2,165,111,101,27,175,132,234,210,246,93,129,210,55,177,125,87,194,115,105,219,174,148,74,169,148,74,169,148,74,169,148,182,36,229,115,8,86,250,163,220,98,70,53,148,5,111,31,224,88,96,159,108,99,64,126,232,166,223,203,218,56,198,165,165,105,147,201,108,186,92,129,3,135,45,14,206,231,15,248,109,160,6,185,45,160,249,144,99,194,82,163,86,147,129,146,199,212,166,132,215,22,52,192,91,175,24,214,157,218,86,147,205,226,144,47,77,102,62,148,200,130,67,139,213,78,38,82,15,28,23,15,1,27,158,231,31,79,167,196,119,203,226,180,241,225,65,154,28,3,190,113,94,3,249,91,78,14,244,74,193,158,215,7,249,108,1,75,128,177,166,140,107,236,76,176,155,77,164,61,241,56,176,31,114,141,182,150,163,69,57,224,218,206,216,25,176,216,70,39,34,179,109,168,245,67,100,97,54,230,66,164,26,83,45,67,1,14,13,39,104,216,122,29,88,14,10,193,140,242,190,97,198,83,105,27,180,13,64,139,30,237,149,255,93,121,229,200,89,99,165,33,253,208,188,155,254,58,151,202,110,224,191,155,251,78,94,62,115,254,223,205,143,34,15,219,132,167,115,209,151,15,248,230,135,225,165,14,52,247,145,127,209,44,12,204,134,67,109,106,59,187,241,3,80,115,223,209,35,176,38,231,194,251,124,152,212,165,51,196,164,11,8,124,71,206,6,28,158,202,147,135,45,228,101,202,30,158,161,138,110,210,85,85,168,236,225,73,61,133,102,72,16,185,184,167,151,91,79,85,246,245,182,177,171,58,115,85,147,78,167,207,218,85,188,3,191,201,158,42,110,241,169,238,80,22,132,42,197,233,93,155,19,200,241,73,173,4,101,218,198,99,105,163,241,63,42,237,11,186,100,194,36,232,178,248,60,65,183,189,8,60,29,31,135,41,53,68,212,16,77,230,67,195,227,19,225,96,229,37,221,241,195,103,207,171,77,4,113,129,70,120,186,16,14,133,194,139,33,212,63,17,249,218,197,207,47,195,95,97,126,54,190,230,152,122,222,232,102,186,145,35,228,255,167,242,226,133,170,195,74,23,182,197,33,15,135,166,34,235,79,35,243,239,195,139,157,225,229,175,104,226,153,116,130,88,207,43,152,184,168,253,85,120,241,221,118,118,225,72,229,149,42,250,224,229,163,106,93,64,93,175,132,225,209,200,200,72,116,248,29,106,155,67,163,15,1,254,200,250,115,254,249,44,64,142,38,96,92,70,249,251,189,9,79,136,109,233,197,241,202,139,199,42,207,157,82,184,53,83,26,136,165,57,28,75,253,101,33,118,155,76,119,228,222,106,164,235,35,62,6,118,174,55,250,248,35,90,125,130,62,13,135,23,151,183,185,35,255,172,188,124,154,54,29,86,157,11,252,231,177,72,239,72,164,235,238,47,226,55,52,61,25,29,124,13,253,137,142,190,133,73,194,63,124,3,202,176,248,10,239,157,142,15,241,15,86,242,234,79,218,65,83,226,135,76,125,150,127,197,138,52,190,81,252,217,124,92,145,78,82,94,61,46,139,141,194,162,219,225,242,52,58,53,42,170,118,192,227,181,224,59,232,114,85,183,155,24,79,35,235,150,62,36,141,155,28,220,52,242,1,141,204,25,248,23,99,252,64,59,154,126,22,125,178,22,94,158,64,189,93,122,124,214,239,208,125,209,78,136,182,246,8,171,51,4,94,133,43,0,174,50,13,140,248,84,147,124,164,212,143,13,140,143,58,120,228,236,225,19,150,3,135,45,135,206,157,61,122,226,24,85,67,221,18,49,170,33,240,87,83,191,221,138,99,24,44,21,2,190,166,218,184,39,241,16,148,33,200,22,39,130,186,56,9,248,246,251,185,0,91,3,186,16,203,248,217,157,140,195,193,185,56,124,154,147,211,83,207,98,11,113,167,13,44,169,248,15,2,178,203,99,3,189,6,192,118,113,238,107,59,241,175,0,231,113,215,232,52,164,189,59,123,40,37,104,116,250,45,6,71,159,25,156,170,45,6,199,32,129,243,135,216,46,62,146,80,117,228,116,197,133,45,8,244,155,235,176,21,121,212,146,65,137,13,217,31,63,222,217,251,99,226,100,255,180,227,209,248,254,57,190,39,105,46,137,243,132,28,111,246,191,131,140,251,16,76,145,223,72,93,183,54,206,74,53,1,6,20,122,232,48,152,176,66,103,71,100,102,12,117,60,214,200,240,129,7,152,100,200,200,91,207,252,122,201,120,254,244,133,147,226,162,136,172,120,128,171,103,73,113,236,61,89,70,27,202,116,21,148,78,87,173,163,171,105,125,114,62,108,132,19,64,38,158,242,95,187,81,223,212,95,43,45,252,231,126,162,158,124,65,171,31,249,129,57,254,203,59,126,117,70,94,12,76,16,60,96,49,248,0,60,69,239,77,45,110,93,75,27,116,21,90,198,108,181,58,42,171,200,245,185,85,94,255,117,63,77,235,136,223,166,177,9,255,79,252,54,229,45,216,156,210,162,17,52,17,153,106,139,190,126,36,127,139,5,8,121,213,104,105,106,180,212,89,175,58,229,111,237,172,131,9,186,2,216,190,174,78,92,73,31,0,58,176,201,129,115,232,217,100,142,172,229,234,129,132,128,25,195,40,219,156,240,167,78,123,157,115,215,249,61,238,186,38,238,26,75,64,76,26,242,59,123,10,70,7,145,213,101,254,197,90,120,177,25,117,44,231,76,7,152,67,203,111,163,187,112,249,194,17,48,130,105,93,149,238,224,133,140,52,97,40,163,141,101,180,153,210,235,171,233,138,106,131,89,153,38,164,48,169,142,62,236,139,240,244,13,122,210,2,130,55,178,254,82,24,121,0,154,30,168,127,209,150,30,190,179,7,126,242,237,119,129,110,54,72,34,210,157,0,21,142,74,179,222,81,69,110,35,106,184,233,177,59,105,218,116,29,147,136,223,72,211,172,129,220,70,164,70,34,64,165,209,103,203,234,36,114,221,223,116,237,111,74,34,217,82,130,132,230,58,80,235,151,141,18,207,81,253,41,93,197,9,76,60,230,83,85,250,28,136,167,146,162,171,170,245,230,106,157,73,133,120,192,82,88,28,1,125,13,179,146,229,251,104,57,4,131,20,105,121,10,186,55,37,172,61,20,62,124,8,135,158,70,58,230,162,207,71,249,230,9,188,74,177,9,234,169,212,90,105,147,65,111,54,26,8,245,248,88,125,5,77,155,155,10,68,61,1,107,145,104,39,192,184,173,64,62,69,229,44,209,225,175,32,220,34,83,32,94,168,28,73,195,239,245,248,2,114,226,184,124,246,132,185,226,8,246,178,175,50,85,233,178,19,135,78,71,97,81,99,170,54,232,148,137,131,31,94,33,87,99,117,162,182,87,194,195,7,88,147,5,211,177,107,20,205,204,135,23,187,40,180,222,26,29,91,198,234,126,207,107,212,51,134,66,79,72,142,169,240,106,143,10,149,168,13,109,120,245,73,228,238,39,245,161,117,93,181,23,105,108,1,195,117,246,224,85,142,241,108,7,87,200,150,146,184,198,250,61,97,124,13,200,35,87,250,72,97,29,231,207,95,62,118,192,76,88,71,149,254,82,78,114,71,167,199,186,136,206,168,66,29,93,31,249,105,236,193,137,67,20,62,141,1,53,68,38,91,162,205,43,232,209,155,240,202,171,232,240,125,212,51,192,223,123,179,57,113,99,176,235,29,76,101,149,200,48,154,26,29,14,154,174,210,97,134,17,196,71,205,51,155,99,24,55,252,69,162,170,155,12,80,84,81,249,5,63,181,138,154,87,48,53,228,74,14,54,198,115,211,201,201,8,226,212,249,138,211,167,116,162,34,114,233,68,14,4,97,162,116,134,106,157,185,186,82,77,150,44,119,161,165,121,44,50,22,155,133,217,246,232,251,231,145,230,123,52,234,104,11,175,142,128,97,140,125,125,23,62,225,235,197,219,67,194,195,185,77,202,18,147,214,106,162,205,122,166,202,78,72,3,140,103,80,90,141,116,129,100,137,237,102,145,40,67,28,5,53,210,40,4,101,16,157,15,47,57,1,51,150,92,204,58,190,70,155,95,17,90,201,149,88,146,46,86,172,50,93,60,104,192,55,202,235,14,95,186,108,206,129,80,42,40,218,92,77,3,231,80,147,43,171,35,104,238,62,255,236,21,104,172,252,72,8,47,76,46,134,224,97,164,179,29,173,52,67,7,254,213,12,42,201,91,97,100,5,95,142,149,145,72,192,74,173,107,10,178,74,20,98,208,26,244,6,157,213,198,144,48,180,6,143,251,42,7,218,134,199,14,20,114,13,184,7,227,240,102,50,103,178,81,200,205,186,155,197,162,145,155,78,80,84,235,130,152,80,110,22,71,46,37,216,72,255,92,100,118,89,36,141,156,105,131,9,48,50,234,184,82,81,69,31,185,36,178,145,19,151,115,211,58,12,213,21,198,106,125,165,50,117,8,171,143,132,208,235,104,235,34,154,248,138,189,215,71,62,24,208,11,113,245,186,141,239,120,132,122,230,209,192,11,145,196,55,199,67,116,58,173,213,102,215,87,218,232,10,241,110,213,235,30,3,116,227,42,230,33,102,248,99,162,55,197,67,252,197,210,89,252,206,160,61,88,84,178,128,153,135,90,38,240,158,199,204,203,141,243,141,179,39,15,31,190,82,73,87,86,26,174,252,243,204,175,57,240,141,42,74,87,9,102,110,181,65,69,227,64,237,189,145,187,19,194,196,203,72,207,44,230,107,109,173,145,135,11,124,231,18,118,2,239,249,188,31,117,188,7,153,131,90,231,209,248,59,254,217,219,205,72,151,42,173,145,102,128,6,76,162,226,113,131,165,25,80,171,205,177,16,86,61,151,145,50,0,119,40,180,144,129,50,2,245,245,69,163,13,214,13,21,193,139,162,18,8,168,255,252,151,150,141,147,198,9,243,193,95,79,30,162,43,245,186,195,135,78,31,203,129,52,140,148,174,162,154,54,86,27,104,101,210,136,78,14,242,139,179,32,52,248,49,160,91,108,170,68,159,175,163,183,248,226,12,190,179,135,127,62,123,224,212,1,52,50,7,175,124,140,215,203,250,54,44,85,140,218,74,171,221,164,171,52,84,17,169,18,224,170,252,52,109,176,199,84,210,186,198,250,140,82,133,236,20,168,83,70,99,147,223,165,74,25,69,27,77,48,242,208,226,93,212,51,23,249,56,150,215,152,198,151,56,79,84,158,61,112,242,148,62,151,73,14,90,36,12,99,69,117,133,138,114,32,44,79,163,182,65,212,115,15,116,73,212,243,80,120,255,138,226,159,76,134,67,51,160,20,68,214,251,248,79,159,73,0,116,143,208,217,158,121,16,21,188,61,180,196,157,67,43,122,122,128,10,121,90,127,245,138,237,50,27,112,37,252,60,54,58,114,54,127,211,141,92,71,238,199,63,210,214,182,73,237,162,68,161,200,252,38,27,83,150,107,108,147,31,102,186,25,245,61,228,71,70,195,43,67,124,203,107,52,222,147,190,240,45,221,16,237,243,52,112,110,27,123,22,202,198,247,136,52,168,251,89,56,244,1,70,88,83,13,143,126,16,209,229,182,201,87,242,73,105,5,15,63,218,84,117,236,8,168,218,44,119,21,166,132,5,32,34,96,53,232,240,238,215,143,63,220,145,117,24,207,189,249,137,205,180,18,224,24,208,209,220,74,173,252,32,114,156,133,205,84,239,135,209,172,115,50,92,198,94,68,219,123,240,26,199,38,154,177,97,237,237,186,34,182,226,205,236,209,0,25,195,176,8,35,45,154,234,228,25,44,182,150,91,99,70,173,147,133,161,193,60,159,180,230,149,134,63,169,89,145,226,18,45,163,143,31,35,19,235,155,110,25,99,243,6,167,207,185,217,200,218,42,154,105,217,116,179,46,142,241,184,241,90,110,126,125,238,235,228,95,110,30,219,87,57,224,134,249,181,28,93,126,20,93,27,228,63,142,22,96,168,57,23,80,214,85,152,36,121,246,30,90,143,60,232,45,64,239,113,203,193,60,219,254,82,144,206,223,116,178,27,232,56,154,233,68,107,171,155,110,156,113,59,131,121,78,50,97,178,23,45,135,54,221,178,3,175,76,230,73,113,120,180,11,48,191,9,186,111,228,207,91,194,139,35,5,225,45,118,79,222,100,14,44,181,167,16,44,213,157,55,202,151,6,10,194,204,131,249,51,243,165,245,66,32,188,14,219,14,249,99,28,199,46,46,188,216,252,112,115,196,120,201,147,177,14,246,23,78,140,229,57,185,159,62,143,220,189,183,121,164,67,151,243,228,166,209,23,143,65,9,218,116,203,88,59,1,69,40,207,193,6,107,251,241,32,234,29,143,180,191,227,63,45,163,238,208,230,128,112,179,96,26,224,117,174,155,220,77,39,119,61,152,15,205,195,200,163,63,103,248,103,189,5,130,133,208,255,13,128,3,127,222,204,27,34,208,219,133,129,54,97,121,30,245,173,161,185,167,5,2,234,6,231,38,76,184,145,229,26,131,172,47,95,160,36,157,157,241,114,73,230,219,198,52,253,100,111,156,20,55,58,146,145,196,152,196,238,246,75,60,201,205,177,14,178,138,127,202,83,175,3,20,127,198,174,23,116,122,26,157,96,213,85,99,207,184,189,118,214,197,52,85,235,105,122,111,236,178,192,132,195,49,148,180,184,25,12,37,203,248,28,220,13,121,4,139,139,75,106,65,140,25,138,57,14,198,110,204,75,243,154,196,93,146,93,23,136,183,186,158,45,167,187,55,102,172,157,120,60,89,8,108,49,175,67,233,205,173,91,245,77,23,201,245,128,36,15,177,223,246,83,63,227,14,91,226,165,126,134,113,252,249,231,59,119,72,193,160,155,68,35,1,200,46,143,159,61,227,241,177,135,184,64,211,121,6,236,213,93,187,247,166,134,94,101,238,77,18,124,54,168,134,180,128,61,216,164,103,24,158,179,76,189,24,151,36,214,116,235,86,252,205,17,119,192,215,116,154,115,95,3,208,106,229,150,108,230,91,85,147,168,200,199,90,226,13,167,225,4,191,38,173,97,156,196,243,138,225,88,63,75,56,81,8,64,72,186,4,54,224,22,35,147,8,74,147,219,147,16,137,223,164,227,81,237,230,88,57,248,48,198,34,68,248,220,69,75,163,143,241,230,112,242,98,82,161,76,119,19,199,157,219,49,252,254,171,24,164,12,254,180,98,140,217,72,75,120,121,21,117,180,243,61,175,41,152,60,190,128,226,177,145,74,96,17,144,54,51,117,179,204,85,241,70,208,106,226,97,188,151,20,192,76,35,222,106,150,163,234,228,55,58,199,153,160,124,158,139,244,3,117,227,137,1,31,177,21,145,216,117,155,169,51,67,177,149,228,200,194,248,44,182,36,133,68,110,136,145,214,138,107,49,217,174,35,46,40,36,42,235,30,181,226,138,202,38,65,169,21,53,208,205,214,34,154,137,91,138,22,229,213,166,90,113,25,107,211,253,33,203,59,155,198,45,89,170,217,108,45,226,202,203,166,97,33,75,40,5,232,81,1,168,69,212,253,55,91,139,168,198,111,26,22,162,146,111,154,94,136,6,185,105,88,98,139,77,155,30,166,152,174,191,233,126,145,165,167,77,131,67,214,113,182,148,59,168,173,226,214,138,11,196,155,238,17,177,156,55,141,93,178,238,176,233,121,64,214,170,114,169,37,135,0,206,52,85,2,171,57,228,178,64,85,17,141,245,173,188,196,51,214,112,178,43,53,73,16,37,245,58,233,186,110,2,164,151,33,215,101,199,191,90,64,129,219,231,141,11,107,111,109,142,161,171,155,104,43,38,141,11,223,86,174,167,71,199,108,132,68,36,82,245,222,60,103,13,177,163,111,66,166,52,169,186,180,142,22,94,230,116,96,113,161,96,193,171,27,55,225,255,84,80,248,133,143,104,228,51,185,188,133,162,114,187,191,165,48,224,48,238,64,58,98,248,143,253,104,124,62,6,141,152,182,12,38,178,188,80,175,128,162,143,163,209,103,111,182,116,180,110,58,25,113,181,35,13,150,165,97,34,208,182,16,22,103,144,83,162,97,254,222,171,173,166,97,39,139,93,59,210,0,249,244,153,15,245,229,120,250,247,223,150,151,56,85,88,9,255,98,122,171,135,1,111,56,90,61,105,60,109,166,133,255,252,122,139,121,26,227,185,161,160,148,8,203,61,168,117,126,91,40,66,65,106,74,22,212,223,90,146,249,157,96,190,51,226,130,112,26,182,71,63,163,153,175,40,116,127,75,199,62,64,182,63,211,185,1,122,218,39,29,26,185,101,160,128,94,76,16,99,103,210,38,133,48,53,41,12,181,163,79,195,91,203,39,25,183,61,29,51,209,187,179,209,123,139,91,10,136,149,241,216,21,230,103,120,253,5,154,25,218,82,72,108,106,236,243,211,212,86,179,79,23,128,226,80,152,71,104,185,11,189,232,218,98,129,138,39,81,48,109,45,44,50,54,198,207,229,198,64,11,5,10,214,120,176,55,199,53,5,109,121,229,21,102,48,189,127,126,239,50,62,192,112,74,10,14,26,127,135,30,110,173,206,103,103,2,30,5,10,29,159,66,125,221,91,10,8,136,119,69,3,106,125,121,203,167,45,231,118,164,219,6,225,197,121,254,227,218,150,2,210,4,19,229,186,2,153,68,159,127,230,63,119,110,45,87,21,181,210,52,254,17,237,95,231,63,101,222,239,42,52,40,87,57,183,45,182,129,159,196,224,7,31,160,209,135,91,172,150,226,96,21,5,89,51,242,116,171,137,246,42,153,62,138,88,9,47,78,111,237,252,105,112,41,25,180,168,175,159,127,221,242,189,115,118,188,250,210,164,100,206,127,234,128,105,187,197,172,29,143,131,2,107,143,172,231,70,155,127,227,97,32,252,202,230,12,166,243,78,96,88,207,39,182,120,106,186,20,182,219,164,109,165,239,123,24,128,43,41,44,227,124,121,136,122,114,235,122,161,224,192,27,26,10,70,91,244,197,227,220,45,182,66,192,209,200,114,74,6,1,191,218,147,187,65,80,32,205,34,144,190,49,46,220,27,69,189,115,223,59,77,222,80,96,138,216,175,110,102,107,53,42,176,152,175,166,141,0,154,121,17,93,28,219,98,189,155,81,20,88,232,241,226,86,11,44,152,29,74,236,98,113,122,171,217,5,224,67,65,112,46,127,221,106,26,1,33,166,172,212,125,236,220,106,165,142,113,95,83,34,146,153,78,20,90,216,234,165,96,119,157,43,152,190,42,221,223,198,207,231,198,203,255,198,204,203,197,40,91,201,173,115,185,26,28,127,227,206,223,224,220,10,107,140,132,119,231,102,87,20,10,16,39,195,221,72,227,221,252,151,5,226,156,243,125,143,65,99,208,21,172,15,94,79,119,170,91,234,142,126,106,225,71,222,68,87,255,3,118,232,88,159,85,65,165,127,210,129,230,158,242,203,185,109,32,255,157,251,31,116,178,78,198,19,96,211,48,240,104,5,61,238,230,191,188,21,58,151,190,119,36,184,137,23,101,186,68,236,17,93,103,182,82,109,10,42,48,163,103,175,162,79,183,86,145,244,7,177,100,210,167,177,231,7,189,91,189,22,214,164,182,5,212,249,97,203,157,113,128,85,42,168,146,51,235,145,245,239,126,41,204,201,58,216,116,11,167,175,35,114,55,183,245,151,226,239,216,199,124,26,255,214,59,246,100,49,220,174,64,237,29,125,209,123,171,91,188,226,168,52,237,34,107,107,255,1,202,105,99,80,193,71,129,159,158,4,91,109,107,153,31,71,214,62,211,89,206,8,255,124,107,119,244,174,115,106,174,109,171,35,91,237,218,134,69,181,130,195,95,164,167,45,87,135,191,191,49,105,58,130,74,211,18,187,63,111,177,52,188,193,49,10,131,128,30,78,110,135,215,165,178,138,176,242,185,208,188,10,123,109,179,110,123,86,159,237,44,245,101,123,157,22,254,150,169,205,77,221,168,151,120,149,53,0,52,165,174,180,27,57,24,159,44,180,20,181,13,135,67,15,136,75,240,237,44,145,155,12,231,195,177,168,29,239,132,183,161,164,193,74,192,36,187,87,67,230,154,143,99,80,113,220,161,98,128,108,230,169,139,139,138,122,68,252,155,69,188,17,131,138,71,207,38,119,87,126,205,30,201,40,134,191,42,224,29,15,158,232,116,175,56,100,73,225,147,152,90,173,87,45,77,141,202,49,163,152,195,72,96,237,167,126,38,185,241,201,107,78,79,35,142,24,141,253,198,17,138,202,209,163,49,120,226,81,143,98,99,116,165,222,76,129,113,71,165,60,215,235,105,163,70,157,206,50,93,133,36,187,190,8,94,58,240,85,125,128,200,26,141,78,97,76,226,1,153,177,240,75,114,237,161,248,151,4,96,198,240,220,40,93,157,24,15,52,150,194,50,197,240,203,154,122,204,23,112,216,235,94,206,29,96,125,13,140,171,198,8,92,97,175,203,227,241,86,235,246,226,75,26,254,155,179,7,156,53,14,198,229,103,49,91,241,219,153,166,26,217,225,192,74,131,156,114,25,99,18,217,136,224,144,71,185,241,183,173,74,251,188,202,215,98,166,134,132,103,185,73,39,229,180,229,43,23,79,86,154,46,144,83,49,205,71,143,167,223,170,131,201,22,31,164,89,102,171,137,29,36,89,43,76,63,18,58,95,255,171,121,68,88,94,143,116,126,66,31,123,163,67,35,255,106,126,65,133,151,94,69,214,31,161,165,207,124,119,59,90,233,23,166,30,225,235,119,158,127,226,63,13,242,159,150,225,111,120,233,1,185,98,113,131,23,135,103,186,153,51,206,71,128,74,69,186,212,151,232,114,43,82,209,232,242,215,99,85,249,209,229,62,182,94,106,244,103,199,65,10,31,156,121,194,114,208,197,184,175,89,126,174,253,119,115,87,156,58,35,115,29,248,220,139,225,85,161,175,141,127,186,254,239,230,7,194,135,15,56,210,173,103,1,141,15,69,102,167,133,169,30,161,179,99,159,150,173,39,87,6,98,225,22,96,124,117,108,160,70,99,177,226,10,53,249,116,228,180,241,204,193,140,29,201,8,56,234,122,133,86,66,124,255,96,228,238,39,248,130,143,19,93,14,69,102,214,226,208,21,99,38,81,41,83,201,80,154,74,91,145,138,52,149,170,42,79,233,14,229,55,149,194,43,207,81,247,64,164,111,2,245,183,9,15,103,209,235,123,168,247,29,63,210,25,89,31,142,140,117,243,207,190,82,27,38,189,98,39,53,36,38,227,44,85,67,141,153,28,117,246,155,117,55,93,218,172,8,194,39,127,147,19,5,162,205,175,240,57,159,237,211,168,127,2,159,36,63,255,38,218,222,251,215,202,40,90,127,207,191,152,136,172,15,70,219,187,249,206,53,97,250,41,63,214,241,55,71,90,86,66,163,207,29,173,200,143,208,240,133,124,93,111,194,139,203,209,215,207,69,38,199,119,62,68,51,47,129,214,248,254,14,180,210,140,62,246,127,231,88,51,93,57,125,48,79,13,12,16,36,60,125,195,63,253,26,121,6,180,214,34,222,96,128,198,222,163,245,103,252,253,245,240,234,171,232,72,115,100,178,69,24,157,136,182,224,203,78,192,78,219,248,132,205,38,43,82,133,69,69,73,88,108,69,42,150,176,56,121,230,104,102,117,37,125,14,147,149,107,226,168,218,23,94,25,18,90,222,11,119,63,224,171,85,154,31,227,19,207,197,83,125,199,167,192,22,64,125,179,48,219,191,87,217,209,120,211,223,148,147,228,8,135,166,248,174,126,48,134,208,232,67,16,30,252,243,89,233,202,234,214,14,114,133,111,51,63,61,1,179,54,126,47,233,223,22,83,89,137,237,200,69,243,177,60,53,147,229,129,240,242,7,254,211,24,214,70,154,239,133,23,187,68,210,194,183,182,244,204,147,219,229,218,194,139,3,66,127,55,106,123,133,218,134,183,142,239,85,150,248,222,86,164,13,242,61,181,73,235,180,219,108,57,77,90,124,170,119,168,63,218,191,46,78,90,212,215,17,93,27,4,225,27,153,250,51,250,180,37,242,181,85,8,77,161,133,9,225,205,131,200,189,110,212,247,16,38,176,248,144,31,12,241,173,83,223,249,76,54,235,78,158,61,156,167,216,24,104,71,61,67,32,48,254,90,25,194,139,73,83,143,248,174,230,95,240,165,169,247,123,1,193,145,153,183,56,71,247,64,180,229,25,102,152,243,203,248,122,234,23,19,127,119,233,145,149,39,94,57,90,113,49,79,117,176,163,13,208,136,70,66,160,44,11,15,231,68,180,1,206,194,139,67,194,252,44,254,55,214,207,191,28,249,30,48,103,43,175,79,198,156,95,123,81,103,52,209,102,83,133,185,194,84,105,174,202,17,99,228,230,19,241,218,169,191,86,71,54,189,202,115,209,112,234,72,101,102,73,86,139,85,244,190,135,248,122,188,190,54,254,243,107,80,132,248,145,81,32,104,16,88,216,94,36,55,221,243,3,75,248,186,220,197,25,200,140,47,142,127,250,21,242,23,81,130,137,187,46,89,151,253,69,1,103,44,9,184,173,72,197,81,236,47,159,60,106,164,205,121,234,90,48,63,30,142,70,67,147,216,210,92,31,196,247,9,143,127,23,92,36,35,158,14,159,63,120,42,207,13,145,15,31,80,79,75,120,233,5,250,216,37,30,219,20,151,109,148,40,214,34,95,64,43,88,165,224,49,255,172,53,242,178,7,180,7,212,214,195,247,246,69,155,71,191,123,132,30,58,127,236,104,126,8,141,204,127,65,11,47,177,210,245,226,17,40,81,160,13,224,235,59,239,46,9,237,247,208,120,47,255,108,34,242,245,179,208,119,79,184,55,205,223,107,221,58,13,223,84,98,128,91,145,138,195,0,207,95,56,127,148,174,204,143,14,241,42,111,15,216,152,237,162,98,15,116,8,90,189,176,220,27,125,7,26,254,172,48,30,194,208,126,215,179,247,82,229,185,51,151,207,228,169,142,246,60,139,190,120,201,63,93,71,173,67,209,215,109,104,118,37,28,10,161,225,151,124,243,202,193,131,135,194,139,203,124,119,11,60,217,178,105,91,85,154,182,91,145,138,180,32,121,201,124,232,116,190,150,229,131,78,97,237,33,154,158,140,52,183,130,113,41,170,249,225,197,80,228,254,199,200,252,123,254,233,50,122,49,196,119,54,163,150,33,124,17,120,215,59,212,53,28,94,30,7,146,140,142,180,243,143,87,190,179,25,157,116,161,225,149,147,71,233,11,70,186,82,87,113,240,87,99,174,198,210,248,0,122,247,56,142,72,97,106,150,127,217,34,110,220,192,207,232,96,171,48,245,22,133,122,177,119,246,216,163,239,12,121,105,212,104,60,119,224,114,158,236,112,109,1,239,218,119,246,0,71,140,76,182,36,8,114,117,4,104,18,139,152,199,221,216,103,102,96,140,127,246,0,40,86,148,50,145,169,199,145,206,79,252,253,14,212,251,8,48,11,5,191,51,204,38,147,101,213,177,75,199,79,97,178,188,96,62,119,50,199,89,62,255,46,122,111,21,230,58,63,48,11,36,26,237,95,7,212,70,102,214,81,15,190,131,48,250,108,30,205,181,9,211,107,120,189,29,12,151,197,73,248,27,89,152,197,75,119,227,237,104,253,57,90,253,222,54,22,147,49,122,248,228,169,139,39,232,74,67,133,241,194,33,227,6,48,218,223,38,244,119,99,193,253,231,123,52,187,4,175,128,106,65,245,137,204,47,130,241,2,180,139,90,91,249,229,177,240,250,88,113,87,40,200,247,184,40,55,151,68,249,86,164,2,137,242,100,130,60,174,63,108,184,144,159,228,137,60,248,40,74,30,32,60,124,12,201,244,36,154,249,26,125,125,159,255,242,0,11,120,16,62,35,205,145,246,207,104,238,17,234,122,197,183,204,134,23,199,249,15,99,124,103,15,24,219,152,165,182,204,70,155,135,34,247,154,191,235,137,126,74,127,225,252,229,252,240,138,175,168,189,215,18,89,127,15,124,51,28,26,71,189,239,240,250,241,235,151,128,69,17,175,104,28,52,165,9,126,172,35,188,134,173,158,239,12,127,105,66,253,192,149,51,167,243,94,114,231,95,246,137,236,17,211,231,218,67,188,90,241,224,163,208,242,30,240,21,94,191,31,94,234,70,109,159,132,119,45,252,253,94,188,11,222,217,133,86,62,194,115,97,245,25,112,215,239,12,161,201,4,121,232,64,197,197,51,121,78,244,137,117,126,96,9,230,122,120,245,9,40,69,225,213,126,190,115,42,178,190,128,122,123,64,156,163,222,65,41,210,96,75,132,140,142,46,73,153,173,72,197,49,24,47,153,143,157,196,238,84,249,45,116,183,195,84,142,204,206,139,247,155,132,23,223,96,39,140,23,179,232,241,0,234,31,195,234,227,159,95,35,221,95,241,37,237,247,71,81,239,179,112,104,136,255,115,6,180,116,254,217,87,52,55,196,183,190,198,155,53,243,203,223,251,98,80,213,133,99,39,243,220,67,128,63,192,25,163,147,131,120,75,119,182,13,38,58,241,89,27,130,191,240,144,159,27,231,231,62,97,205,18,12,241,238,87,160,74,134,87,94,241,157,235,155,88,86,203,109,182,231,92,173,140,45,232,20,174,219,171,243,52,164,251,1,177,110,123,208,210,152,230,11,100,129,204,59,211,31,41,232,225,67,3,137,139,233,242,219,151,132,250,228,219,146,166,35,21,7,142,208,192,58,204,85,180,65,105,192,8,0,181,70,218,132,247,144,23,187,208,2,88,71,3,216,252,92,157,225,199,91,209,196,103,52,253,118,15,21,94,127,33,188,122,138,186,159,193,203,191,86,90,146,175,19,204,97,15,113,35,73,134,120,189,2,226,51,237,56,92,190,92,245,171,228,135,106,62,183,249,216,1,32,79,16,78,66,104,50,50,213,18,29,125,139,213,206,183,203,88,44,141,79,133,87,215,41,176,142,224,41,228,8,47,246,160,213,39,88,100,133,158,70,198,222,8,227,161,240,226,4,94,21,105,253,140,58,218,101,14,251,174,12,247,226,229,137,26,67,126,168,185,114,250,252,197,3,121,162,6,251,87,245,226,203,66,35,179,45,252,200,59,212,178,192,63,232,9,47,247,68,91,166,249,225,23,168,181,19,102,51,244,27,36,52,33,151,190,104,203,19,126,186,179,224,61,173,200,179,167,151,47,155,47,234,243,235,105,116,176,3,181,125,224,31,180,134,151,151,165,53,154,80,136,159,123,20,153,250,147,127,186,134,218,134,35,29,239,208,248,91,244,232,57,224,36,250,124,84,252,27,237,95,47,120,103,43,243,236,236,153,10,250,156,33,207,206,78,14,160,238,101,232,2,255,106,12,186,16,157,248,202,207,182,10,83,115,209,193,215,216,228,127,253,50,218,140,79,45,195,110,118,99,221,145,249,117,16,123,240,151,194,188,122,234,17,206,52,252,18,232,188,224,61,55,102,233,121,146,170,121,249,220,121,147,89,47,46,27,157,175,200,145,156,187,151,177,176,238,111,5,197,60,58,212,39,188,124,12,68,205,143,195,44,157,224,159,206,242,47,191,66,23,159,128,153,137,169,122,225,19,24,158,48,173,249,231,179,120,245,168,227,3,46,60,240,44,178,222,14,6,82,193,187,110,202,115,208,205,7,126,61,118,34,191,65,23,166,70,249,142,5,97,170,133,127,208,6,98,22,51,167,215,88,183,14,47,127,133,206,162,246,80,120,125,6,141,247,96,55,148,177,14,10,125,108,5,234,135,254,131,153,13,185,97,98,8,203,243,144,35,50,191,84,152,206,151,210,247,157,18,65,221,201,79,149,163,217,113,84,117,116,249,121,100,102,60,183,168,106,59,235,96,130,174,64,90,104,245,79,133,142,173,150,5,81,219,29,202,193,213,9,88,74,17,214,37,123,244,123,141,176,78,93,41,41,133,88,111,73,42,133,88,151,66,172,75,83,169,32,169,20,98,93,128,84,10,177,222,64,42,133,88,111,36,149,66,172,75,33,214,219,150,74,33,214,133,79,165,16,235,92,83,41,196,186,20,98,189,61,169,20,98,93,216,84,10,177,46,84,42,133,88,111,52,149,66,172,75,33,214,37,1,39,165,82,136,245,6,83,41,196,186,192,169,20,98,77,190,151,66,172,183,54,149,66,172,11,146,74,33,214,165,16,235,173,76,165,16,235,98,167,82,136,245,38,82,41,196,186,88,169,20,98,93,232,84,10,177,46,133,88,111,103,42,133,88,111,81,42,133,88,111,46,149,66,172,11,156,74,33,214,165,16,235,173,74,165,16,235,173,75,165,16,235,228,217,158,83,77,165,232,234,82,116,117,41,186,186,20,93,93,138,174,46,69,87,151,162,171,75,209,213,165,148,123,202,57,186,90,233,17,14,107,230,155,91,80,104,18,61,28,69,29,195,209,161,94,126,36,148,22,183,172,112,41,182,157,177,51,170,55,99,231,163,167,164,134,59,83,117,215,174,21,238,170,236,216,188,175,250,214,76,178,84,38,228,241,178,110,57,23,106,224,216,70,48,129,225,67,235,240,177,236,126,47,103,175,185,116,162,242,204,217,75,103,47,28,221,89,15,191,254,41,254,186,120,52,77,223,189,118,13,88,112,235,7,180,210,28,153,93,163,110,83,177,125,185,78,44,76,197,16,150,133,9,244,240,46,176,95,126,118,24,189,128,193,191,251,239,230,150,200,216,24,63,55,15,95,162,203,247,81,91,71,210,21,237,74,41,227,75,66,90,251,252,94,198,29,191,138,157,11,184,88,75,128,169,179,212,213,81,48,62,118,214,13,96,46,173,163,71,93,251,180,56,99,173,106,188,252,86,37,117,110,171,72,165,5,62,122,160,68,171,197,163,213,239,141,28,253,54,31,231,13,80,129,38,47,11,93,97,111,4,180,1,182,222,235,2,162,35,164,232,240,248,88,198,230,140,113,235,75,12,103,15,30,6,61,69,141,7,239,224,28,187,44,22,142,218,71,25,118,223,218,161,62,5,226,25,107,106,40,26,231,148,72,214,172,217,183,227,14,235,242,179,84,226,189,46,241,94,79,43,188,215,203,222,235,240,251,29,181,42,13,199,232,143,180,238,226,220,215,202,201,145,27,231,28,187,126,222,255,243,110,10,6,138,180,181,111,71,13,126,185,163,86,70,100,240,12,127,226,151,164,125,121,182,253,202,217,118,212,106,112,30,160,140,29,181,64,144,248,43,38,149,29,181,170,68,150,97,156,112,117,42,101,196,33,84,18,221,169,2,93,77,114,71,38,91,64,227,68,221,33,28,47,113,239,13,106,126,204,247,207,233,244,252,139,49,38,104,231,2,192,131,124,129,116,89,158,171,112,22,155,152,127,13,234,249,150,206,4,76,103,138,7,160,232,245,26,42,11,133,196,56,84,189,199,205,54,197,89,20,246,115,196,221,32,75,61,183,149,27,205,92,67,234,138,14,121,11,170,254,234,51,126,110,145,255,242,86,24,158,231,31,79,35,80,228,177,143,121,119,56,52,142,125,204,71,30,160,222,7,82,196,89,215,75,41,202,76,97,188,139,169,226,19,108,74,248,51,168,225,79,177,96,102,140,248,3,30,219,53,53,188,104,34,119,199,132,137,55,168,103,72,232,124,27,157,108,195,255,250,215,53,145,215,239,133,213,33,67,56,180,158,255,162,91,178,77,122,228,202,249,11,231,192,38,213,87,233,79,158,86,92,115,147,32,193,11,43,15,239,130,32,17,102,198,132,161,251,26,126,182,63,188,56,164,137,180,191,19,6,87,55,49,28,100,114,136,46,199,5,157,28,178,83,85,148,22,99,2,172,205,41,35,107,17,0,137,172,243,216,56,162,207,28,56,135,119,50,117,85,85,71,14,40,162,15,55,164,169,21,241,134,215,47,230,159,9,157,221,98,188,21,208,119,164,229,41,118,172,238,120,75,92,64,58,133,187,75,209,161,181,173,55,87,101,200,202,182,152,147,210,255,99,191,130,81,159,189,255,162,50,194,143,52,163,149,208,129,19,194,171,167,194,219,175,209,193,215,120,13,29,112,242,102,12,189,124,32,110,162,69,214,193,122,154,131,201,159,59,18,8,5,133,87,159,68,238,126,42,22,5,41,173,243,248,189,30,95,192,47,163,33,17,132,92,104,72,44,42,159,134,167,207,254,122,28,47,137,85,86,157,57,121,74,17,143,98,25,152,135,43,175,34,11,179,145,175,159,209,234,91,157,9,240,170,51,10,93,95,193,244,196,65,204,29,109,84,100,253,37,94,245,186,63,9,180,196,119,60,143,124,121,141,87,122,91,98,65,16,219,68,85,217,86,139,210,49,114,230,24,125,20,59,81,86,154,15,84,233,50,98,132,31,152,197,193,73,61,247,132,153,103,225,197,118,248,139,119,189,62,141,193,23,32,37,188,26,182,60,128,55,199,32,207,226,100,228,203,156,112,111,26,112,149,27,58,20,84,136,188,164,62,122,243,49,188,212,247,141,72,253,170,156,165,62,235,14,200,8,91,236,68,62,50,95,149,97,92,170,160,79,31,170,160,43,43,245,7,206,95,254,167,226,176,226,253,211,218,232,221,39,145,175,173,120,155,39,244,30,189,29,66,83,203,194,212,243,200,108,51,54,94,58,215,80,239,123,52,61,24,94,127,135,249,199,196,103,201,51,123,27,245,129,212,29,238,140,229,114,71,214,225,67,199,207,30,203,142,44,96,155,66,247,2,234,27,70,19,67,252,235,73,225,209,87,226,239,246,68,120,56,23,9,189,199,97,230,227,239,209,228,114,120,253,45,106,125,35,188,121,32,116,126,225,59,31,224,149,226,199,143,193,92,220,172,240,22,71,160,40,52,46,59,207,137,86,179,184,82,209,233,96,252,78,206,227,150,209,175,184,229,173,198,152,93,140,61,161,140,121,157,158,128,135,88,225,52,125,192,68,211,122,163,86,167,51,155,116,102,69,236,75,77,17,241,142,70,218,240,191,133,249,232,242,67,212,54,40,140,140,134,87,158,71,135,91,81,111,135,240,105,45,210,62,191,13,36,154,214,90,2,157,186,92,209,169,74,157,231,207,29,161,15,156,5,217,95,245,223,199,142,40,58,205,36,240,131,198,123,241,86,212,248,144,240,118,61,242,231,32,154,238,3,252,240,207,215,248,185,167,145,249,55,20,214,1,6,150,226,248,130,23,194,255,103,239,205,155,218,200,146,69,241,191,251,125,10,93,230,181,123,102,238,181,41,73,104,193,221,208,193,106,192,54,94,0,207,253,189,23,55,136,2,9,80,55,72,180,16,182,233,59,55,66,44,2,137,77,96,48,139,5,102,49,155,141,217,12,6,33,33,136,120,31,101,70,167,150,191,230,43,252,50,171,180,171,180,129,104,227,110,157,232,54,165,90,207,201,204,147,39,51,79,46,115,27,87,150,41,125,147,204,220,20,113,158,252,246,220,55,0,227,244,181,44,93,164,138,21,234,120,86,56,110,195,99,109,217,179,71,130,136,246,168,80,33,137,38,116,179,121,212,169,55,150,84,139,73,42,24,215,17,160,10,56,3,227,153,128,185,195,207,30,1,175,64,119,187,115,59,185,216,70,27,147,187,255,222,227,250,219,170,47,203,117,149,202,107,225,186,79,234,11,42,170,30,35,192,254,86,79,73,110,211,9,0,67,23,17,16,234,183,247,216,254,57,118,0,125,69,64,114,39,142,79,228,244,136,243,121,47,191,36,73,72,28,105,88,40,42,140,186,120,251,132,176,39,177,60,196,175,206,137,214,56,89,87,178,153,32,45,216,200,196,227,158,23,180,78,214,97,210,53,254,212,213,8,71,180,174,17,77,101,141,232,69,38,236,218,209,58,131,14,158,19,207,162,21,151,214,221,110,55,53,211,22,152,254,184,241,175,20,206,116,154,186,12,226,25,74,248,13,215,245,173,38,115,15,96,197,212,161,23,220,123,36,64,22,54,24,3,232,3,95,150,181,182,10,214,95,161,7,34,57,208,58,101,65,34,166,22,177,235,98,54,225,75,146,80,78,228,205,180,165,209,96,209,119,8,150,64,163,254,37,173,139,56,69,235,234,5,155,33,221,109,49,149,232,224,22,147,185,131,110,127,1,116,169,161,130,191,218,68,91,65,23,28,10,87,10,168,192,143,192,5,179,254,151,110,125,151,165,193,220,30,38,76,248,78,136,48,127,249,145,238,236,44,210,148,86,80,149,101,90,197,173,230,162,32,156,110,181,23,1,80,111,1,56,245,69,70,189,69,79,119,233,111,209,45,45,134,118,3,122,238,133,238,2,0,135,127,8,38,78,68,74,59,66,16,45,119,183,66,40,66,7,66,209,56,38,189,25,145,40,199,176,36,57,71,96,76,180,13,199,96,42,49,158,174,201,24,91,84,148,204,26,123,227,141,162,151,50,125,198,34,70,122,119,51,116,53,142,87,232,35,121,69,172,135,90,148,3,167,133,110,138,118,223,132,19,141,157,180,81,223,46,19,168,173,17,127,135,124,75,227,182,33,133,123,106,225,50,238,236,8,148,18,122,234,59,217,93,217,119,241,185,164,69,169,115,163,143,25,95,39,206,119,252,244,60,183,183,7,82,174,152,235,90,76,222,21,207,12,227,73,235,39,250,57,45,158,5,194,252,89,175,239,132,243,230,110,41,22,148,170,189,0,130,49,189,184,83,90,81,91,94,93,91,241,183,58,89,145,236,191,175,188,2,10,73,185,243,238,254,223,172,45,165,201,187,148,215,109,110,207,3,120,167,227,45,173,105,80,163,209,167,176,188,178,82,116,229,200,251,143,216,215,37,255,150,64,242,194,215,216,233,19,118,122,137,216,143,153,157,85,102,121,133,184,118,248,5,55,25,26,229,123,119,200,196,40,6,68,158,31,240,31,250,8,136,36,203,159,49,233,136,224,200,35,230,32,201,251,143,148,35,82,8,31,185,84,247,2,143,166,247,216,255,100,13,75,201,199,36,213,178,134,215,146,2,249,51,57,168,155,106,101,195,131,218,43,226,53,152,67,239,3,113,174,241,67,163,196,57,9,66,35,227,156,96,215,60,66,56,225,24,186,47,141,162,139,30,70,104,237,186,137,115,143,91,153,101,70,198,114,72,21,90,182,144,90,95,89,167,20,44,180,138,114,229,179,154,43,34,149,153,217,71,68,46,236,19,119,31,89,240,4,211,91,44,136,177,78,50,246,124,156,127,183,196,13,247,1,98,89,239,14,55,116,168,101,22,236,57,132,10,45,107,179,180,162,70,121,191,50,42,238,244,202,179,84,152,156,188,11,56,241,103,110,106,145,195,212,132,189,152,61,199,227,66,92,143,122,184,189,19,230,112,139,25,112,226,42,251,14,93,137,209,95,192,181,5,7,112,103,14,193,66,203,30,130,203,11,11,235,178,52,99,137,247,152,120,6,1,133,24,140,3,170,41,217,119,98,72,162,109,29,254,101,199,247,97,18,51,195,235,100,98,140,140,29,146,253,65,76,94,188,57,146,195,167,208,178,134,207,194,154,170,39,89,195,167,48,97,129,223,34,170,66,88,229,173,125,252,249,0,57,61,35,3,23,136,91,215,14,57,89,247,251,22,212,192,126,229,10,102,118,61,135,216,136,150,61,196,150,105,11,53,34,39,190,255,36,43,136,229,103,129,167,30,49,159,150,112,170,14,218,200,224,24,96,142,183,190,81,49,139,43,232,21,221,59,197,157,160,170,67,108,39,24,118,232,27,99,125,187,162,61,46,135,91,161,93,1,183,207,243,159,27,116,122,83,254,179,123,170,186,250,123,79,21,138,172,96,148,177,95,248,189,39,220,177,141,59,14,38,90,179,79,16,219,150,184,27,206,111,207,225,94,165,120,126,253,12,196,42,214,187,137,162,211,126,63,243,250,40,135,83,161,101,107,190,54,60,45,111,120,164,201,178,228,100,103,78,188,24,109,185,123,12,243,211,239,187,224,55,6,101,145,73,41,34,131,175,224,26,78,231,141,156,226,42,182,172,33,246,81,213,179,178,172,49,226,165,113,180,178,143,205,50,251,71,128,100,152,137,88,186,0,69,165,125,191,123,132,159,221,97,199,247,184,243,41,184,42,243,123,135,49,61,170,115,79,188,195,239,118,192,89,174,119,26,158,201,97,88,104,217,96,199,181,106,170,254,73,121,225,85,13,18,176,112,242,189,67,236,102,47,76,85,206,183,193,126,232,101,7,142,185,207,39,108,175,176,67,46,78,103,219,71,33,183,132,155,89,240,168,136,125,144,127,181,196,30,109,50,214,117,230,245,36,227,204,241,99,177,101,109,218,62,84,215,43,43,163,226,225,174,44,63,137,126,238,11,251,236,196,32,25,59,193,29,57,207,6,72,199,126,247,14,104,172,236,214,33,198,8,30,244,1,171,70,223,82,193,67,130,223,152,1,102,205,58,78,57,199,167,28,130,133,150,53,4,215,60,44,81,148,100,85,64,6,150,139,234,204,152,29,24,47,179,224,224,93,39,104,134,112,110,49,142,125,25,187,180,131,187,213,115,159,249,119,227,220,121,63,172,185,57,124,10,45,123,6,226,71,234,170,167,34,62,107,31,95,21,159,160,146,78,236,113,163,199,156,253,20,109,196,189,83,152,201,98,111,72,38,99,86,55,201,201,91,98,219,33,203,43,112,61,192,154,167,122,121,199,145,144,51,126,144,241,174,112,19,62,114,250,58,135,95,161,101,109,190,62,174,171,173,40,199,4,108,37,5,117,101,217,97,200,27,51,184,222,142,218,136,51,152,228,223,55,197,127,24,5,33,152,113,238,176,142,209,28,10,133,150,53,20,62,40,109,168,125,154,37,29,7,245,154,137,49,49,175,63,251,102,64,92,92,133,245,213,35,99,92,231,126,207,46,235,114,7,166,231,224,71,102,119,132,172,175,195,12,5,25,25,230,38,57,115,230,112,43,180,236,225,150,170,190,95,159,45,246,43,46,167,238,5,208,119,152,79,94,144,151,184,254,81,110,101,22,13,196,39,39,50,110,243,29,25,60,228,250,87,200,196,40,230,251,236,93,0,153,25,196,41,116,115,154,221,229,87,231,114,184,21,90,214,112,91,89,168,86,85,103,9,183,65,91,127,132,72,12,235,37,104,175,196,125,146,91,53,131,45,27,186,105,153,154,42,175,45,172,124,118,85,221,244,194,199,172,110,252,195,58,13,255,21,80,200,115,103,157,204,172,19,147,68,6,209,200,173,228,150,74,177,101,111,103,188,240,126,189,38,75,251,50,209,83,110,197,227,63,117,4,12,73,19,3,226,158,27,51,226,130,101,148,27,237,71,87,150,156,201,62,220,178,134,207,242,167,245,13,247,174,193,156,128,210,143,227,61,183,247,26,150,61,204,107,189,57,136,138,203,197,7,198,186,200,122,143,208,120,52,252,158,12,187,152,145,105,178,63,131,197,192,102,246,49,19,147,35,231,202,34,182,172,33,184,172,254,126,53,58,102,23,148,149,151,222,191,170,43,203,226,58,59,239,35,43,211,100,207,3,186,37,198,39,238,159,137,26,138,76,152,204,226,70,171,112,139,120,154,76,110,161,206,250,149,175,159,255,149,242,157,255,145,215,105,104,206,170,227,225,215,212,82,16,43,128,38,68,172,88,219,173,163,235,118,83,119,243,207,122,203,29,44,212,168,80,223,49,234,45,249,72,63,249,148,154,42,204,167,91,10,228,42,186,89,211,73,81,230,231,191,42,126,126,73,81,148,166,25,254,209,189,160,168,66,117,243,157,78,99,107,26,228,148,112,126,196,22,140,121,92,173,86,150,70,37,217,186,252,12,81,49,11,118,191,215,23,208,239,132,228,90,204,177,157,59,58,245,123,79,152,229,51,80,12,152,189,105,191,123,152,57,222,162,238,40,190,21,31,255,13,24,208,215,212,178,206,44,99,232,79,103,48,182,246,116,235,165,136,79,155,223,36,215,168,105,173,78,255,19,18,223,203,142,110,35,37,55,55,1,241,41,95,52,83,138,159,219,91,239,252,212,121,37,226,139,98,206,143,228,21,242,6,121,84,242,254,171,172,190,30,178,180,132,110,105,7,175,133,213,116,151,237,59,253,127,39,184,157,126,180,78,6,173,100,204,137,206,193,194,245,28,201,69,183,235,38,185,228,44,79,155,175,108,86,52,171,117,180,82,160,186,23,191,254,106,6,110,244,51,178,188,46,53,69,233,149,205,89,165,186,7,84,67,149,170,38,187,91,250,7,54,191,207,9,20,8,132,199,245,251,24,207,4,231,219,32,54,27,250,70,238,189,6,58,252,215,89,47,179,48,70,134,87,128,21,146,253,65,76,56,184,61,231,247,140,83,119,84,196,214,159,35,199,232,246,165,201,177,80,174,83,235,10,11,20,157,1,114,148,3,255,83,71,146,227,21,87,224,40,114,188,95,163,190,247,244,126,86,93,253,128,201,97,125,92,251,164,144,203,171,151,223,152,39,206,99,114,49,134,6,215,5,43,38,101,217,125,139,10,202,249,26,55,225,195,132,34,199,54,24,34,179,252,33,71,136,209,237,203,18,162,38,95,169,208,232,155,245,26,90,32,196,231,205,170,110,32,196,95,145,16,11,225,31,13,149,101,66,172,172,169,107,40,201,22,33,14,47,51,159,144,237,137,246,168,127,249,22,48,58,216,117,206,186,142,200,144,87,194,216,152,35,189,232,246,165,73,79,161,86,210,42,189,90,47,146,158,188,233,103,204,177,142,164,247,178,57,251,60,176,166,236,97,69,205,51,36,189,82,74,83,154,69,30,232,119,175,249,207,71,216,209,35,118,118,142,157,181,193,49,86,88,157,57,103,198,55,129,19,194,106,45,70,23,253,195,186,145,77,250,251,175,255,200,195,112,206,188,187,161,145,55,253,116,7,213,174,112,192,126,90,239,252,159,239,255,151,116,180,102,218,49,175,225,56,73,131,81,22,250,241,192,208,101,145,10,154,14,135,190,82,178,191,255,93,38,30,170,195,135,114,69,196,177,86,136,111,77,144,216,38,73,248,105,116,30,195,116,63,20,149,155,70,120,123,226,100,106,98,76,110,112,176,119,128,10,101,255,86,36,251,238,59,217,173,91,97,24,220,17,8,70,188,144,48,204,87,120,91,116,168,111,228,107,227,99,126,163,63,17,117,75,107,16,249,112,235,15,98,250,70,12,251,141,188,57,42,76,248,69,99,147,14,105,38,34,117,227,85,222,252,99,194,55,75,222,30,14,58,142,129,88,146,152,99,89,178,176,99,73,188,40,36,80,162,136,131,161,34,33,250,20,169,241,151,4,125,138,52,240,167,200,8,204,138,140,48,152,241,187,51,194,161,34,9,18,21,151,197,98,130,216,253,240,124,86,69,76,92,121,196,177,38,124,172,16,35,227,49,180,60,254,67,9,248,93,182,75,111,36,106,18,121,176,210,224,12,137,184,188,176,150,202,169,124,121,33,90,162,213,13,207,26,170,168,2,165,182,80,171,169,140,79,17,34,226,19,211,241,238,147,147,183,252,251,143,232,11,190,120,78,230,28,40,41,141,141,99,6,178,126,187,232,1,117,137,92,168,153,66,33,131,97,39,206,246,83,93,85,249,140,194,92,84,13,234,135,18,185,168,66,67,238,179,241,175,47,152,215,88,48,199,239,93,103,71,62,18,80,89,132,58,57,232,114,41,148,202,97,231,207,1,14,236,39,7,241,189,255,74,134,95,93,88,250,164,166,140,82,41,228,229,101,15,238,37,30,62,22,8,114,239,145,181,247,204,202,186,223,61,130,94,51,115,23,228,61,166,50,101,28,88,153,161,228,126,137,232,73,110,166,59,59,245,230,175,100,248,154,234,194,123,79,85,169,177,143,73,113,86,23,56,199,39,126,200,65,214,15,217,113,44,197,199,247,77,17,55,214,139,21,138,157,190,39,227,131,196,249,9,43,81,13,91,57,135,135,31,26,67,239,122,155,131,27,126,245,149,64,131,170,46,123,92,255,44,53,52,196,68,78,98,53,139,127,90,135,197,28,152,48,23,252,30,207,63,173,35,204,178,147,117,237,138,76,128,157,58,9,120,199,157,142,48,179,182,43,192,65,34,125,80,68,62,27,224,131,66,250,25,67,71,107,99,59,72,142,178,54,172,237,22,115,14,6,73,155,91,12,47,165,196,202,20,194,170,89,223,169,167,45,1,89,245,177,161,57,36,170,194,113,2,73,53,73,23,147,37,233,137,23,5,224,19,41,4,185,184,59,146,44,213,129,123,211,18,2,46,245,222,180,4,128,208,221,226,242,31,132,145,144,165,46,197,146,249,3,0,16,81,210,78,255,218,83,148,167,111,105,209,55,91,238,202,90,104,157,190,218,248,189,133,110,170,198,206,222,149,231,201,162,33,8,170,37,10,98,121,121,216,105,49,183,147,201,108,104,53,24,233,118,4,118,81,228,141,216,163,112,159,99,111,254,46,160,157,98,49,65,184,63,66,51,133,158,81,133,152,25,190,89,127,167,213,208,242,93,64,9,120,33,20,17,204,147,107,85,121,178,54,189,161,181,205,130,101,204,212,121,50,186,221,18,253,237,128,244,154,140,62,146,165,177,143,202,94,223,212,138,153,143,132,52,245,137,31,104,83,166,0,246,31,146,28,139,37,112,146,28,240,249,137,0,153,48,191,148,164,8,41,145,197,61,130,131,180,152,76,150,70,84,218,147,113,178,248,79,9,117,13,34,215,0,204,212,125,167,73,111,212,25,66,203,64,75,103,87,62,192,200,104,129,179,93,249,98,158,162,64,33,189,70,5,5,178,97,27,109,120,65,27,242,5,208,139,182,143,16,157,89,140,121,197,204,231,19,44,77,191,52,142,9,52,14,94,179,107,66,150,56,201,4,133,208,21,152,189,98,111,254,251,191,67,66,127,133,209,98,238,121,0,131,195,50,23,65,150,105,234,208,55,10,239,231,46,92,88,25,106,225,35,200,24,252,234,36,223,59,21,135,143,196,197,6,67,112,76,39,179,83,224,8,14,27,95,208,102,218,96,150,202,209,20,72,90,55,232,194,114,107,163,158,36,185,244,127,47,237,55,211,110,18,118,64,66,235,201,168,96,102,69,97,105,109,146,58,93,128,108,76,231,57,35,22,185,102,14,125,220,197,91,172,189,190,228,97,55,247,133,10,194,46,76,202,235,28,99,166,189,220,202,40,25,222,194,42,195,59,239,200,194,22,16,39,156,9,213,102,254,173,203,113,9,210,95,6,121,51,203,158,82,218,138,168,173,69,9,64,140,206,178,158,13,97,23,240,28,198,38,238,200,112,155,3,204,214,10,251,222,131,2,223,160,139,57,155,150,145,243,19,12,248,222,159,244,159,205,50,110,55,222,58,60,203,237,238,126,29,144,40,47,47,40,80,166,130,196,216,44,55,226,244,187,79,3,25,237,93,66,53,115,24,240,197,34,51,188,198,77,172,99,38,25,177,186,244,142,215,239,89,65,15,185,215,251,100,108,136,27,58,84,80,129,116,153,55,30,20,245,15,171,203,171,158,68,25,183,227,65,129,245,200,63,188,186,11,56,103,102,78,49,146,127,105,29,51,218,174,121,128,90,24,207,7,118,249,136,44,58,57,171,13,200,6,115,146,219,246,253,190,5,191,219,35,206,22,152,72,0,169,175,3,24,229,85,138,42,77,10,186,0,96,160,7,135,219,234,247,190,195,64,130,169,45,98,251,12,60,128,57,250,196,207,219,200,217,41,172,81,100,239,12,14,48,85,205,196,56,177,207,114,239,108,95,199,248,75,159,148,86,169,113,252,21,247,30,39,100,149,206,125,92,255,220,195,152,220,206,189,65,214,142,184,139,69,224,16,50,254,253,57,255,254,184,242,182,92,205,204,30,51,11,30,206,126,64,6,109,220,208,7,172,87,122,182,44,150,60,249,114,112,136,42,209,101,121,97,2,129,42,147,194,16,117,148,26,216,103,226,90,151,2,108,252,23,3,48,67,208,80,36,172,27,220,193,41,57,115,98,97,42,219,8,187,227,0,50,32,107,67,88,136,94,88,76,128,153,114,171,219,204,94,239,151,129,201,77,107,169,105,53,102,97,175,147,215,84,82,79,83,44,236,220,244,10,55,114,192,204,12,193,138,237,119,143,3,241,194,50,6,168,225,173,111,184,189,69,25,86,81,152,237,101,103,96,25,91,38,67,158,80,165,89,50,51,12,151,201,187,125,126,233,240,171,152,186,117,229,13,90,77,42,242,36,159,220,236,52,70,45,242,174,1,52,93,89,251,185,249,73,102,110,28,109,184,246,69,32,76,102,22,69,109,113,233,71,18,182,141,0,51,199,42,165,94,143,31,77,93,95,199,242,94,167,173,186,167,20,54,108,203,27,212,181,137,96,241,225,149,223,55,133,85,102,199,198,153,185,117,110,252,148,25,95,199,2,151,145,185,78,24,171,151,245,46,113,187,23,112,19,191,49,195,110,207,243,86,7,192,9,185,223,231,147,175,2,24,79,21,213,229,53,245,41,22,120,102,126,215,239,249,24,224,91,2,210,113,138,204,161,195,34,7,10,158,192,174,100,126,223,32,214,159,22,51,131,120,189,126,223,107,126,117,128,236,190,97,93,187,204,242,208,87,1,140,186,242,154,234,154,146,20,11,60,179,56,78,246,223,176,27,78,36,249,205,94,230,112,31,75,142,207,15,34,91,112,186,253,222,181,28,191,206,181,204,90,134,54,108,32,195,68,22,236,176,41,227,167,46,36,215,70,244,156,185,185,132,120,5,59,120,234,201,172,209,86,87,221,79,62,153,163,237,203,50,193,164,87,148,7,98,26,78,233,185,79,88,119,64,136,92,11,200,107,239,108,236,244,39,206,183,193,157,15,162,104,54,185,9,210,25,183,57,200,175,78,166,99,155,70,195,244,237,46,115,115,68,230,123,56,29,105,39,254,177,219,220,94,132,23,191,85,150,124,171,168,132,255,36,61,157,224,60,250,58,193,31,220,161,133,63,52,213,162,162,168,150,22,244,119,122,65,89,84,205,20,213,76,199,248,124,222,178,180,117,119,52,25,105,67,123,145,92,171,234,145,203,213,183,126,233,166,219,13,150,158,34,57,69,137,185,242,209,83,89,52,62,103,23,4,95,202,56,157,21,26,41,190,4,44,178,107,20,190,41,237,58,103,235,83,101,161,182,188,20,183,24,239,201,11,37,138,15,37,158,173,204,44,238,47,130,104,70,6,199,184,213,29,192,22,214,214,156,217,67,255,77,180,193,205,251,221,31,68,3,52,51,183,199,126,252,136,50,253,199,149,47,59,97,155,154,53,106,90,175,212,4,38,172,16,28,69,225,132,253,197,4,243,152,186,196,132,205,58,20,110,236,156,77,135,82,138,47,7,142,220,180,13,60,17,135,12,218,44,81,49,172,160,94,91,129,250,117,190,66,41,47,80,41,213,153,204,90,244,238,247,108,202,85,42,102,111,155,61,56,36,99,43,152,163,174,111,151,117,29,177,111,7,200,254,0,25,242,202,240,119,239,54,59,234,98,251,237,95,108,194,82,133,240,167,80,174,87,20,54,211,133,66,144,79,79,167,217,76,81,74,85,76,144,79,102,19,54,155,0,248,226,115,245,10,228,81,156,49,32,114,179,52,240,196,165,208,160,202,100,150,242,75,239,1,61,172,195,206,124,62,65,175,190,153,61,32,105,147,229,123,244,247,122,63,40,30,35,94,118,119,0,65,50,192,21,187,53,130,133,45,206,207,181,20,136,74,252,208,232,151,157,182,58,157,182,176,64,89,160,10,76,219,95,95,4,98,0,46,63,109,175,21,34,95,197,60,78,64,64,197,241,144,201,19,129,146,151,28,30,215,55,157,165,220,38,18,237,210,75,213,147,251,173,91,130,130,116,112,16,239,110,112,173,253,200,196,145,88,120,32,150,144,162,60,137,161,243,249,121,197,156,253,3,251,222,147,164,194,99,194,151,37,214,222,106,212,117,181,133,81,57,164,162,200,82,128,26,179,115,118,91,65,241,239,222,226,118,227,228,28,150,83,186,24,100,70,92,112,198,239,155,98,222,89,101,50,140,235,154,60,99,172,86,52,244,123,60,236,244,82,10,154,252,34,102,204,75,127,49,131,13,62,117,93,229,163,130,168,252,165,241,0,197,232,184,145,11,220,246,95,191,96,198,78,68,188,98,45,13,219,33,63,187,195,204,206,98,222,45,175,3,147,192,139,151,118,38,80,107,118,186,255,160,64,173,123,248,168,234,126,109,98,11,187,0,84,84,80,54,247,153,145,13,198,254,1,211,106,191,61,6,250,36,231,86,198,49,206,28,174,130,238,194,246,239,48,203,110,118,250,51,187,61,31,82,110,254,168,16,173,46,125,84,88,21,149,182,83,130,76,157,251,204,233,57,255,250,130,27,123,39,18,34,64,20,96,230,119,3,68,247,225,140,248,19,67,237,166,151,240,188,111,138,93,221,103,94,189,253,163,2,181,244,73,149,70,149,216,20,38,50,83,97,3,144,61,247,225,62,33,0,15,193,185,38,18,107,8,150,55,18,138,217,106,191,41,54,42,83,96,131,44,46,3,212,11,40,172,52,61,49,46,43,192,178,70,167,110,178,51,71,6,46,216,237,117,191,219,197,188,157,69,55,130,241,19,230,117,42,155,228,215,138,145,92,203,181,155,214,50,220,207,131,201,156,219,207,75,199,163,71,89,78,61,190,159,216,163,7,153,98,130,61,130,85,27,72,171,254,211,57,118,179,23,68,39,113,185,98,134,63,131,26,42,70,220,127,225,253,187,2,77,161,174,185,41,176,127,215,209,163,161,40,133,254,74,251,119,87,25,240,23,183,66,92,141,2,138,83,142,61,103,64,12,60,145,182,56,242,168,176,162,164,64,157,92,135,145,158,121,168,0,110,78,136,149,23,65,195,225,135,198,100,220,177,13,254,0,225,179,219,35,88,134,177,119,1,80,132,101,53,191,168,169,80,169,162,105,13,221,34,230,77,234,49,183,117,81,84,129,242,74,115,48,59,67,191,73,179,49,99,154,40,206,0,6,191,153,29,48,226,103,224,48,250,207,55,208,34,15,133,74,241,51,67,100,103,182,94,161,186,173,84,8,118,66,225,74,196,140,235,48,233,26,105,93,35,70,136,202,130,199,10,149,172,185,77,12,25,50,235,219,105,139,225,185,30,131,166,212,194,13,176,158,211,186,60,49,134,144,214,25,116,48,105,27,91,12,230,46,75,163,92,211,214,41,188,8,67,186,20,210,53,228,13,93,79,245,180,174,167,147,110,213,99,21,121,152,239,180,89,79,55,98,53,249,136,26,242,223,4,251,143,53,127,86,62,139,131,16,198,128,67,16,7,182,179,38,38,31,228,23,172,220,70,47,115,226,37,195,203,232,183,126,122,65,38,135,209,111,125,121,136,221,57,151,133,30,160,40,141,166,160,250,89,189,140,89,236,7,60,170,41,153,150,89,92,17,175,223,128,88,160,171,125,44,142,250,77,157,122,99,216,144,217,217,169,51,189,48,182,155,104,93,126,135,169,201,208,174,255,17,215,167,70,147,165,77,143,54,28,247,48,89,247,137,6,68,102,207,233,119,91,185,189,243,164,84,125,93,45,54,170,175,211,108,210,117,55,91,238,208,221,22,83,104,52,240,127,39,16,77,99,19,116,63,50,126,175,152,89,176,178,174,35,110,179,15,243,0,190,29,33,123,167,204,222,52,57,89,39,182,147,43,141,230,139,216,78,174,147,30,242,138,49,186,223,62,232,247,108,179,75,235,220,222,32,99,159,240,187,61,254,211,101,166,63,113,154,139,235,108,113,253,53,235,141,63,25,232,112,151,3,177,155,193,243,141,109,52,80,6,12,132,12,93,0,189,178,125,167,254,211,13,178,58,15,164,140,65,109,54,199,31,30,225,200,159,227,160,135,39,155,218,77,173,0,56,230,245,62,51,182,203,237,29,113,123,139,152,141,208,231,229,135,156,252,156,141,219,243,222,12,10,232,48,25,245,61,225,172,46,84,62,165,133,127,224,191,202,251,247,170,203,30,21,40,64,215,80,21,150,171,229,129,217,207,77,190,243,123,70,248,215,23,126,239,71,160,1,238,104,21,139,221,247,219,152,225,245,63,60,49,116,118,55,129,128,19,2,230,159,112,226,216,62,178,14,59,241,29,144,126,39,177,185,185,89,39,183,187,66,236,137,51,123,92,103,139,235,112,155,201,216,218,76,135,195,185,127,20,100,179,206,230,174,30,144,136,45,22,147,17,36,52,207,42,241,189,199,164,254,206,15,164,247,141,223,61,229,119,191,225,87,7,152,207,35,201,101,207,148,157,201,42,194,227,77,42,161,43,145,50,112,80,222,10,136,98,130,184,5,72,18,132,153,160,108,44,37,223,137,153,75,68,49,137,146,243,214,55,204,178,51,161,156,39,44,150,240,137,4,210,93,240,114,35,45,79,71,210,163,229,160,47,232,110,99,192,187,197,96,50,22,229,41,196,19,157,166,46,131,120,130,18,126,195,101,125,171,201,220,3,216,53,117,232,81,242,75,36,26,214,118,21,162,80,216,97,145,83,130,48,216,97,209,198,200,131,90,53,245,87,57,8,130,40,180,69,12,142,182,52,26,44,250,14,225,189,70,253,75,90,23,113,138,214,213,11,57,80,80,134,40,129,225,24,77,102,208,48,95,20,229,193,187,130,191,48,153,133,66,149,39,19,116,79,184,164,86,82,129,31,112,165,16,134,101,214,255,210,173,239,178,52,128,138,22,177,87,252,50,68,159,191,252,8,50,86,145,166,180,130,170,44,211,42,110,53,23,5,135,122,171,189,72,33,191,5,0,209,23,129,242,166,167,187,244,183,232,150,22,67,187,1,70,28,190,9,64,20,254,33,104,99,205,166,246,238,14,35,116,241,37,14,23,250,243,178,80,126,43,4,106,57,42,76,162,232,159,128,136,82,211,79,196,17,18,18,113,30,6,233,38,74,33,55,1,149,228,69,42,20,19,11,236,209,170,12,83,38,121,46,136,125,153,159,95,19,136,37,48,186,198,46,61,109,110,110,147,145,87,163,194,233,128,4,215,248,92,145,136,40,163,31,148,38,13,84,15,234,196,23,3,125,224,175,152,199,226,116,7,252,8,82,108,204,219,139,147,169,74,246,73,88,55,252,158,77,50,213,155,112,10,153,131,35,74,167,163,209,0,8,245,17,159,132,75,221,104,102,64,53,85,20,98,1,99,26,74,67,201,243,197,75,93,65,225,23,179,85,80,74,185,42,36,12,255,212,149,23,77,253,160,179,224,151,96,105,151,133,15,197,41,12,20,28,234,48,12,40,242,41,204,11,97,164,159,11,16,251,161,77,81,28,69,73,98,98,207,226,31,12,0,48,67,113,36,100,2,196,4,122,173,66,120,50,200,185,127,162,159,211,98,10,144,187,223,7,96,3,42,117,81,94,224,235,37,237,237,127,254,75,94,24,146,102,145,9,32,175,139,132,31,138,169,143,197,39,16,128,220,197,52,113,189,253,238,238,119,196,182,197,247,111,137,61,16,64,104,161,205,173,122,120,20,16,219,222,34,141,139,152,119,225,55,27,241,28,188,78,160,148,200,119,10,11,70,136,34,98,193,212,65,27,140,210,223,0,89,202,96,212,235,240,253,194,33,66,30,239,134,111,24,77,141,209,167,2,212,25,193,182,197,132,83,1,90,139,194,168,190,189,61,100,75,151,225,175,70,49,81,149,48,61,83,217,29,129,21,133,32,13,93,48,201,240,159,174,231,173,209,121,174,196,33,71,127,87,167,183,208,134,246,224,116,111,83,166,142,91,197,111,197,189,86,52,122,4,167,79,112,74,38,245,181,1,129,84,120,92,92,201,130,125,147,120,74,25,202,145,147,255,130,238,12,73,182,129,190,228,255,41,168,232,230,21,27,30,213,101,229,61,37,70,157,217,100,208,69,188,43,46,1,13,190,176,181,187,189,59,82,195,18,226,41,64,196,10,229,141,73,192,126,195,7,17,235,121,223,46,187,123,144,30,97,232,59,66,40,139,235,147,112,45,220,169,100,68,33,126,50,51,162,136,153,7,248,49,36,242,216,23,70,147,67,240,181,61,226,244,8,114,108,102,225,3,168,30,240,144,223,123,124,55,0,231,52,115,152,225,119,49,127,25,254,53,24,91,76,193,87,74,50,167,231,128,202,63,83,127,249,62,4,140,22,147,209,98,134,41,140,79,27,187,59,34,88,75,83,59,109,252,57,47,50,185,143,228,112,3,31,251,230,135,111,139,240,212,183,161,175,135,9,38,148,28,41,68,63,236,230,30,40,224,25,14,244,39,67,139,222,136,35,21,14,164,135,26,176,156,8,119,220,17,209,175,80,71,163,63,48,98,201,145,9,207,225,201,136,145,201,112,104,194,133,100,99,11,146,120,122,80,111,53,225,186,36,131,63,47,204,40,167,33,133,101,8,249,91,70,139,190,11,121,115,187,40,149,162,240,84,132,198,33,83,23,46,93,194,50,69,6,231,69,146,10,45,91,116,252,226,31,65,148,65,166,157,151,136,109,68,207,168,63,9,106,137,208,143,208,42,75,108,99,220,209,41,124,53,9,243,121,110,232,148,120,15,240,214,188,226,103,213,143,163,167,162,196,227,191,24,122,244,49,170,81,173,222,82,1,114,14,156,180,116,27,208,66,146,87,236,63,235,69,141,40,213,203,162,58,2,139,182,222,104,201,215,181,139,102,113,225,213,120,67,1,8,147,226,155,176,144,129,219,46,1,199,164,12,141,179,246,51,35,142,32,67,19,164,173,241,45,110,108,34,33,139,67,206,102,214,67,151,58,244,130,37,54,192,122,196,167,66,12,37,234,185,32,87,52,119,8,82,151,176,33,29,228,90,221,237,130,52,40,113,233,27,212,182,227,129,210,221,21,161,47,3,44,61,147,252,210,161,255,116,34,28,35,45,249,28,46,143,237,166,22,139,222,44,226,134,110,182,20,253,210,4,239,49,255,140,34,121,129,28,36,185,70,185,34,175,248,193,163,202,250,138,167,41,222,214,28,217,133,178,50,110,111,39,42,109,131,228,51,237,166,231,177,180,241,162,171,25,22,105,110,248,128,157,222,79,241,116,79,183,190,173,59,86,237,22,159,199,58,62,75,227,172,103,195,127,246,38,226,45,128,203,184,55,97,215,13,58,52,223,245,152,186,117,180,41,184,194,47,56,248,222,41,110,111,140,216,220,73,250,1,79,183,208,198,30,67,228,195,63,62,7,50,48,153,139,160,99,33,37,178,152,189,240,114,123,147,201,223,100,52,1,211,144,126,145,32,117,11,168,101,63,78,115,187,97,208,8,218,165,20,116,98,140,168,232,29,122,22,180,149,39,3,170,41,36,24,4,0,170,111,2,93,188,241,69,15,168,11,221,61,122,180,192,175,243,86,71,138,215,116,89,186,117,97,131,216,143,221,150,142,198,46,83,183,185,89,95,20,56,119,11,79,117,232,117,134,110,241,19,1,150,132,196,46,92,106,166,59,58,105,67,171,177,168,9,168,219,168,239,234,18,6,15,253,39,203,125,169,49,10,164,161,11,141,67,156,17,33,107,97,114,176,181,254,218,115,39,138,203,136,80,128,95,17,76,243,35,179,243,46,192,52,83,204,175,24,241,51,36,58,146,221,85,198,126,194,110,239,165,30,11,190,198,208,12,192,19,56,230,29,147,185,53,75,240,68,238,184,179,241,240,209,163,178,228,96,9,244,225,133,222,208,67,27,91,239,52,27,243,131,98,19,153,60,36,107,233,128,225,103,90,71,103,145,18,200,216,10,51,177,195,158,205,176,91,35,41,190,222,29,41,231,54,52,144,225,101,222,186,68,230,183,82,113,179,214,48,245,136,99,5,26,98,220,110,198,238,76,241,228,47,134,200,105,23,124,246,19,51,123,28,176,244,39,155,124,237,145,58,198,130,131,237,253,92,82,45,75,241,144,174,43,209,60,147,9,56,102,215,223,178,107,231,100,212,147,156,249,180,210,29,250,184,142,139,35,142,232,129,184,140,162,149,48,165,90,32,44,65,145,171,104,136,230,97,34,36,93,75,5,61,45,108,236,113,140,249,221,14,191,251,131,223,55,198,250,118,249,55,78,102,193,131,153,175,23,172,100,98,28,115,128,5,47,17,151,135,236,190,9,89,134,2,235,40,188,77,92,67,101,93,150,30,52,99,116,128,228,102,48,222,110,215,183,88,238,82,157,47,191,15,174,187,225,252,84,1,139,174,216,145,203,216,123,127,48,4,0,40,26,126,209,46,33,202,120,209,103,67,98,94,4,112,195,189,104,133,239,252,76,27,126,214,39,232,71,12,135,135,111,70,48,249,224,7,35,78,73,125,77,208,14,35,62,9,122,97,130,175,197,168,140,1,107,75,228,168,130,58,117,244,119,66,232,8,81,77,202,37,7,148,9,163,186,92,163,46,45,41,163,212,74,149,86,165,214,86,224,185,91,65,155,161,160,123,40,66,242,57,176,165,151,221,180,17,59,46,131,51,150,192,8,130,56,8,46,88,209,189,13,158,141,20,181,163,233,56,210,230,34,65,175,157,166,206,40,147,85,58,118,29,252,217,136,15,6,30,10,154,119,130,244,26,35,30,6,118,245,35,16,36,40,15,17,155,253,87,150,249,19,190,40,109,177,63,225,27,46,41,249,39,124,223,229,133,255,132,175,236,49,188,4,118,109,232,8,27,251,204,20,112,94,160,142,139,112,156,122,120,143,37,106,179,43,206,203,231,242,2,64,212,107,146,191,51,157,205,166,40,30,19,155,168,55,126,239,245,101,119,24,77,166,150,150,118,88,100,243,131,22,165,192,126,101,128,165,11,117,184,152,121,15,51,112,17,13,215,40,199,161,43,201,148,210,111,73,71,4,73,252,253,76,101,186,43,132,225,5,77,115,47,160,155,93,180,17,254,67,21,0,123,59,62,34,172,98,201,7,9,179,215,252,179,222,98,48,182,70,10,2,214,94,226,217,224,38,214,249,105,235,213,137,50,153,94,144,0,161,194,25,148,78,147,75,217,32,95,147,125,39,183,119,132,175,138,13,243,204,68,123,11,235,109,201,95,145,80,229,76,254,88,26,90,103,234,121,157,161,226,28,134,108,156,61,54,77,5,52,33,205,100,170,127,38,124,81,134,234,103,36,134,127,123,253,47,244,233,196,125,72,38,250,39,126,42,133,228,159,108,185,75,33,248,39,97,144,82,114,191,32,65,101,102,235,73,95,53,136,215,12,174,198,85,94,246,252,18,57,132,213,13,114,234,197,208,85,119,124,64,170,196,179,138,72,134,180,182,201,237,45,42,82,63,214,209,147,224,139,140,99,36,173,239,246,244,68,110,233,240,115,71,252,220,97,156,196,144,124,101,251,197,216,17,217,117,235,123,178,126,72,78,125,252,78,159,68,39,36,249,200,11,211,139,230,54,131,81,212,142,127,109,187,45,44,109,252,206,52,177,249,252,238,25,246,245,104,242,87,188,236,81,198,193,78,132,130,50,197,131,191,68,82,43,200,36,145,157,79,254,168,206,18,181,23,134,114,214,244,4,51,187,76,156,41,58,219,101,249,181,41,114,138,140,15,145,119,219,88,155,198,155,98,78,34,160,218,104,179,185,167,211,100,1,174,219,65,183,26,154,233,23,244,207,122,163,94,39,74,131,8,53,50,101,39,246,247,24,201,235,56,189,3,32,100,14,95,115,155,14,126,240,85,242,151,91,94,70,13,230,189,223,61,146,14,242,58,204,191,182,69,66,112,110,156,153,93,135,193,128,78,154,252,193,72,184,243,214,65,102,255,136,236,165,232,34,142,191,231,167,23,221,130,151,161,48,86,102,223,77,134,183,1,232,252,236,81,242,103,241,153,214,182,72,86,136,105,152,86,55,152,131,37,230,116,38,249,179,6,157,42,18,95,31,63,250,61,211,24,20,189,124,22,195,49,66,202,93,172,161,59,232,81,128,213,51,130,122,182,176,119,159,104,211,61,24,75,52,125,204,125,62,129,113,10,127,35,156,66,226,108,14,137,189,203,99,93,142,30,82,178,36,174,18,180,46,129,31,145,57,210,143,168,131,138,241,35,82,42,179,229,71,164,8,250,17,41,10,98,28,137,148,20,245,87,133,138,202,196,145,72,232,191,145,238,208,163,87,9,92,18,251,45,58,23,153,177,8,14,122,23,93,197,81,72,169,188,132,163,16,110,227,194,96,94,194,96,36,253,131,164,253,51,98,220,39,130,163,215,53,182,129,32,103,110,196,71,242,36,55,203,164,201,224,129,60,21,25,88,228,84,58,180,208,46,143,69,146,156,10,35,41,96,108,10,18,198,221,160,251,218,247,168,95,221,22,43,17,221,165,190,199,33,180,180,155,94,220,109,51,232,116,122,35,26,163,226,69,18,147,185,51,132,148,214,166,252,118,125,43,221,30,93,7,70,10,26,63,24,90,204,64,1,130,17,12,250,42,19,201,1,143,26,163,130,123,194,186,134,249,199,203,227,20,99,115,34,112,26,172,187,4,151,34,234,46,225,15,161,83,77,38,179,78,111,22,102,75,196,161,104,153,11,60,25,250,29,124,26,221,220,154,205,166,118,0,96,43,238,126,134,43,213,116,84,11,47,13,32,12,13,83,194,239,168,240,147,216,141,84,209,194,19,80,126,146,16,68,200,10,151,174,43,84,232,129,240,17,186,65,101,60,253,211,240,154,74,28,248,130,158,64,225,158,7,0,33,233,80,21,98,254,232,86,149,84,89,252,83,75,17,162,29,165,71,105,215,43,209,178,20,179,211,132,174,87,9,23,152,84,239,23,124,175,138,25,215,17,89,123,19,177,228,132,67,139,164,156,159,34,190,23,115,57,92,100,40,108,91,21,206,197,150,25,146,140,177,9,248,22,34,157,4,111,252,38,234,15,28,124,19,123,54,193,158,109,212,192,141,250,23,66,14,168,14,76,5,149,223,98,214,235,163,98,188,58,90,90,127,254,249,86,39,76,227,138,170,194,218,194,194,250,210,186,91,29,240,235,190,248,171,172,10,150,230,205,73,102,126,23,19,169,239,59,201,69,63,58,200,191,91,226,231,79,248,57,193,166,134,128,143,245,87,200,70,127,158,84,21,86,151,62,126,44,127,32,244,167,78,252,165,208,128,24,181,209,231,247,189,230,46,38,184,243,41,254,245,5,191,106,231,79,47,34,77,207,95,8,128,101,85,42,74,161,86,150,62,17,58,252,55,241,87,12,0,39,201,192,5,103,255,128,105,181,86,55,174,23,122,42,197,253,7,117,84,149,208,153,255,20,127,201,75,160,51,94,39,243,121,92,40,117,106,245,159,218,153,185,61,198,251,150,57,222,250,215,217,210,13,128,225,195,242,251,149,165,143,234,31,214,8,221,22,126,61,185,95,213,128,178,51,66,143,93,92,97,23,150,201,254,1,89,91,242,123,6,3,125,190,46,24,62,188,87,66,169,74,235,31,169,197,206,220,43,169,214,84,214,55,212,3,207,112,76,129,62,192,124,92,6,117,90,4,35,89,247,145,181,129,27,2,195,138,135,181,245,74,69,185,70,236,118,69,173,230,217,3,245,179,199,193,137,67,108,35,204,194,24,119,49,132,118,191,157,13,208,98,174,27,140,49,253,121,248,180,234,113,157,242,94,176,63,236,238,10,59,49,200,88,95,49,251,211,55,4,128,101,149,138,10,229,3,69,169,216,225,178,170,234,130,210,135,114,180,221,219,39,253,222,143,129,110,79,12,114,155,239,136,239,140,217,89,187,94,232,61,43,172,172,175,40,105,16,59,83,89,80,240,128,186,167,122,152,87,172,160,136,125,144,127,181,196,14,245,115,3,125,192,14,201,240,214,77,0,158,250,222,131,186,103,138,251,21,98,127,225,87,125,105,249,253,39,128,237,253,51,126,104,8,24,15,219,251,153,223,233,195,106,186,214,77,238,104,235,90,129,87,254,240,137,178,166,225,89,65,128,157,192,175,250,7,53,42,232,204,238,16,217,157,247,187,119,48,64,106,111,133,156,245,1,245,17,235,252,13,0,96,229,189,242,50,149,250,177,230,161,208,231,114,241,151,22,251,60,179,200,15,142,112,253,62,206,183,71,70,103,184,21,43,76,157,107,103,129,101,143,74,21,138,7,181,1,22,8,191,84,154,123,24,80,49,58,195,14,108,112,243,147,88,6,204,225,97,22,246,110,0,232,202,239,149,61,185,167,40,173,16,39,238,127,138,191,42,85,66,96,47,235,220,33,107,31,24,183,141,159,253,196,88,199,145,103,15,191,189,102,232,213,65,15,74,20,247,238,151,8,253,121,32,254,122,160,10,113,226,211,79,88,96,69,72,245,132,133,88,250,62,221,0,24,62,44,43,148,107,171,148,84,93,128,249,21,62,123,82,243,64,93,250,167,174,54,218,140,42,74,83,94,113,125,69,57,22,23,90,221,102,70,94,129,214,5,194,204,181,146,96,169,70,94,95,246,184,162,90,236,16,254,122,92,166,126,26,236,6,44,187,254,211,3,191,123,140,233,31,190,9,224,187,39,167,180,114,117,105,125,96,194,200,169,66,173,188,174,6,214,142,145,117,102,248,128,27,250,64,78,14,48,50,215,238,226,173,203,100,216,117,173,160,171,84,213,87,213,85,105,3,157,129,95,213,181,149,15,96,33,35,23,219,220,112,31,89,119,138,102,224,64,249,203,200,50,151,162,75,69,204,126,177,224,174,186,60,196,175,206,137,241,84,178,174,100,9,87,19,41,58,50,241,23,116,50,210,44,38,11,6,252,161,58,27,21,105,39,156,133,187,99,140,99,114,165,54,93,235,88,116,31,163,220,96,90,133,140,11,141,66,40,81,212,77,137,2,122,164,13,70,216,71,180,14,4,224,34,250,130,252,61,96,90,140,143,194,140,182,5,152,161,3,116,178,44,11,87,142,240,83,200,35,35,252,20,84,56,192,79,184,18,12,240,195,11,87,177,219,1,74,46,101,184,107,166,219,131,217,50,34,204,60,170,144,237,78,18,38,241,151,190,145,14,88,141,64,183,96,82,72,128,113,108,153,107,224,89,147,217,11,239,87,84,223,175,11,202,200,21,101,117,101,53,133,15,131,43,133,223,109,37,147,91,220,158,23,205,235,11,31,253,167,215,170,59,62,44,125,88,83,87,80,83,251,32,192,113,31,171,30,148,151,151,214,230,21,35,247,58,31,1,149,17,51,13,108,142,69,164,73,248,70,162,58,117,28,50,18,71,0,11,87,227,184,139,62,106,23,56,141,156,47,151,204,246,146,216,210,21,48,217,42,210,50,217,134,19,190,228,242,182,100,254,130,92,222,150,92,222,150,200,23,228,242,182,252,193,17,158,203,219,146,203,219,146,203,219,114,169,206,124,173,121,91,30,166,220,61,15,28,36,74,203,18,237,78,17,155,150,69,89,240,117,184,83,200,179,237,78,81,144,45,119,10,197,117,185,83,72,71,251,252,155,193,216,220,222,173,211,203,154,77,237,237,250,102,139,201,28,12,82,136,136,252,241,251,166,184,190,79,82,49,63,98,74,69,89,48,181,98,135,69,102,236,10,100,89,236,52,153,45,93,233,110,186,139,119,7,254,36,217,110,79,47,161,99,244,222,187,169,189,177,189,35,114,15,61,163,46,193,79,241,159,96,175,224,248,185,161,203,208,212,174,47,142,1,69,40,188,133,110,74,119,220,112,171,248,79,240,237,93,56,208,162,60,28,82,155,65,167,191,107,49,119,235,191,215,129,214,212,115,23,22,179,239,19,184,2,180,69,42,34,17,154,74,192,77,64,22,19,144,18,186,19,212,246,80,238,108,184,247,54,186,20,132,159,109,53,10,238,39,205,38,99,0,155,178,230,110,51,8,87,22,137,240,162,0,230,34,188,212,4,154,9,91,187,210,254,46,28,55,182,27,26,95,200,11,168,212,223,49,54,209,240,173,218,210,18,252,80,126,170,187,155,133,187,203,196,187,175,179,91,130,75,168,224,170,183,195,29,219,210,234,219,11,147,185,93,151,47,84,122,227,231,109,241,29,140,94,35,162,40,47,64,118,66,210,153,64,180,121,212,176,82,124,153,110,111,15,208,58,110,93,159,145,9,193,133,86,180,175,229,7,3,172,226,100,239,110,227,157,56,156,115,39,147,204,206,122,26,79,39,89,186,45,134,158,110,232,199,246,91,88,184,197,149,58,198,161,55,214,70,33,53,31,164,252,72,162,48,219,100,210,245,228,197,187,150,132,232,59,222,40,75,78,54,226,106,95,197,177,25,9,115,64,12,143,104,50,180,38,207,55,253,123,104,73,35,169,2,180,22,206,145,220,240,240,30,85,89,78,81,148,170,176,68,43,143,207,145,28,92,73,130,174,165,51,123,204,225,42,25,235,103,119,103,253,238,33,248,23,131,73,63,173,192,1,177,239,163,229,204,59,131,54,60,184,199,189,193,125,222,103,251,119,216,222,237,152,204,219,73,108,100,152,65,27,104,5,147,104,23,229,233,91,90,96,81,188,43,107,161,117,250,106,227,247,64,41,213,200,199,239,82,1,153,194,4,210,3,76,245,72,137,33,11,233,238,229,240,71,171,163,10,91,154,233,2,33,221,189,178,208,172,6,248,152,19,167,218,86,106,169,30,185,86,147,52,221,253,213,0,7,227,146,43,208,1,48,232,25,168,141,244,12,212,106,242,242,179,40,16,75,33,225,198,227,0,160,211,35,87,168,174,23,7,133,234,48,10,20,81,206,153,10,85,34,20,36,84,117,82,166,221,186,236,100,45,190,220,64,195,25,156,210,162,18,233,173,11,105,22,156,185,208,23,88,164,66,139,85,64,66,147,162,201,24,119,79,212,156,2,79,73,8,108,176,10,96,236,250,111,32,38,198,126,57,248,217,104,121,81,184,43,44,51,134,110,74,34,56,10,143,4,99,207,227,68,166,212,235,125,7,109,105,110,11,198,166,198,44,245,225,168,243,184,47,38,147,207,18,139,166,177,31,215,191,236,212,155,45,193,175,11,22,2,191,123,138,236,30,75,75,133,9,191,156,242,75,240,246,179,25,238,124,146,253,116,30,149,113,37,154,134,163,196,186,152,36,252,82,184,139,145,109,194,168,72,87,200,9,29,53,210,82,104,77,55,63,88,115,79,179,144,30,12,254,74,8,157,194,171,190,53,180,252,89,184,239,214,45,225,190,59,2,222,171,141,45,166,191,252,247,183,18,247,211,225,189,94,186,227,121,87,112,171,13,51,130,225,211,184,243,243,16,223,80,46,100,137,251,182,56,193,50,30,9,182,231,93,64,236,225,158,220,105,23,34,144,122,202,2,6,137,106,157,172,168,72,166,192,238,52,209,93,176,28,52,97,74,128,231,93,63,124,251,63,9,95,47,124,66,244,152,78,124,93,148,123,3,29,15,13,251,14,76,167,214,110,189,48,136,90,80,174,190,77,93,139,66,223,17,122,13,144,120,189,65,124,8,206,166,187,101,155,0,42,77,73,119,195,67,240,138,232,186,20,228,228,146,136,76,5,5,52,131,164,63,252,103,117,137,199,155,236,43,173,104,205,73,243,51,223,254,143,190,189,75,127,153,177,100,242,149,43,12,38,3,144,33,233,38,121,191,197,12,92,170,152,89,248,128,94,254,159,93,240,58,241,76,38,244,36,41,80,72,127,56,76,74,22,152,205,180,14,71,19,226,7,225,83,129,195,122,148,241,165,153,67,103,72,130,111,167,99,25,96,232,38,90,130,101,212,11,111,78,193,51,132,167,1,49,204,204,41,179,98,23,112,20,124,135,116,39,19,192,88,26,50,249,157,25,131,43,4,163,24,174,151,130,115,10,25,77,16,64,169,121,39,179,180,206,46,140,136,89,82,130,195,78,31,173,161,52,147,209,103,145,92,164,245,228,203,235,223,194,43,194,2,138,184,126,119,37,88,116,132,155,211,92,195,2,111,194,101,44,141,151,134,125,92,66,233,255,2,79,161,97,8,0,221,216,104,0,184,70,89,46,225,20,178,73,37,154,43,67,55,211,93,150,8,115,165,212,183,2,56,13,161,48,240,232,29,208,99,240,11,105,170,178,194,91,80,147,18,194,197,34,94,67,63,7,189,201,140,111,10,40,18,5,17,122,4,30,11,186,74,196,3,70,16,240,141,2,247,73,166,229,37,221,81,137,92,126,2,217,68,147,246,59,138,162,145,122,243,18,129,35,64,200,193,116,141,169,242,127,180,169,82,107,23,169,97,143,208,200,43,150,4,81,234,46,228,167,234,195,15,157,197,241,106,76,220,77,193,165,2,230,117,219,29,193,29,229,207,193,222,180,25,44,79,129,218,49,162,241,47,223,22,127,75,38,125,126,247,78,208,26,23,185,167,212,110,192,20,39,198,214,168,177,116,208,47,255,102,48,126,91,204,93,188,5,249,56,213,130,35,14,73,130,195,133,47,38,113,49,75,180,143,38,205,96,196,43,113,133,35,37,106,216,167,201,114,174,32,1,155,59,116,200,57,224,79,34,249,55,130,228,131,147,223,108,122,145,198,218,5,239,188,35,62,241,152,110,213,63,0,234,207,96,218,71,77,249,240,155,132,5,44,237,153,31,243,92,106,6,144,216,198,144,254,196,79,57,55,211,134,81,104,122,38,28,71,114,102,149,116,134,166,156,157,63,180,211,77,250,118,137,207,119,181,155,90,105,35,126,60,112,71,112,10,199,220,151,217,4,76,56,249,210,212,6,186,218,76,38,204,89,148,66,52,138,230,52,49,61,142,97,56,201,133,92,145,29,177,227,67,153,201,156,210,167,81,96,194,206,88,178,39,58,10,175,19,68,189,8,210,202,68,110,12,245,231,186,164,196,56,13,23,179,13,71,232,186,216,129,20,170,91,102,74,111,44,120,132,151,167,7,157,116,85,229,152,62,103,172,41,167,57,238,20,42,107,82,229,44,182,147,97,173,76,246,188,43,254,114,132,110,152,100,242,38,255,98,106,197,52,163,30,71,116,73,178,203,225,17,93,190,199,153,17,125,130,201,158,88,189,72,178,23,24,253,39,246,165,82,106,83,242,93,236,136,12,242,77,22,224,28,220,133,139,216,214,195,91,219,41,165,16,193,123,194,189,147,114,231,80,170,94,117,140,205,88,240,198,149,48,254,133,110,151,116,80,150,193,129,16,149,255,59,223,114,76,167,69,106,112,29,141,45,77,121,178,12,52,1,169,221,145,200,82,175,26,74,83,167,150,87,80,42,69,225,211,251,181,181,137,119,70,20,74,50,184,204,29,219,88,207,33,22,91,198,136,220,94,114,126,194,122,54,152,195,215,172,111,146,172,121,224,6,160,26,7,89,176,131,118,206,120,87,184,163,61,98,119,145,241,65,226,140,39,187,184,30,255,230,190,136,55,181,33,190,175,136,225,248,253,47,117,149,66,251,20,247,191,180,154,164,251,95,31,55,1,139,183,25,215,25,89,26,151,223,166,136,203,199,30,28,242,27,51,34,122,201,240,50,25,124,141,56,30,92,102,199,71,100,172,111,22,104,128,31,26,101,151,143,248,217,173,28,146,211,110,215,130,228,154,130,2,21,149,26,201,100,108,149,140,173,16,207,20,51,186,66,134,60,252,220,18,113,142,144,11,27,44,19,236,68,255,191,43,200,218,1,231,216,99,22,60,50,190,119,135,121,219,203,110,239,193,121,238,226,4,61,50,223,28,229,176,252,155,181,107,161,146,90,213,51,245,147,212,84,194,78,45,112,23,31,200,250,58,51,226,192,144,124,251,4,25,94,146,145,147,247,204,129,131,121,59,75,22,182,20,20,57,61,34,142,49,114,242,137,245,58,243,248,213,1,110,203,154,231,247,12,230,40,36,237,118,61,24,174,46,44,168,72,131,217,11,92,62,196,205,49,186,196,51,8,72,38,187,71,126,247,48,186,159,95,216,248,21,47,179,224,8,113,12,225,158,77,191,111,44,135,226,47,222,196,194,83,73,90,202,242,32,241,148,243,64,253,248,97,161,64,57,15,107,238,39,89,65,206,150,185,147,61,238,248,144,248,222,203,53,160,41,200,213,236,240,49,99,237,101,123,183,89,251,160,140,187,120,139,150,18,193,69,130,29,216,96,251,78,25,251,28,247,121,213,239,30,35,189,11,178,196,30,11,216,46,77,52,56,151,162,36,101,153,229,5,22,50,202,170,192,172,126,246,244,129,74,253,16,5,230,138,250,234,170,36,179,107,213,198,173,95,248,79,231,48,83,233,201,17,183,187,195,122,251,49,173,142,111,131,156,89,249,222,41,25,119,126,138,153,59,222,127,228,189,46,110,244,24,127,78,76,138,43,45,51,226,98,28,35,185,73,150,118,203,2,31,141,198,242,195,167,79,107,238,167,86,139,152,207,39,228,112,133,245,14,144,9,59,111,29,228,124,31,65,47,2,102,202,124,124,199,78,46,228,115,251,171,204,201,36,55,51,164,184,45,7,17,58,160,42,173,31,18,231,40,138,211,131,174,28,138,211,110,215,177,84,62,171,41,47,209,222,15,44,149,84,18,134,55,58,235,247,124,4,109,136,236,58,200,238,28,217,125,231,119,123,137,219,198,204,236,145,197,13,98,199,244,189,152,208,145,155,92,225,38,6,88,199,60,123,48,38,222,65,246,7,153,241,117,191,55,117,232,97,14,211,193,150,229,201,172,161,52,229,181,101,117,56,153,75,75,159,150,39,198,50,255,102,154,125,239,121,124,31,77,27,46,31,44,111,160,248,178,155,86,191,123,156,159,187,96,150,79,137,247,196,239,181,145,147,93,152,203,66,120,158,13,61,16,248,197,85,198,211,207,29,173,99,6,171,245,45,190,223,199,124,90,33,99,51,100,119,52,135,243,180,91,182,25,120,67,85,125,197,211,123,136,115,237,35,213,227,100,30,191,67,172,115,199,239,121,3,235,48,99,245,146,193,67,238,179,11,240,14,2,11,104,191,124,239,16,211,191,37,224,118,20,81,127,62,171,37,246,65,13,187,183,203,44,94,228,176,155,118,139,20,205,68,200,11,177,160,114,197,149,101,179,120,150,94,90,170,121,84,23,96,233,138,36,250,237,194,25,115,248,129,235,31,37,19,227,24,37,222,191,0,108,156,28,188,245,123,198,153,5,43,191,226,35,103,30,161,164,183,39,135,231,168,38,56,50,36,55,219,43,174,201,108,127,205,166,240,242,202,170,114,53,178,140,146,39,213,21,137,41,167,174,141,238,232,2,102,207,127,26,99,246,166,111,51,139,251,196,54,194,91,135,97,169,71,3,169,109,93,163,6,170,17,151,127,214,115,8,50,2,218,79,94,207,131,252,15,130,98,142,154,210,110,89,151,3,202,75,212,26,69,106,4,131,152,78,62,188,194,20,114,246,247,188,11,185,62,51,179,207,44,216,197,52,2,140,115,194,127,238,98,94,239,163,245,235,100,139,95,93,132,3,110,230,3,104,0,100,98,20,23,10,223,32,251,126,16,144,143,185,231,6,150,136,237,136,59,126,151,67,123,218,45,235,104,47,171,215,86,107,83,163,157,245,205,130,16,192,237,121,16,243,194,198,7,235,221,100,189,59,32,255,113,175,230,25,199,56,183,111,39,246,53,230,160,143,59,218,81,20,144,79,189,228,100,3,86,15,50,182,93,118,155,172,175,19,231,26,198,15,57,230,114,184,78,187,101,31,215,181,79,180,117,169,113,141,218,220,218,27,212,230,92,111,249,149,115,37,243,113,69,220,251,18,5,64,33,125,228,1,76,255,127,90,123,201,206,134,255,116,25,14,120,107,31,241,76,227,153,193,49,110,239,53,28,224,4,159,62,39,103,253,120,82,216,33,203,161,62,237,150,125,212,223,171,46,172,73,141,122,238,226,3,136,251,168,185,79,14,19,251,54,76,115,98,219,199,180,231,158,79,172,29,51,112,138,103,184,141,94,110,239,8,81,189,217,43,100,20,31,197,36,207,64,23,238,13,118,209,202,88,173,228,226,51,153,152,244,251,150,253,222,143,220,208,17,243,250,99,14,249,105,183,236,35,191,164,178,161,50,141,165,93,152,228,48,195,201,206,59,50,214,235,247,29,178,19,253,56,219,167,236,128,115,220,204,126,247,150,243,108,115,238,83,178,63,128,165,135,220,86,84,244,55,7,201,201,145,223,135,236,64,180,235,138,123,165,160,11,18,251,172,223,51,26,91,97,81,114,48,57,228,7,218,111,98,168,7,146,80,106,170,75,210,48,225,246,123,224,63,214,229,102,250,23,208,120,27,116,112,97,215,23,185,35,143,232,227,2,204,61,232,0,195,29,15,139,185,122,129,106,152,254,97,44,76,101,159,32,251,7,50,178,239,99,250,109,126,207,54,113,206,146,137,205,28,61,164,221,178,207,12,148,247,21,181,105,8,124,206,49,178,177,123,27,166,54,172,6,136,206,79,43,88,183,225,98,17,36,193,219,160,202,177,71,171,64,7,128,216,3,241,138,130,162,10,201,171,81,5,37,199,157,111,52,14,184,215,252,238,15,57,75,126,134,237,26,240,93,93,95,150,26,223,226,92,102,55,39,89,239,17,89,31,18,37,54,88,186,185,253,85,196,254,192,18,28,68,178,122,255,217,48,113,247,223,34,19,14,254,83,47,187,227,96,22,215,217,241,125,178,224,97,166,247,152,209,94,144,7,114,72,79,187,101,29,233,165,85,37,85,105,104,117,33,6,142,41,96,143,247,128,141,123,54,201,218,166,232,159,8,252,158,25,159,227,135,38,201,238,28,51,190,229,119,123,64,133,231,250,223,226,19,75,30,160,17,254,108,138,12,127,66,1,97,240,19,143,177,72,57,124,167,217,174,3,223,247,30,164,129,239,133,45,50,54,46,138,110,172,183,31,247,114,128,147,123,14,253,167,211,140,11,24,253,62,22,159,69,235,206,40,51,255,138,12,121,240,126,97,119,143,127,227,12,109,243,240,115,75,152,104,83,216,179,103,109,185,181,60,253,150,125,180,23,84,52,148,167,161,213,237,238,115,86,27,90,101,135,38,217,241,37,50,229,240,123,199,176,134,149,235,140,235,157,38,103,175,25,231,17,230,146,180,58,252,190,65,102,118,25,125,226,15,94,3,21,176,30,31,250,54,157,28,241,222,113,98,31,130,5,95,112,219,88,130,245,158,25,112,230,48,159,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,246,187,104,241,69,93,196,179,210,217,225,131,78,239,63,209,207,105,49,81,252,221,231,38,131,238,207,212,95,190,15,151,0,209,191,180,136,73,211,49,117,187,88,149,201,208,252,51,94,120,209,85,11,23,177,122,193,159,255,183,254,185,222,104,193,199,164,10,206,99,125,205,224,173,63,126,23,245,70,177,234,252,93,161,136,147,204,66,155,91,245,150,162,188,198,46,125,123,75,194,162,84,17,101,119,154,176,224,78,146,130,6,63,132,210,179,188,148,231,37,174,159,16,113,155,34,217,109,193,162,111,99,171,88,115,213,113,154,184,232,155,116,146,126,76,99,207,44,15,241,171,115,228,244,130,76,14,203,186,164,234,115,198,61,38,157,218,70,60,110,55,24,245,180,78,134,165,82,127,234,106,132,35,90,39,100,50,106,196,10,167,66,93,95,90,103,208,193,147,226,217,96,17,104,90,119,187,221,212,76,91,12,38,99,81,158,92,89,32,156,233,52,117,25,196,51,148,240,187,57,80,240,161,40,15,203,25,96,30,157,212,53,189,90,91,5,140,226,231,147,20,55,144,32,188,239,99,209,31,46,98,249,210,66,235,242,138,3,32,19,235,92,252,61,128,245,244,139,101,153,161,83,116,178,98,141,177,15,208,150,70,131,69,223,33,80,52,144,44,173,139,56,69,235,234,133,170,70,116,183,197,84,162,131,91,76,230,14,186,253,69,81,158,82,69,5,127,97,97,97,101,158,172,11,14,133,43,114,42,240,35,112,193,172,255,5,139,72,52,152,35,43,46,235,95,134,162,78,126,249,145,238,236,44,210,148,86,80,149,101,90,197,173,230,162,32,18,110,181,23,1,198,110,1,174,244,69,70,189,69,79,119,233,111,209,45,45,134,118,3,22,179,13,221,5,216,11,255,16,138,48,33,198,219,17,156,88,7,236,86,8,255,114,97,106,8,21,231,146,20,171,184,76,237,169,48,89,8,85,92,210,160,140,92,203,181,92,203,181,92,147,110,25,196,41,150,212,151,137,117,84,82,101,159,193,196,33,172,111,18,227,20,39,250,201,250,12,217,125,75,134,93,204,248,43,50,49,134,97,232,66,126,17,49,126,85,22,74,75,18,10,75,23,147,141,200,196,220,237,90,191,199,67,108,235,129,50,221,57,46,159,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,150,107,185,118,131,155,180,73,87,122,111,41,238,174,184,77,14,125,92,213,222,132,245,135,133,159,104,131,55,234,111,155,77,237,250,162,60,11,221,116,187,201,164,235,9,111,7,208,77,141,157,180,81,223,30,99,69,22,190,75,78,54,132,26,193,177,117,129,131,55,199,212,2,110,50,180,26,58,146,213,107,207,70,203,172,90,68,157,182,225,113,67,169,88,45,66,211,16,111,182,49,54,209,121,50,193,154,94,148,39,102,138,83,222,150,179,253,59,108,239,118,160,36,234,160,139,237,59,149,133,18,198,41,148,255,46,87,144,147,35,214,113,74,70,94,41,84,255,174,9,129,178,179,205,100,49,197,130,17,0,34,107,167,127,237,185,221,101,110,142,216,152,128,211,119,94,116,221,145,43,212,119,140,122,75,254,143,221,230,246,34,188,248,173,178,228,91,69,37,252,215,220,209,117,187,169,187,249,103,189,37,226,62,56,175,160,20,74,248,67,169,229,20,252,145,55,43,169,22,185,188,165,147,162,204,47,40,147,165,135,162,228,29,205,48,220,66,248,71,67,53,223,233,52,182,222,178,180,117,119,52,25,105,67,123,145,82,75,245,200,181,154,91,191,116,211,237,6,75,79,145,156,162,196,173,140,159,58,91,243,100,116,187,229,234,64,128,129,201,21,20,149,39,123,97,208,89,218,138,242,224,147,121,178,54,189,161,181,13,94,14,223,206,203,79,143,60,4,192,1,217,34,236,138,242,244,45,45,250,102,203,221,22,90,167,175,54,126,15,52,91,109,212,233,95,222,149,7,246,228,76,102,160,60,35,221,254,197,1,12,35,239,145,43,84,215,12,224,66,117,24,190,2,172,67,240,85,168,34,225,27,101,52,252,161,77,153,97,181,192,116,230,78,241,37,135,35,150,8,132,46,229,140,154,191,227,22,177,20,197,44,21,194,206,45,144,114,99,187,161,203,2,231,245,180,185,197,240,242,11,236,100,38,232,151,84,225,251,12,234,145,61,169,127,248,132,82,169,20,255,231,254,253,194,20,139,206,226,2,63,61,66,156,147,236,134,83,72,67,223,203,142,15,97,201,230,51,43,183,187,131,133,200,148,66,150,203,81,191,215,203,127,112,242,239,222,250,125,99,172,111,151,236,15,114,171,219,196,57,227,247,190,35,39,159,224,118,178,57,226,247,140,18,152,115,118,151,223,253,38,233,178,20,26,211,101,151,39,157,193,216,218,211,173,79,196,58,21,240,7,235,140,182,104,40,250,39,100,157,202,159,218,180,240,251,37,178,206,182,46,138,106,42,236,184,3,60,49,130,117,202,181,170,30,185,92,157,148,117,94,27,172,36,22,37,105,151,147,84,76,52,99,58,40,190,182,65,73,179,216,36,158,7,215,221,174,97,170,169,27,42,171,31,80,143,19,39,129,143,156,106,176,66,97,234,127,161,250,7,150,240,180,46,242,174,45,178,54,134,53,210,223,156,243,115,94,191,123,7,75,64,174,31,178,123,187,42,238,226,45,119,180,46,227,46,38,85,140,125,142,76,96,117,32,118,164,143,59,159,146,83,74,98,31,188,222,249,213,244,19,122,116,153,245,205,183,155,159,71,79,50,152,28,48,154,2,53,165,214,22,80,90,85,65,179,48,191,20,133,61,47,65,40,249,73,152,95,70,138,106,86,94,98,126,101,25,64,215,50,169,210,194,120,113,118,71,114,227,102,82,178,22,185,230,198,2,85,20,241,66,112,5,80,229,135,200,184,213,36,120,36,226,6,54,177,173,215,150,150,240,171,147,124,239,148,128,177,192,59,5,157,16,32,39,169,19,54,75,235,132,130,99,98,7,109,48,70,204,16,105,15,188,107,88,252,211,173,39,151,1,245,221,43,125,86,251,48,177,27,128,64,125,100,108,149,217,155,38,235,88,49,212,239,30,99,151,214,1,144,140,125,146,153,219,35,19,27,220,197,28,211,31,40,61,197,56,166,216,137,126,25,166,44,182,79,178,111,6,0,236,98,26,115,50,118,8,12,158,245,78,49,139,75,113,147,38,123,57,137,19,103,115,206,0,36,5,79,239,87,203,133,234,171,37,133,143,18,77,200,81,23,127,62,207,236,188,35,103,78,230,245,39,178,251,134,153,217,39,110,27,44,119,5,88,105,139,237,221,103,7,135,201,240,123,230,245,60,247,249,216,239,30,102,22,182,89,231,14,231,219,144,97,114,111,175,149,153,93,102,207,230,196,57,204,56,54,225,190,155,14,151,154,135,26,165,60,5,169,248,125,203,220,166,131,156,207,18,235,25,153,152,253,215,217,146,223,237,0,146,240,159,77,2,247,98,22,48,77,53,247,121,128,89,62,99,119,206,85,228,244,72,113,135,42,240,123,46,248,149,99,110,230,3,227,156,32,142,49,160,35,212,180,132,242,116,55,29,38,21,229,79,202,171,82,192,132,187,240,49,171,27,232,42,35,166,238,63,249,196,122,157,88,121,113,240,181,140,108,244,49,111,23,176,40,147,123,140,187,152,247,159,218,69,240,201,248,190,119,88,191,41,56,219,224,14,178,176,197,46,140,0,229,192,77,55,29,44,149,213,149,37,143,83,113,149,41,59,22,181,26,121,69,54,7,177,96,129,0,9,110,239,8,41,100,191,151,235,247,145,113,175,8,49,44,77,185,224,33,167,199,32,29,2,108,196,210,167,8,33,172,116,50,183,135,112,242,98,29,243,155,13,21,13,85,90,166,45,171,66,241,185,236,81,189,42,1,84,120,15,48,212,15,220,209,22,59,51,9,16,98,231,189,138,208,244,32,174,183,108,239,54,187,187,3,139,150,135,127,117,32,214,114,19,77,20,88,241,101,192,233,63,117,200,228,74,172,239,248,249,141,18,158,19,233,135,59,62,188,70,208,92,71,187,76,197,165,244,201,243,153,178,226,193,179,36,57,250,69,242,220,153,231,167,118,200,185,15,203,46,44,108,49,71,46,102,209,193,46,29,135,234,44,112,155,131,32,82,200,200,206,18,63,53,14,11,31,119,252,14,200,24,24,60,177,46,1,73,162,2,115,102,77,232,231,118,189,240,79,94,213,32,3,146,85,85,63,124,244,136,82,21,20,214,169,149,218,68,60,95,144,61,217,233,19,144,61,89,199,103,178,118,132,37,200,70,103,153,241,77,208,251,96,157,227,231,39,152,241,117,16,71,129,231,35,103,159,220,98,39,54,176,134,241,185,143,236,246,50,3,75,76,191,141,117,140,194,157,204,225,107,128,36,25,222,18,239,249,234,161,167,169,172,19,86,204,194,7,165,137,160,39,202,16,236,134,23,9,230,224,192,239,94,64,232,57,247,136,109,223,239,29,70,166,127,62,14,224,13,212,233,234,29,130,53,20,149,103,247,8,217,61,198,90,32,83,31,200,217,107,193,175,242,144,57,220,250,234,33,86,248,236,158,6,233,237,129,186,148,74,0,49,13,142,86,144,14,136,125,31,192,33,20,196,238,21,9,78,164,66,44,123,232,243,18,207,107,126,104,140,120,61,162,32,130,75,200,226,144,242,223,11,2,204,116,208,198,2,131,244,56,184,221,93,178,150,184,100,202,87,2,56,5,85,169,81,10,107,75,201,163,132,66,235,224,18,130,206,245,86,164,51,17,86,220,222,107,224,103,104,166,153,232,135,233,10,132,37,86,27,132,5,5,164,90,214,181,203,44,15,97,217,145,137,126,238,226,132,188,26,21,111,227,54,122,113,157,182,78,144,139,126,169,149,247,107,131,94,141,70,43,20,96,171,210,212,148,38,90,153,173,14,118,211,10,164,130,202,248,202,22,99,237,5,181,7,100,20,178,235,228,46,176,18,159,223,59,3,210,8,0,150,27,127,43,130,11,215,10,107,175,8,246,44,128,40,188,195,26,84,96,99,194,114,114,91,165,145,66,168,186,74,161,125,42,110,247,104,229,241,72,253,181,205,100,108,109,110,163,77,97,219,181,80,108,243,182,232,171,46,191,77,137,69,149,249,141,153,192,46,144,32,178,131,62,3,199,236,248,136,140,245,205,98,1,206,161,81,118,249,136,159,221,250,82,251,166,114,248,163,87,42,228,138,22,29,45,108,235,41,148,63,105,40,202,216,133,182,179,46,53,69,233,149,151,217,55,205,14,44,126,211,237,83,197,181,110,159,94,2,206,233,108,159,102,13,206,191,209,46,106,250,211,170,248,106,99,203,109,169,230,90,234,246,21,108,201,38,233,91,162,109,150,140,102,228,179,154,242,18,237,253,192,140,148,16,154,227,23,58,177,128,32,110,24,236,58,200,238,28,217,125,135,38,22,183,13,237,49,139,27,196,254,30,165,192,189,115,25,55,185,194,77,12,176,142,121,246,96,76,188,131,236,15,130,42,231,247,122,211,218,46,18,198,114,189,43,159,86,175,214,81,148,92,41,112,100,165,162,7,88,172,188,37,177,67,75,26,187,70,217,0,78,130,85,45,177,12,152,49,27,78,31,233,197,89,24,80,98,94,252,133,119,141,178,56,175,98,246,69,26,180,15,238,39,54,17,197,207,41,206,113,78,108,35,204,187,93,177,94,39,51,255,138,243,108,51,195,219,0,119,238,248,80,52,25,49,11,99,172,109,19,141,157,136,140,99,208,163,80,149,191,64,149,140,89,92,247,123,210,219,132,21,70,114,93,27,177,74,133,70,175,111,209,54,55,233,84,226,70,44,221,89,8,83,170,51,232,232,96,236,108,205,124,35,54,59,176,201,250,164,186,36,198,139,179,50,156,27,59,165,114,237,247,209,50,216,56,111,110,3,117,41,209,214,185,223,189,195,29,219,254,32,187,231,25,108,34,52,212,62,125,32,214,119,126,240,52,185,30,132,241,240,238,126,50,124,72,6,109,220,208,7,198,181,232,63,91,227,173,86,50,190,68,92,203,184,49,184,55,205,125,118,33,160,109,23,236,206,8,51,179,3,12,66,198,216,103,132,173,99,88,140,135,67,102,57,193,74,28,191,173,112,221,59,93,25,234,136,181,170,103,234,39,105,233,136,236,212,2,119,241,129,172,175,51,35,14,246,205,0,99,159,32,195,200,42,201,201,123,230,192,193,188,157,85,80,228,244,136,56,198,200,254,65,30,191,58,192,109,89,243,0,56,119,238,220,185,241,48,168,46,44,168,72,79,79,22,20,228,144,34,12,96,32,158,65,0,3,217,61,2,212,35,48,46,108,252,138,151,89,112,144,177,85,44,254,236,153,18,238,217,244,251,198,110,22,20,162,173,170,114,205,147,167,37,105,173,168,128,127,110,252,128,25,70,15,147,80,81,115,81,110,101,236,115,152,107,98,212,198,140,124,20,115,77,252,211,218,11,36,195,191,255,136,162,171,231,13,82,205,130,149,156,121,248,185,207,8,171,189,83,50,182,79,246,207,56,223,46,51,182,122,115,225,163,126,246,224,113,117,69,189,224,104,82,250,180,60,185,196,177,179,129,27,139,103,86,224,193,255,58,235,141,170,251,238,181,251,61,227,88,24,222,57,41,138,30,88,42,94,0,20,51,186,206,56,70,208,120,63,190,79,22,60,1,19,254,218,7,118,102,143,29,233,187,185,144,209,80,84,149,252,89,89,90,144,33,206,81,24,35,227,124,69,108,104,131,23,7,14,228,228,247,77,241,27,51,194,206,198,40,42,51,195,111,153,153,83,114,122,204,44,124,32,211,187,236,250,86,104,79,131,59,253,68,118,237,196,190,47,66,239,218,125,148,174,163,93,243,126,121,67,101,195,179,167,233,137,198,214,94,226,28,97,93,110,110,179,23,209,177,179,193,190,27,6,1,217,239,30,15,73,205,100,194,46,138,198,112,51,179,48,2,247,127,237,219,71,148,188,74,155,196,159,32,2,62,162,48,5,90,56,80,35,46,252,174,51,191,111,130,44,121,208,189,96,111,154,0,209,90,29,236,199,143,114,5,114,175,5,171,223,119,136,73,119,38,231,190,126,8,149,171,26,210,91,10,130,176,9,104,83,43,32,25,184,136,125,142,248,62,226,127,182,117,81,149,226,151,54,252,238,25,238,224,3,172,6,124,223,20,115,252,153,153,25,2,105,42,32,89,13,121,152,133,143,204,194,18,239,26,132,105,253,117,67,15,230,223,163,138,123,5,184,43,126,175,84,117,63,185,40,33,242,63,231,40,153,26,195,77,241,49,193,244,179,52,78,220,125,138,219,20,187,116,136,94,3,158,1,92,39,199,134,184,161,67,244,206,155,254,244,175,51,23,250,5,243,175,150,20,64,110,200,49,61,147,240,40,60,193,28,44,193,251,190,110,248,105,168,114,74,241,148,66,248,85,86,213,86,39,159,159,222,11,118,250,144,27,62,64,135,129,51,43,235,250,196,186,94,225,177,96,61,67,158,245,249,152,251,188,31,50,157,177,179,46,114,177,141,16,243,13,50,19,111,65,88,103,220,54,185,223,51,34,44,59,56,215,217,143,147,204,210,192,215,14,65,109,131,90,94,71,169,228,5,79,11,239,63,73,190,2,140,56,65,40,227,93,39,8,163,253,65,208,119,136,123,131,184,86,209,21,72,112,115,21,65,249,27,111,135,71,221,17,121,30,149,88,214,55,201,204,161,184,192,175,124,166,20,188,245,13,179,236,148,5,163,146,35,53,88,76,163,106,192,173,70,204,164,218,97,81,106,101,48,102,163,81,15,58,171,190,157,182,24,158,235,27,21,148,92,45,11,222,211,72,43,194,169,87,99,242,173,138,10,67,163,92,211,214,9,183,197,164,92,85,40,50,207,184,138,67,209,170,169,191,202,21,170,88,141,252,82,185,74,181,234,200,92,165,184,137,24,74,86,170,86,70,36,43,45,148,95,45,89,169,66,113,137,92,165,205,166,246,238,14,35,116,241,37,14,23,250,243,178,80,30,78,89,170,8,102,44,253,95,81,233,128,131,200,2,196,32,154,130,57,99,99,51,4,199,0,50,142,124,226,140,29,102,105,99,7,98,222,66,55,201,194,135,242,72,116,69,220,140,158,24,70,250,121,172,207,64,155,34,222,126,105,238,54,222,137,177,222,132,29,58,208,18,13,67,55,8,57,138,69,170,230,78,38,153,157,245,128,177,81,17,243,129,76,94,222,97,50,235,81,85,61,34,107,111,162,183,144,37,156,78,34,198,21,99,237,145,152,82,230,70,67,71,43,230,157,149,6,227,181,236,227,165,222,55,200,76,219,127,12,10,139,58,184,43,174,140,103,144,0,217,24,219,190,200,13,154,139,242,64,83,225,250,62,133,246,17,148,162,85,8,81,55,116,196,217,166,248,15,91,92,223,40,103,59,96,251,198,101,5,252,202,41,232,40,254,211,101,226,222,197,232,130,222,85,178,54,38,229,107,18,235,43,33,19,157,37,174,211,67,130,42,68,15,9,248,165,109,214,202,113,63,238,121,79,231,47,191,82,84,193,243,196,30,18,242,2,170,71,171,77,176,119,16,112,102,128,123,194,206,12,90,109,96,79,225,50,112,74,230,5,145,124,102,92,29,249,49,232,46,190,68,255,99,166,93,176,211,87,220,47,200,246,84,168,165,180,15,234,106,178,49,21,68,222,197,204,30,163,245,211,118,202,247,111,129,124,197,91,251,208,50,138,10,229,197,124,129,223,253,33,0,199,5,7,177,29,222,148,153,160,133,63,26,101,179,178,128,162,155,132,153,240,226,69,115,23,40,65,84,146,157,233,75,207,132,75,128,233,154,38,66,90,168,143,157,8,153,119,63,189,121,16,41,229,73,110,49,52,154,35,146,228,39,219,107,5,129,52,51,56,220,175,84,170,106,107,47,5,7,180,116,79,140,179,111,6,137,115,143,187,112,113,43,163,220,197,4,25,222,98,70,29,204,228,123,25,200,210,204,226,186,18,189,80,93,195,100,109,64,92,216,147,100,88,207,176,231,85,143,238,215,85,40,50,236,57,25,31,33,195,46,178,119,6,156,204,239,182,114,246,143,128,62,226,153,102,172,155,172,247,12,93,181,207,123,101,220,222,58,217,232,243,251,94,115,155,239,224,1,208,169,178,223,247,123,181,37,229,151,131,250,196,56,183,98,197,113,56,231,252,190,113,25,241,29,128,2,13,215,56,171,141,243,108,195,205,164,119,157,120,78,68,79,242,108,119,92,43,127,92,171,44,201,176,227,204,158,147,172,189,15,44,18,107,111,252,167,54,152,28,204,254,102,128,92,128,140,246,78,197,174,227,164,177,191,191,150,126,215,42,129,221,101,12,112,0,42,223,187,195,247,14,249,207,214,216,89,155,255,252,51,183,186,35,195,65,8,211,93,205,110,142,49,253,54,50,248,57,60,221,163,187,45,106,126,73,230,123,18,5,239,161,66,150,80,183,51,139,122,157,130,138,40,152,33,158,15,104,107,49,90,156,57,74,139,235,136,213,226,148,133,151,211,226,148,20,245,87,133,138,122,168,200,68,143,19,186,101,164,59,244,66,77,22,90,39,246,70,212,237,204,184,98,160,114,119,21,61,77,89,120,169,154,18,173,38,24,206,75,24,78,68,69,137,130,176,126,150,73,169,15,208,219,218,76,207,245,230,70,124,4,95,65,75,106,103,226,159,111,190,17,253,216,183,14,252,167,19,2,198,225,76,180,168,67,155,245,180,44,240,183,177,195,34,51,118,137,135,122,163,69,0,49,160,190,27,229,16,156,5,249,130,78,15,106,163,6,214,110,121,190,120,169,43,31,110,197,255,239,96,57,21,169,210,54,134,174,167,122,90,215,131,0,145,253,40,251,46,248,49,161,170,141,236,174,76,168,107,131,61,139,247,179,239,136,212,134,210,239,12,28,119,41,132,127,131,125,130,227,231,134,46,67,83,187,190,56,102,252,65,125,24,212,180,116,199,11,183,138,255,4,223,222,133,195,44,202,195,1,181,25,116,250,187,22,115,183,254,123,157,190,157,238,185,11,203,200,247,18,42,29,42,133,109,58,105,7,128,128,34,156,72,203,67,115,86,84,60,3,42,205,225,103,91,145,252,101,134,102,147,17,81,40,107,238,54,155,17,149,241,92,13,49,22,82,112,139,69,18,145,102,142,73,191,8,199,32,59,52,190,64,177,44,249,71,58,76,207,13,122,248,20,59,253,25,150,22,225,83,130,205,33,63,96,123,72,250,176,229,185,248,36,183,57,152,136,21,134,126,69,34,56,128,93,84,220,5,221,57,26,152,194,236,136,150,239,98,190,43,8,231,249,127,122,74,27,127,54,24,65,8,237,178,244,32,20,116,134,174,78,68,175,209,100,212,3,126,153,185,113,102,110,9,179,101,245,157,198,15,76,22,151,220,47,217,72,3,95,20,188,249,131,111,38,174,115,222,53,152,200,226,144,192,253,87,194,240,144,110,48,76,152,108,18,7,197,68,93,72,16,32,147,240,158,223,40,88,230,166,180,12,182,57,170,106,43,181,13,24,195,38,127,120,95,29,47,78,8,108,57,24,170,243,118,150,92,204,178,227,159,200,238,59,226,238,103,246,221,32,0,225,198,207,130,253,223,184,213,109,198,181,72,246,7,49,108,119,118,157,89,248,136,105,82,122,167,210,118,174,20,186,157,68,117,12,71,156,80,215,30,113,162,148,235,91,10,154,84,74,49,235,148,225,87,67,208,191,57,104,79,137,118,198,76,39,178,231,42,160,203,86,60,79,198,84,244,117,162,35,157,0,160,43,162,35,221,176,159,56,136,38,173,140,150,145,235,108,58,19,183,248,50,227,204,133,0,229,90,174,229,90,174,229,90,174,229,90,174,229,90,174,229,90,174,229,90,174,229,218,205,105,9,124,112,110,114,74,138,92,203,181,92,203,181,92,203,181,108,182,204,82,178,68,61,153,114,111,248,185,65,255,34,159,162,74,208,199,80,153,175,214,170,149,114,77,242,141,66,50,185,69,6,63,242,174,45,206,179,205,190,191,96,231,125,156,227,19,255,250,130,123,55,47,243,251,198,201,218,17,59,189,192,126,156,36,190,125,102,238,156,236,79,146,245,67,230,200,75,134,93,25,109,23,134,134,112,67,246,169,116,242,66,157,82,173,211,138,57,92,90,181,205,20,213,76,71,58,159,102,156,195,229,42,128,12,186,175,106,85,17,219,83,114,117,58,155,133,73,183,169,66,55,73,109,87,93,129,120,138,47,63,216,244,182,172,114,41,94,178,214,126,99,118,35,145,183,61,202,47,97,113,220,239,182,50,43,19,34,225,240,222,201,16,225,240,139,83,126,183,143,153,61,38,251,111,100,204,190,139,184,142,48,245,245,136,131,241,174,124,213,188,134,86,40,10,53,45,122,185,200,107,244,38,5,69,209,157,87,226,53,151,134,226,141,101,52,9,200,166,248,146,35,205,113,153,92,203,181,92,203,181,92,203,181,92,187,182,150,200,174,157,212,163,94,58,143,160,232,102,31,145,71,48,197,119,162,242,11,70,93,72,144,107,48,225,61,210,121,7,163,110,151,12,16,148,193,1,70,110,200,127,39,22,250,116,203,7,70,61,147,126,2,213,106,121,141,178,129,82,201,53,37,21,245,18,213,97,69,121,119,181,151,236,30,115,231,14,208,162,185,253,126,178,221,11,154,51,86,211,232,183,249,221,235,92,31,22,19,129,51,100,224,2,164,97,242,254,13,235,57,0,113,151,27,112,147,83,55,187,225,76,41,164,223,236,52,93,216,146,167,100,9,221,149,54,216,235,30,61,122,164,168,69,231,91,205,163,191,73,36,130,22,192,206,47,189,39,174,85,76,174,56,57,87,163,55,26,13,122,116,182,117,246,49,103,211,204,217,54,217,234,253,167,117,152,172,141,249,189,67,24,240,216,59,205,186,150,84,255,180,38,206,203,21,234,230,31,14,220,245,202,242,178,178,7,148,74,169,41,149,87,39,210,234,212,42,242,169,55,148,193,82,72,127,102,5,178,87,19,231,59,140,134,245,29,0,149,115,7,31,200,174,13,61,159,71,135,184,139,33,191,39,113,150,165,80,47,255,112,208,174,123,80,42,111,40,69,104,215,22,62,190,151,0,218,64,187,126,239,60,113,76,250,221,14,32,90,246,194,203,140,140,97,114,181,126,27,99,181,98,12,41,70,150,142,17,235,25,255,234,32,16,6,155,131,115,52,156,31,63,123,88,83,79,169,10,228,37,242,71,18,149,202,4,56,23,168,129,170,255,97,93,96,71,206,200,230,196,63,172,139,100,205,73,214,135,208,34,209,59,194,218,15,196,106,223,126,247,184,82,11,55,86,202,57,223,6,227,24,17,9,30,221,251,109,137,147,62,133,122,252,135,131,124,125,205,211,103,247,132,85,179,174,246,129,68,102,60,1,242,245,207,74,249,237,57,114,208,71,214,54,185,207,111,177,46,220,233,17,227,222,3,52,240,139,171,88,193,235,104,139,61,90,134,123,126,39,16,206,52,151,101,232,217,244,225,94,94,86,85,123,15,151,205,146,199,13,255,153,0,238,126,223,107,118,244,132,76,184,200,250,27,102,117,131,157,60,6,106,246,251,166,216,241,125,206,131,89,223,200,218,54,217,240,250,47,222,19,219,22,187,53,194,58,62,3,197,99,18,184,87,175,146,21,127,12,117,247,171,64,70,86,193,94,170,170,85,213,165,16,18,217,241,17,178,187,72,206,60,126,183,135,153,217,103,236,78,174,127,70,73,49,51,107,8,242,117,31,113,142,240,243,118,198,186,200,237,189,97,222,28,177,115,27,196,57,71,78,142,152,241,81,144,20,115,80,143,103,239,202,210,210,7,114,32,118,181,188,176,166,32,209,158,215,218,46,183,57,232,119,123,153,209,94,191,199,131,72,152,115,144,221,94,177,100,8,235,157,2,113,28,83,11,207,191,18,229,114,214,182,201,78,47,112,11,11,204,200,58,51,124,144,3,123,60,177,87,23,106,202,202,144,216,181,154,10,137,188,157,2,216,53,10,88,44,129,193,179,211,39,24,237,188,63,200,93,140,147,173,99,178,239,84,226,122,139,202,80,146,4,185,161,78,253,241,128,171,125,34,47,87,165,96,224,228,124,130,185,88,230,38,54,152,165,41,208,35,113,223,214,123,65,156,147,200,68,28,99,100,76,200,220,233,30,23,53,78,230,211,33,119,126,202,247,186,216,145,217,223,1,192,175,171,69,174,207,0,228,70,204,220,39,87,100,121,117,174,121,220,160,85,167,88,38,184,93,183,223,243,134,12,186,16,131,251,78,57,78,36,226,114,1,119,34,91,67,176,44,179,176,122,111,90,153,222,247,32,155,254,14,240,41,100,122,72,110,168,82,92,193,80,149,21,227,80,58,91,161,137,2,132,201,238,136,223,119,136,249,163,86,119,252,103,115,188,203,38,238,131,50,251,211,32,222,98,33,100,207,133,44,240,99,109,140,56,215,126,15,56,189,28,83,76,7,204,137,150,121,76,147,253,202,201,58,135,99,182,155,97,170,96,21,163,197,9,25,113,218,121,219,9,252,203,158,143,255,113,97,156,88,152,82,63,86,55,84,9,194,84,125,157,68,46,100,145,55,93,204,99,2,183,126,31,86,4,6,117,109,237,189,223,61,204,124,62,17,19,192,112,195,125,98,225,105,44,92,177,182,201,190,25,64,3,209,233,235,100,149,148,67,29,253,195,1,252,169,226,105,233,253,2,92,12,202,170,53,15,19,27,129,80,9,240,173,242,67,147,196,254,70,243,79,235,8,234,100,142,33,149,223,253,129,157,247,129,68,203,109,190,2,106,199,100,130,66,153,230,73,248,157,131,54,66,27,243,70,69,128,187,190,182,230,105,1,50,18,109,229,163,68,107,47,217,153,103,135,94,147,205,11,226,25,100,215,23,197,116,13,10,37,250,205,157,30,201,216,143,147,236,230,62,183,129,198,160,146,234,208,189,204,200,89,160,240,89,14,230,49,54,252,7,170,18,37,82,120,225,211,154,218,68,54,252,121,59,178,148,115,151,168,144,129,98,44,50,19,16,94,65,105,3,98,6,170,102,183,151,201,206,4,99,93,145,145,147,117,191,111,129,236,174,249,47,118,137,235,28,171,190,140,44,255,78,64,127,253,214,161,39,13,207,106,106,30,163,114,241,127,30,151,60,72,184,151,181,65,92,111,129,241,176,19,54,118,98,152,217,88,0,166,35,3,62,47,114,120,174,127,133,217,25,37,131,99,204,199,21,208,143,185,207,39,100,226,136,125,55,252,59,65,66,118,193,93,73,213,84,167,0,55,63,123,74,166,62,48,203,39,176,74,178,27,94,16,243,249,119,227,204,225,42,153,24,151,49,71,31,152,143,239,48,125,164,181,151,216,62,146,179,101,191,251,148,28,238,163,16,243,123,82,1,178,110,246,47,111,40,124,148,130,239,112,39,147,236,244,9,113,173,18,251,62,3,32,117,249,184,189,19,246,124,13,247,14,29,187,236,39,135,223,189,248,35,153,0,61,218,10,103,97,157,245,187,207,81,13,219,61,102,123,247,88,199,104,14,238,241,18,77,121,117,173,70,129,244,94,246,184,252,105,2,184,195,106,138,230,159,117,76,232,58,184,12,106,46,179,184,69,172,239,185,147,81,110,194,199,174,191,37,139,174,127,157,45,41,96,189,229,103,143,200,250,41,235,117,146,241,65,88,96,253,94,171,255,212,158,219,232,146,230,52,117,218,134,90,193,176,80,162,77,164,137,114,159,71,209,250,121,122,134,118,161,113,47,227,182,145,177,113,126,126,128,236,59,137,111,10,89,140,219,46,99,92,231,220,234,182,255,108,25,150,93,98,127,207,204,123,200,206,123,88,124,115,64,143,7,250,179,250,42,69,65,138,252,96,124,255,36,211,235,225,70,102,225,63,52,225,56,231,2,236,125,108,136,245,108,202,208,60,58,115,138,181,179,214,222,128,218,202,204,204,227,214,185,227,247,32,193,167,219,162,83,125,134,207,38,247,208,138,72,172,251,220,100,208,253,153,250,203,247,225,4,166,250,151,22,209,55,10,253,180,196,4,182,128,22,188,240,162,171,22,46,62,166,91,245,127,254,223,250,231,128,33,124,76,42,195,45,102,126,13,222,250,227,119,81,111,20,211,220,222,21,146,220,198,164,244,77,224,134,21,89,173,165,169,21,83,252,70,151,102,137,186,57,100,175,122,41,207,19,42,158,164,186,77,145,236,182,46,139,217,100,108,45,102,198,86,209,33,223,113,10,159,22,207,72,64,92,130,228,4,111,53,102,121,136,95,157,19,171,202,200,186,98,253,214,36,63,43,109,207,11,231,165,15,100,160,22,115,81,211,58,193,218,218,136,185,119,163,138,9,9,103,133,56,148,168,4,212,114,165,42,243,12,212,81,221,11,27,5,91,91,5,116,226,183,147,228,13,204,36,157,51,118,154,214,5,171,240,136,200,47,254,123,48,113,108,242,252,132,17,238,125,102,232,20,157,170,94,240,149,171,33,41,85,145,213,144,20,202,112,49,36,165,60,162,24,18,94,184,74,146,109,192,216,165,178,108,55,211,237,8,78,160,152,159,35,242,108,135,234,32,201,18,67,50,113,140,72,210,84,241,81,53,135,210,160,140,92,203,181,92,203,181,92,251,227,180,76,52,132,130,146,199,229,169,52,132,160,207,15,63,183,75,78,182,200,201,39,98,31,100,28,35,63,202,48,250,122,230,148,89,112,136,154,129,168,43,248,189,115,112,23,191,186,40,222,197,29,157,166,21,226,121,211,154,244,42,44,173,11,196,221,21,39,148,234,227,130,41,18,22,81,17,126,166,153,52,63,89,178,252,68,9,242,191,84,82,252,12,204,52,13,181,229,165,85,88,245,180,80,241,64,98,227,169,227,121,99,71,119,151,161,57,20,253,253,15,235,2,217,239,101,215,223,254,195,186,168,97,22,236,184,231,55,183,140,78,107,246,57,114,126,66,198,198,255,105,237,101,62,217,57,219,57,154,239,29,67,204,226,186,223,51,152,50,250,91,136,244,198,48,239,219,93,230,230,236,7,112,23,104,40,165,150,86,54,119,10,1,220,237,191,62,167,168,38,83,226,154,125,105,228,152,191,42,32,174,35,205,188,100,184,124,108,180,188,252,218,163,229,51,4,118,26,25,228,179,0,236,76,146,200,199,199,110,101,148,44,62,237,73,85,124,201,113,229,146,198,255,17,90,130,194,47,95,34,201,94,250,25,72,178,23,248,18,183,244,100,26,4,147,86,198,17,129,101,94,203,146,163,87,81,10,121,65,139,70,228,130,134,158,151,20,85,160,77,82,28,51,117,206,144,204,1,144,65,178,16,105,147,95,70,124,47,109,140,94,42,158,41,158,225,93,83,242,143,235,32,246,122,245,147,135,245,79,132,152,186,210,234,234,244,136,157,245,46,146,73,31,179,247,138,184,237,8,36,209,123,250,162,159,27,112,178,179,54,226,156,100,71,23,121,235,34,250,247,122,182,201,233,145,10,189,67,191,48,209,55,171,116,205,90,173,58,176,244,255,212,108,164,40,85,199,85,137,254,146,128,248,109,137,63,109,12,23,95,118,68,105,79,130,200,133,35,141,146,109,210,177,236,162,231,77,68,44,123,176,246,96,100,204,122,162,56,245,52,98,211,165,183,5,178,188,134,165,235,241,155,1,154,27,10,203,53,24,240,80,240,180,240,81,82,217,46,198,27,18,176,206,216,39,49,134,208,7,2,94,47,96,29,189,11,134,173,108,159,155,123,215,199,122,7,252,158,93,214,37,29,218,147,189,13,190,196,251,158,233,131,224,113,117,93,121,225,125,0,129,182,180,161,84,194,7,55,138,210,185,133,57,206,229,242,159,47,179,158,207,204,214,7,178,59,68,118,231,97,240,220,177,141,59,30,22,127,178,111,6,184,205,65,110,211,193,162,79,197,209,87,0,130,7,79,234,85,42,101,226,61,246,48,8,176,46,171,107,145,59,58,103,199,63,137,177,94,1,151,182,33,39,63,52,6,252,142,153,145,246,242,190,89,3,78,229,160,26,30,48,191,49,195,204,174,179,235,91,140,253,130,93,62,210,20,80,148,223,61,4,156,44,161,251,170,223,107,11,123,176,126,5,176,168,147,63,41,47,171,65,78,95,82,87,146,84,204,97,23,150,48,204,204,97,199,177,239,59,217,243,113,248,201,31,156,33,203,23,0,68,156,239,216,213,73,226,28,101,28,147,220,138,116,72,206,13,27,124,138,92,12,17,132,128,9,25,124,232,95,146,173,180,12,191,157,159,67,236,186,145,196,3,51,35,87,180,250,7,130,5,88,163,121,92,149,74,66,240,172,34,125,236,76,0,48,112,74,189,218,193,184,185,161,67,88,122,215,200,218,38,25,219,6,150,73,206,60,204,248,150,140,216,118,252,190,49,178,251,150,12,187,152,163,115,50,252,158,159,251,44,145,127,230,58,160,39,77,83,25,0,165,172,250,190,226,33,50,150,6,117,189,34,5,80,152,213,13,144,60,96,185,224,251,222,161,49,228,243,9,64,7,84,8,4,136,211,69,206,95,97,8,231,129,21,152,13,223,187,67,156,179,196,57,70,230,63,74,133,28,220,24,96,60,207,127,110,208,233,77,249,207,30,170,26,238,81,218,106,137,26,227,97,16,72,186,227,98,162,13,193,15,23,73,102,111,15,157,115,97,134,9,126,184,162,79,238,205,29,124,20,37,60,42,43,127,90,71,37,78,19,16,6,3,134,146,122,157,196,230,38,142,77,214,185,67,60,175,69,146,39,123,167,196,185,15,75,44,156,23,194,168,3,94,227,236,248,62,89,240,48,142,41,246,237,40,187,184,242,149,192,227,177,70,251,184,12,61,134,213,202,130,191,149,39,93,102,206,199,97,196,100,255,128,219,232,197,169,176,239,33,158,13,0,0,119,241,22,212,106,185,156,236,188,131,57,35,222,5,210,39,187,48,194,93,12,145,137,89,41,255,201,27,10,11,121,169,188,84,33,192,130,42,79,58,69,248,254,29,222,243,138,247,44,133,200,128,153,62,6,86,201,244,111,49,39,233,162,62,188,245,148,80,187,10,187,155,196,151,106,22,255,196,148,108,143,209,148,204,210,154,18,58,66,89,232,38,89,248,80,33,11,28,52,182,154,140,173,61,134,107,46,99,46,244,41,59,213,202,195,197,201,13,130,83,90,28,186,197,1,69,150,41,183,125,100,93,66,244,192,255,59,137,187,187,67,175,51,208,17,55,251,207,150,201,135,87,25,212,52,143,238,0,234,194,29,180,249,103,189,197,96,108,141,120,109,160,179,140,181,23,38,17,55,177,206,79,91,51,41,73,46,81,150,59,116,203,229,75,115,199,96,37,66,97,14,17,82,58,237,135,56,56,37,155,129,34,122,66,179,240,94,67,125,121,173,66,221,64,81,133,202,66,45,37,49,11,3,4,90,252,127,69,60,254,23,234,62,115,83,100,98,146,89,220,33,39,111,153,177,9,238,243,50,10,51,142,83,12,190,242,123,143,153,225,89,118,102,155,117,188,231,62,15,196,212,63,207,132,13,93,105,92,85,10,117,121,213,253,123,117,194,184,52,207,36,56,109,236,184,136,237,144,57,220,98,125,175,185,205,94,118,214,150,164,227,105,141,32,190,247,104,98,137,114,20,181,208,173,17,228,27,57,81,210,46,66,31,61,125,162,198,215,220,214,77,27,59,244,56,66,113,82,253,23,190,25,95,17,242,106,108,106,167,141,63,231,37,1,170,69,223,220,22,6,105,213,35,121,117,253,19,13,218,253,10,85,148,132,141,32,252,73,145,72,196,239,178,155,147,104,17,89,158,102,223,31,243,243,168,53,176,219,35,151,160,139,223,5,68,35,22,192,170,178,178,39,247,74,42,75,40,85,129,90,249,255,61,78,3,158,176,244,179,59,231,204,225,107,80,193,248,185,37,242,106,148,159,187,96,150,79,137,247,4,126,254,81,65,26,77,164,149,242,71,143,128,161,9,68,90,88,46,145,18,44,252,73,88,7,64,140,32,182,45,126,113,149,25,113,112,253,123,50,206,118,206,237,238,145,141,62,63,240,129,161,15,204,235,201,88,113,42,12,216,120,87,22,41,185,226,114,142,40,194,163,87,95,26,46,211,226,104,34,238,134,88,252,254,100,0,12,209,17,235,173,188,48,159,210,130,212,34,151,231,87,60,184,167,173,189,167,82,99,84,174,150,42,145,168,91,97,209,245,128,0,66,6,199,136,221,229,247,29,178,222,247,160,251,128,224,83,40,171,40,171,150,149,188,160,205,186,174,255,16,233,159,153,121,207,141,159,40,249,161,73,5,63,117,44,231,167,22,146,59,91,103,85,234,205,12,46,72,246,63,91,162,32,162,145,171,243,21,84,126,197,125,45,85,241,176,228,17,16,40,85,168,145,10,196,23,33,242,79,235,68,96,212,130,208,34,68,7,90,185,189,243,127,90,39,89,239,17,51,224,36,187,111,136,253,152,249,184,201,207,29,178,131,243,184,209,54,246,154,25,115,248,221,160,61,91,253,238,15,252,187,113,226,124,119,99,65,148,144,116,212,114,109,190,188,32,191,162,234,153,182,164,246,153,50,21,233,96,102,191,197,11,191,103,155,157,94,98,142,188,168,28,44,124,96,22,215,137,115,143,44,216,255,97,93,140,92,140,252,238,113,191,123,7,77,88,130,95,25,25,115,250,1,110,246,57,246,245,186,144,34,109,1,147,236,184,251,225,36,89,216,250,26,65,167,18,102,93,85,173,182,82,65,213,166,2,29,99,119,177,158,67,209,196,0,171,51,187,189,36,238,210,242,175,47,128,239,253,195,58,45,222,0,51,19,232,141,27,238,195,180,15,182,45,238,226,132,233,159,228,103,119,209,61,15,19,251,37,79,111,123,227,166,161,92,160,174,154,39,21,32,32,214,92,97,26,250,79,23,97,234,17,167,155,25,221,99,230,198,97,2,138,11,7,211,183,129,27,124,83,189,152,221,80,160,201,44,193,39,229,138,19,175,181,10,135,184,168,139,131,0,57,157,95,249,252,80,41,11,173,218,145,106,14,234,164,102,140,215,17,148,79,56,104,4,165,182,187,195,40,15,135,242,68,197,239,152,209,191,181,81,174,105,235,108,236,80,74,71,89,25,186,106,187,10,101,63,202,190,235,176,40,168,239,100,119,133,3,165,16,88,21,21,241,83,64,101,30,240,131,227,2,238,240,87,133,138,122,168,140,221,184,76,22,44,35,12,193,72,119,232,133,72,50,90,135,157,15,6,208,152,113,75,25,35,104,174,18,13,83,64,93,42,24,166,213,4,195,121,9,195,9,135,194,40,243,66,38,135,76,66,148,0,117,109,166,231,122,115,35,62,130,175,160,37,108,25,193,63,223,124,19,71,33,148,28,38,54,111,125,195,44,59,5,74,129,91,98,232,4,49,223,98,50,97,32,84,154,182,11,120,130,214,137,255,6,173,23,18,228,242,84,79,235,122,16,40,72,52,32,247,208,102,61,45,198,227,33,241,32,225,20,199,118,37,72,173,178,230,54,218,8,178,84,163,89,223,14,208,123,174,111,132,62,168,101,29,22,165,58,93,138,110,14,83,116,224,198,184,200,180,244,233,84,0,43,186,131,202,21,170,198,8,136,38,32,85,153,76,252,36,246,50,101,156,151,120,235,85,233,84,174,188,4,157,6,0,3,227,122,137,3,43,84,83,232,224,17,2,145,34,76,177,145,122,68,16,55,48,56,196,74,48,122,46,24,40,25,101,93,11,16,36,119,180,202,122,165,232,47,64,22,178,32,121,116,88,100,198,174,192,161,201,168,239,73,151,34,133,155,197,127,175,70,145,208,191,120,119,241,142,255,159,189,47,237,106,35,73,22,253,60,239,87,232,248,190,158,158,153,123,109,151,86,164,94,152,7,24,219,152,213,108,51,183,191,248,8,33,176,220,108,195,226,165,223,185,239,136,69,32,1,146,192,236,32,204,98,86,219,8,97,131,17,18,203,57,243,83,186,149,89,85,159,250,47,188,140,44,73,104,169,210,2,18,150,105,170,221,72,42,85,169,50,35,35,34,99,143,72,99,96,122,3,106,236,82,8,127,67,195,34,31,158,155,186,76,13,45,198,24,163,99,235,147,16,96,137,42,113,97,43,98,88,59,73,199,168,24,107,32,123,218,152,121,107,35,209,62,129,79,203,76,134,246,54,97,109,207,109,105,241,122,38,93,200,115,163,159,128,63,23,182,37,198,255,100,87,119,187,225,103,248,225,190,21,118,125,235,82,63,220,96,250,37,210,68,58,53,24,240,206,167,99,145,12,173,122,107,123,167,145,6,140,198,66,53,241,76,154,136,38,9,207,93,242,17,101,42,70,191,21,21,33,18,27,67,47,105,8,189,32,133,52,153,218,244,109,6,99,232,21,144,57,63,231,50,56,210,233,67,113,79,91,172,99,212,114,181,182,80,35,34,178,7,89,91,168,97,159,245,12,185,60,1,223,38,242,246,33,151,15,28,67,159,135,137,214,3,241,55,214,65,238,109,95,178,252,140,92,233,194,167,208,228,25,243,116,202,96,68,237,83,213,51,162,180,188,130,224,194,230,118,134,209,42,46,144,196,145,22,104,50,149,177,241,149,130,51,133,52,141,116,193,153,106,78,70,52,219,73,43,44,51,53,82,201,79,101,228,73,227,47,131,161,145,195,220,110,239,127,225,195,61,108,29,3,11,195,199,119,228,189,168,18,117,93,34,249,235,138,235,31,150,22,19,24,43,180,138,71,34,181,173,162,217,17,58,218,71,150,117,5,67,227,194,192,47,61,10,205,102,1,82,59,111,145,107,139,55,247,67,233,171,157,25,110,184,47,245,96,230,28,32,39,85,163,70,201,232,66,89,79,79,21,175,24,70,173,148,38,167,84,250,17,167,3,169,171,141,118,78,109,201,243,211,152,193,87,31,226,95,87,252,168,152,9,69,6,63,74,74,5,150,29,48,136,173,140,242,11,131,129,147,137,128,119,132,243,64,103,168,128,111,4,89,62,161,157,89,254,245,222,87,133,254,114,53,163,53,54,106,67,187,73,163,150,40,179,237,151,67,255,148,64,116,213,120,159,202,34,231,167,50,244,140,132,243,199,40,50,226,161,252,130,118,115,213,161,252,153,106,45,151,74,12,127,90,140,171,170,186,50,41,227,130,98,197,99,118,218,229,7,34,170,28,125,252,251,89,214,189,66,88,216,175,102,23,222,157,34,58,216,175,230,69,110,8,162,150,51,24,67,117,217,56,169,12,75,59,185,50,171,7,170,122,85,61,153,149,188,80,43,154,79,43,204,138,181,29,225,233,93,112,207,246,173,4,252,135,16,253,246,121,75,38,151,203,208,218,54,153,34,187,237,35,123,15,182,47,161,181,61,238,179,69,166,97,100,1,223,25,68,197,89,250,115,105,178,165,202,2,101,45,153,172,174,72,35,214,23,32,140,160,59,252,68,47,196,190,66,188,235,60,123,50,30,56,94,230,198,223,18,14,195,79,157,161,133,83,40,130,62,104,65,238,35,214,183,139,246,222,112,115,243,168,119,40,112,182,130,123,119,115,105,182,197,218,226,170,18,34,40,169,10,84,53,69,210,252,212,219,139,220,54,100,93,64,155,35,80,230,250,224,128,76,146,63,114,146,153,67,40,163,195,175,80,33,143,19,26,137,211,11,185,131,1,64,238,33,51,62,232,69,67,62,214,183,161,188,163,83,228,226,106,215,150,21,220,99,228,192,142,10,153,188,194,68,171,141,22,32,61,2,218,235,237,108,128,207,209,182,75,254,18,40,124,71,100,44,238,196,79,139,146,218,241,192,25,59,185,196,245,125,36,239,3,126,11,158,221,37,74,8,118,125,32,220,11,114,201,252,235,200,253,25,249,118,132,50,142,228,71,51,12,137,204,199,204,215,149,212,212,60,80,38,221,111,241,222,18,55,226,196,46,51,68,125,30,125,66,139,67,232,112,157,96,1,44,126,159,141,108,188,240,213,232,91,178,235,66,174,209,202,40,97,223,4,54,191,14,198,215,86,252,146,164,144,13,145,58,103,38,151,81,185,41,87,102,85,240,168,234,1,36,195,48,42,166,66,44,44,57,56,43,187,7,249,54,4,234,133,188,183,179,33,129,158,129,36,79,6,177,235,29,58,179,112,253,39,208,242,195,250,153,200,23,194,149,172,111,21,89,183,137,148,17,56,26,225,14,115,138,105,235,234,139,238,193,98,42,238,49,202,251,146,211,38,250,1,148,238,13,156,56,65,222,176,124,96,55,119,249,161,241,128,247,29,153,31,57,195,237,31,146,143,80,188,104,200,137,60,227,114,245,55,180,219,220,60,145,76,240,228,41,114,159,132,111,33,87,226,15,167,120,242,140,221,153,206,18,199,162,67,78,208,231,39,29,142,126,175,168,174,156,236,104,76,69,89,145,244,254,141,94,143,160,133,55,4,175,127,63,94,98,223,245,178,3,159,1,241,15,71,149,42,134,97,251,142,130,44,107,218,195,46,79,34,107,124,134,224,37,102,125,185,30,59,153,149,198,107,203,116,26,130,68,73,129,181,246,14,217,15,133,230,155,130,35,2,130,43,156,94,60,188,202,46,154,33,170,103,211,206,217,109,132,86,238,220,185,147,67,132,82,95,144,87,91,88,156,116,119,39,19,224,206,230,200,134,196,155,143,177,117,156,59,125,195,245,142,18,214,142,109,35,216,125,240,43,228,129,247,162,241,89,178,165,225,145,215,172,127,49,224,119,8,201,197,208,94,250,212,140,236,51,1,223,7,110,245,61,183,249,150,95,128,84,75,110,163,23,239,245,17,24,229,24,44,10,180,73,97,129,70,150,200,190,173,81,51,68,90,163,41,44,227,114,37,48,145,163,17,66,15,4,14,80,49,231,112,11,207,44,243,46,47,129,76,73,85,37,76,150,86,197,161,141,206,70,208,248,22,118,217,228,12,114,190,35,228,3,254,183,201,79,57,6,6,237,195,84,80,130,221,236,197,35,131,216,118,198,15,217,209,234,28,153,44,196,4,12,175,67,244,158,245,44,224,117,177,182,109,34,199,16,100,32,23,224,81,27,65,9,126,110,12,173,13,176,39,243,16,23,169,210,162,245,25,224,188,139,67,176,197,56,199,89,135,39,151,0,161,42,44,171,167,74,157,182,82,39,150,248,23,86,196,137,38,195,186,70,240,80,31,200,188,222,121,214,181,196,46,120,65,224,153,118,225,197,101,126,241,53,72,192,7,243,68,52,200,120,78,211,165,39,41,127,80,80,9,77,222,116,218,138,114,145,42,248,33,205,149,168,37,11,39,176,243,123,215,177,109,2,246,124,138,206,20,151,223,211,34,81,78,162,217,16,46,7,45,137,247,183,131,223,18,93,199,101,133,18,226,243,251,200,105,69,206,81,228,124,141,156,83,200,234,230,14,14,207,43,69,229,182,128,95,151,247,168,74,151,20,13,240,162,35,112,180,193,110,56,209,248,49,26,235,197,195,195,160,15,90,182,136,164,192,126,248,0,65,172,39,80,63,6,196,7,207,56,208,125,255,9,246,141,113,39,68,85,34,64,218,226,14,60,68,104,198,59,155,188,121,242,239,57,132,31,117,53,245,247,74,212,73,103,79,180,123,162,195,146,217,192,158,231,242,129,94,111,63,68,195,203,52,193,109,94,37,7,129,106,24,138,122,35,251,20,88,58,118,108,228,13,168,131,83,171,232,216,204,110,251,200,70,145,83,179,46,170,87,22,36,95,115,178,140,163,159,249,117,55,109,30,54,132,124,132,155,205,6,124,241,45,182,191,224,76,30,107,139,161,168,39,161,111,77,157,180,101,42,224,159,134,197,89,115,161,163,143,68,37,85,16,25,152,27,217,99,109,71,200,51,9,201,202,111,65,133,99,23,166,137,102,192,111,127,192,211,187,200,18,159,1,127,165,179,20,130,39,34,24,89,73,157,242,97,21,195,40,212,90,57,163,78,104,149,234,115,115,187,189,200,234,5,219,204,202,40,238,183,32,223,20,223,191,133,70,125,104,105,137,178,45,176,57,34,167,29,79,250,145,115,23,187,150,68,234,237,125,225,185,42,42,180,73,231,138,44,144,119,30,158,107,112,90,158,65,222,60,134,119,214,9,223,97,183,62,201,144,223,199,185,221,66,194,88,192,107,131,198,108,211,71,104,108,60,213,41,199,132,245,124,77,29,15,82,234,116,144,164,195,65,146,206,6,41,116,52,136,141,103,165,111,19,55,50,200,100,195,130,160,211,47,38,48,84,115,129,8,230,20,218,20,100,179,53,65,74,237,8,190,158,22,4,154,12,182,32,56,15,188,142,166,220,152,120,251,168,104,189,204,119,23,72,147,197,213,148,212,200,147,178,56,126,234,12,207,174,243,239,103,201,86,12,78,134,5,55,178,217,241,193,28,222,91,226,23,6,249,161,33,193,38,131,44,135,129,147,9,228,126,131,167,79,136,176,30,240,127,70,158,121,200,172,217,121,139,142,157,100,195,67,78,143,116,179,11,169,52,57,137,202,206,81,225,191,82,192,190,96,77,231,139,5,23,10,177,158,244,239,87,24,88,8,124,61,82,162,169,120,92,166,213,49,12,35,215,234,116,149,241,152,65,167,25,89,13,90,48,101,10,113,174,200,62,79,148,82,126,99,16,254,77,157,129,135,116,245,61,81,71,241,199,21,162,200,43,137,74,159,60,206,48,123,53,160,141,26,121,131,65,223,216,20,172,77,168,237,97,24,229,165,107,64,95,112,250,89,141,37,188,250,138,207,105,130,54,181,138,207,23,7,109,118,226,10,47,68,41,249,105,79,36,165,48,67,72,191,25,26,103,253,78,176,145,13,189,227,205,224,244,166,249,140,62,252,102,0,20,68,103,223,181,14,57,44,185,95,15,101,163,148,42,141,174,90,164,6,91,52,155,130,196,237,254,45,60,249,153,245,173,130,6,98,249,128,70,150,170,139,75,106,187,184,51,71,224,200,194,157,45,66,169,168,227,163,212,35,174,178,199,166,180,141,121,42,29,163,86,7,235,6,3,21,169,243,164,105,41,165,64,170,84,167,159,165,160,169,148,22,43,63,229,97,126,253,161,130,21,143,75,148,90,106,54,40,18,107,74,26,131,189,135,91,120,118,9,146,146,215,135,74,170,42,209,160,29,204,123,159,86,241,240,108,118,241,181,209,212,214,252,170,199,152,8,89,53,26,163,177,65,167,205,123,70,145,181,185,13,122,106,171,41,178,54,51,140,233,151,230,59,4,11,211,68,214,4,179,205,18,122,166,180,26,249,9,6,150,133,80,190,96,2,145,68,64,31,221,74,190,242,218,188,81,112,201,108,140,95,121,85,97,69,53,93,208,186,10,145,82,204,161,5,61,218,71,214,69,110,232,83,192,63,28,12,25,59,28,69,192,103,198,213,12,56,163,217,161,126,118,233,19,26,245,163,157,141,96,190,246,248,32,55,176,135,86,223,16,46,5,245,201,87,223,32,235,54,191,51,137,94,191,206,233,98,106,233,154,243,130,16,250,242,230,188,236,195,33,161,169,47,188,51,93,129,169,47,39,192,145,216,44,16,4,71,86,205,2,57,12,156,106,29,83,147,28,87,22,78,160,133,248,216,2,114,219,8,112,10,8,103,17,240,5,187,108,216,181,32,160,12,58,54,163,177,93,162,26,240,179,31,145,219,10,98,205,144,159,232,2,95,17,52,30,230,233,30,61,22,160,161,22,241,225,4,161,193,58,70,216,197,51,160,25,130,9,54,59,64,3,79,237,67,104,215,177,7,153,143,209,218,64,192,7,101,86,0,165,92,75,2,107,161,126,124,208,152,240,98,63,187,48,44,64,143,59,179,114,103,67,236,224,48,107,91,64,214,161,43,4,148,152,203,243,82,62,225,194,234,178,226,114,233,8,128,32,228,254,86,83,75,4,141,192,217,10,141,113,133,93,159,55,155,9,44,8,248,216,177,65,96,179,252,234,0,231,94,129,66,43,99,142,128,111,13,10,143,204,172,7,188,62,104,36,164,34,111,115,23,153,98,224,241,224,241,131,71,210,62,242,16,211,121,63,203,46,44,0,187,57,117,112,189,147,168,111,75,67,230,137,231,251,80,175,11,13,47,227,222,93,130,55,48,117,225,131,66,141,150,124,52,144,106,20,207,58,160,131,252,156,61,179,161,207,89,133,9,83,92,163,131,192,161,188,194,242,71,117,210,251,179,64,68,142,65,228,252,24,56,113,80,31,248,40,119,54,23,240,154,133,32,87,206,113,40,88,4,8,244,104,73,26,216,156,126,63,238,213,34,247,103,225,11,214,53,130,214,79,200,61,16,47,179,119,194,157,108,16,18,253,74,160,84,87,87,87,173,160,130,251,61,101,189,92,18,74,194,68,57,79,63,187,60,201,29,238,178,190,51,188,176,72,182,116,136,177,155,117,64,227,13,26,82,134,109,14,180,60,40,92,6,73,30,100,135,159,219,2,207,250,70,31,58,131,40,44,254,116,142,70,218,46,64,188,214,200,94,32,151,5,190,24,56,85,84,209,120,77,121,157,86,81,155,104,231,66,131,22,206,190,27,16,194,172,134,156,92,223,58,141,69,33,210,143,15,42,95,205,157,176,253,59,104,116,26,196,62,167,151,16,34,94,62,230,63,246,114,125,39,66,73,40,194,124,160,26,30,65,192,35,43,219,251,62,167,69,226,24,8,149,62,80,221,151,142,67,12,97,210,71,47,103,57,37,120,163,70,102,59,145,8,201,94,20,52,187,141,246,178,254,29,214,74,8,113,28,130,245,142,206,200,155,223,204,189,16,139,238,182,193,27,16,144,14,201,182,143,125,99,240,145,10,148,129,179,69,116,122,72,88,252,69,203,18,231,158,47,164,193,244,11,45,88,145,147,126,16,250,188,140,197,227,147,105,102,37,167,57,203,230,69,131,70,161,51,24,27,228,65,243,226,207,121,12,35,127,1,22,155,159,201,255,250,184,14,77,41,120,65,46,50,249,47,214,253,82,145,117,95,72,154,0,78,193,23,114,65,0,95,97,199,203,84,104,37,163,201,224,215,210,167,81,90,3,133,24,201,54,253,143,90,177,154,201,81,12,135,104,80,254,183,225,212,47,33,47,149,253,52,140,142,7,208,206,6,68,137,210,106,139,185,224,207,104,208,105,27,212,26,185,50,72,15,45,207,136,210,216,12,244,160,37,168,160,190,72,75,184,84,39,159,37,115,113,10,203,148,159,226,16,191,126,79,70,146,252,205,72,156,141,204,218,20,205,211,84,133,51,52,115,1,111,27,25,198,104,212,171,66,124,188,75,79,240,246,217,165,240,54,29,0,100,171,124,65,242,229,202,79,99,152,25,113,124,68,21,56,19,119,120,8,85,207,174,145,195,35,217,145,89,135,72,125,158,182,188,186,148,44,187,188,188,250,39,145,80,5,186,236,216,54,129,14,215,65,225,253,184,2,182,74,219,8,81,129,161,194,193,100,38,83,46,147,77,250,82,211,76,146,82,66,167,249,101,19,74,178,59,125,109,94,165,66,218,144,38,108,76,11,62,108,238,101,39,15,240,222,50,13,77,25,230,78,96,63,194,206,49,222,156,203,174,155,24,251,88,121,65,101,29,93,105,109,113,129,196,84,133,146,29,100,163,197,251,51,172,109,148,235,31,69,99,14,48,144,245,78,162,49,43,178,110,35,187,131,32,58,219,119,196,207,159,94,209,196,47,123,92,222,208,193,104,106,117,210,9,11,17,156,0,109,28,65,210,130,115,157,219,133,70,180,156,123,27,207,78,226,153,117,176,141,29,244,226,131,119,120,15,50,46,145,115,150,243,189,135,214,150,171,22,116,248,134,223,152,70,187,163,132,104,114,186,235,90,90,233,40,2,76,178,159,140,146,205,35,43,13,13,147,101,191,8,252,246,203,230,190,36,3,74,54,195,120,4,196,25,1,27,33,235,159,192,139,75,200,190,207,238,111,98,51,184,114,240,135,83,218,185,111,148,95,92,134,60,191,69,79,224,120,3,76,131,208,97,96,24,185,157,178,36,1,39,95,9,214,93,10,192,101,37,21,90,112,13,17,97,250,158,72,199,76,129,205,47,194,70,134,39,54,184,211,35,224,71,212,202,160,17,242,135,137,240,218,143,119,39,241,154,7,47,143,227,133,125,208,186,250,133,68,97,193,82,61,75,132,29,246,204,79,246,192,175,103,159,175,43,87,87,49,213,73,248,21,187,180,142,198,236,220,217,27,126,178,151,32,18,161,49,193,125,72,230,174,102,24,228,254,204,207,108,17,38,134,44,91,200,242,9,98,93,230,78,9,196,192,215,10,57,232,99,248,211,10,58,249,90,228,190,100,37,147,130,114,95,78,20,76,202,42,28,30,85,151,107,10,146,72,69,104,112,23,77,142,17,8,4,252,142,96,104,147,125,30,189,125,143,172,30,222,183,193,245,237,242,147,43,2,88,64,34,182,142,7,75,158,89,199,200,25,186,221,239,66,25,33,90,170,36,91,110,11,169,203,68,122,15,252,39,163,64,246,225,136,246,3,244,58,169,170,255,173,221,74,237,121,125,127,125,94,76,135,8,149,66,253,55,185,66,29,171,75,118,211,82,244,45,198,166,238,200,86,0,93,221,175,192,168,17,74,226,250,46,212,73,224,251,166,150,118,125,247,119,112,249,247,49,25,97,66,145,17,218,50,64,159,247,36,182,95,128,34,47,237,172,176,75,231,91,145,25,71,228,91,129,93,88,60,225,138,126,115,153,140,43,69,222,5,219,92,144,17,66,239,128,219,100,56,47,117,242,136,172,171,91,17,45,0,98,41,196,208,222,217,113,222,238,175,225,110,139,177,89,223,66,233,33,229,182,23,113,235,79,187,125,164,129,0,244,250,196,24,160,136,197,0,237,117,198,0,109,134,49,64,145,13,12,144,226,66,23,239,223,26,89,254,50,182,54,62,45,248,31,227,118,81,36,109,45,208,97,52,152,244,45,119,95,188,50,60,251,229,231,219,29,134,115,163,25,53,180,134,91,152,6,59,1,210,226,159,120,206,135,124,19,65,115,157,34,230,153,23,126,30,180,20,32,18,46,200,85,243,82,173,1,196,230,157,160,65,106,74,254,230,70,83,107,51,36,98,70,188,165,253,41,242,51,233,22,74,108,46,79,43,88,174,164,162,80,243,168,152,6,203,61,146,75,149,1,121,242,234,217,179,24,187,119,216,114,238,217,225,23,44,172,227,35,217,182,133,168,175,112,16,148,16,237,132,60,131,172,127,147,245,239,8,37,115,64,225,34,42,197,44,209,165,62,241,147,238,72,12,76,80,45,56,155,158,81,70,3,47,114,181,92,99,212,41,192,162,254,188,187,251,103,240,4,117,130,69,189,81,195,48,122,109,156,69,93,197,188,210,106,37,12,234,161,178,191,170,8,191,166,86,27,50,180,95,18,94,119,67,28,32,180,41,68,90,184,179,180,242,249,151,28,116,196,14,6,163,77,195,135,148,65,68,47,168,41,170,46,174,190,56,162,227,69,7,255,122,21,34,30,119,54,112,255,148,80,23,39,50,198,15,237,30,225,15,155,120,255,35,17,75,209,218,52,246,173,98,243,38,26,252,136,134,252,185,128,229,240,98,84,170,180,106,77,94,35,197,242,118,205,51,104,104,169,7,44,239,129,98,216,141,153,195,242,75,1,43,115,40,158,250,154,231,95,102,196,226,248,29,122,145,104,128,26,81,180,33,186,150,66,98,159,89,236,20,181,165,149,247,203,10,83,154,34,58,94,198,59,111,249,217,79,80,166,107,102,29,187,62,8,1,224,216,58,141,103,150,241,167,41,60,121,132,156,179,68,181,100,143,122,57,251,91,214,225,97,135,63,139,244,243,73,127,140,85,154,242,138,180,57,13,4,209,66,143,224,57,11,20,90,124,99,15,230,54,88,7,241,155,49,194,133,240,193,72,6,198,166,44,80,84,171,203,83,131,223,206,18,158,155,224,70,192,249,72,96,131,14,63,98,199,58,225,118,200,114,136,214,134,176,99,11,146,80,66,229,171,217,45,7,94,92,9,248,51,1,63,101,129,188,190,88,155,62,167,166,129,235,16,69,107,217,98,199,250,209,154,27,34,111,201,218,211,136,64,110,127,39,112,228,225,253,3,193,222,73,151,27,163,186,148,41,170,174,150,167,55,198,239,194,217,42,2,185,33,179,15,153,95,227,209,190,192,137,11,4,195,3,7,183,226,225,205,102,206,237,195,118,247,249,32,67,90,251,5,251,70,170,146,244,141,132,38,143,146,189,34,35,212,164,86,85,108,251,71,249,229,218,63,170,46,213,254,81,149,233,246,143,242,76,181,127,212,93,77,251,71,90,54,134,118,212,19,238,127,106,106,108,52,182,133,218,142,19,105,68,72,221,224,87,7,145,197,10,190,18,223,107,34,195,192,183,195,102,236,218,21,234,118,10,6,88,118,114,11,91,15,177,115,44,112,186,128,44,118,110,255,136,239,115,179,238,189,223,204,189,216,235,197,86,39,188,25,115,177,251,171,232,120,10,79,56,176,203,142,134,33,218,22,218,170,186,79,241,180,135,159,241,131,197,124,107,47,112,4,81,181,129,147,9,174,239,35,187,99,83,50,68,33,9,120,223,9,246,60,33,108,128,198,44,15,131,173,203,189,74,174,229,54,7,201,121,120,227,246,161,197,5,114,19,25,41,26,222,130,68,138,131,94,48,136,158,140,115,189,243,66,236,14,26,94,224,135,200,112,250,126,184,27,154,63,109,228,23,236,62,40,196,205,167,215,125,16,20,241,84,155,240,193,181,244,79,110,180,30,164,195,129,112,95,250,231,138,250,14,38,107,52,24,21,226,92,64,70,88,221,222,98,20,209,209,175,164,253,32,64,40,65,247,65,186,148,231,45,253,4,244,73,163,71,96,184,210,151,254,57,17,109,158,188,0,241,48,250,41,177,15,105,232,121,5,61,252,118,143,201,134,68,31,68,171,60,221,13,86,123,74,60,192,70,99,71,39,88,0,186,141,208,207,144,166,128,94,184,159,33,249,237,142,78,178,196,134,238,59,81,207,248,143,255,174,129,66,26,183,242,161,144,133,24,44,46,209,222,16,40,52,33,112,66,6,142,22,211,115,152,34,187,176,143,95,139,64,73,22,89,35,44,78,74,150,154,89,135,201,208,221,211,105,60,159,33,90,56,13,90,98,146,237,169,217,109,164,24,25,156,31,245,133,68,160,190,228,53,87,16,180,159,137,35,49,146,43,148,208,17,157,129,142,232,37,154,154,66,166,184,228,30,68,250,17,69,78,68,204,18,120,119,80,101,13,120,61,104,119,20,194,227,38,122,217,165,109,126,246,64,134,134,118,217,179,99,211,237,226,2,194,209,232,139,130,236,71,80,194,124,218,3,37,73,125,110,118,193,155,82,136,35,29,120,142,52,120,210,105,27,21,58,181,65,25,44,245,160,109,36,0,122,9,122,109,147,158,97,242,90,12,49,165,30,82,72,28,184,52,232,178,145,69,112,205,150,33,133,244,130,76,44,67,58,185,6,97,136,74,86,132,19,139,105,189,36,185,230,95,116,150,226,33,174,146,88,34,110,118,251,210,233,10,217,56,82,15,39,143,186,43,133,117,149,223,101,116,52,188,70,163,126,84,157,34,27,6,34,33,43,199,142,191,225,230,28,234,151,104,210,173,185,163,211,5,188,67,220,193,97,202,172,54,60,200,28,161,117,165,94,158,215,104,212,200,131,180,222,208,78,128,65,75,65,169,213,12,163,212,198,210,122,10,33,232,9,193,148,132,91,74,210,107,248,130,20,233,54,157,245,205,79,52,226,228,180,153,165,84,138,76,29,25,162,161,72,155,209,243,187,207,137,126,212,126,183,190,84,93,83,242,136,185,207,36,33,28,93,41,180,124,59,221,98,29,67,232,120,147,95,92,69,123,78,25,178,79,43,32,75,11,2,164,160,108,133,15,58,78,209,88,232,175,146,150,24,72,67,98,24,67,131,209,200,80,90,98,58,212,205,68,26,87,1,45,229,105,25,70,245,236,2,180,148,46,228,178,66,94,23,89,250,252,52,71,158,81,50,147,218,33,19,43,201,226,105,33,130,230,28,145,22,146,228,65,81,233,34,81,95,72,164,142,72,94,35,158,70,18,117,121,86,155,98,166,123,196,53,111,16,139,252,141,187,41,37,25,140,97,8,47,175,86,148,151,18,249,41,9,47,231,103,207,88,255,62,90,153,20,234,223,20,220,171,225,223,207,242,179,159,209,240,18,244,191,26,181,112,238,85,126,214,34,195,187,78,236,178,106,84,140,88,179,190,184,81,102,45,244,85,60,30,47,238,170,228,80,34,219,157,92,65,160,84,85,117,239,81,105,210,29,15,173,77,115,155,125,104,208,194,175,123,160,249,168,125,136,245,109,202,248,29,39,107,27,37,146,41,30,223,70,246,149,123,15,107,111,87,61,44,174,23,132,84,104,17,227,27,132,6,17,123,83,215,5,96,42,2,176,199,10,117,101,137,54,41,192,60,131,2,66,65,251,143,37,168,133,19,240,207,202,10,74,106,43,249,25,55,59,53,90,174,102,63,249,145,117,6,207,249,248,237,83,214,102,21,128,118,173,192,69,37,170,170,146,194,7,21,245,201,192,197,125,30,230,135,28,104,125,6,42,114,13,47,115,190,247,50,136,128,117,219,184,77,43,30,153,224,204,22,236,88,101,247,87,195,128,186,134,216,197,104,0,92,90,70,93,84,153,92,113,132,158,132,232,205,8,119,114,198,29,142,215,212,213,203,144,245,61,178,140,20,151,21,23,213,86,23,200,138,85,216,58,29,240,57,192,149,42,215,209,26,76,80,180,234,90,64,74,123,87,158,71,32,85,81,165,41,98,20,20,82,170,242,42,41,72,97,48,109,14,226,253,119,52,186,248,16,47,31,67,142,140,215,14,205,120,102,150,145,207,201,190,127,19,240,217,100,184,255,19,158,217,102,251,142,240,142,31,121,246,132,247,252,156,253,11,66,76,242,137,105,52,61,138,187,55,53,248,130,9,163,66,83,94,91,118,63,41,159,27,179,33,235,54,158,93,34,202,16,182,125,198,227,67,132,68,249,213,1,162,19,201,229,119,20,90,34,188,201,240,216,142,252,142,186,54,40,196,81,59,6,103,251,248,245,225,162,100,144,123,69,94,173,188,186,132,81,43,242,116,121,42,145,50,124,65,80,81,10,133,214,80,190,81,162,61,162,245,117,214,118,68,240,144,245,237,66,238,35,133,11,64,110,124,88,70,136,23,141,159,160,49,251,57,61,95,39,112,145,61,180,78,206,168,213,10,166,82,169,149,4,151,99,137,123,107,1,161,218,249,22,74,63,173,109,178,142,109,100,57,164,189,7,161,162,152,10,128,104,217,34,128,35,252,15,90,120,122,223,241,132,170,103,119,217,145,101,110,243,245,87,143,98,97,213,233,190,186,170,168,182,168,88,36,73,58,132,88,30,228,155,162,126,110,59,249,203,153,123,217,137,207,4,118,224,141,182,64,17,88,110,119,138,8,25,252,210,54,145,57,160,27,241,68,47,235,240,4,252,111,241,199,49,254,109,124,191,225,184,81,230,50,148,162,48,171,180,82,247,88,83,2,217,38,247,30,104,36,49,11,4,214,15,167,225,214,236,229,237,141,198,22,153,146,243,216,89,203,38,26,180,227,15,43,66,49,54,25,242,156,66,89,89,34,143,188,181,4,200,46,98,219,198,83,111,209,220,214,117,130,88,121,65,81,41,145,57,212,26,185,186,226,31,146,16,219,157,12,248,230,185,51,200,175,125,80,123,11,123,63,226,165,9,180,112,122,43,8,40,222,188,76,132,17,188,176,207,14,155,97,59,160,101,69,145,231,4,157,189,231,135,156,1,223,102,22,32,22,237,126,141,250,230,194,157,100,179,113,100,75,205,133,125,90,13,220,180,244,145,226,225,131,164,114,144,107,15,217,29,156,253,237,119,193,58,166,130,153,98,210,76,214,135,236,54,220,233,169,74,40,130,36,19,186,25,10,13,144,249,197,55,193,80,173,133,101,118,127,25,29,125,196,182,248,134,157,113,131,207,53,236,23,5,158,2,108,4,149,234,7,69,42,121,82,224,45,58,208,206,6,59,185,5,1,128,67,253,248,227,17,26,252,132,220,243,236,228,18,218,153,149,225,195,67,52,188,21,62,69,36,72,25,217,208,65,55,161,167,160,188,240,98,124,229,211,184,81,127,5,80,35,42,48,64,173,234,145,178,72,83,17,20,13,107,36,161,54,98,11,156,56,248,153,45,188,185,64,88,3,72,220,182,9,89,164,192,8,82,225,189,176,212,72,128,196,173,238,92,11,56,17,210,4,101,174,162,172,236,65,97,113,50,17,58,204,92,5,97,6,118,103,219,40,40,110,160,183,17,252,33,98,160,140,223,152,14,251,0,33,155,120,208,114,189,20,58,202,200,74,202,42,75,146,218,235,144,197,26,240,189,39,170,156,156,17,28,46,119,169,142,171,13,235,184,50,180,62,201,89,78,107,117,140,96,128,161,121,11,171,215,4,80,212,70,80,94,82,83,82,240,48,169,97,147,238,201,132,49,225,129,165,187,90,2,35,1,60,119,137,186,33,8,213,50,2,60,130,120,197,245,154,160,161,64,128,23,187,240,241,203,194,75,242,137,153,212,123,37,5,162,146,218,170,250,114,57,232,114,247,30,61,146,244,86,4,188,46,104,114,188,60,196,13,237,19,170,84,147,181,248,14,226,50,39,151,0,202,246,97,178,101,146,239,249,119,243,50,104,255,77,63,163,93,63,222,235,11,28,207,242,11,150,107,129,141,26,193,14,83,82,166,208,84,151,95,136,201,9,58,238,45,60,125,196,110,141,112,123,71,183,130,124,14,152,220,155,17,64,201,243,120,135,175,11,92,146,232,245,176,174,178,172,174,30,208,171,70,171,42,150,100,114,238,121,218,79,187,87,168,19,30,56,242,132,251,71,11,130,27,4,3,211,188,43,144,211,32,78,121,135,61,113,179,91,142,107,4,169,18,121,89,113,233,125,128,148,182,190,224,94,98,93,238,28,187,220,35,85,101,117,53,178,123,229,183,77,33,37,46,210,117,97,217,2,207,34,245,94,92,35,80,61,172,175,40,189,255,144,218,159,202,148,34,37,244,66,72,181,200,111,127,16,232,15,186,147,251,223,10,62,8,15,212,220,112,191,193,35,118,153,32,90,16,245,0,98,146,200,110,16,145,194,39,57,202,175,6,74,37,234,106,53,148,28,39,80,122,80,46,82,163,228,156,244,78,236,97,3,59,152,214,3,94,15,59,233,17,0,39,24,235,168,193,105,2,202,117,45,196,87,233,138,27,97,38,85,219,175,169,219,114,212,192,83,233,188,28,117,67,226,46,204,18,151,138,117,100,142,30,70,210,238,204,209,11,33,86,222,82,34,90,32,113,7,103,201,17,101,176,179,179,16,68,19,211,216,57,253,18,30,209,227,75,161,201,115,212,245,89,108,248,28,245,156,84,154,63,75,221,144,219,141,160,47,86,151,68,188,17,180,74,180,17,116,20,92,164,191,150,230,92,89,104,22,157,238,145,198,246,88,195,168,43,31,39,219,30,195,194,60,145,39,148,68,154,21,36,6,42,144,134,237,193,84,112,8,238,163,99,212,137,67,54,137,61,103,210,45,32,110,236,73,138,18,37,188,87,188,7,117,244,15,101,164,251,130,12,88,11,0,231,246,83,125,91,243,191,76,109,177,65,128,57,217,77,33,37,221,37,239,46,81,166,75,52,165,186,251,69,58,106,200,210,233,228,34,61,109,224,206,39,79,255,37,81,25,32,224,93,3,173,217,62,13,125,195,22,22,160,4,163,211,35,11,248,38,57,231,30,123,188,134,223,184,64,100,183,142,17,156,130,74,219,235,111,132,178,166,129,35,43,132,222,197,128,50,107,133,163,153,60,242,34,111,80,40,244,106,185,1,34,13,159,63,151,255,12,198,94,45,68,26,234,127,166,173,92,211,74,148,72,53,211,33,20,202,127,25,40,93,166,231,116,92,68,103,86,155,78,95,4,206,137,51,33,82,76,101,200,48,152,147,55,160,190,60,61,229,95,106,180,57,223,137,33,30,61,47,94,230,94,52,131,175,209,212,101,32,98,98,247,221,6,34,101,116,233,33,59,245,169,177,173,249,21,97,211,225,125,15,16,147,209,220,205,211,40,116,154,116,57,27,24,83,201,70,183,182,205,238,245,6,142,103,113,255,178,226,142,2,22,201,210,127,229,133,239,25,29,20,48,49,24,26,85,58,181,138,210,213,47,138,118,19,193,49,205,165,178,14,18,77,241,82,133,238,179,188,96,249,9,6,126,165,173,27,226,142,43,64,242,95,158,246,252,242,180,189,71,4,100,218,180,113,156,221,112,178,182,35,232,88,111,91,64,190,205,32,40,191,20,146,107,225,69,109,84,235,117,141,2,146,191,212,107,58,47,141,228,9,231,120,37,88,126,177,21,203,79,52,240,75,55,120,16,205,68,151,104,242,64,211,211,191,178,38,15,41,69,28,164,174,62,149,87,215,61,174,44,128,16,17,229,79,82,65,53,2,103,10,89,97,3,126,15,118,45,212,105,161,254,140,239,12,156,34,190,77,25,119,184,11,190,145,83,43,90,35,215,140,241,230,222,58,45,59,63,0,193,128,167,131,25,172,102,123,217,138,181,21,106,69,85,237,61,152,174,162,248,254,79,9,166,43,196,243,9,102,65,161,33,99,56,65,83,198,123,215,217,179,99,116,236,132,32,139,153,45,25,158,89,46,196,75,123,156,251,148,115,103,178,149,229,165,39,171,42,46,172,175,78,172,26,7,5,54,176,129,130,1,116,126,8,13,46,131,111,70,33,63,247,185,42,238,168,106,255,19,218,26,248,92,80,62,156,198,127,42,53,119,34,114,226,190,220,132,195,113,116,143,212,85,121,247,75,165,34,14,163,81,24,31,28,114,123,71,200,61,203,207,217,21,119,148,16,24,19,56,25,228,204,189,224,109,88,216,135,22,167,167,51,129,35,79,102,75,116,95,102,118,255,80,87,105,180,213,85,34,37,201,207,49,214,222,43,176,80,136,112,118,217,180,114,181,154,27,222,101,109,67,100,22,200,62,207,125,30,46,170,172,44,227,220,219,236,251,55,104,162,151,32,45,33,90,228,220,229,14,226,131,126,190,32,206,42,203,203,213,197,20,103,181,149,18,65,145,194,98,30,28,162,181,105,130,137,1,255,161,66,117,71,13,45,222,104,139,32,217,189,66,185,2,121,6,67,1,242,10,8,180,112,109,9,205,70,161,91,132,115,60,11,229,181,179,209,184,185,66,121,239,161,182,60,21,88,184,62,16,250,45,110,49,62,215,119,27,177,203,12,177,161,52,214,24,106,127,56,199,145,183,31,138,17,133,65,162,33,16,201,38,32,50,40,19,118,129,113,234,169,222,36,38,98,136,20,94,63,23,49,40,35,227,231,6,241,228,169,32,95,200,9,130,192,116,97,44,97,123,117,67,139,190,237,231,91,89,24,91,34,54,4,173,218,183,122,9,235,201,59,23,121,174,102,84,121,9,70,245,176,250,118,61,101,135,138,32,160,50,199,16,174,72,17,150,136,205,167,179,163,229,193,70,24,69,182,112,225,165,137,12,170,91,223,38,54,46,145,150,125,231,59,175,111,30,138,79,142,184,9,232,149,87,58,42,101,34,12,157,176,162,227,25,8,202,31,153,33,3,147,231,50,70,64,57,166,102,130,244,98,248,46,210,162,59,102,142,15,53,100,126,16,111,70,55,144,204,66,63,209,200,36,98,143,132,145,173,79,242,219,158,226,199,69,0,122,230,42,135,149,151,136,165,22,213,2,172,84,97,64,229,36,54,36,208,72,19,178,7,243,36,158,237,163,236,79,157,13,166,156,96,88,137,184,195,63,139,84,140,192,177,84,119,84,218,140,99,66,130,81,37,226,14,255,172,85,157,171,236,57,139,9,45,61,177,124,79,77,102,38,151,75,196,134,4,209,192,142,220,171,89,97,197,226,219,50,29,18,147,136,77,241,147,99,252,156,37,184,109,221,201,60,14,36,26,87,34,38,37,168,140,13,63,169,254,73,192,165,78,135,41,72,116,103,185,180,67,51,129,247,50,234,139,244,203,205,69,187,24,94,26,244,157,233,121,29,126,16,34,37,100,212,126,71,195,34,238,118,27,91,59,90,136,176,46,148,145,52,118,24,245,100,37,225,151,101,166,54,217,203,34,125,103,89,124,97,193,20,70,152,106,29,151,31,190,249,17,30,118,167,203,216,105,50,118,213,117,182,124,147,31,54,157,70,127,87,161,111,53,194,151,23,41,194,66,237,168,209,63,87,5,247,195,239,93,168,160,73,184,60,185,86,29,225,37,147,107,50,91,233,68,12,56,249,98,80,73,173,82,215,15,29,73,126,26,143,14,161,221,99,34,132,252,126,60,31,186,160,163,211,100,48,150,155,218,190,201,255,127,209,167,244,47,191,201,15,210,218,15,119,59,46,24,248,33,224,99,74,193,79,95,186,168,9,60,75,168,209,9,33,139,155,35,113,15,21,251,97,202,165,186,158,24,206,9,243,60,218,193,240,180,189,189,203,120,155,64,52,69,242,234,50,182,24,13,221,178,134,78,125,82,219,109,252,109,183,77,109,29,61,137,8,57,124,43,13,161,11,243,57,50,188,219,194,19,195,142,98,248,33,90,26,250,86,62,183,123,72,96,130,71,182,133,72,235,100,209,118,225,103,152,18,199,207,209,107,146,251,147,34,204,218,193,73,10,85,80,19,71,184,36,11,84,138,135,184,64,36,87,10,242,224,35,19,194,92,136,95,191,110,48,167,36,3,241,159,2,125,36,131,122,67,79,119,119,59,1,30,173,84,46,144,27,161,52,195,211,39,148,174,66,69,117,133,171,46,200,164,164,191,138,29,54,132,246,117,101,180,208,115,138,172,33,174,182,179,248,29,113,5,159,233,136,211,138,85,72,88,150,89,188,240,115,130,210,199,74,161,48,240,218,38,180,101,236,63,65,174,173,192,145,71,188,198,114,234,163,73,237,233,65,52,105,212,255,11,228,115,42,17,117,245,60,23,6,37,39,131,170,169,171,191,154,129,16,68,133,167,223,37,162,83,103,183,240,124,133,156,198,174,32,199,42,84,94,145,170,144,157,173,129,180,154,26,27,91,140,194,72,148,116,36,54,58,146,43,26,134,200,194,180,118,68,44,76,121,85,170,11,147,36,210,49,25,183,19,43,67,45,11,189,9,134,241,134,119,243,110,125,243,109,145,26,220,226,63,42,162,69,208,136,49,65,46,39,146,105,162,98,214,169,4,90,164,240,20,130,236,98,186,75,134,126,93,241,50,139,63,174,204,230,143,19,92,187,200,175,39,250,62,225,119,177,123,200,211,39,169,170,91,244,242,96,227,187,196,155,100,48,249,128,237,223,129,60,105,199,22,103,31,75,156,145,112,126,103,68,62,133,240,60,125,243,19,66,194,157,198,174,167,225,118,123,193,52,7,251,106,210,108,139,52,197,0,66,9,193,237,60,50,74,184,189,251,118,240,100,146,193,199,118,236,128,152,26,218,156,16,78,230,118,205,225,31,58,226,246,212,212,34,84,83,225,176,84,158,191,43,215,4,99,99,8,103,85,192,62,28,210,187,133,200,115,65,186,12,229,115,133,100,205,52,35,208,191,208,113,209,125,166,187,83,79,55,154,104,112,236,89,136,116,130,103,44,220,202,40,1,71,196,167,107,5,14,130,19,63,223,37,180,85,210,214,72,212,251,174,39,207,76,109,134,246,30,81,4,17,248,8,187,191,137,134,198,9,98,220,202,143,57,113,173,224,18,141,38,212,246,241,163,156,185,45,215,252,31,138,50,228,146,14,189,161,59,30,107,220,159,217,201,72,24,197,156,184,198,48,162,150,221,206,87,63,26,158,154,218,244,255,39,82,178,142,134,16,205,255,20,80,135,8,219,208,31,36,234,196,53,131,16,232,243,119,229,234,144,145,61,22,26,100,194,66,153,28,214,49,66,149,143,240,167,107,6,7,49,76,249,185,157,108,200,109,113,24,194,47,109,19,156,32,196,130,205,139,104,119,144,59,61,37,26,125,220,185,63,0,124,40,37,197,131,231,253,44,54,111,66,185,201,221,73,129,118,8,120,226,206,253,1,192,163,111,37,212,101,136,7,16,118,153,89,235,158,208,252,143,27,237,135,240,164,168,19,215,10,52,97,161,78,45,46,212,173,175,115,103,239,194,66,93,196,167,107,5,133,104,4,105,38,159,26,218,95,254,216,170,111,235,209,183,196,227,135,141,22,174,25,93,225,204,189,200,233,197,46,31,65,145,184,115,215,24,62,66,78,47,184,111,227,119,231,169,65,52,188,2,77,207,38,207,8,190,68,124,162,110,95,153,44,185,193,57,145,87,40,124,81,10,215,228,192,113,1,216,62,111,111,233,105,53,254,216,96,108,105,127,33,103,226,224,203,186,122,241,199,35,40,35,234,24,225,123,39,136,12,29,125,226,26,99,93,136,109,63,211,119,136,109,250,27,211,224,222,16,26,8,131,224,28,115,226,154,1,134,138,133,74,101,48,227,65,68,70,198,158,113,33,49,145,10,200,225,79,215,10,12,177,186,167,190,165,69,28,28,209,142,2,81,207,193,181,1,138,8,171,238,212,27,226,57,53,119,56,78,197,97,63,84,135,28,159,189,149,31,115,226,90,1,37,22,83,126,121,218,222,214,252,210,212,214,44,138,47,32,239,245,190,135,42,59,80,195,126,67,16,0,35,78,92,43,208,136,51,89,99,91,115,139,169,235,105,252,254,62,237,194,31,86,185,145,189,192,241,6,255,214,65,72,41,250,196,53,6,77,164,75,41,26,93,70,108,208,242,120,109,158,80,16,228,140,157,185,104,121,209,152,115,215,10,50,148,158,218,77,45,79,106,234,234,165,236,18,130,100,18,178,75,132,63,93,43,56,68,99,136,177,205,216,217,252,234,199,167,175,26,58,77,141,241,104,66,166,63,121,128,15,15,185,21,51,26,32,210,113,204,137,107,12,152,16,87,105,54,118,18,157,234,149,132,198,141,78,15,5,27,77,72,227,14,159,184,198,160,17,184,138,169,205,20,207,106,123,93,144,178,233,181,67,219,247,129,94,194,106,163,79,220,40,84,18,0,110,51,190,48,232,59,33,16,152,185,205,200,227,145,77,168,83,236,113,242,31,93,92,159,141,86,105,140,60,113,173,144,45,104,222,201,99,148,162,108,90,136,130,14,153,119,34,63,93,71,40,104,116,18,234,210,218,102,224,120,38,108,228,138,248,116,61,161,160,146,48,245,65,218,206,185,169,239,252,211,181,130,194,207,134,238,230,206,246,158,14,33,188,78,130,42,134,2,62,31,114,246,161,133,213,192,137,35,224,63,4,218,136,61,119,173,160,34,230,174,212,220,22,49,64,209,132,46,100,233,39,106,51,90,23,54,235,184,83,95,43,100,162,115,77,140,29,157,70,3,84,54,140,183,53,205,217,133,174,54,1,223,32,58,123,143,134,124,183,242,227,207,125,173,80,144,10,186,140,182,30,80,198,0,118,20,203,214,173,252,200,79,215,106,218,68,148,232,104,127,97,236,20,21,34,104,197,107,65,92,141,248,116,173,230,31,107,55,161,140,161,218,216,108,106,111,123,66,224,241,164,169,41,129,253,17,92,33,150,15,80,12,210,98,15,89,33,35,207,93,43,72,137,49,80,106,196,215,196,219,240,231,78,56,167,139,236,32,33,6,26,115,226,26,195,37,168,33,211,12,0,2,162,120,208,208,2,214,104,120,75,128,75,196,167,140,106,59,23,158,241,221,80,108,224,197,130,21,211,140,232,76,88,201,184,69,79,208,43,20,155,57,230,98,247,87,127,184,43,156,147,190,231,114,1,238,100,165,20,225,0,247,148,31,18,253,227,29,176,165,182,208,147,144,59,37,224,195,249,143,135,25,105,90,143,72,117,30,209,65,87,228,113,66,88,85,50,9,247,114,241,94,231,79,163,31,197,242,76,51,243,48,205,109,133,250,170,30,166,80,223,86,70,60,140,126,76,248,176,68,233,48,231,41,114,172,127,2,47,46,137,166,200,37,79,237,139,44,168,22,153,152,27,113,254,127,133,159,199,158,140,227,217,9,240,17,174,28,48,74,222,60,143,151,157,225,231,70,146,34,196,253,82,77,1,10,156,183,118,43,181,50,168,63,208,102,108,121,210,105,108,209,119,155,158,27,201,70,40,215,200,66,215,60,209,43,207,43,162,199,148,65,167,88,47,207,123,218,65,46,138,169,132,174,80,166,95,8,29,38,162,213,48,127,147,19,240,199,20,122,187,80,9,113,173,38,178,132,56,45,222,26,170,33,174,81,70,212,16,215,201,47,87,67,92,161,188,64,9,113,3,248,197,219,200,16,95,194,116,201,120,94,234,228,231,149,196,149,225,72,251,168,208,243,208,82,145,101,129,69,10,149,114,143,140,55,143,206,225,142,205,0,13,229,88,10,217,216,244,230,223,136,4,211,187,142,124,135,228,13,123,226,14,120,231,163,241,38,181,44,46,242,170,111,20,254,222,161,133,201,99,242,74,1,133,186,245,13,178,243,183,138,140,38,136,125,223,72,176,247,213,119,132,124,37,90,44,152,186,202,219,27,59,33,67,185,160,81,246,119,217,183,231,3,81,126,43,251,78,70,251,43,4,103,29,151,30,38,150,25,150,106,14,57,161,50,83,155,140,2,70,36,47,230,135,111,76,77,127,33,32,19,190,148,253,249,207,178,240,135,59,45,198,182,230,238,167,178,124,25,243,215,255,251,77,204,109,226,105,69,66,26,2,178,124,194,159,182,226,243,130,126,248,230,127,190,137,228,46,177,73,199,41,228,42,1,85,60,51,17,25,90,223,214,28,38,141,243,7,83,52,138,79,74,74,56,90,1,229,206,111,136,168,70,32,146,119,148,43,11,16,73,29,201,10,33,208,92,41,66,177,29,148,118,165,242,170,47,89,68,249,135,111,26,218,95,180,52,26,59,239,24,245,134,167,48,163,14,147,1,110,254,175,166,158,54,3,240,148,191,232,69,103,145,194,32,82,73,221,141,72,168,215,223,129,174,8,113,53,10,34,202,25,232,239,208,247,144,107,159,90,54,71,100,241,2,253,29,242,137,124,128,7,132,202,15,168,34,138,116,107,181,193,98,6,81,15,74,161,178,121,74,106,202,15,201,170,11,36,132,72,126,228,152,82,123,94,242,114,6,73,146,137,190,249,159,191,126,147,47,174,103,36,18,98,68,75,165,62,233,140,104,149,146,176,255,76,38,104,51,122,26,177,248,45,220,146,22,122,19,30,147,218,178,36,78,170,76,12,210,164,205,132,66,140,212,208,222,217,17,102,162,205,13,119,91,140,205,122,33,222,39,76,57,132,107,60,109,127,110,236,124,2,119,222,18,199,24,49,65,50,9,167,63,255,42,29,22,22,98,252,226,229,93,114,173,8,124,130,67,98,172,178,84,106,67,198,237,126,180,34,191,92,46,52,184,173,127,92,94,254,224,1,148,143,214,50,42,145,138,252,207,126,150,42,1,255,105,11,15,56,249,213,1,126,246,35,59,186,207,206,204,178,51,22,188,251,26,15,44,225,165,137,43,47,144,45,151,147,151,38,173,90,171,204,211,52,66,129,236,23,74,93,151,154,97,242,90,160,64,182,242,5,81,146,154,227,10,100,171,152,87,90,173,68,125,236,132,140,58,201,228,211,169,156,157,26,229,93,122,17,243,19,15,89,130,78,191,84,169,120,137,35,243,100,0,125,158,149,208,231,249,190,250,177,252,113,16,130,34,101,222,36,201,128,243,189,15,156,76,96,151,153,119,153,185,141,94,2,92,60,247,154,157,31,224,251,183,2,39,246,47,211,12,65,65,200,64,163,82,55,118,64,157,248,87,76,135,142,97,84,47,34,201,160,163,45,51,100,144,100,242,87,69,6,105,44,98,126,226,33,127,221,100,32,131,237,43,4,162,148,136,66,178,110,112,89,81,253,35,109,1,163,150,171,180,85,247,69,234,11,74,210,131,130,221,180,99,235,107,182,127,9,79,31,161,99,39,118,217,144,251,147,160,103,93,61,53,64,203,29,37,163,108,48,52,54,232,105,215,132,23,10,69,11,195,200,27,179,177,41,36,156,122,230,105,225,50,107,151,159,104,172,55,68,16,234,11,247,72,81,174,84,50,106,5,145,42,74,31,165,35,27,209,61,21,29,157,240,51,91,220,27,31,94,28,228,156,163,216,236,8,28,89,209,240,155,171,39,3,13,121,209,50,13,74,13,211,168,160,100,208,163,121,213,67,144,191,41,43,178,81,226,201,95,33,33,164,176,126,249,137,71,155,25,82,16,211,119,46,165,172,102,250,136,82,51,83,20,57,171,153,202,146,250,224,94,91,47,14,91,246,100,156,245,173,178,11,251,248,245,14,154,94,228,45,175,209,152,3,57,252,1,239,244,239,199,163,252,186,27,206,216,247,8,227,9,248,6,185,205,183,208,116,216,59,146,70,173,162,171,156,110,222,131,82,141,48,93,181,72,81,83,42,90,216,39,241,155,69,52,214,143,214,160,59,55,242,56,209,89,255,175,102,87,192,187,67,228,236,95,205,139,100,210,1,239,58,63,100,135,150,9,67,251,120,199,255,251,113,111,142,78,183,80,171,169,8,78,87,164,182,44,76,151,159,31,99,207,44,220,220,251,223,204,189,156,107,47,244,198,202,205,191,229,250,6,185,185,49,50,93,110,245,61,122,253,33,76,78,225,222,108,57,55,221,135,247,235,181,193,233,138,84,247,165,140,98,106,28,141,159,176,75,235,220,46,109,188,62,60,17,56,129,5,230,136,82,245,110,13,245,186,120,255,0,63,52,142,135,87,201,149,42,100,29,228,95,127,169,201,74,50,68,130,197,170,199,42,144,12,10,11,235,69,186,185,192,60,9,17,162,181,109,238,128,182,0,247,14,225,157,117,232,37,239,90,2,167,240,103,43,63,183,198,13,244,113,125,239,184,190,69,161,162,106,106,115,140,54,50,197,48,196,139,25,119,126,121,106,122,101,148,182,236,164,227,4,162,63,37,252,13,121,108,162,26,69,198,245,137,252,254,86,126,218,6,67,250,243,17,54,195,148,236,79,50,122,215,237,14,83,100,33,84,81,203,121,34,179,226,5,58,175,9,94,134,59,68,216,184,67,33,87,217,244,151,111,255,254,237,95,101,249,178,219,114,248,125,106,127,236,129,234,179,127,142,196,32,58,220,31,190,249,31,99,75,151,49,234,170,191,139,93,149,98,85,224,120,99,250,165,45,233,23,20,57,174,10,42,17,230,221,59,4,145,90,244,6,227,95,238,146,173,228,110,243,127,125,123,235,219,191,74,88,226,147,10,38,145,102,224,72,95,125,114,97,36,136,135,65,86,146,16,23,131,215,36,196,199,104,179,118,14,193,52,198,13,24,5,47,224,96,231,150,233,244,67,31,226,162,30,202,213,50,201,128,135,206,39,145,125,221,163,162,24,58,35,162,24,90,213,82,190,227,138,46,29,56,141,91,187,21,12,245,22,147,55,170,115,143,113,104,60,74,134,249,155,66,205,132,131,23,186,186,95,1,199,12,5,65,124,23,138,176,248,30,144,224,182,64,102,223,49,223,131,133,191,169,165,253,197,119,79,77,141,141,198,182,239,193,123,158,33,103,193,15,166,166,78,125,171,145,86,141,163,179,163,245,97,225,221,147,40,189,232,124,43,239,252,251,69,218,161,55,183,147,185,191,36,115,63,15,97,80,159,183,42,142,236,161,171,128,190,238,116,80,13,237,157,4,211,105,100,72,196,219,86,125,103,179,169,45,120,103,248,115,232,110,136,218,48,144,13,141,0,176,249,199,91,109,237,231,37,87,91,75,232,143,6,87,24,92,203,244,115,126,28,121,70,199,71,8,47,127,250,147,128,78,155,68,226,48,83,44,34,103,162,217,188,80,64,79,120,125,210,218,45,107,235,18,222,118,27,161,42,95,138,145,12,228,90,250,39,180,47,138,96,90,181,81,223,248,10,64,27,12,82,160,15,129,80,135,136,40,133,63,253,41,190,255,119,107,228,70,152,198,112,200,7,186,113,135,163,43,200,251,231,166,46,83,67,139,49,63,6,4,161,232,19,178,115,103,45,118,67,220,245,31,85,211,87,36,62,35,248,170,148,242,52,37,172,214,219,173,111,110,163,52,98,104,111,163,203,41,19,175,223,11,116,66,23,239,60,240,65,64,24,113,161,45,197,112,138,214,246,6,19,225,161,231,191,137,109,35,193,106,43,23,254,205,167,70,125,196,15,210,138,107,7,34,252,56,90,138,140,92,235,224,66,183,182,119,26,159,136,5,77,36,4,139,80,192,151,76,100,206,71,196,92,250,92,26,158,116,55,24,166,148,228,238,96,68,101,141,92,173,86,17,45,66,149,167,86,202,243,224,231,14,247,144,111,3,57,150,144,117,225,162,63,10,39,187,12,38,99,155,193,40,172,30,218,137,142,78,142,103,20,98,232,24,27,137,146,170,160,45,94,195,50,147,157,49,26,76,205,169,5,108,228,226,145,134,234,197,60,120,92,194,16,213,75,174,213,22,23,196,171,94,2,83,14,103,63,237,64,172,190,203,140,142,125,5,37,236,242,36,187,253,153,159,91,165,233,236,155,120,107,5,189,25,9,120,125,129,147,41,238,140,224,150,39,224,27,76,171,187,6,149,167,99,117,28,89,172,146,195,4,133,142,246,78,178,66,109,250,150,116,76,146,13,207,160,43,67,167,209,112,219,240,60,218,40,217,98,234,38,83,204,83,168,116,121,121,26,133,82,69,237,145,47,20,63,63,55,49,140,130,250,106,59,200,255,160,169,71,219,35,149,90,230,149,92,155,151,168,153,241,37,160,70,38,36,87,192,158,31,218,255,181,17,251,63,121,108,42,193,56,23,194,159,175,112,37,8,156,94,201,21,234,236,173,132,78,115,190,16,138,72,65,12,226,97,19,44,68,226,56,107,177,38,213,151,163,214,252,244,167,153,90,187,151,155,227,230,184,57,110,142,155,227,230,184,57,110,142,155,227,230,184,57,110,142,155,227,230,184,57,174,230,144,8,233,250,154,146,70,178,121,100,32,239,46,5,35,76,121,65,101,93,138,38,83,254,253,44,235,94,1,187,203,254,12,107,27,229,250,71,209,152,3,34,144,122,39,209,152,21,89,183,145,221,129,93,54,182,239,136,159,63,77,187,23,49,29,248,151,183,213,169,85,121,10,133,94,161,212,26,4,91,93,139,220,192,48,114,3,216,234,90,181,12,99,236,142,181,213,201,181,234,87,114,185,38,145,173,46,61,192,101,50,41,49,195,152,144,159,214,76,82,108,188,252,101,99,156,179,113,92,5,229,214,21,215,87,85,87,146,245,82,104,21,143,202,146,58,59,204,104,204,174,212,162,143,189,80,190,202,209,39,172,35,59,63,240,171,217,133,119,167,2,222,249,95,205,139,220,208,59,118,238,228,43,37,92,109,158,202,32,87,41,26,25,163,144,154,166,208,153,212,16,116,221,168,96,152,30,66,188,63,203,155,25,166,73,195,48,122,85,250,4,156,22,252,190,12,253,166,132,15,249,233,76,228,15,75,190,55,199,205,113,115,220,28,145,135,148,174,146,56,20,40,180,149,54,211,166,237,183,242,185,179,5,100,89,23,226,131,248,213,113,177,78,54,98,137,44,16,10,18,240,238,36,13,5,49,36,15,5,129,77,52,54,82,37,234,114,209,56,85,25,121,3,209,103,242,63,128,218,149,206,1,145,87,231,208,106,106,184,37,203,172,114,38,175,124,172,0,145,188,160,176,94,35,181,165,87,213,200,10,74,2,103,110,180,112,138,44,118,110,255,8,29,125,194,11,103,120,113,61,224,131,44,138,26,34,126,153,64,176,33,151,33,167,21,79,158,130,248,62,178,64,164,118,188,236,69,199,71,172,111,19,47,236,227,105,200,70,224,39,221,73,101,147,236,102,91,100,234,128,165,185,228,98,208,72,200,243,229,168,45,169,98,42,202,136,40,169,203,171,203,171,149,90,142,146,123,69,191,31,207,19,125,8,247,127,194,46,59,26,94,65,115,91,220,217,27,214,191,19,240,218,2,222,119,104,231,45,68,172,237,89,144,101,139,29,235,103,63,124,32,231,147,75,132,127,24,168,71,145,64,173,188,224,129,166,6,72,64,151,167,20,201,179,13,73,181,62,110,97,132,136,172,188,229,115,224,100,2,121,55,8,246,67,145,69,247,26,187,4,185,53,220,110,47,114,191,17,174,225,246,183,144,107,139,208,0,55,48,206,190,235,229,54,55,136,232,139,44,199,92,239,40,182,77,160,195,117,33,139,140,245,109,228,49,55,171,34,193,152,152,250,234,188,100,140,9,91,247,217,69,51,55,114,132,223,184,234,77,93,166,246,54,89,85,103,59,129,49,239,243,35,15,176,166,138,218,58,116,234,230,78,118,145,221,1,101,199,23,86,249,217,37,32,29,219,8,92,102,94,174,236,238,54,118,222,46,166,73,125,201,155,190,253,49,23,131,40,126,165,21,73,21,63,246,100,6,123,188,248,96,59,152,42,234,25,167,187,195,104,192,183,70,120,18,118,141,32,231,72,108,14,225,13,176,227,129,93,95,95,168,209,36,195,124,118,210,131,189,195,120,121,4,54,213,19,23,217,15,128,179,28,155,229,104,175,175,182,83,223,214,213,212,222,217,106,236,228,253,227,236,194,107,216,135,105,221,24,52,188,128,93,62,100,253,140,63,174,240,125,111,201,82,176,235,111,216,205,228,45,202,190,158,165,136,18,150,100,221,47,218,159,180,152,50,43,51,213,106,10,106,202,106,25,181,146,121,92,93,94,40,181,64,144,182,31,240,14,35,251,48,58,218,15,138,227,239,103,145,197,134,103,62,35,171,31,150,196,101,11,156,44,119,144,27,33,212,48,156,133,121,77,214,225,146,16,127,126,247,185,169,209,216,126,183,190,72,93,83,93,82,86,81,44,73,8,142,17,118,236,29,242,127,38,36,192,174,184,3,103,139,66,79,66,100,177,32,235,96,224,120,28,245,14,161,83,43,63,100,231,54,122,9,212,201,123,72,236,62,94,2,17,213,58,70,54,14,116,106,134,127,174,45,114,49,63,243,145,104,65,208,5,125,242,102,49,36,248,83,29,163,169,213,17,254,164,211,106,234,202,37,119,102,42,231,160,141,35,48,7,58,215,185,93,16,120,56,247,54,158,157,196,51,235,96,9,60,232,197,7,239,240,158,141,200,66,200,57,11,5,125,188,62,188,106,65,135,111,248,141,105,180,59,74,200,33,152,87,127,179,8,241,139,240,88,91,92,117,47,217,34,4,252,211,52,15,220,133,142,62,162,33,159,130,108,195,220,200,30,107,59,66,158,73,40,221,240,214,129,214,246,217,133,105,238,108,136,223,254,128,167,119,145,37,121,139,154,63,40,192,31,85,151,107,10,146,249,174,208,224,46,154,28,35,156,40,224,119,160,81,63,218,217,64,246,121,244,246,61,178,122,120,223,6,215,183,203,79,174,112,227,111,3,190,17,224,255,214,241,160,81,220,58,70,206,80,58,216,13,248,215,209,154,157,236,208,215,104,29,194,249,72,4,70,79,32,197,94,174,200,240,142,44,47,44,213,212,145,29,89,167,187,87,80,37,233,88,12,161,56,122,61,26,240,251,241,206,91,126,241,13,144,65,255,9,180,200,91,219,198,54,59,17,90,201,118,125,93,96,15,121,118,137,173,109,138,75,88,219,178,107,153,170,171,41,146,223,39,10,160,90,169,46,45,19,169,76,35,172,41,173,203,98,70,19,160,81,115,147,243,68,39,71,195,203,188,121,9,59,108,68,207,3,34,91,116,224,233,81,100,63,12,120,237,104,120,139,106,36,55,59,187,4,200,171,106,24,69,17,229,113,42,213,3,41,144,215,232,91,101,5,45,221,173,250,54,33,113,6,237,30,145,221,29,89,182,240,116,226,30,9,116,48,127,80,192,214,106,85,247,146,1,54,104,167,88,219,100,109,11,4,139,145,101,253,167,202,202,114,130,195,5,37,1,159,15,152,19,72,172,179,32,89,77,36,111,249,243,199,132,116,173,92,87,83,174,74,102,204,195,211,235,220,193,128,154,97,160,223,26,123,234,64,150,126,2,230,114,99,183,30,217,236,69,181,149,32,167,30,28,226,253,17,228,117,163,179,57,126,110,141,93,253,116,3,113,81,136,215,148,60,168,83,84,3,196,239,213,212,84,75,65,188,142,115,159,114,238,21,52,78,173,162,30,107,65,9,81,131,3,254,183,208,209,153,126,67,237,111,118,60,212,199,246,29,133,211,238,200,206,204,141,157,4,142,237,193,156,187,27,240,139,176,150,199,143,106,213,201,88,11,187,247,9,77,88,177,215,139,28,126,34,223,112,7,80,217,76,174,145,7,124,103,68,199,98,79,198,145,147,72,164,243,104,109,9,13,218,209,49,209,216,198,145,189,151,168,11,191,153,135,145,99,137,93,127,243,155,121,228,122,45,66,246,237,68,117,229,21,197,21,42,144,74,11,170,171,239,75,114,253,225,5,236,27,19,12,68,220,234,123,110,183,151,93,24,15,192,90,12,176,39,243,120,100,137,80,0,114,121,100,232,148,112,35,43,58,237,229,23,6,145,115,6,219,151,240,240,20,225,98,156,217,194,250,247,241,98,255,53,90,155,204,42,110,53,143,42,74,233,142,112,191,92,82,113,35,58,49,209,13,240,136,77,38,151,203,64,21,248,188,37,83,144,253,65,70,40,36,180,65,44,192,6,33,35,28,11,59,182,200,245,236,251,55,104,162,23,47,16,209,199,70,181,185,105,228,124,255,155,121,180,150,12,76,127,179,24,226,155,197,61,245,227,218,71,148,91,85,106,37,185,149,80,112,131,219,124,203,237,250,101,231,110,29,240,121,82,79,15,248,214,8,131,242,246,19,50,9,120,135,241,199,21,110,119,159,172,139,76,174,149,17,158,197,250,7,185,225,190,155,21,16,93,129,234,250,202,66,166,48,153,29,131,168,82,200,227,100,199,6,193,148,225,181,33,203,0,58,94,66,78,59,187,224,6,99,133,255,70,208,23,135,238,227,18,197,163,123,247,129,229,151,235,30,74,26,34,8,147,64,214,113,236,95,225,135,134,241,228,233,111,102,59,48,149,233,25,126,239,24,12,212,27,125,129,147,41,246,204,207,249,222,223,232,170,146,120,172,169,173,122,88,150,140,173,11,42,85,192,235,144,85,118,24,219,10,74,192,6,125,230,34,12,3,2,200,93,35,28,17,242,23,215,201,114,4,124,31,209,238,32,158,89,230,103,246,201,114,92,19,152,167,114,164,208,54,230,153,254,185,94,40,151,247,221,243,118,83,227,95,152,191,126,31,142,58,107,51,190,236,22,2,190,32,248,76,168,44,70,22,1,190,120,209,85,65,190,172,210,55,27,255,242,191,141,207,141,109,221,127,149,104,144,6,37,185,66,151,254,253,219,168,95,20,234,143,125,71,171,143,201,186,245,157,205,198,238,31,111,61,233,50,182,52,37,236,1,20,209,184,174,161,25,74,178,157,119,169,19,189,33,108,199,122,41,167,5,220,82,186,84,145,236,210,174,238,206,246,182,230,124,108,95,13,120,205,216,118,68,134,33,156,17,7,119,170,45,118,36,11,22,210,143,41,86,132,74,84,9,74,170,250,211,151,170,248,148,152,41,144,81,68,176,133,138,7,170,82,101,49,195,200,53,90,166,74,23,207,22,132,162,103,231,233,70,230,121,26,189,211,203,58,60,160,246,108,142,8,2,54,97,9,66,133,71,65,53,34,44,1,172,92,130,240,177,182,143,103,79,9,195,38,252,3,127,154,34,188,133,157,30,231,103,220,73,115,26,178,88,24,94,11,253,17,52,76,99,131,74,158,71,187,133,188,108,104,208,48,76,158,30,82,138,186,200,59,163,50,182,91,72,10,133,152,178,1,156,108,84,104,18,77,12,137,171,245,123,137,188,144,172,44,64,10,245,151,178,180,0,233,20,102,138,143,29,78,154,49,114,33,130,204,207,224,92,111,170,51,221,28,55,199,205,113,189,15,137,42,161,127,228,108,246,84,143,244,114,103,211,136,89,126,240,72,83,241,24,2,3,107,149,90,145,160,156,24,225,19,89,7,241,155,49,228,181,242,171,3,248,96,196,84,245,180,189,205,40,87,179,159,252,200,58,131,63,111,5,252,135,16,36,30,54,206,83,211,125,224,104,9,207,238,114,103,115,129,35,171,96,245,74,57,153,246,194,2,104,163,169,173,249,85,143,49,81,203,198,70,131,65,163,50,42,181,66,203,70,166,189,147,236,248,109,161,226,147,166,206,214,244,243,97,51,5,29,9,129,82,82,197,79,51,165,61,181,37,207,207,208,108,164,69,155,175,60,71,54,75,36,153,199,200,31,149,150,149,128,153,168,250,126,89,73,82,146,20,214,69,38,87,203,200,130,224,229,99,228,28,70,206,62,60,229,9,155,249,161,231,79,255,9,93,150,113,52,180,76,86,9,217,135,32,189,201,101,6,207,253,252,128,32,155,10,181,180,115,130,52,85,6,185,92,171,208,107,4,210,108,82,55,209,62,97,132,62,127,126,193,48,47,228,23,32,205,76,67,41,171,36,154,42,10,228,103,120,86,215,150,84,111,142,155,227,230,184,62,71,164,34,145,172,71,132,120,178,185,192,240,34,146,205,67,61,78,34,147,202,165,18,201,83,72,30,23,15,97,253,66,10,77,170,81,175,105,108,80,154,210,178,7,117,16,233,90,91,80,35,226,202,10,109,80,194,238,34,51,85,214,200,228,121,50,136,16,60,246,65,247,190,205,222,192,217,34,30,94,67,199,83,176,24,211,30,52,12,109,222,192,93,62,244,14,13,111,33,235,50,68,176,157,140,179,239,231,248,137,83,236,88,39,107,2,187,213,225,18,231,125,39,225,119,200,148,127,75,218,239,151,6,128,212,247,229,85,53,0,160,202,90,141,136,87,53,44,100,143,29,65,195,198,133,5,200,184,154,31,64,123,206,128,119,4,143,15,160,126,39,216,10,41,150,66,164,134,144,131,232,217,131,144,96,231,12,58,181,112,4,132,210,129,193,57,7,140,170,34,136,139,214,40,139,203,68,66,40,66,192,128,140,227,33,31,36,131,31,186,65,118,177,124,64,78,47,254,184,66,38,250,171,121,81,9,177,143,62,31,183,249,22,79,189,253,253,184,183,178,170,170,146,55,47,115,195,187,104,109,143,219,167,205,2,253,115,216,58,30,240,127,8,248,205,0,175,177,93,118,205,151,251,0,210,84,50,170,90,200,212,32,228,164,86,138,180,139,13,1,72,240,2,67,90,176,23,176,130,127,63,203,155,231,209,226,24,114,121,184,131,67,65,33,227,223,245,242,167,115,90,217,3,99,155,2,217,167,229,114,165,74,136,21,69,11,39,1,34,248,81,148,130,238,152,182,143,252,210,14,231,116,229,62,124,136,60,44,175,47,45,38,240,97,170,202,170,127,74,164,178,206,147,127,224,49,15,242,29,65,62,166,69,28,38,144,117,59,36,22,139,167,104,229,216,156,153,250,2,5,153,179,74,87,174,211,222,147,158,51,187,191,138,60,199,255,236,48,118,154,244,85,157,237,183,75,100,37,37,161,121,206,35,231,104,192,107,230,70,246,208,174,23,114,12,125,83,129,227,101,60,176,132,230,182,126,63,30,145,107,30,20,162,65,11,218,17,79,166,205,44,60,210,9,94,76,195,152,81,87,169,84,42,0,51,202,171,180,34,137,173,97,204,176,59,216,149,41,217,79,198,182,38,170,49,49,50,228,241,17,160,176,43,110,206,189,6,28,246,227,25,59,185,37,83,223,209,201,130,224,242,56,9,55,14,19,148,140,82,148,76,1,155,88,238,99,143,166,190,170,80,167,124,196,168,149,242,162,7,165,9,224,194,121,14,241,206,168,172,202,244,210,216,66,166,24,52,238,80,30,113,174,67,158,236,193,118,228,126,3,113,159,206,49,162,64,194,46,228,25,255,10,192,80,87,85,147,167,163,193,123,58,249,61,145,196,244,16,24,158,155,158,183,203,106,228,121,194,252,161,71,226,164,153,160,3,182,30,114,187,3,132,175,146,109,137,237,179,201,184,254,81,126,113,149,0,3,184,240,94,31,253,183,135,15,164,250,214,231,20,36,42,75,139,235,105,208,117,81,85,125,2,171,31,217,83,56,115,63,59,185,132,237,171,32,33,191,159,69,159,60,225,170,57,200,190,10,105,200,131,30,194,91,170,141,141,173,38,89,169,134,249,205,220,11,145,119,123,159,228,74,214,181,68,246,28,214,58,40,21,120,157,99,64,169,86,171,31,20,165,0,148,29,11,158,113,34,231,71,8,221,116,153,217,83,7,158,153,225,172,4,10,189,194,87,10,70,86,85,93,41,211,200,181,16,149,219,191,12,181,13,222,244,178,110,51,17,105,88,223,9,182,189,37,2,76,192,107,35,146,221,215,0,150,199,15,30,43,31,0,88,10,181,101,9,192,66,196,137,128,119,158,200,231,80,165,228,237,123,216,111,168,104,66,160,196,121,250,101,96,211,147,17,185,86,96,39,132,132,184,253,77,126,200,9,1,153,203,67,220,208,39,153,138,70,43,123,135,248,254,173,11,66,229,60,20,44,170,71,101,68,95,231,235,31,107,36,117,164,190,222,218,226,186,194,7,15,105,128,173,174,78,164,197,252,83,163,62,108,110,6,211,190,247,29,65,116,216,24,104,179,196,192,113,47,96,193,252,41,224,250,192,20,17,182,8,174,103,47,180,40,177,249,152,81,144,23,163,74,163,101,84,121,212,124,252,188,181,89,249,156,97,228,121,224,217,249,185,135,97,26,95,196,154,143,83,136,43,74,119,214,95,44,102,72,113,137,152,161,204,67,54,133,128,161,11,64,54,203,193,64,233,82,70,126,138,83,16,183,174,231,144,79,252,2,189,218,147,2,48,175,76,87,204,84,11,217,19,58,69,98,214,130,214,215,249,237,15,4,124,68,59,9,120,29,181,69,101,96,15,218,221,71,235,39,96,35,233,157,71,39,199,120,103,13,79,141,115,7,14,206,108,73,189,131,123,150,248,140,214,160,51,24,212,140,158,82,67,75,79,55,120,168,94,194,31,5,161,139,167,47,46,80,18,61,109,16,164,211,96,62,179,171,150,159,238,88,147,226,127,38,143,172,224,114,233,67,173,2,242,80,84,90,166,84,36,57,46,18,151,1,81,192,217,70,139,25,170,74,137,136,172,45,229,62,91,136,56,141,189,22,2,51,110,115,16,204,48,43,68,61,159,135,196,160,189,41,214,225,97,135,63,11,78,119,153,170,84,184,70,48,80,19,145,74,85,250,197,177,93,165,214,27,180,42,157,81,192,246,238,214,102,130,232,58,224,253,198,86,134,209,95,4,219,179,0,164,44,209,67,10,43,159,159,249,217,164,76,49,137,252,33,81,253,173,197,157,33,194,166,117,141,156,33,169,56,60,210,137,8,174,204,147,215,149,151,72,71,4,211,245,7,245,110,118,9,15,155,177,107,23,77,244,242,182,253,192,241,188,76,72,9,132,146,117,126,39,178,244,19,253,7,237,140,209,132,241,1,118,108,144,176,78,225,6,145,130,199,217,72,215,17,215,14,83,39,132,251,76,201,195,18,48,84,43,30,21,87,169,165,54,134,65,15,235,222,227,135,70,241,204,50,231,246,177,254,9,180,54,143,28,243,224,223,0,203,193,40,158,60,133,244,146,229,67,228,166,134,233,65,15,239,114,9,142,31,110,96,143,27,59,129,107,118,39,249,137,143,4,86,176,157,156,156,161,181,119,228,71,174,8,74,201,142,203,66,241,94,117,225,3,90,241,65,167,85,104,31,75,65,145,18,37,242,246,33,162,59,31,110,161,181,125,180,176,143,108,103,80,51,238,212,1,217,119,7,135,200,51,137,167,9,42,189,195,54,7,94,62,130,186,27,119,42,239,32,39,205,12,155,222,21,180,113,126,234,140,155,59,98,151,247,145,203,122,77,0,88,80,166,208,221,171,98,212,42,69,125,113,181,72,161,29,10,192,48,203,197,51,189,68,68,87,18,124,99,109,219,132,50,89,255,34,218,61,10,120,237,16,25,51,121,26,46,176,7,21,248,124,59,124,255,137,80,213,1,206,251,125,156,219,205,29,124,102,247,55,241,200,25,119,224,249,74,232,244,94,69,37,83,15,109,107,84,133,21,90,169,13,11,239,207,32,247,40,183,242,22,187,236,220,217,44,58,157,161,121,95,239,240,10,193,188,109,116,244,17,28,41,155,4,118,67,4,124,236,166,29,57,71,201,87,228,46,122,139,143,160,32,216,125,104,128,145,0,52,40,211,112,226,23,51,253,229,102,242,225,165,161,172,213,148,42,149,224,182,123,248,160,92,196,78,22,20,147,63,17,46,198,13,239,17,150,23,240,14,1,158,89,250,3,71,30,52,100,198,158,125,234,136,25,133,124,101,34,57,140,57,136,92,0,66,129,123,133,236,196,216,177,206,79,206,129,40,61,189,72,254,6,175,57,92,39,226,3,187,48,70,238,253,138,160,156,170,243,39,117,216,23,234,212,133,247,53,192,2,212,21,245,121,82,24,238,28,227,7,95,11,197,53,105,90,56,20,212,132,84,124,199,22,182,158,17,21,133,32,182,38,224,255,44,20,183,131,61,198,190,199,207,109,83,79,242,34,112,1,136,155,59,12,156,65,169,23,206,60,74,62,226,169,57,206,189,243,21,65,254,82,48,214,150,213,21,144,125,74,197,84,21,253,83,138,205,18,16,170,9,8,133,237,138,157,132,114,101,66,1,89,186,137,59,241,135,21,194,28,112,255,39,136,6,118,45,129,12,176,126,130,204,199,104,106,88,204,15,251,117,238,71,133,121,247,30,49,242,36,27,58,222,89,135,88,23,235,24,59,184,132,5,72,68,24,139,216,201,37,180,51,139,63,77,33,235,220,181,129,74,217,131,251,74,64,31,117,94,161,72,153,37,65,106,62,242,128,143,105,175,47,88,194,103,106,16,219,236,220,193,50,111,238,37,244,200,207,126,162,97,65,163,129,19,7,185,134,192,41,224,245,211,170,63,64,210,176,235,156,56,209,216,40,149,38,71,240,58,173,69,48,180,131,166,214,197,2,99,114,115,171,46,120,88,161,172,170,130,77,228,81,189,188,72,74,150,217,246,113,158,126,236,221,70,190,13,34,207,17,244,33,0,9,248,28,10,53,57,65,212,12,108,38,242,223,33,153,180,146,236,223,188,207,207,246,111,32,247,60,124,97,35,162,246,48,63,3,187,12,59,121,72,54,35,40,80,229,251,8,172,240,44,190,36,70,142,130,168,80,153,167,81,10,86,88,73,173,3,90,239,173,206,128,92,66,105,11,120,245,156,143,160,19,187,229,16,10,85,99,235,56,26,94,12,99,14,114,248,9,238,209,82,191,158,212,57,81,58,14,167,168,43,34,206,11,95,130,110,45,164,137,130,187,121,229,128,81,241,230,121,188,236,12,183,179,137,84,172,91,219,27,159,152,192,192,255,68,223,40,51,60,213,183,181,25,137,22,109,108,209,119,155,158,27,159,40,136,98,42,11,125,253,68,175,146,193,229,207,186,200,135,160,55,64,223,104,106,36,155,47,173,48,241,68,158,247,180,131,92,116,75,166,111,188,221,210,110,32,63,209,222,246,227,45,133,112,162,163,189,203,36,156,96,232,103,242,181,177,185,189,243,21,89,165,246,86,35,148,223,20,47,136,96,234,170,232,210,201,254,46,251,182,181,91,37,255,86,246,29,125,163,133,26,8,17,102,0,50,101,173,134,249,155,92,161,142,53,40,232,187,159,152,186,141,173,244,183,219,140,47,245,141,17,167,244,141,181,96,54,186,165,239,233,110,47,32,51,106,107,239,108,213,183,188,248,241,150,22,252,0,194,167,167,130,241,95,70,237,124,228,43,130,45,193,15,228,27,157,252,150,172,211,248,175,30,99,87,119,93,103,164,71,196,248,50,140,111,255,250,187,190,163,227,199,188,194,98,230,126,145,86,241,103,195,143,161,233,254,185,229,71,133,234,207,4,40,198,31,219,140,221,70,125,151,241,207,250,166,38,83,139,137,204,250,252,34,2,166,243,15,212,202,101,104,111,233,105,109,35,67,124,9,211,37,227,121,169,147,255,57,12,110,213,173,16,66,68,85,126,8,173,44,89,69,88,83,34,60,30,157,161,241,225,200,98,16,81,72,21,103,148,233,12,25,101,98,177,171,92,35,147,68,172,78,64,42,113,148,233,140,64,153,86,77,12,202,40,213,169,162,76,52,14,40,25,230,111,10,53,147,14,14,208,33,181,233,91,141,180,124,135,190,81,24,139,128,23,157,224,252,1,196,184,204,26,43,213,23,88,227,150,246,230,118,50,153,151,100,50,162,75,43,82,141,228,251,216,154,32,225,217,55,62,121,218,254,220,216,249,4,110,129,159,208,71,173,119,236,186,17,65,26,86,172,91,223,32,59,127,43,167,171,72,225,65,228,107,131,222,148,148,86,21,76,144,86,21,170,24,90,141,120,22,120,197,219,244,207,165,92,80,63,60,85,228,71,97,49,53,129,147,41,152,104,177,17,108,238,253,117,160,63,136,194,63,220,37,23,199,187,214,9,164,194,248,216,73,56,204,249,190,64,150,176,233,220,126,249,119,202,240,187,155,219,200,137,142,70,194,243,23,246,131,86,161,168,38,96,98,78,255,136,185,136,244,249,10,197,5,16,248,245,128,249,30,246,162,187,148,163,18,58,204,99,242,24,249,93,225,171,46,120,53,181,54,67,73,232,136,183,119,158,117,17,117,38,147,14,188,196,14,140,116,26,52,61,124,124,191,44,239,30,52,104,210,233,238,105,69,202,14,53,26,98,124,11,33,39,6,187,225,39,82,153,80,50,23,2,225,252,3,1,127,47,26,25,65,107,144,231,7,10,255,2,52,69,137,68,155,4,13,79,179,90,205,66,67,94,244,42,163,46,143,49,24,104,53,139,110,77,30,56,167,105,53,11,240,82,144,47,98,170,89,200,85,204,43,173,86,194,63,17,116,47,147,107,206,221,203,90,109,208,111,145,42,92,238,134,72,56,68,203,145,166,252,76,47,97,126,138,163,138,224,44,48,156,52,252,111,25,68,201,188,170,2,117,213,69,80,18,89,95,11,85,88,133,120,180,127,252,227,94,17,32,1,81,9,20,1,239,144,58,156,208,70,118,61,252,225,84,40,183,33,68,175,253,23,216,92,168,32,152,43,248,170,54,104,52,141,58,70,192,215,174,78,37,120,142,149,217,192,215,140,0,45,115,200,156,194,226,231,103,98,200,226,152,30,122,17,245,73,61,233,148,9,159,90,76,109,81,98,11,209,5,210,153,163,182,168,162,140,41,72,50,199,243,226,254,103,253,216,191,130,7,156,220,231,79,52,148,223,35,116,161,66,246,126,242,143,204,151,254,123,23,190,30,239,188,69,174,45,238,112,151,168,118,130,143,48,82,85,73,119,172,76,149,74,173,75,54,86,246,195,7,100,239,197,31,86,56,247,25,178,59,32,240,49,60,154,217,83,222,245,49,224,159,6,131,176,215,133,167,143,136,226,133,45,155,151,30,153,250,81,121,185,246,97,82,76,161,105,13,220,201,6,58,180,160,79,30,200,33,25,180,112,238,77,218,175,110,158,51,211,142,206,19,235,68,107,70,75,142,128,215,33,116,116,36,103,240,238,100,192,55,207,157,189,3,109,177,119,27,155,183,208,169,57,224,27,185,244,184,85,245,170,82,70,157,151,100,220,66,46,7,180,227,59,217,32,224,164,65,68,102,2,96,96,221,97,196,112,142,66,240,164,243,53,178,184,64,129,119,29,243,67,163,80,182,126,118,23,237,30,145,175,130,138,235,229,134,91,117,239,81,233,189,199,201,134,59,179,140,214,173,176,238,180,53,54,228,24,127,88,65,19,39,232,53,108,54,144,139,195,13,239,178,182,33,33,105,71,72,210,17,188,217,66,28,249,229,135,249,176,166,74,174,168,73,50,76,238,96,18,245,158,85,252,167,50,152,32,196,250,173,120,103,85,24,26,187,60,137,156,227,130,49,41,112,12,52,22,60,223,191,201,191,222,131,162,76,91,35,200,183,17,228,28,194,96,67,250,190,116,9,187,24,182,34,188,252,233,79,66,200,232,232,76,192,247,1,91,207,8,134,82,9,149,156,143,222,68,245,157,70,189,44,248,250,164,181,91,214,214,37,188,125,218,222,211,37,168,218,41,136,164,244,98,225,47,8,162,240,152,248,40,213,214,72,127,125,58,191,75,62,81,169,183,139,10,185,18,1,136,183,34,21,202,22,99,83,119,112,6,66,16,129,169,205,208,210,211,104,148,61,55,117,118,247,192,86,74,180,1,163,193,164,111,185,75,54,186,60,213,35,134,17,158,245,196,208,222,214,100,106,166,107,123,43,62,234,160,245,73,72,65,38,98,124,170,192,33,151,10,127,66,195,239,2,37,232,199,91,80,166,241,169,169,209,248,93,119,103,143,241,251,70,99,139,254,213,119,10,134,17,10,62,134,227,131,171,219,161,212,130,48,25,97,112,226,184,154,112,62,114,57,163,38,79,255,59,217,193,228,76,158,66,43,18,57,1,122,201,211,70,241,152,137,56,253,75,84,171,107,111,105,164,207,4,197,238,219,239,190,21,158,31,188,85,25,173,220,5,169,47,58,16,154,92,22,17,7,221,12,202,182,204,68,198,47,204,93,102,232,233,236,52,182,117,203,232,167,219,250,84,2,169,26,158,221,17,112,50,28,126,146,31,73,16,226,113,57,145,138,36,40,131,79,130,128,36,34,143,84,204,83,4,24,131,163,107,105,185,13,55,116,37,44,95,145,164,20,102,71,98,161,88,250,198,187,18,119,74,245,202,150,168,244,153,196,24,153,112,253,4,48,188,108,130,117,138,90,22,178,42,47,155,98,86,165,225,217,221,255,32,239,111,43,110,151,223,135,62,19,30,178,60,241,220,58,197,103,26,187,226,31,10,184,64,206,39,124,108,192,71,119,58,177,39,71,151,123,141,98,8,65,110,64,241,4,148,236,88,28,23,55,192,4,239,38,34,222,207,79,94,189,124,218,148,188,76,107,192,187,206,155,109,104,253,132,12,48,126,1,35,201,216,212,33,25,153,23,142,96,38,68,213,245,44,65,37,86,130,122,252,188,147,136,191,228,47,148,209,231,78,252,120,241,20,219,78,41,120,164,176,11,52,153,168,160,63,224,115,38,67,164,162,66,192,125,183,73,97,20,97,150,166,86,125,115,136,225,19,152,64,40,159,100,137,147,142,252,96,126,152,237,61,187,220,43,68,144,113,155,27,104,207,201,218,172,162,227,19,141,88,139,53,183,71,18,126,151,32,126,223,21,163,141,120,114,135,229,191,45,178,252,244,234,20,176,191,139,176,85,34,105,48,183,99,255,147,71,189,15,125,146,211,237,41,136,187,101,85,165,132,102,214,143,217,133,89,228,19,239,197,75,103,38,62,151,184,17,118,73,12,209,160,111,49,244,180,232,187,219,59,239,42,133,221,49,159,32,3,183,127,200,185,87,88,247,12,154,147,72,160,73,243,209,160,240,198,63,156,162,202,249,83,161,212,204,70,124,214,112,82,9,41,118,241,68,76,113,193,128,67,127,224,100,34,218,160,151,98,218,78,244,46,69,77,162,137,50,121,164,208,234,75,102,245,164,209,152,64,93,165,132,214,87,74,121,77,145,74,68,30,14,138,144,130,225,228,91,104,80,224,250,196,250,151,216,205,37,170,8,237,224,197,113,126,238,144,179,14,114,110,31,62,222,198,159,87,190,141,177,185,80,251,7,225,40,220,208,59,110,108,93,216,181,99,225,25,199,118,50,96,29,161,53,160,52,26,131,150,105,48,54,130,117,228,133,194,168,253,153,97,84,63,95,166,56,112,122,32,200,84,6,79,206,0,40,121,46,78,218,0,186,194,68,156,20,145,93,28,99,83,153,87,124,172,181,20,119,251,162,105,58,217,170,3,89,163,40,171,168,135,222,4,186,34,77,173,88,132,115,36,51,185,21,150,214,240,104,31,107,27,133,160,230,213,55,80,221,101,97,25,210,134,173,103,188,203,140,247,104,4,229,209,103,126,241,13,63,103,135,93,99,120,1,77,198,22,29,79,133,201,68,77,41,107,244,100,48,54,170,148,140,74,23,164,39,29,193,104,249,47,210,244,148,66,126,195,229,192,148,38,227,201,80,117,200,20,17,65,124,213,46,51,225,47,82,124,46,107,228,84,166,40,211,66,80,143,70,174,170,16,41,255,19,67,78,94,51,235,3,243,36,242,246,225,201,83,116,108,230,231,198,184,253,29,136,160,91,63,38,39,33,144,231,243,22,26,155,201,89,226,81,168,180,77,141,121,122,121,144,120,244,132,108,148,45,151,35,158,52,128,242,133,72,37,181,69,150,32,149,148,167,151,22,97,68,155,33,227,110,136,76,232,73,72,11,17,9,62,9,175,19,79,248,137,187,37,97,67,223,88,25,61,250,248,147,244,87,151,63,226,18,133,146,179,153,52,240,163,184,172,182,148,102,141,233,20,98,101,20,18,226,71,30,3,233,8,161,152,200,128,207,134,135,87,241,226,14,58,124,3,222,139,197,25,228,130,76,26,53,114,195,59,242,153,31,26,85,193,7,79,47,191,146,11,141,184,51,222,134,77,167,42,174,133,102,230,170,106,93,149,72,151,212,196,2,224,206,6,222,179,9,155,146,66,30,134,217,239,199,243,242,60,248,228,182,8,21,180,208,230,8,54,251,201,150,196,125,182,40,180,208,106,18,89,114,161,73,97,230,59,170,213,151,168,203,5,96,150,138,197,43,39,2,230,111,230,97,72,61,178,207,144,211,236,228,30,183,239,197,179,19,216,187,139,92,75,4,138,172,123,133,29,27,196,139,43,129,211,145,223,204,35,236,228,22,57,25,56,91,228,231,93,208,167,147,22,159,189,134,16,173,41,171,80,86,16,177,73,169,126,248,147,58,93,177,9,250,203,158,189,129,154,49,35,75,200,210,203,185,189,80,102,201,57,141,44,31,216,205,93,126,104,28,79,238,6,252,179,100,119,8,28,121,4,3,45,191,49,77,206,224,15,167,215,16,150,181,154,106,186,175,202,117,58,85,105,69,154,176,20,68,74,118,238,52,224,29,162,114,230,25,101,153,59,232,172,159,219,123,71,40,29,218,168,245,29,161,33,219,53,132,92,77,77,221,61,141,22,232,186,248,65,85,101,186,88,104,217,2,95,250,137,19,82,99,66,152,199,30,239,163,157,89,126,117,17,29,126,36,76,81,9,145,8,190,179,28,1,93,214,118,238,199,5,247,30,213,64,3,86,245,227,234,10,177,244,185,68,112,84,231,105,209,250,12,20,203,90,219,68,150,125,52,234,3,159,184,101,143,221,92,226,14,122,5,248,242,43,71,236,130,27,182,247,189,41,116,246,158,55,47,241,22,59,185,32,71,0,155,81,156,124,92,84,91,6,37,216,84,69,53,105,111,220,1,175,7,57,61,16,27,225,91,0,64,46,45,225,183,243,120,242,232,55,115,47,30,25,228,206,122,9,90,226,89,7,187,226,134,54,76,174,17,104,171,228,178,225,190,45,16,158,4,209,249,186,129,179,160,168,244,81,61,163,86,168,11,75,239,139,37,213,36,148,131,136,250,61,237,65,11,111,208,154,29,66,57,102,32,173,24,127,92,34,0,70,107,3,200,109,99,79,220,112,237,201,20,4,95,249,214,200,251,220,104,231,153,113,40,62,40,86,61,174,101,212,42,185,230,167,122,145,226,154,9,161,168,193,46,171,0,73,193,27,2,168,55,52,197,247,15,163,177,1,168,26,57,234,131,140,55,151,100,157,209,168,33,127,125,160,43,168,46,172,132,221,89,113,143,81,166,203,27,5,255,63,97,134,4,60,80,140,118,177,159,124,195,250,7,145,117,46,92,99,16,251,87,2,190,73,200,117,117,238,226,81,155,144,1,79,192,12,113,125,246,233,235,8,81,93,177,226,254,99,144,119,238,221,123,44,86,109,39,33,73,219,38,128,164,215,103,144,117,27,234,39,156,14,8,33,131,68,246,249,213,236,162,219,181,15,143,15,65,249,193,163,61,110,111,37,224,93,96,39,179,73,210,210,221,89,225,72,47,50,34,222,188,209,17,229,250,125,18,170,99,146,220,181,25,19,137,34,81,21,158,2,53,162,16,74,244,112,34,92,219,177,222,78,48,172,8,12,225,98,142,203,176,195,82,241,181,57,44,195,227,201,152,116,245,50,218,115,41,200,83,178,11,72,83,23,245,103,74,4,132,103,166,51,103,146,74,75,58,120,49,170,13,122,185,162,129,86,90,250,69,175,109,8,121,246,122,200,255,13,198,244,235,23,102,2,134,25,117,136,126,101,16,78,193,119,154,25,8,95,161,71,53,85,42,76,164,228,92,100,186,137,91,157,230,138,159,53,52,156,108,249,135,146,40,69,47,99,29,68,105,168,65,153,240,17,125,65,250,148,51,212,23,107,108,48,26,117,148,62,95,200,21,175,154,8,89,26,128,62,53,42,242,191,250,2,181,230,210,4,225,23,242,40,165,136,22,25,80,150,175,151,187,53,137,82,28,67,78,23,83,131,175,3,93,229,105,243,242,20,42,141,146,210,21,243,47,70,201,48,10,90,195,177,179,139,236,123,61,23,160,171,139,194,242,11,17,88,138,136,146,105,243,73,174,250,111,133,0,90,33,0,246,118,155,241,69,34,252,21,185,173,133,224,176,44,242,195,109,154,207,242,178,137,38,177,36,217,155,147,69,224,211,107,34,163,130,163,30,4,249,9,208,130,221,134,71,182,5,102,39,21,229,26,245,123,231,142,232,20,70,72,239,32,202,62,197,134,231,250,150,30,35,212,56,136,121,104,234,37,234,37,175,48,181,117,244,116,203,40,97,221,122,106,106,108,52,182,69,71,213,63,17,230,252,132,14,65,200,15,122,217,36,139,255,234,150,44,60,72,89,2,105,60,9,131,79,109,161,59,58,77,6,35,172,52,125,115,101,75,45,244,185,188,226,165,14,61,244,202,151,154,194,54,171,107,29,57,158,134,158,238,238,118,50,30,161,206,70,120,92,47,155,130,12,34,252,72,72,69,160,182,14,201,71,75,62,54,30,185,200,102,122,187,211,72,56,117,171,177,173,49,66,174,79,48,242,136,165,21,126,163,165,227,54,76,33,17,247,58,119,23,9,80,52,54,202,130,152,27,92,93,1,69,19,47,114,196,175,116,144,13,199,8,177,230,38,61,132,197,59,182,56,251,88,186,191,33,224,101,144,145,164,121,111,87,79,195,11,253,43,114,183,203,195,79,244,66,102,72,186,63,64,171,227,8,73,122,200,67,52,182,67,244,102,36,237,31,49,182,52,181,27,12,61,29,180,246,201,173,124,214,225,73,101,40,210,132,18,143,31,100,109,27,218,19,233,121,98,183,200,162,23,153,156,185,149,47,126,119,98,114,77,146,4,150,137,67,200,209,0,199,234,221,223,28,43,1,255,122,192,59,146,10,127,203,200,179,83,201,61,41,122,248,143,134,96,70,166,132,203,125,104,156,27,237,251,247,97,208,184,191,112,194,207,89,216,181,83,130,215,73,205,204,153,27,228,163,159,138,18,14,146,72,77,252,59,231,191,15,3,190,113,60,183,75,244,164,43,28,219,195,98,99,194,177,113,214,119,16,8,248,246,8,57,197,91,73,101,250,72,59,43,74,158,98,86,212,223,127,54,190,122,209,222,217,248,227,127,180,116,252,124,251,89,243,237,127,189,250,229,188,198,17,249,219,125,27,210,238,164,0,17,102,28,151,132,129,100,150,92,248,130,171,35,236,219,234,32,105,231,22,81,87,27,254,153,16,39,131,196,76,208,210,239,35,164,189,112,194,189,179,177,67,83,104,33,190,248,105,246,6,89,83,145,152,112,248,211,57,124,52,77,134,119,186,66,94,209,106,242,88,189,12,2,240,241,253,100,12,7,31,28,254,251,16,251,231,240,156,143,31,26,205,77,202,86,222,80,118,250,131,160,132,172,190,173,205,77,202,126,156,120,39,100,87,44,156,231,176,178,162,248,42,9,185,32,49,177,16,110,131,189,22,188,189,130,151,199,241,81,242,160,198,12,142,172,184,58,5,50,230,55,166,209,177,153,16,51,225,50,22,27,235,152,206,89,122,86,73,208,51,19,155,191,124,67,198,2,25,107,111,203,153,47,73,199,146,100,252,83,113,98,50,246,67,246,8,158,155,224,223,58,144,221,131,69,154,59,92,122,108,210,60,166,62,49,213,68,75,15,176,77,111,157,162,181,237,84,162,233,51,55,200,154,202,127,36,28,36,246,120,145,123,94,208,94,144,79,188,15,118,166,143,180,233,89,253,245,211,115,218,246,70,162,191,71,154,87,168,246,158,35,220,66,168,1,194,126,60,229,205,182,220,218,246,171,12,15,19,43,153,235,103,104,111,47,179,216,158,188,228,79,168,46,82,167,225,213,47,175,158,222,149,28,220,27,59,178,46,4,124,27,200,55,144,65,61,56,150,218,36,135,7,149,100,94,189,148,28,30,20,143,115,219,112,223,6,235,200,140,77,35,221,129,255,17,216,4,189,224,202,8,25,187,62,160,241,45,182,127,135,159,217,202,169,125,191,162,186,60,241,214,74,85,241,127,31,66,47,153,215,163,100,139,205,10,165,136,13,173,176,182,56,177,72,66,100,101,246,163,27,108,108,31,8,183,97,215,215,3,62,241,38,241,217,24,29,83,91,244,232,28,197,91,58,94,190,252,197,112,187,171,75,114,243,247,110,227,79,80,126,17,90,1,236,76,242,11,230,76,129,50,19,147,185,161,237,11,14,66,216,164,39,122,89,219,40,76,16,226,92,114,135,182,11,255,89,81,145,6,138,198,152,224,132,79,99,86,126,110,245,234,72,190,250,97,98,219,63,254,228,97,55,78,137,98,60,59,138,142,62,225,145,83,48,174,103,195,70,40,53,192,134,138,194,196,236,242,245,40,217,183,145,221,193,79,110,220,144,247,37,166,149,59,228,77,54,109,182,239,8,143,185,216,253,213,92,34,111,166,58,152,74,36,93,30,5,228,219,44,138,224,82,68,82,85,255,40,109,99,255,149,14,208,248,223,137,217,12,17,118,216,205,113,246,108,133,61,91,38,66,5,90,200,140,137,48,19,99,191,110,180,124,17,109,29,2,25,114,74,75,167,97,233,185,165,159,63,50,254,148,26,115,32,219,21,223,191,114,133,180,87,157,196,2,126,182,136,172,219,33,11,56,187,186,137,87,250,174,114,139,255,34,108,53,19,3,15,114,6,101,226,194,162,162,172,225,95,175,114,145,53,208,11,174,78,67,63,56,196,135,230,92,218,224,139,202,30,87,38,193,196,15,120,120,10,125,156,71,123,123,87,71,31,247,26,19,143,10,13,46,195,214,190,182,201,155,231,217,185,83,60,227,187,202,189,157,121,108,52,164,33,124,4,188,211,32,172,83,143,65,174,81,178,74,126,67,201,105,14,66,160,100,170,28,230,18,37,23,26,202,83,84,27,51,101,241,77,81,219,174,73,65,12,38,155,48,21,132,33,231,238,74,85,237,242,196,129,5,4,90,248,243,6,84,127,234,255,68,116,136,92,163,94,229,13,241,166,57,8,74,175,252,138,47,112,244,101,124,93,82,136,88,150,36,118,77,232,129,198,79,244,10,222,231,21,31,63,254,30,239,197,119,187,205,218,0,155,234,146,108,121,158,121,244,105,55,139,142,46,113,243,189,161,36,113,52,29,5,20,1,216,234,24,120,22,214,182,217,215,201,11,69,100,226,72,131,136,181,215,70,152,190,136,158,221,100,106,107,204,37,61,187,70,78,16,152,133,122,96,57,196,29,170,26,19,115,7,118,242,64,224,11,67,227,80,6,210,238,64,110,239,21,74,195,247,19,11,30,1,239,9,158,219,21,28,206,87,199,26,254,153,150,140,46,72,231,66,64,65,174,49,136,115,78,144,167,213,198,241,138,200,184,86,242,95,112,206,57,197,23,232,5,87,70,193,130,237,36,199,72,152,169,54,36,145,206,163,208,17,12,5,171,19,87,106,175,174,173,79,28,152,46,12,240,11,88,250,43,245,181,233,56,193,247,150,144,125,38,7,109,102,231,244,170,200,203,75,117,159,111,236,206,197,125,158,94,112,197,150,239,28,163,231,194,106,99,109,210,88,86,151,135,82,50,235,52,7,124,224,233,185,58,154,209,23,39,201,111,91,29,35,146,176,16,111,115,133,44,198,152,204,37,6,193,54,68,74,199,189,175,255,125,8,175,125,27,185,156,66,38,16,179,230,134,152,83,26,132,96,55,179,130,132,149,99,196,204,84,23,37,54,82,17,84,228,14,6,64,174,190,74,43,115,141,190,41,141,141,47,224,155,100,151,206,136,36,59,177,131,38,146,87,233,204,212,40,11,43,11,146,69,208,13,65,225,203,163,51,126,246,19,223,191,18,56,90,204,109,122,86,127,229,244,124,17,37,92,200,188,207,37,53,28,54,125,42,112,230,18,159,40,108,42,46,75,230,44,227,23,6,2,222,105,232,32,224,221,69,214,5,232,128,238,185,66,131,88,83,69,98,177,132,159,27,13,120,135,185,225,61,116,108,190,66,113,228,81,226,0,96,176,110,14,126,38,82,30,63,63,8,229,136,150,28,255,62,100,125,171,236,210,167,76,133,13,100,98,26,65,94,33,103,34,67,98,20,113,188,34,113,154,105,119,87,46,50,13,122,193,213,105,232,39,14,161,39,73,46,17,55,83,156,76,8,176,59,248,137,207,191,31,91,137,52,192,31,89,240,209,244,239,199,182,96,105,136,201,37,108,238,189,210,192,245,166,178,255,78,28,197,186,112,132,54,250,217,73,47,218,29,69,195,11,87,58,182,255,14,198,4,75,183,101,0,66,255,247,161,144,34,147,179,65,234,194,127,202,212,132,129,27,186,110,139,40,220,147,67,116,93,84,81,88,149,116,243,241,251,132,4,15,100,247,176,142,245,171,163,148,154,199,137,133,103,65,6,98,253,78,33,85,123,207,140,86,102,175,112,219,174,76,146,18,123,236,11,156,140,19,157,8,237,108,16,169,34,83,81,252,153,24,187,8,33,235,110,8,57,133,65,8,132,60,104,1,75,52,84,59,202,29,66,102,30,235,19,123,116,88,135,15,251,198,178,82,7,73,114,23,254,239,36,86,64,234,152,131,118,97,190,77,66,191,251,62,220,183,193,141,92,93,6,89,97,85,101,83,98,49,97,245,128,12,73,206,104,115,153,114,35,105,85,46,77,185,79,123,244,109,47,115,145,120,47,164,146,135,107,217,229,146,90,46,152,239,114,139,43,60,74,172,147,243,83,96,121,66,22,27,122,61,26,56,113,177,147,91,87,232,25,175,125,144,70,84,15,114,44,241,27,115,248,248,253,85,90,12,152,234,162,164,117,108,34,28,147,236,216,22,242,231,156,249,46,245,40,214,27,7,57,228,137,47,18,138,200,37,34,46,172,168,75,18,239,109,121,143,167,147,247,62,203,212,120,152,123,181,137,189,245,144,58,98,93,96,55,54,217,241,55,124,127,102,226,66,83,27,88,73,226,196,17,246,120,3,141,89,67,169,181,185,70,167,242,248,210,108,95,105,168,27,189,224,15,156,55,194,212,148,234,197,156,83,224,238,193,75,159,2,71,27,87,154,211,29,214,84,179,165,147,166,151,181,146,197,252,148,76,12,52,72,141,234,188,27,106,76,115,16,66,248,184,121,30,29,190,201,45,106,172,76,188,45,128,83,133,72,192,107,155,66,219,224,43,244,97,23,214,37,221,72,143,205,32,246,250,222,93,105,138,104,117,83,226,74,106,200,233,193,71,211,252,196,103,252,241,83,166,202,55,102,98,224,161,160,113,85,20,165,126,197,180,155,168,40,126,130,175,162,187,38,222,238,126,118,155,118,194,33,131,14,21,84,224,103,182,130,53,236,5,74,149,28,69,188,254,77,126,173,85,111,106,35,63,150,65,166,146,166,241,67,30,111,1,137,247,48,50,97,125,70,202,221,59,198,190,127,67,45,242,23,88,195,52,71,172,203,192,128,99,250,168,94,197,176,165,11,140,198,122,114,37,7,109,157,231,93,102,118,225,98,166,249,140,249,165,82,29,110,132,251,245,234,134,27,143,28,105,32,197,185,95,233,234,6,172,184,204,128,195,205,39,174,112,192,242,188,75,140,24,122,238,14,207,6,142,103,113,255,242,85,14,90,115,137,49,243,239,103,217,247,187,151,104,203,112,193,49,199,231,96,164,129,25,180,142,151,224,16,184,138,49,107,36,199,169,20,19,17,126,238,8,138,8,82,221,194,62,96,151,149,8,108,87,204,235,228,234,203,128,124,106,48,224,157,191,132,224,123,209,65,95,134,229,225,201,35,52,61,16,56,113,34,183,229,74,185,158,152,37,53,245,205,219,207,153,123,175,14,185,165,255,131,49,159,35,77,146,216,222,77,116,244,9,237,245,93,197,136,227,241,248,2,80,182,190,71,171,233,35,5,136,191,105,8,212,160,23,200,130,237,188,242,147,206,242,255,26,76,221,175,138,218,27,141,255,115,215,160,111,49,244,180,232,187,219,59,239,10,237,62,255,131,92,68,184,205,253,123,143,106,162,27,131,221,62,191,244,92,215,8,185,153,184,253,67,206,189,194,186,103,208,220,86,88,128,215,199,141,164,81,122,32,49,15,235,234,233,48,118,182,234,59,127,54,118,199,62,141,238,125,220,103,11,242,246,37,122,20,89,13,233,167,153,160,215,101,180,111,65,120,46,220,22,55,189,49,104,165,56,229,193,118,119,228,3,197,20,148,216,174,236,34,77,218,3,190,81,108,27,193,151,238,211,174,188,108,159,246,184,177,127,161,190,237,153,61,82,111,197,89,91,88,193,148,213,48,106,185,162,144,201,43,140,111,197,105,236,162,176,14,183,129,167,219,18,17,196,63,4,124,54,118,193,139,134,124,220,254,230,239,199,180,204,167,215,21,240,218,3,62,39,80,192,145,151,59,27,139,233,252,30,179,34,41,117,98,85,92,162,19,171,161,181,235,118,67,143,129,80,143,84,51,86,57,124,210,106,85,77,121,58,134,54,99,85,52,67,83,86,181,220,192,48,242,167,228,79,123,155,33,253,54,239,23,131,209,213,118,118,207,57,184,166,208,220,253,194,112,77,167,159,123,28,56,147,109,90,233,181,190,77,149,222,242,211,154,108,226,110,238,233,30,137,182,220,28,232,6,127,185,35,189,230,215,113,119,167,222,227,248,65,177,234,113,45,163,86,201,53,63,5,43,231,37,98,172,183,52,68,75,17,58,27,195,10,251,15,127,63,238,101,135,166,248,254,97,52,54,64,116,115,162,47,242,253,39,216,101,139,111,45,159,58,180,115,133,53,52,53,201,25,13,195,104,58,40,107,48,26,8,107,96,128,43,48,61,228,255,134,102,195,157,142,182,52,251,95,167,5,189,203,50,216,84,197,216,52,155,98,167,136,48,249,105,204,53,117,190,144,197,118,243,233,29,87,69,159,213,21,15,239,151,148,48,106,165,90,81,86,172,75,78,159,120,209,76,96,253,155,185,23,191,94,99,109,163,191,31,19,246,60,140,15,14,195,146,108,224,104,9,217,167,9,99,70,195,91,1,223,96,124,171,250,175,143,78,85,141,13,114,185,193,96,8,210,41,161,90,166,81,29,162,211,86,211,5,232,244,66,80,204,77,122,77,21,129,242,47,48,231,172,210,173,84,87,251,47,209,236,222,216,213,148,153,102,247,228,135,110,186,221,159,255,64,86,186,221,19,24,231,68,187,123,88,235,155,126,247,231,63,144,157,126,247,89,93,237,20,26,222,147,231,139,116,188,15,51,205,244,155,222,139,156,250,83,200,226,212,209,217,222,1,207,124,110,108,235,238,250,177,21,166,221,254,220,216,249,189,169,173,219,216,73,158,254,163,138,236,120,223,183,180,183,119,252,216,221,217,99,252,62,61,166,213,98,106,36,128,35,143,233,234,214,119,147,121,208,19,229,198,238,167,237,141,223,181,24,155,186,191,151,126,174,58,244,220,239,228,201,176,61,202,120,70,31,17,109,62,107,106,55,244,116,61,17,78,193,88,94,152,0,250,116,72,119,218,219,232,199,191,252,111,58,146,191,166,130,182,4,209,99,158,214,101,32,159,164,12,107,41,172,70,204,3,146,163,117,242,189,143,108,231,49,131,236,232,52,62,191,21,41,96,194,217,39,194,89,97,231,127,166,127,174,39,83,49,117,116,127,247,61,17,255,244,157,205,70,34,112,0,21,144,189,42,185,57,32,238,137,109,198,151,221,241,79,20,206,94,246,137,23,137,68,185,80,112,74,224,120,150,221,52,179,126,39,235,123,23,240,249,146,198,167,156,179,65,225,247,244,205,4,175,164,164,3,137,149,254,147,36,197,158,3,179,205,248,162,235,137,16,248,34,13,164,243,193,144,59,122,90,158,116,182,247,180,53,202,200,155,14,50,172,196,116,245,39,233,175,210,57,128,201,7,135,112,235,114,214,162,52,45,67,191,154,55,88,135,7,185,182,216,249,129,48,239,20,196,203,100,251,74,22,231,37,34,59,95,66,78,254,130,19,17,81,218,47,160,160,127,201,149,120,92,158,167,41,35,24,166,170,214,85,6,219,211,228,179,142,93,118,172,31,207,124,198,195,235,156,219,195,153,45,200,253,6,185,60,156,167,31,47,173,67,121,253,143,239,194,171,130,188,125,200,229,35,171,133,71,251,32,78,96,237,255,179,247,166,91,109,100,201,194,232,239,234,167,208,245,89,174,234,225,216,100,166,230,170,54,245,97,60,219,216,216,216,238,238,115,214,89,44,33,37,32,91,72,88,18,182,113,127,125,151,48,6,196,12,54,243,96,6,51,121,96,198,32,36,134,181,238,163,84,107,103,166,126,213,43,220,136,76,73,104,200,148,82,66,216,184,78,169,92,128,164,204,157,177,99,71,196,142,216,49,141,133,131,115,95,125,94,119,47,222,191,126,135,1,10,211,149,232,42,74,99,33,206,98,134,129,30,151,71,92,27,201,169,37,236,116,133,3,115,240,55,240,80,124,86,194,118,7,208,26,254,156,27,195,207,197,254,211,95,125,86,229,166,91,198,27,6,105,181,202,117,209,89,225,124,82,56,69,154,24,25,127,43,244,237,199,87,134,219,10,9,59,205,48,25,126,127,133,235,158,69,23,34,98,161,239,171,207,234,118,73,169,249,226,53,74,175,103,24,173,246,102,210,90,33,240,226,92,34,109,189,225,64,103,100,180,59,42,232,66,59,240,22,86,238,52,240,80,217,67,157,233,202,93,88,21,243,37,157,62,26,59,92,28,153,125,37,172,204,132,67,29,100,119,43,133,87,208,145,58,242,6,102,68,214,90,133,195,30,110,114,158,95,218,36,77,243,100,174,91,232,236,253,234,211,185,117,151,126,80,254,0,55,157,75,148,246,74,210,114,144,142,105,210,50,79,90,62,241,139,171,216,35,103,224,144,95,30,66,169,48,184,37,204,116,17,255,240,215,7,254,206,149,171,37,119,145,239,13,247,74,13,201,192,79,172,129,232,253,197,55,65,2,11,92,199,158,112,216,198,249,119,126,241,77,146,64,0,43,161,116,13,145,142,183,124,95,107,65,166,144,89,121,61,166,190,150,122,101,194,251,232,159,201,191,226,131,136,103,57,252,126,63,82,223,194,80,100,230,51,165,253,11,165,35,221,29,17,223,24,55,221,27,63,226,73,212,177,234,92,182,74,49,80,160,210,98,211,212,121,181,38,77,236,93,165,197,36,26,18,209,11,255,249,207,186,198,10,209,152,176,123,110,123,204,154,159,53,63,212,121,117,212,15,154,31,241,15,173,233,135,127,253,43,65,211,66,80,116,140,254,207,52,163,199,167,38,62,209,235,192,193,209,46,210,224,195,31,121,224,237,25,141,199,219,136,42,117,189,203,99,247,218,93,206,31,221,172,195,226,181,63,101,127,170,118,184,44,94,201,140,138,30,136,90,108,118,27,168,122,149,146,245,74,27,107,235,1,212,74,250,140,198,98,59,231,112,89,45,120,255,133,51,140,89,252,32,54,160,104,209,194,123,248,154,173,113,185,27,81,113,173,99,81,65,60,130,58,17,74,139,183,210,238,101,235,68,12,128,46,111,177,37,124,100,177,221,23,45,91,75,131,215,85,2,176,59,93,238,58,139,227,217,133,51,48,227,216,187,90,201,251,40,37,77,195,87,90,154,138,190,137,125,227,102,159,52,176,30,239,3,119,226,201,46,251,60,78,247,79,126,182,212,215,95,48,94,188,76,93,41,53,49,223,91,47,196,0,254,222,113,129,49,127,15,211,98,47,56,89,47,107,241,176,223,91,170,171,237,14,59,26,159,241,139,96,162,71,111,68,75,220,225,170,113,1,132,207,113,77,0,156,231,102,250,251,56,186,180,103,98,145,56,223,125,151,198,141,86,151,187,62,14,86,77,85,145,131,173,177,56,146,3,75,96,69,107,209,178,173,196,59,163,70,77,140,74,211,214,222,141,103,188,57,44,190,120,125,230,213,103,82,86,95,75,253,134,87,95,75,21,120,245,117,39,176,250,25,196,86,202,169,178,91,73,204,220,99,45,182,70,156,1,10,27,48,237,196,83,74,79,173,235,153,40,116,142,4,78,138,205,136,132,229,181,84,105,142,254,76,180,1,147,200,209,82,85,233,180,60,77,141,92,169,101,112,71,138,93,35,154,201,41,56,65,212,198,113,18,15,165,10,7,230,35,190,118,50,191,79,86,182,163,71,252,140,76,252,82,106,20,215,211,228,8,174,51,71,162,217,141,238,133,241,45,208,81,113,184,228,88,170,148,168,171,148,89,201,152,204,177,3,36,192,73,3,114,27,110,178,82,140,24,67,209,70,202,72,209,69,210,87,30,252,109,175,171,241,178,207,189,9,127,158,127,228,73,0,205,230,174,140,126,14,211,47,96,212,64,102,255,96,26,113,38,45,132,232,135,123,106,103,159,21,149,223,121,112,143,162,104,170,200,104,52,48,84,186,243,166,246,89,212,251,151,228,193,139,249,2,249,131,30,178,215,27,241,245,146,185,247,82,104,35,106,165,157,243,92,199,186,208,246,129,127,181,13,198,54,23,120,31,89,88,10,239,118,194,90,39,82,87,6,215,222,73,250,243,40,35,252,50,233,171,12,108,149,69,135,33,57,79,159,234,180,58,138,210,98,72,14,85,107,162,40,139,39,53,36,135,214,81,141,38,147,130,59,47,234,148,131,107,142,156,114,38,83,212,205,151,51,130,138,98,114,32,122,214,245,215,68,223,87,161,23,181,56,87,240,142,192,18,125,114,57,248,220,10,79,173,148,140,171,49,11,181,142,238,11,237,27,100,118,52,50,57,203,245,45,71,90,186,177,78,229,244,16,105,105,230,183,166,97,230,66,31,136,165,233,200,228,168,176,182,40,248,95,71,124,47,249,247,193,200,240,214,105,33,91,150,177,233,88,61,203,70,201,86,111,166,40,215,201,144,109,222,152,42,56,253,102,90,230,226,188,225,148,39,228,216,47,217,99,210,74,183,70,122,231,176,59,19,29,110,96,159,165,155,101,42,38,70,27,50,76,12,12,53,238,211,98,228,93,143,196,125,120,88,182,130,188,73,118,22,201,194,40,55,189,71,214,125,225,189,17,176,213,142,230,147,108,171,229,13,150,46,3,88,220,206,58,224,27,237,220,190,101,174,7,236,244,49,9,211,194,202,1,216,248,40,59,218,223,32,190,199,187,201,202,46,55,188,141,141,165,214,91,184,118,95,225,224,163,152,76,104,155,236,67,233,181,51,195,173,109,97,221,133,209,213,56,76,225,189,254,200,240,6,89,153,0,128,10,140,51,189,217,152,9,103,99,67,72,163,61,83,220,196,18,44,104,56,208,14,16,144,149,57,132,76,18,173,129,30,137,52,73,203,30,105,145,57,91,203,27,172,76,20,38,188,153,4,176,248,151,187,225,224,10,223,179,22,14,189,147,176,130,199,98,43,62,210,61,72,122,253,120,194,60,183,30,217,152,224,182,66,71,96,197,76,122,229,232,246,196,63,83,45,237,50,163,70,209,188,118,75,166,53,67,37,154,60,9,182,140,59,209,150,169,51,166,90,50,134,156,45,25,17,60,45,69,253,153,209,83,169,214,119,38,203,70,132,73,114,211,138,95,73,176,72,214,142,104,131,161,185,115,44,195,197,144,167,225,2,147,121,14,147,57,178,88,140,113,139,37,78,66,153,188,108,25,13,149,163,165,77,254,5,182,144,152,110,176,178,13,164,45,174,238,119,169,238,41,49,54,37,102,153,212,121,53,78,143,244,39,206,224,140,74,101,27,175,149,232,30,21,236,252,45,161,239,190,75,179,172,28,117,137,22,82,14,224,192,27,79,229,83,154,97,232,132,63,17,62,64,142,132,227,168,115,95,180,17,142,48,15,223,63,181,184,53,215,238,148,93,254,91,201,245,139,37,119,42,75,239,220,190,114,253,170,230,130,230,159,34,32,152,157,226,249,81,243,223,69,127,254,103,156,90,145,226,96,22,220,228,50,217,121,251,195,127,198,63,183,186,108,248,121,237,139,132,207,64,197,128,143,138,60,245,172,213,110,113,20,81,148,209,168,187,94,113,171,136,50,81,116,165,19,104,240,153,71,218,89,19,238,193,188,33,28,39,38,98,94,156,79,148,50,63,136,215,253,235,63,211,224,17,58,123,101,225,241,168,132,135,81,9,143,167,225,5,240,191,74,152,182,62,71,70,54,211,97,170,105,84,7,147,86,37,76,53,141,178,240,252,185,72,102,221,96,243,225,70,186,210,97,106,180,170,131,73,167,18,166,70,187,181,214,226,172,81,15,88,100,76,97,1,27,236,136,113,117,208,233,85,175,162,93,113,25,229,209,54,247,158,219,154,79,135,206,251,72,29,96,38,149,128,121,31,229,0,83,55,30,164,167,195,228,84,7,19,173,150,188,156,201,48,21,101,65,212,7,80,51,100,16,165,146,230,141,106,17,213,152,11,80,189,107,178,180,229,181,168,167,45,90,173,196,138,14,170,126,29,249,222,105,208,19,211,161,123,81,171,14,48,131,74,192,94,212,170,135,41,124,56,73,214,215,211,97,170,242,168,130,137,161,84,194,84,229,201,65,66,76,190,38,27,227,233,48,61,177,169,195,147,90,210,122,98,203,1,166,166,207,225,221,118,153,181,107,112,54,218,213,161,74,237,206,35,14,153,131,116,0,235,77,142,170,170,88,123,173,69,37,104,106,37,132,52,102,14,88,123,189,32,203,143,79,236,78,213,252,200,168,149,245,209,65,115,128,110,100,131,76,129,209,187,154,14,96,53,108,105,214,90,214,89,83,3,127,168,3,83,237,134,153,52,180,122,96,193,124,147,69,229,51,54,7,84,170,229,140,232,160,185,108,155,139,124,95,107,58,116,54,139,67,37,9,170,221,56,113,68,149,90,89,199,4,183,59,36,131,177,134,90,117,232,210,170,21,184,56,162,2,174,210,49,213,178,68,198,247,101,88,34,27,153,221,160,168,34,167,104,194,84,62,169,201,6,208,179,103,114,240,252,143,116,131,141,173,182,52,56,188,165,160,244,255,168,57,85,0,254,225,95,96,229,73,54,75,138,67,170,174,18,213,76,39,235,64,199,145,90,27,14,46,149,126,196,108,184,88,36,48,152,104,181,118,152,149,24,85,108,99,29,150,198,31,25,138,250,233,76,82,26,252,61,151,131,149,113,101,161,31,167,214,150,104,214,31,157,224,69,61,87,74,222,21,140,174,72,74,180,71,47,215,209,189,53,184,2,26,187,213,37,97,81,99,109,112,187,197,248,205,204,231,49,103,138,37,91,88,62,132,34,227,51,113,156,115,207,44,246,42,139,235,28,226,85,38,215,36,245,209,54,214,99,175,113,178,238,243,41,48,72,167,114,36,224,151,141,156,77,10,248,71,15,154,68,39,104,119,170,74,94,1,48,45,14,199,57,209,78,205,20,115,154,37,247,32,91,149,54,229,27,21,67,110,149,210,122,210,147,22,82,206,217,146,98,85,146,104,61,74,232,34,154,208,89,151,74,69,25,169,33,198,146,143,236,206,154,198,6,214,214,80,36,22,117,20,22,91,249,151,187,34,137,136,144,21,197,98,137,83,7,19,79,247,82,23,151,155,241,135,15,58,73,240,77,210,226,42,28,194,101,246,121,70,51,155,66,225,253,55,249,85,161,136,115,69,50,82,142,83,130,226,183,81,126,66,254,85,48,111,129,120,118,22,117,110,229,234,49,200,41,39,83,93,30,38,117,242,126,91,155,77,79,85,233,204,146,3,76,111,126,74,81,90,22,29,96,206,58,138,170,170,203,189,68,69,254,104,43,84,149,138,156,137,231,219,92,138,236,85,45,142,181,20,249,22,182,200,156,83,34,151,6,123,28,94,205,211,173,119,220,114,22,74,27,226,55,95,194,34,253,149,95,210,124,94,139,172,207,34,144,165,216,10,46,208,2,91,61,191,53,29,25,111,145,214,90,114,71,114,179,11,100,55,196,127,156,23,86,39,185,181,113,50,158,155,64,22,161,62,37,146,192,98,96,116,213,90,3,21,149,4,214,106,138,210,27,50,68,37,100,79,142,207,25,117,39,82,186,230,56,68,80,156,235,20,178,115,250,169,41,76,33,255,250,130,156,39,23,209,148,196,121,34,190,163,177,33,83,65,97,173,57,142,120,140,88,232,152,18,154,247,243,80,130,68,120,79,9,207,49,6,155,161,186,202,26,13,96,211,219,204,20,101,122,126,60,158,83,143,180,175,198,109,74,11,95,172,30,248,130,242,153,210,198,154,249,108,32,70,115,53,174,202,42,47,216,97,194,225,56,230,146,136,7,6,145,217,254,72,211,155,52,12,202,60,72,177,28,133,154,82,20,57,230,142,202,7,68,201,187,224,113,174,37,245,246,168,251,29,189,222,149,120,174,35,186,223,99,31,136,254,248,164,44,136,175,240,74,200,171,1,184,170,229,78,90,146,46,207,184,168,50,52,105,10,7,62,96,132,115,111,39,215,177,78,198,103,185,190,79,196,191,198,47,244,98,83,193,245,117,110,178,95,131,37,98,39,166,200,122,167,112,216,22,222,239,225,219,223,115,159,54,176,31,177,20,110,147,129,68,11,145,88,116,140,23,226,238,56,232,98,152,34,138,166,181,69,148,177,232,234,253,235,21,247,168,171,229,200,228,102,211,205,251,74,44,206,125,222,33,251,175,65,99,14,239,141,146,241,183,164,117,2,48,200,13,142,134,119,23,52,66,199,58,67,97,243,154,142,14,172,97,187,178,205,79,111,97,146,89,239,8,31,154,132,157,152,31,8,145,149,185,211,131,210,60,208,167,144,231,5,216,187,125,243,190,249,62,230,12,222,163,117,37,138,134,71,247,154,176,62,19,14,76,112,67,187,252,216,43,50,63,75,186,123,184,87,83,24,34,185,221,33,189,133,63,164,11,64,101,193,138,203,123,189,104,159,248,63,126,211,120,147,33,59,248,97,6,196,93,189,126,245,110,89,89,54,178,51,83,164,175,39,28,236,18,154,123,200,130,31,255,5,22,200,82,115,56,224,19,62,239,132,247,223,68,62,116,73,12,171,33,125,1,178,55,200,143,30,0,33,242,27,237,225,192,36,105,217,228,54,51,119,44,252,54,209,135,92,123,181,228,178,249,210,195,108,232,35,227,227,164,247,157,20,60,30,241,53,243,11,33,44,217,60,213,67,2,47,53,100,98,9,153,186,123,88,226,101,177,143,115,43,183,247,18,3,18,199,94,73,180,151,173,88,242,55,136,63,90,194,223,165,59,244,245,107,218,108,248,67,51,98,126,19,228,26,173,163,200,238,38,10,181,229,62,144,107,156,191,239,23,31,96,237,165,176,181,24,121,19,252,197,55,169,225,6,182,133,225,222,112,160,131,116,55,135,67,219,124,207,251,104,48,233,233,65,94,210,126,171,241,62,115,85,58,236,103,10,38,9,75,205,15,169,27,229,89,37,97,44,16,151,172,204,70,230,250,72,79,11,32,142,15,110,70,102,39,136,111,143,155,222,129,127,24,247,186,214,15,178,49,242,50,132,74,89,243,62,55,57,207,117,188,58,93,216,60,62,41,82,18,41,94,212,223,188,167,191,150,149,149,215,122,249,189,33,225,93,75,248,112,69,88,89,251,191,92,243,38,188,33,123,62,110,224,0,247,138,158,37,160,206,95,247,166,56,127,63,233,152,12,239,163,230,45,248,154,133,209,126,16,150,225,64,230,118,26,167,29,121,138,68,167,187,74,221,49,94,202,74,116,160,239,77,239,130,24,4,77,229,28,183,63,66,54,222,75,206,57,201,139,243,77,163,38,157,174,128,168,68,186,210,94,190,124,235,202,173,108,116,69,155,201,70,19,8,57,178,252,30,171,179,180,239,198,119,136,240,46,214,166,208,192,150,10,162,143,223,56,0,114,67,1,184,210,69,90,150,128,69,133,192,251,200,248,78,180,238,193,55,139,62,37,202,170,120,120,243,218,245,10,154,210,51,148,233,198,253,50,101,181,120,148,91,159,138,110,19,82,162,67,96,66,140,78,28,195,100,3,113,227,213,48,226,230,33,109,167,252,226,107,216,63,72,112,129,52,181,193,174,123,2,184,251,202,134,73,161,240,255,224,218,157,75,160,224,232,117,148,222,120,241,94,6,169,40,117,11,226,70,14,196,110,20,219,64,153,145,177,3,13,223,178,200,79,250,132,195,209,112,112,92,74,77,226,58,124,100,103,81,226,123,97,63,196,77,30,112,237,239,201,202,110,1,151,64,185,218,194,49,77,248,120,4,125,146,77,159,209,132,151,9,127,247,178,117,245,14,120,130,248,216,106,151,155,181,88,107,47,156,17,253,13,118,167,6,31,123,75,244,173,103,161,33,228,178,191,158,181,87,255,177,178,210,126,225,2,245,167,127,158,45,78,182,228,225,219,127,177,14,15,171,137,93,99,72,187,38,174,125,192,165,240,149,138,147,63,124,32,130,122,190,193,237,208,252,63,23,52,63,252,160,249,254,123,141,248,137,120,238,40,125,134,15,202,62,86,140,8,147,6,61,47,70,204,220,169,254,227,15,63,255,240,39,77,177,230,28,29,127,64,210,183,53,241,8,157,63,105,254,170,17,167,255,215,179,23,98,215,157,45,254,62,149,74,19,176,145,251,104,105,52,31,29,45,245,58,17,143,241,35,216,216,87,226,91,248,188,56,229,3,85,165,104,197,33,179,28,53,102,226,142,163,184,37,249,111,229,120,69,238,164,45,99,23,143,228,40,10,50,55,68,186,90,18,18,97,226,223,170,239,232,81,199,86,74,241,63,41,204,149,33,200,67,254,87,90,245,0,249,172,43,241,137,150,250,250,44,53,76,164,114,153,41,5,5,196,241,82,123,173,40,132,35,193,14,78,222,52,73,26,143,38,188,55,18,241,181,75,194,48,53,185,72,14,72,41,53,76,49,43,172,46,154,20,230,73,45,110,162,167,213,38,133,101,158,125,172,122,11,149,94,189,37,41,189,173,130,78,94,246,104,126,153,142,202,41,191,76,177,114,134,22,125,219,241,202,25,58,138,74,168,156,65,37,84,206,16,191,57,78,2,154,158,62,70,2,26,60,253,40,1,141,78,79,64,59,110,185,148,140,137,85,154,74,143,219,122,225,12,140,94,239,118,157,175,178,216,109,13,24,99,104,183,138,79,193,15,139,26,236,69,214,58,49,0,209,226,105,116,194,197,226,175,51,24,133,201,186,47,156,17,127,37,20,170,20,199,136,18,94,241,145,80,81,102,192,104,62,92,82,129,33,70,106,40,29,171,46,148,156,32,23,103,195,106,151,203,107,177,229,146,16,103,177,69,127,29,47,41,78,177,210,81,44,244,45,86,105,166,18,160,48,104,176,160,209,81,253,35,144,46,13,117,78,70,129,63,173,9,252,25,189,50,133,73,105,93,110,153,155,136,93,12,190,161,25,125,101,2,98,21,56,12,195,101,241,169,8,105,86,142,147,46,61,110,250,38,173,203,131,123,164,71,227,188,176,244,76,165,217,64,209,137,124,116,84,120,40,41,114,51,182,62,48,57,92,25,208,72,119,15,73,127,71,44,218,81,186,37,153,46,165,196,236,220,242,52,29,150,104,181,92,21,100,137,215,138,63,78,71,158,166,8,14,38,103,194,55,102,138,97,12,226,27,49,71,243,27,142,103,142,254,214,30,63,176,25,241,147,33,176,185,218,226,169,5,250,75,12,61,21,233,39,135,216,230,244,65,171,44,85,141,9,35,134,131,27,100,89,166,254,226,145,142,150,67,52,235,239,81,171,5,127,165,173,159,200,221,233,222,122,138,42,49,82,20,112,24,77,155,141,180,76,229,142,40,49,197,237,132,200,199,17,50,209,138,255,118,182,34,161,30,210,58,202,79,76,161,110,56,222,66,122,253,120,230,211,246,205,69,170,210,12,190,179,152,177,82,11,45,54,253,210,62,50,215,82,148,254,5,6,104,120,12,20,197,106,243,136,84,205,9,85,255,139,163,83,243,65,191,138,232,212,92,209,255,229,34,82,143,203,139,197,106,166,150,91,36,234,87,142,56,253,230,229,237,111,237,149,127,47,43,213,5,111,141,148,190,228,206,29,61,165,215,154,12,87,254,46,211,54,44,117,235,193,138,196,115,189,252,251,195,251,92,211,92,164,165,91,56,28,213,242,139,221,88,77,249,93,139,134,27,57,0,182,128,159,252,200,2,48,1,183,213,201,173,13,228,213,199,234,52,136,68,236,97,101,209,234,244,102,150,170,18,123,88,105,237,141,38,16,14,14,20,137,102,248,97,164,242,232,97,149,15,6,85,236,59,234,206,6,115,105,81,165,154,54,138,243,152,146,58,201,88,192,232,221,223,172,116,251,34,82,130,186,103,168,184,74,233,105,147,73,87,81,161,70,74,248,194,187,126,190,125,60,28,26,32,93,45,26,225,112,68,88,104,194,220,234,246,46,174,99,150,159,244,145,182,224,183,45,23,0,79,90,29,77,71,229,194,139,42,144,11,204,49,229,130,26,156,125,37,73,160,114,253,139,85,77,226,139,241,190,218,72,227,52,99,93,62,216,88,178,224,191,169,96,227,211,101,68,167,69,51,157,209,228,80,155,255,225,131,242,138,114,26,183,35,253,109,253,181,12,68,72,230,55,195,193,96,56,208,17,14,182,146,221,45,62,248,129,204,109,145,222,126,140,126,56,108,19,90,214,184,246,110,50,191,207,79,116,106,36,53,93,210,218,97,135,130,141,73,216,90,42,92,23,130,66,191,196,72,137,28,48,86,94,241,240,178,25,217,246,82,233,61,25,103,124,210,6,190,187,197,125,110,18,102,186,48,138,112,110,12,140,26,161,57,8,91,58,215,183,172,193,18,73,109,189,145,131,87,98,219,156,2,118,204,40,244,43,87,252,92,191,119,147,185,137,248,185,198,148,102,194,15,6,36,236,119,115,175,122,49,88,193,255,158,116,99,11,37,192,10,215,220,33,180,111,106,184,205,65,44,8,140,101,42,187,35,11,163,128,165,223,16,138,110,220,188,120,25,153,174,180,228,174,76,145,211,56,138,112,123,4,26,2,61,144,44,191,19,182,59,128,187,240,167,127,29,139,33,139,132,69,22,90,201,202,238,111,138,126,202,43,110,93,191,167,130,191,16,43,115,239,1,19,160,8,243,193,69,238,213,20,236,11,62,178,50,70,214,250,197,142,91,173,120,118,16,152,36,221,29,194,187,209,223,14,126,30,82,37,218,139,42,36,54,6,206,3,237,204,111,114,190,69,16,212,228,109,39,202,234,230,125,96,177,200,88,47,240,157,70,88,29,132,127,145,129,166,200,135,37,188,226,117,23,138,242,151,192,138,59,240,246,116,99,76,33,128,55,7,60,94,186,119,227,214,53,164,179,139,183,140,215,179,26,98,32,173,184,201,25,32,36,178,220,199,45,191,147,184,79,67,14,252,98,115,45,177,123,152,168,138,129,116,255,77,113,99,169,222,160,5,115,149,209,151,150,93,150,9,156,76,226,70,64,203,218,0,215,180,202,133,102,224,31,112,38,191,209,206,135,14,193,120,213,68,38,95,115,35,243,220,86,136,116,140,227,215,211,123,191,37,44,85,148,92,189,127,91,139,60,121,177,132,145,9,144,60,58,223,28,157,3,185,132,22,189,70,18,95,216,63,239,192,31,153,240,129,70,15,36,166,227,62,29,8,51,159,132,153,143,191,25,220,60,188,116,183,188,172,66,5,159,97,84,247,232,126,4,197,84,39,217,24,6,60,129,165,51,74,122,187,224,35,80,46,185,145,85,137,19,177,141,159,120,220,33,41,82,191,37,58,122,112,231,142,233,198,37,196,85,197,253,171,166,204,186,147,132,18,216,226,64,26,33,171,109,77,131,24,146,80,194,45,205,112,147,135,26,120,35,204,188,147,208,10,116,134,162,127,121,33,188,167,224,46,61,13,175,68,193,30,157,171,24,227,73,51,57,137,246,251,183,41,243,101,157,10,253,74,98,53,126,106,89,120,55,39,225,19,211,95,231,122,81,189,26,222,142,124,92,224,67,175,72,159,95,19,181,101,38,218,79,187,45,243,251,235,100,94,5,138,208,84,27,16,144,41,16,64,201,249,127,218,28,254,57,236,158,230,210,242,10,208,104,245,6,90,127,91,38,113,5,35,52,142,138,75,45,15,146,133,54,178,240,50,188,63,136,146,111,102,5,155,160,30,44,17,255,71,76,140,236,88,202,122,2,42,158,118,226,81,231,57,49,58,175,208,135,152,38,157,201,108,164,108,122,241,16,147,177,214,97,112,24,155,232,239,77,62,196,84,83,24,74,245,148,79,194,215,46,123,56,156,122,54,76,159,248,217,112,142,104,85,83,228,41,23,180,230,226,67,79,63,198,204,229,92,88,29,59,20,103,133,94,254,64,88,33,120,233,180,21,93,202,205,255,146,67,107,229,27,183,111,95,186,66,233,117,134,123,140,73,198,156,73,18,53,12,102,131,181,182,160,222,180,210,197,249,251,180,88,70,161,99,41,188,63,129,199,121,43,147,240,15,147,214,87,183,184,145,30,50,183,40,188,234,7,171,89,120,185,129,70,225,252,62,118,40,222,159,198,248,123,204,209,94,38,109,211,112,251,175,123,83,170,61,52,121,203,41,155,84,220,49,141,155,48,26,133,50,83,200,84,108,117,85,149,193,106,19,11,37,213,58,234,205,207,129,145,158,136,69,91,60,20,101,241,214,228,94,180,229,132,144,165,32,176,20,221,49,185,177,154,42,114,40,62,153,169,41,59,108,190,114,121,165,147,226,189,10,48,109,48,133,77,213,54,143,253,218,35,7,175,80,35,23,17,12,104,143,12,30,18,127,43,183,182,69,54,150,177,53,80,251,172,176,178,70,198,199,195,161,237,112,176,19,75,215,45,53,71,17,63,191,79,214,250,249,129,41,126,184,229,235,177,91,116,243,162,68,174,211,90,13,85,22,147,24,3,70,185,30,57,96,243,170,71,118,107,128,255,129,135,114,103,183,194,225,231,100,57,76,213,162,23,23,108,54,167,150,169,126,127,253,254,250,253,245,251,235,180,188,18,237,128,204,25,17,242,97,27,82,154,68,66,216,70,44,33,40,49,60,67,41,36,67,69,24,134,124,232,133,6,254,192,76,29,250,11,153,37,105,133,217,20,178,179,115,208,56,111,209,37,119,202,176,72,199,221,255,50,95,86,218,15,195,129,160,20,244,131,149,40,150,113,47,196,96,191,225,109,44,37,184,49,19,14,6,73,127,135,176,218,206,249,251,165,172,126,80,39,163,37,161,222,44,195,231,228,21,214,230,225,218,187,105,29,170,174,107,235,232,66,31,60,140,186,208,101,182,198,66,30,101,42,23,158,200,136,165,167,69,79,237,54,214,85,244,240,154,254,129,249,38,93,114,91,9,55,66,159,184,245,175,183,240,175,182,201,208,4,247,105,22,112,192,47,118,243,147,51,194,98,59,55,180,75,246,122,81,61,16,241,193,13,79,147,121,63,31,26,5,157,155,123,59,72,230,196,166,146,227,91,92,207,60,191,248,26,110,57,10,190,56,229,104,121,160,127,64,81,247,47,203,212,115,142,158,7,244,118,9,205,111,209,244,239,245,115,237,111,184,183,219,100,112,1,166,134,164,20,108,13,7,124,252,155,109,208,166,208,26,9,204,1,54,128,136,208,97,137,5,216,246,185,67,31,223,236,71,164,13,180,163,67,1,212,48,244,17,31,156,118,228,36,113,214,93,230,126,153,169,4,57,203,124,205,40,147,99,32,161,137,155,234,35,187,123,200,32,227,203,100,2,203,94,135,15,14,185,245,105,44,143,187,53,140,85,152,90,118,176,114,208,250,148,48,127,24,222,157,132,63,126,221,27,35,235,111,201,202,91,177,58,246,70,56,52,71,90,182,73,211,68,56,48,246,141,160,230,202,173,27,119,47,93,68,51,247,82,169,86,38,100,32,138,154,9,31,55,180,6,168,193,98,192,193,143,40,113,166,219,72,91,43,105,11,242,47,219,145,148,98,102,172,112,112,0,95,129,36,66,76,181,119,114,29,29,248,115,112,20,46,224,124,61,32,182,184,169,249,111,4,53,21,215,116,151,175,106,179,157,0,72,86,9,214,4,122,143,21,93,57,255,161,112,56,2,120,225,214,135,145,40,0,101,139,253,164,43,4,54,8,108,135,240,57,16,11,215,140,53,150,249,137,78,44,18,116,216,28,105,235,226,38,218,73,112,240,11,225,37,151,250,102,57,16,82,73,105,249,3,147,232,203,125,112,81,198,177,22,197,86,19,210,15,215,49,44,86,192,124,27,62,0,115,173,9,183,168,152,136,2,169,35,44,182,130,180,38,187,91,96,246,73,178,28,143,87,118,86,0,121,12,5,155,214,183,35,119,42,244,166,138,242,203,72,65,198,7,55,100,186,47,75,56,249,197,55,161,197,189,216,223,74,130,29,64,24,122,233,13,80,210,47,190,73,50,217,143,81,149,115,31,200,220,24,74,100,113,211,199,35,165,152,151,87,186,13,182,43,116,76,78,248,194,251,155,160,12,112,19,193,111,4,69,247,205,230,251,151,129,108,180,84,133,225,170,76,8,64,84,254,236,14,97,181,168,128,15,56,41,50,58,75,99,179,205,158,121,97,181,67,56,236,215,81,20,233,235,230,94,190,3,94,3,210,144,46,229,135,14,184,158,69,73,108,113,189,125,145,214,215,32,170,37,245,20,243,200,122,251,185,9,172,42,250,141,32,233,238,141,155,148,22,195,193,117,37,151,116,50,197,220,163,72,18,81,64,250,7,73,95,159,48,251,81,88,93,5,4,193,30,207,249,230,57,223,162,208,220,204,191,236,17,247,120,31,200,96,254,35,238,229,168,34,6,62,144,182,237,200,232,123,126,184,229,219,225,172,242,242,146,146,43,15,85,202,230,190,93,73,54,11,11,77,220,230,18,247,170,87,119,116,82,180,191,78,222,116,147,254,61,210,23,224,55,67,124,104,10,3,225,86,183,68,14,27,137,126,43,30,37,125,43,136,185,91,102,44,161,80,213,185,169,99,100,154,208,75,136,1,113,65,64,122,12,182,0,22,200,234,174,36,85,164,147,53,12,154,108,235,70,84,249,22,113,151,242,111,115,171,248,150,159,154,135,13,12,81,214,52,6,183,160,80,18,239,18,14,39,132,237,22,210,215,37,134,43,231,43,118,210,82,232,165,95,217,171,9,37,124,30,47,186,145,92,210,68,159,80,207,68,188,66,169,134,72,157,87,71,43,20,18,137,215,16,177,232,21,203,135,96,130,171,84,62,196,162,79,169,28,194,232,243,235,249,110,50,80,127,166,25,125,65,106,242,152,12,137,53,121,208,53,25,175,201,99,208,38,212,228,49,211,199,43,42,194,232,243,46,42,2,32,98,77,145,115,0,207,115,51,125,84,83,68,159,87,77,145,52,82,81,85,106,10,148,34,92,96,175,165,74,115,244,39,157,90,184,33,185,202,69,106,72,70,45,147,126,10,14,28,154,126,110,34,58,52,96,114,82,243,57,161,61,200,77,172,70,143,169,153,148,49,85,141,135,141,223,96,31,24,223,2,101,65,169,225,154,220,28,100,242,92,78,179,7,56,223,151,122,239,85,14,135,54,6,19,109,212,163,19,67,71,25,255,158,46,111,225,202,20,55,83,60,103,111,119,128,15,109,161,5,41,58,234,133,213,87,225,189,181,240,238,130,88,6,126,27,117,189,137,181,240,126,183,146,111,45,67,94,222,137,6,92,160,207,74,167,211,219,24,139,205,36,6,92,80,181,213,44,69,233,140,49,23,177,85,151,150,140,167,163,26,77,38,5,151,85,52,112,2,174,57,10,156,48,153,98,57,122,42,113,36,227,168,146,223,136,148,146,224,10,187,224,197,42,225,86,216,44,51,4,102,124,43,175,19,97,181,123,12,99,184,14,58,159,86,119,217,32,163,218,40,179,218,191,125,29,24,0,187,30,146,68,108,56,208,134,217,15,189,27,231,40,163,254,223,190,78,210,59,199,239,15,71,222,127,146,190,198,229,217,159,5,109,232,215,61,127,56,0,90,98,251,105,228,65,154,54,106,181,166,42,163,196,131,53,238,6,138,98,168,12,9,177,121,243,224,177,145,247,37,153,83,5,137,20,31,119,66,133,225,90,185,0,81,89,199,70,165,91,35,189,115,216,157,108,1,119,92,44,66,156,3,102,25,134,214,93,71,177,167,165,43,30,40,96,22,219,197,138,72,19,14,251,48,10,38,176,140,209,231,61,33,254,117,179,244,249,47,190,1,248,199,125,90,228,182,54,200,235,46,44,8,61,190,15,215,132,3,33,76,114,16,175,1,1,121,252,32,234,220,38,119,251,193,229,187,119,47,163,125,125,241,246,53,25,207,139,56,57,210,211,26,14,189,35,125,221,40,193,63,13,0,45,32,105,244,118,113,129,22,50,126,0,178,30,12,75,97,251,157,120,188,48,135,222,24,248,252,176,153,180,132,248,137,189,47,61,33,125,153,233,246,165,7,56,161,123,230,114,153,195,56,113,66,66,207,58,9,52,71,198,119,72,160,139,111,223,13,7,222,128,153,132,123,86,75,103,120,111,33,188,255,158,116,190,198,210,220,239,214,190,56,248,6,218,120,13,192,215,209,247,203,111,221,82,218,99,67,61,228,160,143,223,90,21,105,108,21,152,52,28,24,226,7,187,136,127,77,56,56,248,255,118,132,142,79,100,190,13,79,197,214,2,92,211,107,233,203,95,247,39,36,42,227,166,135,101,107,185,21,100,98,137,202,57,163,45,162,244,88,223,72,91,116,93,127,235,129,214,120,185,20,100,180,217,108,186,46,211,39,76,34,180,181,214,40,23,45,182,162,139,38,208,205,47,109,146,21,60,254,227,182,66,96,150,135,67,157,194,214,210,47,190,9,108,84,50,177,198,109,29,128,65,142,103,133,107,173,145,225,15,124,51,158,198,139,89,197,19,220,104,1,50,58,212,77,81,75,21,49,20,172,29,245,224,86,89,41,147,109,138,251,111,248,141,118,161,125,3,228,42,76,145,244,142,134,131,157,124,240,144,223,154,213,132,129,2,3,11,220,228,60,121,243,33,28,28,23,86,230,240,232,97,118,90,88,104,253,117,111,234,239,32,51,0,53,145,133,86,248,39,12,247,146,245,65,210,183,74,118,7,213,205,51,165,121,182,124,31,234,212,35,132,50,147,70,241,244,32,99,197,223,163,35,129,58,83,202,145,128,214,88,152,138,191,117,94,134,138,86,253,101,152,244,170,191,88,213,151,209,231,84,213,87,156,1,214,93,188,112,70,252,74,2,93,58,85,112,163,110,112,220,178,163,90,227,49,138,246,194,100,142,14,6,76,233,69,123,143,74,236,254,248,19,232,127,22,119,13,11,58,76,165,135,117,84,103,172,214,155,64,3,178,85,114,185,225,22,46,16,208,112,131,163,194,203,13,13,121,243,26,254,105,248,185,3,160,86,229,10,165,177,178,164,128,145,122,55,91,203,58,61,246,167,172,218,154,157,73,55,37,191,59,102,197,210,204,229,74,99,95,164,219,248,217,106,75,38,34,74,182,4,71,62,19,247,186,45,79,89,71,244,87,90,57,84,228,188,232,57,144,200,133,210,101,25,206,117,164,19,151,163,41,101,61,104,137,62,88,254,236,70,42,77,90,239,96,171,189,210,159,177,231,75,88,72,57,131,137,61,75,33,208,190,202,166,132,235,83,114,254,114,18,70,93,249,237,219,37,15,25,177,51,77,153,225,74,250,118,17,69,168,188,93,7,59,28,239,255,196,109,174,97,231,154,129,16,63,56,95,196,117,118,243,45,139,92,87,27,233,30,46,226,134,231,177,134,207,233,178,222,40,179,24,100,175,99,77,54,171,21,173,183,167,47,108,143,176,51,170,9,173,55,211,51,138,210,59,114,43,103,20,51,223,76,250,132,220,19,218,16,203,101,81,135,36,213,86,90,226,17,108,85,141,88,106,60,126,222,154,116,225,241,205,57,149,196,81,172,110,138,167,235,180,229,36,152,233,78,217,85,179,30,189,98,186,178,114,179,76,68,117,70,102,226,150,23,72,199,20,96,16,221,57,45,75,216,245,115,229,80,194,38,122,125,246,130,124,179,159,235,89,18,186,209,253,28,107,227,134,237,141,200,100,255,105,100,49,202,102,51,24,141,82,86,24,176,216,99,27,69,25,217,147,97,177,99,161,238,52,50,158,74,66,42,62,206,196,143,207,142,169,94,13,249,184,80,233,239,186,212,10,218,185,188,100,98,61,115,17,98,183,244,55,239,32,46,111,149,252,67,166,0,68,12,151,130,175,25,227,129,214,214,49,72,168,183,31,67,25,86,7,195,129,49,44,157,49,220,34,204,116,161,55,54,52,42,85,203,192,160,189,151,187,225,208,7,108,223,254,106,42,63,35,47,199,10,4,229,87,43,110,155,239,69,165,49,157,129,40,162,235,63,70,186,134,195,193,79,82,216,87,196,55,142,20,49,190,79,86,182,245,37,255,246,53,233,74,176,48,143,168,38,113,163,171,164,43,8,244,35,221,249,133,38,83,126,227,198,77,113,85,238,83,50,1,165,241,201,116,53,145,182,86,236,16,184,218,4,160,70,70,7,133,249,195,104,191,44,9,236,222,85,210,210,205,207,231,153,249,159,43,216,165,247,180,15,110,102,223,17,35,205,253,100,231,109,56,56,0,91,31,98,88,218,13,163,11,147,103,81,140,28,65,189,109,54,94,188,130,233,61,76,25,67,149,103,0,117,96,20,75,11,29,142,98,6,79,224,3,96,21,40,91,131,1,133,107,235,210,119,24,164,26,236,199,168,158,177,87,96,254,103,134,62,197,194,87,171,206,75,33,236,154,58,47,109,58,42,63,136,196,153,82,126,80,41,248,32,254,192,35,27,136,15,189,225,38,167,210,45,33,49,99,95,50,32,11,102,37,217,44,54,139,248,67,52,13,99,198,145,87,107,204,108,46,225,29,133,52,150,142,74,124,255,135,8,117,98,1,3,89,123,73,2,64,58,108,33,189,59,191,27,76,217,3,230,42,174,232,47,151,81,122,173,238,6,243,247,210,116,182,74,64,121,138,177,180,255,38,28,122,23,109,236,183,242,158,236,204,227,41,99,251,33,215,51,31,222,155,230,67,83,194,231,53,210,215,207,247,172,193,101,167,76,161,19,211,252,13,22,173,94,111,165,108,82,154,255,227,167,22,138,210,26,80,161,211,235,225,47,99,65,109,166,156,112,117,26,53,56,21,100,82,156,211,44,127,251,214,211,3,67,249,205,7,247,164,252,155,82,25,167,137,34,103,225,73,252,208,234,47,190,73,172,43,136,61,193,119,185,229,119,24,65,184,242,30,125,141,129,101,169,131,51,250,22,247,67,36,56,72,214,154,248,249,183,167,145,197,116,122,157,129,54,153,169,40,139,121,145,197,232,147,97,177,60,145,118,26,121,77,5,225,20,231,55,221,111,200,70,74,125,238,113,76,166,7,215,174,93,187,127,131,210,211,198,7,38,57,103,51,34,52,50,245,158,180,47,2,238,248,174,30,190,227,19,32,142,111,94,230,94,99,66,56,153,223,229,246,6,64,150,241,3,83,220,246,42,233,222,66,219,98,181,48,181,224,114,45,219,102,52,106,75,176,98,139,182,228,206,195,187,242,83,9,7,218,73,235,52,223,211,249,23,248,43,210,214,31,153,220,2,37,157,188,241,147,150,53,114,176,195,249,251,184,217,22,48,59,184,9,31,214,195,93,221,229,218,59,191,198,92,238,223,210,223,191,107,18,19,246,13,255,144,233,79,128,115,65,35,127,177,149,239,105,227,38,125,64,240,98,154,88,23,172,128,176,221,193,77,206,195,207,200,199,17,108,89,63,188,18,153,197,52,25,76,180,122,243,225,171,172,140,249,206,53,230,174,104,74,149,24,254,161,48,155,213,1,225,213,58,233,125,199,47,34,234,209,53,41,214,177,22,123,197,183,17,95,55,166,171,116,188,228,199,87,128,16,185,169,62,248,23,14,244,112,254,126,32,199,130,205,41,202,70,207,26,107,165,130,119,84,110,5,239,110,149,93,46,199,186,129,198,171,183,202,20,20,129,112,96,14,203,229,206,47,137,217,75,253,152,5,24,60,252,117,111,10,38,133,93,184,247,103,129,40,137,127,204,8,179,130,185,113,159,222,9,159,241,28,7,22,244,88,182,88,6,107,65,198,28,75,55,18,84,217,98,146,165,37,99,139,101,136,137,149,171,17,47,25,118,146,251,175,96,102,27,107,107,192,255,179,186,181,224,154,66,154,105,248,72,149,14,45,241,201,210,180,115,53,206,52,9,189,10,211,77,181,4,116,33,61,103,43,167,159,235,126,130,152,77,224,245,235,247,174,25,238,81,20,99,54,62,188,42,115,6,39,206,18,36,147,224,107,150,40,5,133,214,90,47,57,108,134,125,27,15,230,250,122,248,208,30,233,243,147,131,38,216,195,101,143,80,178,139,159,20,152,174,221,124,120,237,106,142,48,205,141,97,192,135,116,240,180,242,142,4,154,241,219,129,41,210,182,28,63,165,146,14,164,132,173,93,46,16,16,22,253,199,7,180,130,190,113,131,49,102,1,20,240,4,162,33,28,154,15,7,130,18,208,220,200,18,8,21,178,182,46,65,15,59,1,96,46,31,104,146,197,153,254,98,249,85,163,180,7,153,100,14,33,69,96,164,242,250,18,24,209,172,230,253,110,41,235,155,111,250,200,251,91,65,31,0,113,34,37,67,193,87,160,132,97,206,243,230,7,16,228,169,31,54,131,8,220,45,8,18,175,232,111,169,90,109,41,72,14,119,250,229,5,44,93,51,246,138,27,13,146,142,113,178,211,66,54,101,98,177,82,89,35,150,210,153,75,116,223,195,235,198,43,87,96,147,96,46,105,31,222,80,194,42,198,34,117,96,88,91,119,143,4,41,173,231,62,205,32,194,66,67,209,142,6,205,155,17,223,152,108,61,254,92,203,38,223,45,189,163,191,138,122,211,131,191,151,200,156,30,74,114,169,105,153,12,77,0,55,242,11,189,36,20,52,99,112,222,242,66,100,34,64,118,54,248,80,47,215,219,71,218,187,133,217,143,18,204,164,107,24,145,186,63,72,122,135,144,151,128,12,252,31,81,41,105,251,64,198,199,185,118,31,150,224,90,94,40,200,90,95,167,202,84,173,53,183,242,153,44,247,241,227,35,252,75,172,212,207,189,154,18,214,102,249,79,159,68,5,227,3,232,71,40,124,38,130,168,102,136,140,94,16,201,3,240,93,125,160,207,2,159,180,160,82,9,125,17,136,53,190,175,21,116,54,116,228,188,234,229,134,70,49,52,112,110,232,188,248,202,7,166,120,249,130,50,253,195,18,170,76,43,163,28,75,136,26,253,128,136,154,240,97,180,168,200,195,98,69,181,29,126,126,82,202,64,19,113,117,64,230,130,145,229,166,36,252,196,212,143,212,157,94,213,118,40,119,32,44,110,131,121,29,8,139,119,102,58,16,150,66,137,10,167,89,120,106,217,218,6,123,244,87,110,135,194,210,61,133,212,55,106,92,79,213,234,27,177,135,115,3,135,164,99,166,112,42,71,33,218,245,228,220,78,7,230,157,200,118,134,107,87,46,221,7,182,211,154,77,215,110,166,83,59,92,29,83,181,34,205,75,164,123,141,244,246,163,6,222,178,25,14,246,144,142,105,178,23,68,9,5,106,201,242,2,106,1,67,187,194,234,1,191,212,73,94,119,113,211,51,220,196,167,232,219,80,80,88,57,0,51,132,95,153,1,150,197,237,227,85,175,176,152,163,245,155,157,127,83,39,119,233,70,249,195,44,147,35,131,173,176,168,48,185,31,249,208,43,62,212,70,246,124,100,125,144,91,223,23,246,23,194,135,205,220,182,31,213,22,108,4,176,164,129,217,146,174,33,97,107,25,191,219,27,225,154,167,129,36,248,229,33,110,96,149,235,58,241,201,152,202,64,225,201,50,153,246,238,112,112,0,61,86,19,96,168,47,97,32,251,214,170,176,50,131,133,50,58,222,114,219,237,252,18,40,141,189,66,31,168,68,161,240,254,27,131,78,123,94,15,86,35,231,223,57,105,232,181,15,238,100,91,10,116,213,135,130,72,103,189,253,220,80,27,89,221,229,23,155,184,206,86,174,253,48,210,214,77,102,71,249,229,118,225,112,146,219,28,132,159,194,226,43,97,6,212,162,160,176,186,5,138,30,152,126,160,202,105,78,122,22,119,74,175,150,101,91,131,21,44,163,201,31,204,133,247,134,241,132,109,162,147,31,110,137,188,94,7,240,80,33,29,236,39,253,251,177,183,3,160,159,162,255,121,110,12,102,29,25,94,34,107,173,18,83,145,174,80,248,112,146,76,5,193,202,13,239,31,242,3,75,68,10,221,203,109,114,121,52,29,73,158,113,249,141,43,20,245,32,155,124,152,108,38,75,77,210,12,132,213,73,145,131,96,251,91,2,205,27,171,178,172,109,145,221,77,178,210,142,7,94,19,221,200,108,176,123,111,45,69,218,122,177,137,203,250,96,84,183,12,14,112,190,121,73,62,192,80,194,26,6,105,156,236,114,150,223,184,81,126,47,219,114,98,33,90,204,197,17,185,9,40,148,243,31,146,150,79,252,226,42,158,63,0,157,14,28,72,213,137,164,175,132,173,29,238,211,65,196,119,32,157,198,132,131,112,113,243,9,83,101,249,141,123,87,202,179,174,209,218,22,183,189,192,109,52,71,218,122,128,178,248,141,149,112,96,45,154,250,18,165,193,85,178,242,22,155,9,136,95,113,3,88,126,137,248,223,115,211,187,64,134,39,61,133,155,52,165,45,207,54,5,128,179,117,60,178,48,196,181,239,198,45,17,193,191,38,236,239,115,19,65,174,115,60,242,238,45,200,12,97,125,70,170,123,11,211,17,222,181,240,203,227,17,95,59,124,133,253,111,114,159,69,140,133,36,29,64,229,97,87,234,228,244,215,74,111,103,153,28,76,139,172,119,160,212,235,26,66,254,135,5,17,247,76,76,221,217,92,19,86,130,100,114,28,172,3,233,15,80,45,113,54,192,32,176,43,73,247,240,187,77,66,247,59,141,116,83,226,48,202,83,206,114,18,38,171,32,201,105,160,162,86,148,73,3,253,131,146,10,42,41,152,153,207,193,50,37,65,80,6,181,117,20,178,149,80,48,40,150,80,0,52,68,43,40,24,82,43,40,24,254,23,85,80,48,20,188,130,130,225,11,86,80,200,154,21,3,230,150,180,202,30,38,101,149,245,76,126,171,156,68,168,21,76,50,121,71,179,96,116,84,78,89,48,138,84,160,165,18,169,64,71,81,71,84,160,165,18,168,64,252,230,56,100,160,103,142,145,38,3,79,63,90,125,38,61,77,38,6,140,213,229,174,63,18,165,85,69,14,182,198,226,16,197,102,198,108,153,100,236,31,137,132,100,217,35,47,72,202,204,121,102,83,197,233,166,206,156,154,76,101,42,84,50,149,150,137,38,83,233,140,39,147,76,101,46,116,50,149,169,80,201,84,180,12,153,20,32,155,42,78,3,232,188,1,251,111,170,71,118,245,229,235,174,200,239,37,234,83,226,180,84,202,42,166,23,111,81,138,13,19,171,184,36,10,203,228,98,45,18,69,243,157,159,196,116,101,81,94,38,87,109,249,109,151,92,41,100,35,0,96,145,196,158,112,58,19,117,249,62,24,223,180,137,190,46,227,251,127,214,248,226,133,66,28,14,172,9,31,156,141,180,4,200,252,54,58,205,39,62,105,201,228,176,216,100,161,21,21,218,238,45,50,52,137,241,231,159,119,194,193,214,108,245,254,191,86,12,78,149,213,198,232,173,148,78,138,193,121,130,140,74,63,58,137,194,14,57,162,171,168,88,196,141,130,163,55,67,71,0,101,52,23,156,44,242,36,132,220,174,87,158,236,183,214,93,160,128,92,140,133,186,19,237,176,123,183,239,150,26,197,229,42,169,144,9,21,201,192,197,82,199,84,190,121,25,204,42,41,124,132,239,127,75,118,3,24,53,213,186,38,101,19,8,135,35,220,198,12,92,112,10,153,88,76,62,50,233,105,218,106,212,107,197,228,163,198,70,131,155,162,12,207,148,91,82,29,163,66,82,78,216,250,194,60,156,23,81,228,71,6,57,93,94,120,14,62,253,213,92,82,214,226,238,85,253,213,155,122,92,11,243,109,147,76,153,134,227,172,5,153,254,192,173,14,72,5,55,184,73,177,62,71,95,179,240,89,76,0,154,88,146,106,142,134,119,103,184,201,126,244,39,239,13,124,129,242,34,169,179,215,95,187,173,45,19,103,111,150,107,93,124,44,74,12,204,161,39,124,224,53,112,49,6,137,181,245,131,221,19,14,161,227,148,116,13,115,123,47,201,220,71,178,16,194,243,233,142,105,172,218,209,22,196,194,182,243,195,156,255,48,199,67,179,188,80,145,156,79,116,253,218,149,135,98,185,208,7,134,50,153,106,102,199,34,131,151,45,145,193,67,110,16,107,202,132,67,243,168,43,47,140,146,174,105,114,40,6,101,236,77,115,237,135,252,232,1,122,153,55,218,201,254,251,194,84,240,144,173,222,32,12,189,18,186,119,176,226,80,112,22,158,164,81,46,217,0,150,31,21,175,219,224,105,116,122,107,89,143,221,163,182,102,67,252,134,163,191,142,91,171,33,99,127,207,66,22,110,192,147,246,118,191,176,50,67,252,199,74,76,58,194,65,141,203,89,83,101,113,198,126,139,81,110,127,200,228,121,174,114,213,178,47,106,237,85,174,66,58,159,235,27,170,128,160,99,228,127,38,241,217,53,85,143,106,43,189,0,221,35,187,70,222,29,29,5,29,136,57,1,59,5,202,82,194,217,130,186,225,249,10,38,157,186,192,140,27,134,187,151,47,25,141,50,59,53,34,78,17,147,162,58,39,253,196,86,179,71,90,249,192,103,178,191,30,25,157,13,239,118,134,131,61,40,251,63,239,96,56,201,68,59,58,229,196,162,195,216,215,239,180,228,69,136,61,17,245,140,1,109,50,19,101,209,85,233,89,84,231,172,181,38,253,115,138,170,105,64,117,206,246,12,255,79,235,48,170,167,26,241,108,37,67,147,54,181,200,80,106,193,166,54,189,65,188,24,148,26,149,207,83,82,128,20,244,165,147,124,169,12,30,186,123,255,238,229,203,87,46,230,67,163,71,27,91,96,25,221,247,34,138,194,187,83,136,147,190,238,240,193,2,215,51,75,250,134,79,29,77,106,105,29,252,210,154,117,134,42,171,209,140,141,3,77,245,30,237,243,216,57,129,161,17,255,183,166,54,14,100,176,235,109,70,154,204,142,134,66,81,99,214,39,125,115,116,120,227,126,249,37,99,249,85,153,216,201,28,232,144,155,248,68,38,166,48,205,99,15,235,83,146,183,157,124,123,27,86,22,92,94,8,31,76,75,232,58,141,164,104,164,89,134,182,154,77,81,82,116,216,129,20,245,199,34,69,85,152,40,20,53,170,121,88,142,4,249,181,210,174,84,191,178,154,9,71,148,93,246,80,127,255,242,109,153,182,73,153,40,251,76,49,223,219,45,108,33,234,72,51,90,0,188,127,157,140,79,115,67,171,100,114,65,44,156,185,0,86,79,100,114,54,187,214,127,154,113,115,253,230,69,211,181,59,15,143,137,27,48,149,97,67,150,194,126,73,239,26,166,25,13,172,115,203,93,104,57,15,124,22,94,245,171,77,179,81,23,10,128,5,33,252,189,5,210,241,45,117,172,248,35,37,198,212,148,57,198,20,239,40,104,149,54,214,90,123,228,199,68,152,178,196,153,74,0,72,152,248,141,85,29,200,0,87,174,249,209,34,38,19,163,159,116,151,245,151,48,39,216,108,186,44,83,125,68,68,170,98,9,110,174,103,4,195,86,215,95,146,238,54,204,115,29,159,141,140,76,129,93,69,2,205,220,208,90,120,127,66,76,132,245,113,203,88,221,70,120,53,70,186,215,224,178,83,179,223,37,158,238,82,140,197,100,51,217,164,211,93,183,181,158,98,30,49,176,223,49,141,46,138,118,165,187,104,178,247,108,206,31,61,167,36,33,58,31,74,41,206,123,214,167,171,24,129,248,168,147,97,184,235,247,175,24,205,201,104,20,49,232,244,130,244,69,209,252,189,106,254,235,138,4,176,82,23,55,210,243,111,95,55,55,176,203,239,13,73,226,15,87,97,99,148,219,155,198,64,191,214,215,145,209,247,128,97,13,63,26,138,140,98,162,20,6,148,246,174,157,74,54,52,176,218,42,131,54,198,134,70,35,88,229,88,16,132,54,213,80,84,125,126,108,120,76,44,157,82,110,204,131,140,138,143,139,139,111,172,118,65,238,201,29,169,56,190,122,177,252,94,206,56,238,224,214,103,184,205,121,108,72,48,48,197,0,26,43,188,172,165,78,88,29,228,123,222,243,237,24,151,29,173,92,153,159,87,64,69,112,112,202,52,46,233,76,15,42,114,159,6,89,120,25,57,24,53,146,185,161,240,222,52,218,78,195,211,104,210,239,118,194,167,177,89,105,24,198,76,90,154,191,228,108,74,31,220,191,84,154,251,108,164,254,16,162,102,238,19,182,230,185,237,151,176,73,225,234,72,59,147,20,23,205,249,63,144,241,131,47,58,155,187,23,47,149,231,56,155,242,10,61,82,217,222,71,178,212,36,76,140,8,227,227,96,211,138,83,89,107,13,7,123,104,138,155,240,51,20,86,72,237,237,39,3,43,95,116,58,101,21,215,243,32,53,105,46,220,216,48,153,155,192,36,196,229,62,152,13,238,12,100,119,203,0,179,225,198,183,48,7,103,103,35,210,214,145,149,121,178,149,139,83,182,43,228,194,179,69,233,120,50,21,227,28,174,106,47,235,46,140,209,38,141,21,253,149,193,65,37,19,80,39,133,69,102,50,237,164,81,11,105,220,33,13,69,97,21,173,111,59,251,236,103,139,213,123,225,73,21,172,140,251,49,198,4,234,104,154,210,85,210,116,22,171,47,6,219,173,59,87,238,95,190,247,219,178,251,142,169,129,38,32,216,107,169,41,58,123,89,127,246,162,249,236,197,139,103,47,27,206,154,180,103,47,106,241,147,146,75,103,75,12,103,47,155,207,154,205,103,75,24,140,209,98,147,212,250,40,126,21,10,208,249,199,65,159,191,83,42,124,158,69,191,120,75,51,153,31,138,180,97,161,211,83,163,92,50,98,99,37,90,143,87,49,148,201,106,166,170,240,76,211,97,115,62,199,30,103,214,196,48,188,148,51,205,236,202,101,134,249,127,101,181,177,144,107,95,172,60,205,211,101,181,21,142,95,60,245,110,214,98,43,194,13,172,8,228,146,253,169,221,107,103,197,112,147,115,117,22,175,181,182,72,61,143,152,64,163,230,15,122,34,163,179,145,241,86,216,14,208,67,183,240,146,28,126,142,118,132,17,107,245,193,53,194,231,113,236,144,50,184,112,74,185,135,178,84,235,173,186,106,177,59,153,195,230,98,204,24,106,147,33,136,53,59,247,228,133,153,211,195,87,121,209,72,113,62,147,254,134,236,174,180,162,62,233,250,163,132,137,115,213,22,167,39,17,157,245,46,143,183,136,182,105,105,155,133,53,87,50,85,70,93,85,85,53,101,145,69,34,239,95,199,22,99,193,46,210,242,145,172,140,145,131,78,97,166,27,139,230,136,130,10,163,152,6,38,132,137,9,178,216,199,119,14,243,203,237,225,253,233,112,112,145,223,88,249,127,11,89,39,185,222,98,119,122,237,206,154,122,0,80,102,38,122,163,85,111,182,74,51,97,41,155,188,104,229,67,35,216,65,82,132,27,196,43,31,60,12,7,58,133,166,1,44,76,132,89,165,139,225,253,195,200,66,43,246,68,106,3,250,8,134,247,198,10,92,237,25,32,169,105,176,56,65,223,75,155,131,81,103,54,107,245,54,163,56,7,173,217,108,53,203,206,225,223,190,62,88,144,112,160,131,204,239,138,145,129,173,252,192,122,120,175,137,248,95,255,219,215,79,90,71,1,244,200,203,119,88,253,100,126,51,210,130,21,214,164,62,213,5,158,134,42,170,210,90,180,44,45,79,85,104,136,248,251,185,145,85,108,157,182,55,66,222,173,145,246,69,50,62,75,150,223,129,57,130,212,230,31,39,7,77,192,183,133,4,220,94,237,114,217,128,138,210,160,182,90,88,131,22,64,54,84,89,105,11,99,146,223,153,231,62,160,167,125,111,144,116,140,75,24,71,226,239,89,195,236,234,249,33,210,177,46,17,255,177,12,166,20,177,151,201,90,74,81,194,191,124,53,183,104,14,207,81,72,96,210,21,249,24,86,181,46,103,141,213,98,143,253,142,153,86,73,91,176,180,3,255,148,228,28,140,143,80,25,189,51,75,160,220,163,23,71,215,165,77,55,95,51,43,6,116,204,220,149,140,241,122,171,167,241,220,11,251,243,6,103,22,219,42,14,17,255,241,45,32,52,50,251,138,251,220,89,32,19,11,79,143,100,83,166,164,228,52,141,168,43,156,193,132,113,176,216,235,234,29,160,155,138,136,119,179,245,172,5,148,7,216,124,53,118,167,6,126,217,236,86,204,118,187,5,118,90,134,244,43,183,235,153,188,30,24,39,41,167,215,109,241,120,43,159,194,2,171,72,149,19,205,107,96,200,11,103,92,245,172,179,12,55,252,91,118,231,227,63,254,240,215,179,23,0,168,243,162,10,112,221,89,237,146,254,42,183,212,176,248,253,217,226,31,254,244,147,146,122,119,214,94,253,199,228,123,29,46,47,240,93,99,105,52,237,241,186,77,115,225,130,134,254,211,63,207,42,75,158,191,58,44,85,108,124,123,119,84,58,197,67,150,52,168,48,125,240,54,124,117,22,5,3,222,145,97,196,68,85,234,9,82,6,230,204,129,42,234,113,91,47,156,145,29,249,58,92,116,182,56,158,232,160,77,200,115,192,191,69,245,47,3,72,160,229,101,138,240,80,64,150,248,23,30,116,52,120,16,77,218,140,104,18,199,96,235,226,5,10,172,98,163,117,89,152,42,240,187,179,197,63,166,125,89,131,57,158,209,111,255,90,196,214,101,130,246,95,172,195,195,230,0,16,144,97,241,195,138,172,163,102,34,132,220,150,77,156,76,94,235,38,222,169,126,225,146,232,211,173,68,159,9,131,102,36,80,21,152,85,201,17,106,159,120,154,113,251,101,152,34,145,238,211,185,34,129,101,190,121,166,248,66,178,76,29,75,168,20,217,242,8,144,183,33,19,54,72,71,250,254,25,191,172,65,241,81,81,122,243,214,162,45,140,91,176,34,125,253,245,108,149,235,153,195,6,90,36,107,177,214,166,220,245,159,213,13,78,113,23,255,163,242,0,18,166,178,229,146,196,84,32,192,158,247,60,251,188,158,117,199,126,29,109,193,113,181,71,250,66,57,63,50,105,228,68,42,137,15,13,42,2,40,6,42,200,35,126,135,19,148,6,167,68,25,42,30,42,165,161,203,222,158,141,170,196,251,179,133,215,38,241,131,148,192,166,106,220,36,52,75,235,40,131,95,233,139,88,154,253,209,165,247,241,147,179,197,25,161,203,96,175,156,253,215,159,206,22,43,164,60,42,114,127,178,149,147,244,141,148,255,47,195,50,233,22,139,220,71,146,142,40,107,184,168,139,222,35,221,99,100,101,182,48,246,74,149,195,85,35,254,200,45,122,15,239,40,164,229,129,217,121,113,179,3,204,53,7,91,195,2,93,177,86,187,197,81,84,7,246,146,221,105,173,181,59,45,56,147,108,129,125,18,108,216,50,74,204,215,22,155,203,99,176,57,241,111,71,124,211,39,92,80,50,122,40,102,179,56,107,158,219,177,179,210,119,226,43,118,211,119,223,169,56,241,82,206,213,43,187,167,211,99,83,119,250,210,253,7,50,225,184,182,231,209,210,126,226,124,133,195,81,238,211,1,150,59,94,89,230,95,98,89,99,190,185,71,250,135,133,102,155,55,195,251,61,194,90,115,164,121,63,50,150,224,196,78,7,55,7,8,111,153,175,24,239,223,205,14,33,215,254,134,116,55,243,235,155,220,206,122,56,56,248,111,95,19,22,221,155,123,207,191,218,230,214,6,48,81,178,119,14,203,188,5,130,164,175,153,31,239,131,111,97,65,177,248,245,90,255,47,190,137,72,168,159,95,236,231,58,124,98,41,238,169,2,1,111,50,86,92,212,150,169,0,126,127,130,172,189,226,134,167,177,58,244,68,80,172,23,29,228,176,175,60,214,179,20,203,92,79,224,92,38,246,146,234,93,31,11,54,234,242,37,154,42,85,179,244,115,220,244,144,20,136,35,22,106,92,38,221,61,252,252,91,190,125,28,128,193,176,235,241,253,112,112,49,188,219,41,236,172,22,6,54,253,53,195,165,146,59,198,236,176,105,209,27,212,183,36,236,47,240,31,71,113,21,7,15,133,87,99,0,22,55,220,41,236,127,50,83,36,184,32,150,92,232,230,23,67,140,201,4,228,145,12,161,36,147,147,211,54,145,219,43,189,150,154,88,58,245,119,209,132,207,164,157,42,94,161,166,222,110,173,20,171,238,84,86,165,212,186,138,101,132,198,179,70,51,177,55,38,5,62,182,216,31,179,50,12,254,135,232,187,232,71,223,201,179,189,114,137,110,60,31,72,204,90,70,103,55,8,110,248,85,84,237,102,217,52,204,62,126,252,125,189,221,118,161,236,170,225,90,201,53,29,117,255,251,186,232,187,139,148,238,114,249,153,98,61,205,144,141,166,200,199,145,200,193,43,44,230,188,177,20,89,223,11,135,186,201,196,82,56,128,101,176,177,197,69,79,15,121,247,17,83,182,131,99,194,225,136,224,107,82,34,13,229,217,21,108,38,23,175,221,215,26,43,244,87,180,226,76,254,22,125,87,46,181,212,30,158,71,135,72,107,7,223,245,49,178,48,10,255,72,247,38,214,241,28,127,11,132,141,147,25,158,231,38,62,113,129,0,236,144,92,215,60,183,249,1,150,152,248,63,126,197,249,252,237,218,229,219,101,122,195,173,139,226,124,254,33,189,43,163,226,98,186,121,31,100,156,112,240,14,22,199,16,14,124,224,39,154,196,62,153,227,100,103,146,172,251,201,122,139,152,22,208,158,65,206,125,129,73,148,95,187,116,251,250,61,211,149,123,226,36,110,75,239,174,222,56,83,140,114,120,116,5,211,59,58,95,242,29,159,248,225,22,12,214,29,94,32,189,253,81,223,202,4,22,176,39,135,45,220,114,8,100,38,63,212,31,75,240,250,106,147,41,189,118,241,150,81,87,113,79,226,149,59,210,187,138,155,216,129,181,9,100,186,176,228,131,249,224,17,245,250,58,55,188,77,2,11,164,171,133,159,218,228,155,214,248,141,118,88,47,169,172,172,36,247,195,33,95,120,215,159,54,159,44,135,228,114,250,78,198,184,162,161,181,200,112,8,75,219,143,206,230,118,94,46,157,177,243,27,7,17,95,123,97,84,198,198,6,167,232,201,140,254,46,116,244,80,116,216,66,106,151,214,6,135,183,1,12,72,149,21,200,165,199,75,101,61,79,79,253,241,99,245,211,186,99,44,191,123,247,186,88,229,225,225,85,163,76,149,135,90,216,14,223,52,9,171,161,95,247,39,68,231,155,143,248,67,82,99,7,62,228,15,7,123,248,190,86,97,241,29,246,46,243,111,135,131,27,234,93,90,185,54,141,189,253,192,120,5,117,92,157,153,185,37,211,154,0,33,197,202,25,147,243,232,204,26,29,147,202,80,96,175,2,208,184,198,64,43,123,47,204,126,68,197,172,123,134,180,180,139,223,98,195,22,178,187,37,236,135,36,149,82,98,89,44,156,188,216,9,151,241,77,159,35,99,125,100,53,200,77,103,73,179,58,198,180,238,92,49,93,167,177,23,46,117,209,112,189,66,126,90,194,234,48,183,220,133,186,240,65,7,86,180,14,244,240,254,117,174,185,5,151,100,114,150,44,231,80,38,37,87,164,95,44,53,232,176,251,135,238,158,185,92,166,127,29,66,23,14,188,17,86,14,1,22,179,158,244,245,112,61,75,64,17,232,133,246,181,144,54,108,149,3,104,196,168,223,183,219,252,251,32,238,105,129,5,62,52,202,249,177,121,36,89,121,11,123,29,183,49,195,77,180,99,35,139,182,15,252,192,250,137,77,166,252,70,69,9,245,144,210,51,244,37,227,109,153,10,192,209,201,112,211,189,48,25,210,242,145,19,189,160,216,111,56,78,27,96,57,98,107,204,32,234,246,194,66,19,252,205,119,125,72,146,241,106,96,206,167,32,120,50,209,92,171,120,136,51,193,101,185,41,211,29,67,226,218,13,172,205,60,51,8,10,28,22,64,159,154,23,86,91,185,126,248,215,1,100,15,44,203,47,15,72,177,229,82,31,128,240,110,251,137,97,254,86,233,37,243,205,203,8,239,69,234,134,2,230,35,175,223,115,27,237,154,255,171,193,54,6,83,61,100,190,45,210,212,246,139,239,37,63,16,138,188,255,196,135,222,240,123,35,39,7,160,206,124,175,204,128,98,208,96,44,189,163,64,26,161,121,190,195,135,150,231,90,7,182,48,23,27,150,147,238,49,190,253,125,100,161,85,44,42,191,38,172,110,193,53,112,1,74,150,245,193,147,227,75,230,254,67,253,53,236,225,106,48,151,233,21,8,96,110,34,50,14,170,252,82,100,212,79,58,54,80,19,219,12,145,241,45,225,221,168,176,179,25,25,104,17,14,118,5,255,91,49,147,116,7,40,225,228,128,165,202,239,61,188,131,45,132,76,186,75,50,9,177,8,44,230,9,44,207,113,35,83,96,128,130,58,255,111,95,39,194,251,254,80,216,238,16,218,54,195,187,147,82,57,32,210,222,45,106,87,61,66,103,175,176,191,135,49,248,159,119,192,92,140,248,6,184,189,143,220,114,134,174,115,89,20,47,69,85,64,86,233,74,210,0,50,169,91,89,75,104,99,233,112,95,147,98,217,91,12,120,175,244,120,93,214,199,106,11,13,29,221,145,240,167,26,93,204,152,84,25,85,49,56,33,165,214,80,186,234,149,164,118,165,215,73,77,211,170,18,166,88,156,136,147,228,90,211,113,5,43,225,225,71,119,74,182,251,25,133,245,133,229,125,210,224,130,139,207,215,185,156,108,188,181,96,81,131,71,194,211,237,251,151,165,157,55,113,0,182,174,24,63,7,50,20,253,68,210,68,68,96,197,177,42,209,213,111,99,127,124,80,81,137,151,253,100,241,122,221,63,214,187,237,86,246,167,106,251,115,214,246,35,243,19,168,239,46,247,143,13,245,54,215,51,103,252,56,92,163,110,32,214,109,101,157,222,159,162,191,149,6,75,32,51,249,138,239,9,186,101,52,242,92,163,78,201,148,79,116,175,63,95,23,71,30,252,62,203,92,1,123,197,90,231,113,184,106,48,192,243,46,163,253,11,206,225,47,151,45,110,167,221,89,227,249,203,61,214,129,181,135,43,203,44,30,47,235,174,44,189,93,9,219,175,238,124,189,173,250,231,10,123,141,211,130,44,119,225,31,183,239,212,212,89,175,176,230,7,250,71,58,140,20,53,215,213,51,21,165,247,207,50,23,111,235,106,158,80,207,30,252,77,207,152,172,21,15,47,221,168,122,224,44,57,171,189,244,253,229,231,245,118,55,235,185,192,80,20,77,233,129,1,232,239,111,223,169,40,177,90,89,143,231,38,219,120,221,118,193,88,109,162,171,170,204,70,155,77,207,234,140,54,157,69,171,183,88,89,202,204,24,171,244,22,214,202,36,37,144,60,107,180,121,163,129,175,214,11,103,74,170,92,13,94,205,109,169,108,114,156,38,197,244,158,104,46,73,52,31,127,249,29,9,46,8,91,179,92,71,182,110,151,121,96,83,119,151,97,178,99,147,97,232,20,108,254,151,201,112,93,95,225,189,246,160,241,133,253,113,221,245,191,223,188,101,173,55,3,42,255,254,55,235,221,251,127,255,27,83,122,179,214,243,95,247,255,254,208,240,172,172,252,89,34,46,105,179,153,49,51,58,173,214,244,197,112,201,72,184,196,51,141,19,197,165,86,13,46,207,94,190,114,246,98,233,89,147,137,166,25,58,246,198,156,130,221,146,235,183,168,235,158,75,174,135,181,87,235,111,123,156,215,235,76,214,199,215,28,30,246,238,131,123,127,123,97,244,254,163,225,185,206,241,208,245,192,254,196,105,77,198,173,73,167,53,26,77,58,253,201,225,86,35,143,92,108,33,124,162,200,101,84,17,170,137,54,164,160,178,254,38,80,165,203,253,240,201,35,74,7,127,53,252,173,180,84,10,36,191,232,169,109,184,87,175,47,189,117,227,50,134,149,223,127,88,225,172,160,170,239,95,186,87,117,61,133,96,141,6,61,109,210,27,116,95,154,96,49,134,83,17,167,146,162,145,186,219,147,224,96,164,121,9,131,114,247,247,147,119,251,92,143,89,112,7,112,184,44,182,248,31,25,99,9,211,142,84,240,132,169,50,118,107,108,203,206,86,32,211,82,95,31,87,136,240,94,105,20,135,221,25,223,179,165,131,40,105,126,71,187,81,90,144,170,183,193,9,219,48,12,231,96,165,35,46,103,17,188,41,178,219,116,12,40,179,102,198,64,39,63,199,238,138,61,6,254,202,54,122,28,33,9,105,10,218,154,34,88,108,216,67,139,162,117,240,69,208,241,36,7,8,211,226,180,185,93,118,27,192,243,56,249,177,209,47,162,143,46,145,222,165,62,94,244,38,200,97,174,206,110,117,187,60,174,106,175,56,197,23,181,231,96,150,160,105,184,217,162,250,162,68,108,21,153,159,189,176,57,173,238,234,218,167,47,30,37,3,208,240,172,62,250,240,191,1,61,184,158,121,52,15,254,86,126,4,128,84,243,49,81,225,204,214,134,67,164,65,209,175,145,95,139,133,104,12,103,37,109,172,172,195,100,186,228,46,11,121,118,231,136,182,77,40,163,143,215,57,129,166,10,221,58,225,56,13,54,146,91,39,104,79,182,117,66,82,251,12,154,202,179,127,198,209,226,98,15,13,9,157,137,203,75,23,170,137,134,114,251,133,2,53,209,144,72,179,144,164,64,23,138,20,12,39,75,9,225,96,191,176,122,64,166,95,230,210,68,3,23,66,161,43,83,244,200,253,49,235,181,56,107,148,130,175,165,70,25,114,253,49,82,229,162,199,219,112,212,212,189,232,231,6,111,93,165,199,213,0,214,205,133,232,103,223,227,71,117,172,205,222,0,155,50,91,85,41,222,32,245,46,18,191,178,90,234,234,45,160,60,92,168,106,240,216,97,19,241,36,31,214,199,219,111,196,241,32,237,202,89,125,0,39,8,88,157,24,246,200,141,111,145,185,177,20,127,65,94,29,64,212,105,10,240,219,94,87,35,70,188,31,253,41,234,8,197,10,137,141,121,229,38,103,78,146,204,130,102,43,96,216,195,194,4,188,110,128,90,140,216,43,162,41,74,79,83,90,138,22,123,119,255,108,119,222,114,89,47,56,234,158,63,169,244,62,122,108,173,212,153,40,241,165,5,237,156,210,235,191,247,212,90,64,137,164,165,223,160,243,209,128,7,163,201,64,25,205,73,218,93,227,99,175,66,66,165,129,162,34,227,173,37,151,185,193,81,126,169,83,216,110,225,131,139,64,57,137,164,254,117,74,216,104,105,252,101,179,152,88,91,53,45,230,73,186,107,12,141,79,193,212,125,130,121,146,150,231,20,101,120,90,184,62,1,74,120,40,138,201,153,152,192,73,204,19,60,85,235,91,172,48,133,4,89,137,176,231,144,61,92,120,226,102,104,218,200,152,76,148,241,203,16,119,185,27,169,73,35,44,182,70,102,251,73,251,7,225,160,159,180,204,99,111,83,255,154,232,243,29,59,53,116,174,213,26,41,170,90,23,165,243,186,90,160,115,235,73,208,185,10,148,20,156,228,79,108,213,139,179,207,70,158,250,101,78,6,179,183,160,144,61,22,80,53,125,202,72,235,77,148,33,227,244,117,148,30,24,216,156,211,244,195,161,30,126,96,10,27,66,251,215,200,96,43,215,217,253,235,222,88,100,114,148,111,127,143,89,209,239,166,184,254,87,100,127,93,234,123,45,219,131,62,175,9,1,176,122,35,104,118,10,19,146,230,67,209,90,26,38,164,75,135,90,115,159,117,122,92,238,106,135,235,25,183,179,78,130,11,100,121,33,188,59,45,45,92,56,208,67,86,222,114,126,25,47,215,49,240,111,208,107,77,52,149,31,184,146,207,144,140,31,8,107,235,18,104,232,65,242,15,255,177,188,209,11,38,3,223,238,255,83,1,97,165,204,90,179,217,100,208,103,99,21,29,197,232,101,248,161,252,190,246,18,191,216,207,79,15,240,161,17,217,234,75,249,47,58,236,91,122,64,83,126,144,253,219,215,71,186,219,96,71,2,124,97,30,243,235,46,126,177,147,244,110,75,206,43,160,128,59,96,82,88,217,130,174,186,145,209,154,40,83,42,188,158,71,142,186,132,85,215,194,159,76,194,123,6,228,176,54,29,254,210,138,242,162,219,119,174,151,23,149,254,229,47,225,195,25,174,105,21,187,204,207,207,11,159,199,207,17,255,36,252,226,87,219,10,74,7,122,51,109,50,232,242,163,217,138,242,138,10,97,37,200,13,181,113,131,107,92,247,10,241,183,114,111,251,82,25,43,230,12,84,246,214,137,111,21,58,162,162,66,157,173,45,170,248,103,130,155,79,234,111,104,113,218,52,100,255,61,63,191,148,207,25,96,52,139,147,137,253,145,91,132,85,212,226,206,183,181,98,236,138,70,139,243,121,131,197,41,19,134,149,110,13,202,90,130,141,174,134,148,68,98,180,170,170,173,96,99,57,107,27,42,235,30,187,27,30,187,26,42,105,5,251,78,194,103,56,48,31,241,181,167,155,120,199,127,154,172,209,166,16,214,37,99,172,125,205,242,79,234,234,214,100,68,17,30,171,20,217,192,230,183,59,126,182,219,46,160,132,48,48,204,247,34,226,92,13,222,202,70,231,139,198,56,210,146,207,209,27,159,43,183,109,11,239,191,33,59,243,32,55,132,253,79,220,92,11,247,186,95,104,89,227,58,230,34,179,126,185,108,234,175,83,177,222,200,96,233,80,186,170,90,107,6,121,143,213,157,170,61,76,149,5,132,205,227,12,213,157,142,211,159,45,19,90,228,26,178,165,37,58,201,22,157,57,193,5,46,206,12,116,58,124,73,197,101,78,160,124,83,225,73,158,166,105,220,205,21,48,162,85,71,242,220,208,26,63,212,202,189,107,143,188,246,243,161,54,110,114,134,15,238,146,241,241,112,104,155,204,15,159,54,146,175,182,90,180,160,191,88,163,36,111,117,3,81,56,78,130,228,179,160,229,203,144,124,142,11,92,156,25,232,252,72,94,85,29,165,124,27,2,166,105,94,153,241,161,53,49,160,194,154,20,240,161,75,195,7,232,179,220,231,45,178,50,23,89,24,229,214,198,65,165,229,66,51,240,150,31,196,180,139,95,247,186,34,163,125,220,240,54,22,191,9,237,208,186,243,88,216,53,167,90,67,178,154,99,198,5,53,27,149,39,160,151,155,0,63,176,67,246,122,73,111,151,240,242,61,233,106,129,57,104,25,210,49,133,225,169,93,65,110,122,15,19,45,64,99,235,152,33,109,65,97,166,139,27,218,13,31,28,146,249,125,126,96,233,100,167,162,165,97,45,148,196,177,65,110,42,164,101,9,240,204,119,125,228,55,86,208,188,152,27,19,94,182,71,198,183,133,181,29,48,134,113,34,162,241,17,222,239,129,41,8,109,203,145,150,110,152,78,150,56,57,77,154,214,147,171,42,156,158,170,42,185,32,251,186,80,15,6,27,157,204,111,106,132,142,117,126,96,45,31,85,184,206,242,216,238,172,169,118,219,89,167,45,229,221,201,104,197,140,232,16,193,46,29,214,90,214,137,153,101,85,106,35,242,224,82,233,71,12,50,15,130,115,225,12,246,243,171,181,219,216,31,189,238,6,246,39,27,40,219,141,63,50,20,21,43,235,146,32,20,50,52,36,199,88,76,44,103,227,66,32,224,186,115,168,129,199,103,210,224,118,179,78,175,76,50,89,99,3,91,219,112,84,208,231,72,187,14,46,132,247,198,100,173,185,244,199,200,85,207,122,202,38,251,82,226,222,17,248,52,254,20,105,221,229,194,38,226,100,144,69,195,78,130,165,202,101,107,60,147,120,7,80,32,214,65,136,205,62,89,62,203,196,196,53,120,88,183,180,129,159,140,98,174,244,82,44,67,144,109,189,48,159,9,129,62,111,115,161,216,48,208,70,179,81,103,48,166,8,235,90,165,114,171,173,159,184,9,144,17,31,52,48,158,181,46,90,185,226,139,106,31,180,212,213,156,194,104,63,171,25,52,208,234,170,122,138,122,210,80,107,178,218,96,119,118,162,246,161,7,213,91,239,72,61,0,54,83,141,230,140,13,162,82,103,87,164,92,31,0,117,137,124,81,13,2,47,249,65,81,99,84,182,23,212,113,218,182,170,121,21,138,144,244,52,109,4,219,71,29,25,85,89,170,26,53,48,119,234,171,147,16,173,55,232,216,106,61,21,37,33,22,8,135,18,27,222,233,92,64,66,76,206,36,148,56,179,194,146,79,20,193,103,138,19,30,241,91,32,28,35,165,163,180,102,70,75,171,148,64,107,189,225,208,40,170,0,180,65,247,213,201,199,68,179,85,38,27,205,68,201,167,26,236,32,74,180,127,244,32,139,244,213,185,75,160,148,217,21,150,132,226,168,6,9,148,252,160,227,16,82,122,89,147,191,202,91,46,10,166,202,87,232,100,165,238,37,107,13,37,35,216,226,174,105,192,243,57,68,112,10,249,22,11,7,239,133,21,49,55,6,89,34,30,162,83,229,176,56,31,159,201,188,110,94,87,189,221,154,62,230,247,176,134,160,35,194,127,58,177,2,45,215,220,130,89,234,115,91,66,119,187,88,229,96,26,187,188,245,53,167,102,67,127,109,68,170,66,165,7,52,42,107,45,82,171,71,14,155,164,123,16,168,53,47,108,38,114,65,58,66,209,117,97,210,27,205,20,60,163,175,159,28,248,184,207,31,184,189,143,152,175,183,187,73,218,102,78,230,145,12,173,165,12,140,148,26,22,122,67,222,143,133,3,65,126,124,133,155,150,241,135,100,68,108,58,243,101,118,76,168,84,129,79,177,234,171,244,82,191,33,37,217,26,102,154,214,154,140,250,164,101,170,85,10,142,160,13,140,181,78,35,4,63,134,67,251,194,202,156,176,170,84,40,93,124,110,134,157,233,39,192,244,117,180,249,126,164,127,58,193,83,58,19,109,194,119,44,101,193,125,10,79,233,106,60,143,159,61,198,24,9,177,149,42,11,255,219,82,79,233,178,238,82,50,88,80,106,155,154,211,238,165,102,93,138,211,31,254,53,181,32,165,87,158,196,168,213,131,108,103,116,6,181,212,8,58,160,134,107,239,228,38,130,223,14,53,234,140,102,189,213,38,157,25,35,53,62,143,83,99,21,82,100,30,212,152,134,133,194,83,163,210,194,20,167,63,253,55,68,142,122,154,97,116,140,201,164,150,28,65,147,212,240,19,83,88,240,228,155,33,71,202,106,179,84,25,181,90,137,28,29,122,47,82,162,72,142,53,121,10,199,52,44,20,158,28,149,22,166,56,253,233,133,85,237,21,181,130,19,210,232,101,143,193,147,80,81,111,113,63,150,20,230,34,6,125,78,58,134,73,231,210,255,230,122,150,132,238,190,255,137,158,34,99,1,191,189,17,97,107,9,84,74,108,218,48,177,36,28,142,70,218,186,212,212,170,47,12,212,6,45,252,167,151,89,192,255,230,218,15,200,234,174,176,62,243,63,26,108,111,221,52,15,91,29,215,246,82,138,89,83,7,90,74,194,122,150,98,144,73,201,64,209,82,103,130,175,153,235,108,143,248,198,184,233,222,88,25,179,148,180,16,241,196,26,83,67,20,146,0,188,58,74,35,93,83,237,114,121,149,115,72,172,210,247,98,2,137,20,27,175,77,73,34,161,85,231,8,41,28,222,223,99,45,182,70,188,0,143,240,129,82,45,110,214,82,137,103,232,226,81,190,116,140,255,93,242,12,101,39,21,45,205,134,24,162,49,127,152,209,87,82,90,50,183,40,225,73,33,251,68,163,145,102,133,62,15,197,108,148,88,226,137,116,233,113,51,79,232,124,146,144,164,71,227,188,158,227,196,204,6,10,133,91,124,21,116,71,57,40,10,14,29,57,95,206,119,137,229,239,146,40,76,202,106,196,94,159,227,7,100,103,129,244,110,18,127,27,215,61,43,67,109,78,86,92,49,141,211,19,93,57,135,221,198,34,209,168,117,163,136,55,136,100,150,240,103,6,103,143,26,122,145,113,251,136,99,107,142,158,144,12,94,18,48,210,207,84,175,14,126,86,198,122,107,93,182,31,177,200,193,79,236,83,214,233,245,92,168,115,129,169,133,137,60,63,217,157,94,214,253,20,118,65,45,236,79,63,57,92,174,250,31,233,120,189,192,239,146,22,166,214,110,179,177,206,51,197,232,33,74,88,141,111,230,66,229,87,178,9,43,34,45,217,136,61,90,129,74,241,243,56,205,133,3,33,44,189,211,218,66,86,118,53,6,157,233,207,58,138,209,48,20,89,30,78,32,186,148,145,61,86,120,231,56,147,106,253,158,209,28,213,133,12,7,124,145,153,207,81,194,77,162,220,4,72,208,21,165,57,42,165,16,117,48,165,62,45,154,233,24,147,50,26,224,140,216,184,9,47,13,150,175,75,170,112,151,240,38,237,117,132,52,25,252,136,37,165,143,222,75,1,48,81,60,167,110,96,0,240,209,174,139,154,159,88,27,143,162,74,110,96,84,68,145,193,100,208,210,134,244,34,45,213,94,233,1,52,134,202,165,158,162,196,78,117,87,58,195,251,155,24,215,58,187,12,59,115,100,188,5,43,121,190,27,229,214,6,112,151,158,88,226,131,135,154,232,155,185,110,210,59,151,64,245,114,138,100,84,143,20,31,44,105,146,212,9,105,146,82,235,104,90,60,19,102,140,22,75,21,67,163,38,249,140,169,113,214,129,58,226,66,77,210,1,58,165,229,73,170,38,105,160,168,70,224,227,44,209,48,20,117,246,40,28,70,122,39,157,20,231,141,49,81,237,140,254,41,23,101,121,2,203,92,156,51,180,71,241,153,81,152,163,123,199,169,121,73,236,217,187,25,103,207,68,14,211,164,48,190,168,18,127,151,122,85,194,69,30,32,65,79,162,147,94,233,177,49,126,78,230,253,44,204,159,233,169,74,220,159,206,254,74,85,154,96,175,173,48,208,151,41,61,99,190,119,243,246,237,76,148,193,40,11,128,131,29,62,184,0,234,0,23,154,17,182,86,25,45,105,157,254,11,22,160,152,240,147,150,37,233,67,210,211,74,122,55,248,79,159,18,246,188,83,194,254,98,151,66,157,206,164,213,217,116,34,251,107,31,59,107,41,202,84,143,157,227,41,150,162,234,30,167,178,63,99,54,53,210,58,115,190,236,159,39,190,18,152,95,158,251,79,100,149,139,115,3,55,133,249,79,146,251,243,227,167,66,141,80,16,190,84,35,175,101,10,189,29,173,151,86,145,43,185,201,30,44,189,59,211,7,54,40,255,254,48,18,234,23,218,55,36,201,29,153,124,19,14,236,99,45,219,181,49,144,220,227,100,124,139,123,53,5,70,35,44,230,169,99,79,220,157,173,122,171,133,170,166,171,163,187,179,171,1,118,231,42,229,221,249,120,236,121,108,196,101,229,211,19,88,245,226,60,161,86,205,174,95,151,217,126,31,225,247,17,126,171,35,228,55,78,182,87,226,216,5,217,170,28,150,132,28,190,36,169,133,46,113,67,17,198,99,211,50,237,30,142,164,150,78,113,175,138,124,28,33,19,173,248,111,103,43,18,234,33,173,163,120,10,46,218,26,164,215,207,111,28,8,109,91,167,110,99,66,189,145,177,152,89,61,203,74,102,163,246,145,25,244,70,253,11,220,152,60,96,33,178,218,194,110,76,185,97,41,235,46,116,18,11,90,172,6,198,19,219,115,114,225,137,223,206,19,242,123,78,97,71,56,81,35,213,240,176,236,222,189,27,55,213,152,47,122,101,117,248,243,14,217,156,225,67,175,72,159,159,57,71,71,124,173,194,254,39,50,23,36,7,195,220,230,32,191,223,79,230,55,73,111,23,216,54,164,117,252,212,201,26,90,140,152,102,40,155,81,103,144,100,141,217,1,146,193,76,159,148,141,154,39,186,242,54,81,143,181,198,197,57,65,251,187,202,155,219,8,9,248,57,250,51,225,175,252,142,209,115,62,62,143,130,150,8,166,170,57,124,201,251,212,159,212,107,226,135,138,105,197,18,234,93,110,175,71,118,99,190,248,16,163,147,139,104,35,173,53,81,202,44,194,100,56,172,231,198,247,200,84,15,125,142,34,227,251,252,250,102,100,97,8,216,132,251,180,8,172,161,33,29,192,30,131,120,178,211,58,205,247,116,30,29,58,171,19,129,39,21,239,145,32,2,141,6,157,185,218,86,109,150,206,1,140,53,96,253,59,140,168,110,217,65,101,169,178,20,246,148,62,15,84,29,137,63,249,106,120,39,178,180,197,57,0,154,44,251,100,36,223,183,192,101,71,34,226,139,28,225,107,190,190,8,254,250,186,153,154,35,43,153,78,49,71,116,171,236,62,192,190,10,175,123,249,222,142,148,99,43,126,209,135,225,51,147,125,176,206,254,72,203,14,218,15,7,61,185,171,102,95,64,46,153,205,85,186,42,138,137,202,165,154,122,15,69,233,106,79,236,124,50,79,124,21,228,88,50,199,53,46,206,13,216,223,85,179,223,71,248,125,132,47,126,150,248,219,27,225,100,207,35,42,116,229,15,13,165,104,171,150,92,42,187,150,73,34,42,187,231,248,190,102,208,199,184,217,22,97,254,16,99,43,130,31,195,123,253,145,225,13,225,93,11,215,241,89,56,56,32,93,195,225,224,167,83,183,221,97,230,164,214,164,167,140,52,99,198,226,157,207,168,103,141,176,237,49,250,196,147,136,228,204,201,227,109,119,57,35,42,255,51,136,227,172,107,177,74,56,191,169,45,46,191,113,178,189,190,236,19,190,156,243,195,148,137,98,148,157,31,130,255,53,183,211,134,61,204,71,247,249,21,31,31,92,224,250,176,94,139,134,155,60,32,123,227,194,33,182,105,59,117,114,0,213,94,189,153,210,90,24,214,40,170,189,180,235,145,142,162,76,53,39,229,253,200,17,77,133,113,127,228,184,164,197,170,128,252,95,229,255,200,239,57,191,189,17,190,152,21,206,100,34,89,101,255,8,241,125,32,11,43,96,165,133,131,43,124,123,27,63,183,199,77,116,147,133,151,96,149,1,201,70,214,247,52,96,184,145,222,126,174,227,163,240,242,125,100,160,41,242,97,233,148,138,38,84,81,244,213,6,51,77,217,36,209,68,61,98,94,0,79,139,245,197,29,13,96,145,215,23,56,160,175,0,184,43,136,117,158,227,218,23,231,15,248,55,165,198,252,62,194,239,35,20,116,132,83,224,18,19,63,72,156,76,34,176,138,51,201,246,146,195,210,183,49,112,33,92,111,170,84,66,177,169,131,227,63,234,47,128,189,104,184,83,118,241,122,236,235,219,119,42,210,37,108,110,46,52,230,228,55,70,51,163,183,177,180,41,186,49,58,245,79,192,108,119,42,235,236,199,115,161,165,70,3,205,45,194,46,163,145,194,129,176,136,218,212,103,210,191,169,210,121,118,2,139,163,10,60,181,46,179,194,146,115,156,207,19,184,95,204,206,228,67,91,92,199,92,146,24,208,234,40,157,214,32,166,176,138,249,191,171,33,210,59,20,47,175,153,52,122,244,255,60,97,59,157,67,229,204,250,133,39,45,89,141,75,43,231,134,143,53,28,37,243,155,168,254,41,5,64,102,96,148,223,69,73,22,12,69,229,200,201,8,145,188,87,58,103,97,19,147,52,5,228,148,212,118,160,82,47,211,92,178,75,113,152,212,90,96,53,71,21,213,126,46,189,126,233,130,94,171,55,82,223,63,180,56,26,176,85,183,158,209,234,205,90,198,76,125,127,143,181,217,221,64,172,23,18,207,97,31,217,164,74,180,233,27,103,12,234,227,209,59,150,247,242,158,179,216,234,207,59,93,30,155,19,104,217,40,210,124,52,247,157,102,138,128,44,129,42,43,45,143,221,13,152,6,111,164,105,202,116,94,157,217,135,75,216,21,14,246,71,198,91,53,100,126,95,216,90,228,135,86,185,142,217,24,162,142,26,74,49,105,21,212,78,6,107,138,32,29,17,150,68,87,201,122,228,239,129,20,223,202,8,5,119,108,73,49,73,137,78,16,211,131,242,7,23,49,26,201,100,52,62,80,62,80,208,102,10,233,232,25,137,180,245,243,77,203,124,243,50,223,244,17,35,49,197,208,75,254,229,174,6,115,9,167,130,100,190,141,209,254,133,102,114,63,60,250,2,27,27,67,89,88,198,64,91,164,141,237,153,199,75,81,186,154,19,139,180,205,3,87,57,185,184,10,186,194,197,234,193,253,130,71,68,249,141,147,237,245,251,19,114,125,194,151,243,181,25,142,116,180,242,219,101,101,6,67,118,29,45,131,47,190,167,51,28,240,145,238,49,210,187,13,74,25,55,54,204,7,119,133,249,67,225,93,11,31,106,21,58,94,230,155,129,116,178,178,138,18,187,184,84,83,86,131,205,44,102,174,63,109,124,170,119,162,254,125,82,62,184,156,17,85,24,47,92,65,22,187,88,37,240,57,38,176,231,202,78,191,143,144,62,194,23,243,141,209,153,54,59,101,15,61,241,143,8,171,195,240,143,219,24,229,246,166,195,129,101,174,179,91,74,109,211,8,109,31,248,129,117,50,63,192,13,28,132,3,31,56,223,34,233,110,18,182,55,79,155,176,16,21,27,150,54,152,204,22,139,53,234,21,211,214,3,102,204,39,230,21,59,22,214,10,226,15,203,113,189,139,243,1,249,119,79,216,239,35,124,179,35,156,30,72,126,31,225,228,77,251,187,119,239,92,189,114,67,50,252,50,101,25,105,51,196,137,128,76,20,182,91,206,145,249,121,110,104,149,116,207,48,96,248,145,181,87,26,238,243,14,23,88,61,74,190,236,30,150,186,205,199,103,119,26,54,65,81,99,102,205,12,165,211,233,197,60,218,167,47,158,80,47,192,176,127,161,156,68,118,188,77,48,79,116,29,207,192,63,206,58,23,231,4,177,218,205,47,179,195,60,246,71,252,183,88,104,50,213,25,238,102,19,90,156,213,73,21,59,43,197,79,139,191,119,120,127,138,23,161,148,189,219,201,62,247,166,223,45,126,90,252,125,77,226,221,41,173,69,163,140,103,109,240,84,90,189,238,196,222,10,242,207,193,62,108,248,25,91,207,90,144,20,206,159,23,43,132,158,247,186,188,22,7,214,97,77,235,25,157,92,195,55,254,59,161,208,106,203,18,89,247,145,213,61,193,255,65,58,166,205,161,101,158,167,161,74,42,158,42,253,198,178,165,209,2,168,88,192,55,250,233,69,139,135,189,37,182,155,140,193,20,187,0,217,181,50,122,85,165,120,239,119,127,197,238,127,98,81,215,40,154,196,107,176,136,42,126,40,185,96,18,69,153,116,115,122,153,222,88,105,216,216,232,207,220,150,250,164,104,7,177,214,39,206,223,223,42,123,58,93,109,127,206,218,42,177,90,110,93,252,78,229,11,98,13,229,100,132,173,116,65,234,177,117,162,156,150,185,188,210,238,172,118,201,92,42,94,158,137,93,157,236,51,143,165,190,190,232,63,170,47,176,78,91,98,227,190,216,200,14,87,13,140,44,181,188,214,112,19,237,156,175,137,4,23,226,50,33,233,73,71,140,149,13,94,171,203,169,4,174,199,235,118,57,107,210,165,12,130,26,135,251,8,94,108,142,26,25,142,22,180,142,222,171,14,15,73,3,218,92,117,172,7,100,86,226,200,100,124,31,214,61,214,183,37,195,205,207,92,110,135,45,229,206,200,168,194,157,207,44,110,185,105,144,214,241,112,176,83,186,69,116,133,165,248,104,146,30,136,213,148,29,248,73,81,124,189,30,121,196,74,215,14,196,240,57,135,93,60,30,157,248,68,38,214,142,240,131,132,155,101,38,158,122,214,106,183,56,0,72,103,141,199,226,132,127,88,220,185,40,122,96,209,14,255,190,194,202,167,164,42,39,32,45,188,255,70,120,185,145,199,218,167,12,233,172,178,36,14,123,251,98,137,252,218,165,220,102,77,190,173,84,229,109,22,135,35,186,77,38,220,204,135,246,72,159,95,213,253,47,146,168,84,218,35,85,221,168,64,167,96,56,242,125,205,170,70,104,76,122,180,208,185,174,246,209,207,31,37,221,56,127,200,15,108,168,123,98,210,141,220,171,222,232,141,95,152,6,19,45,252,68,4,46,173,135,119,251,242,32,192,196,241,98,76,7,155,179,187,82,226,234,98,110,164,135,27,153,146,199,80,218,105,67,242,146,30,240,237,109,217,111,172,195,51,138,36,2,28,248,76,246,215,179,223,232,125,154,114,151,176,216,154,124,215,119,178,207,107,240,128,116,61,83,28,153,218,140,98,76,29,82,106,60,85,143,170,80,0,45,29,130,124,228,247,134,132,131,126,216,135,213,15,32,233,75,240,77,81,108,185,174,220,41,125,80,161,44,105,229,6,121,94,245,184,246,133,184,44,83,92,247,32,57,252,24,147,167,95,152,12,235,92,78,182,81,142,16,133,173,89,62,212,155,7,33,38,143,232,241,186,172,143,147,198,125,57,195,207,203,96,27,238,124,210,224,242,178,158,243,201,3,252,44,170,245,240,14,6,128,187,103,186,184,102,5,1,145,124,159,189,222,149,178,169,195,147,213,220,88,221,224,76,22,105,83,193,72,91,255,87,144,16,150,6,175,75,86,63,89,223,23,246,23,114,92,153,212,241,170,26,26,147,87,123,57,58,102,230,219,108,44,216,36,86,236,216,144,116,119,194,170,200,49,64,189,27,244,117,171,247,124,210,80,213,168,210,187,19,135,137,248,218,99,64,164,41,22,74,163,36,66,177,191,64,222,118,146,224,27,101,64,172,142,134,42,229,251,87,130,100,114,92,241,241,73,183,137,66,53,25,3,225,128,100,48,226,115,51,223,108,173,101,95,212,54,36,201,188,165,216,196,51,223,153,38,156,37,90,56,18,209,0,120,102,58,98,29,172,85,226,134,230,125,46,168,32,54,21,150,28,86,104,180,59,28,218,249,10,188,224,101,173,181,114,107,198,47,246,115,29,190,60,164,84,210,128,158,58,139,27,165,57,55,26,4,180,136,56,249,131,218,123,245,53,112,163,254,106,110,55,137,237,50,240,152,7,180,173,224,107,161,105,0,204,161,220,70,240,226,66,138,93,206,35,190,177,240,225,76,142,207,199,39,95,191,159,219,77,177,173,11,63,244,88,237,172,211,42,234,241,139,253,100,121,33,183,145,170,192,176,120,108,173,5,147,21,183,208,46,96,187,225,200,155,131,252,160,169,160,245,122,157,137,162,116,70,189,150,54,226,120,61,83,196,63,206,111,28,128,56,145,134,252,178,164,90,109,241,212,218,93,78,89,201,45,86,41,206,131,90,177,179,178,172,185,18,220,32,203,74,76,236,150,85,48,133,246,32,55,177,42,127,75,146,191,58,190,220,22,143,151,173,110,112,96,15,36,160,57,145,79,38,218,35,179,19,240,147,188,105,202,97,164,42,22,4,75,99,194,56,225,131,133,200,194,40,89,25,35,7,157,138,61,199,50,160,197,218,224,240,54,184,143,122,87,73,21,89,186,134,190,130,128,170,115,85,217,29,172,236,162,139,29,248,16,164,162,180,187,108,246,26,187,236,61,131,107,252,116,83,94,202,87,18,24,49,204,91,235,129,38,43,177,31,176,168,114,190,17,86,95,69,97,74,31,66,9,38,84,204,95,245,43,105,80,178,143,125,244,228,241,163,248,83,155,59,200,124,219,145,188,78,31,164,150,181,36,172,36,89,217,134,39,230,8,226,120,32,58,173,47,188,250,181,216,8,73,118,33,253,96,100,44,202,47,62,30,132,200,154,128,43,219,100,189,37,31,41,241,232,188,34,32,82,125,134,35,112,100,204,228,90,229,187,195,129,14,60,33,207,112,119,205,139,12,207,222,61,36,59,111,149,238,78,67,159,213,238,77,210,77,73,203,146,116,78,202,127,28,149,189,253,121,181,242,179,185,249,61,126,124,36,174,20,166,130,45,42,84,231,147,86,66,92,0,172,107,49,227,15,31,116,42,144,106,226,13,207,88,123,99,67,18,192,221,31,185,207,91,202,90,104,210,221,113,94,177,91,30,53,52,218,107,26,236,201,122,229,59,110,106,226,43,217,134,94,183,229,41,235,144,223,200,90,184,64,32,119,19,36,101,68,87,131,215,230,114,185,147,25,102,135,204,13,41,227,14,240,243,2,22,251,188,50,108,194,214,103,160,54,69,53,62,229,198,106,151,43,201,218,227,15,122,34,239,166,100,69,136,56,33,57,152,30,217,157,53,54,187,197,153,1,40,110,116,149,127,185,171,22,168,248,214,43,126,44,10,208,36,102,124,19,153,29,249,26,71,86,182,6,249,205,106,52,191,51,211,196,241,26,237,117,160,13,38,105,246,33,110,77,97,187,73,188,209,97,111,120,222,144,124,238,52,56,26,211,72,51,222,201,38,61,15,168,78,88,93,206,126,87,141,197,245,216,146,100,131,69,62,142,8,190,102,181,235,33,247,145,204,242,84,75,39,238,233,35,166,137,109,233,6,217,133,153,154,231,39,58,37,79,11,153,88,3,43,49,13,200,68,151,166,172,27,83,242,86,241,159,62,133,3,237,220,208,46,168,233,92,207,188,38,28,232,129,97,65,30,75,195,70,102,62,199,156,121,235,96,203,202,185,179,98,126,48,156,86,122,14,133,226,149,72,166,154,106,187,219,227,61,114,110,213,203,7,8,160,62,40,231,34,47,66,7,121,17,165,163,233,162,234,106,202,166,51,49,213,88,218,201,243,188,230,153,155,162,92,38,116,142,55,56,41,218,104,21,75,59,157,209,120,188,141,232,118,180,217,61,245,14,75,227,143,118,39,64,194,158,19,109,150,159,128,78,102,223,18,223,30,168,38,96,116,129,201,79,58,102,248,80,175,208,55,47,172,4,72,239,170,176,218,196,111,204,93,100,206,49,20,101,166,104,51,45,25,245,113,128,229,196,7,186,207,172,110,214,102,247,90,107,237,78,203,249,26,215,211,243,86,103,54,56,224,241,128,234,112,96,153,140,239,39,237,15,184,122,245,9,200,202,21,73,84,181,149,101,12,58,49,63,0,144,212,104,166,40,230,177,53,26,120,251,200,45,70,16,168,64,67,12,7,148,222,36,137,134,227,192,84,197,84,85,89,204,218,170,232,194,61,129,111,158,87,3,56,204,163,70,138,246,82,210,194,161,79,145,15,77,144,182,32,223,238,199,82,15,29,51,113,104,126,221,243,243,251,27,191,238,181,99,185,236,182,96,244,147,141,57,248,132,44,15,3,121,83,52,67,122,119,142,1,41,83,68,25,25,83,145,141,101,172,180,81,79,35,164,213,245,207,221,6,138,178,98,171,61,218,172,167,104,183,43,10,105,220,232,151,124,105,128,67,174,105,53,5,228,68,88,146,36,64,125,186,100,174,177,89,45,231,235,236,118,111,148,120,138,68,165,43,28,152,224,39,154,164,243,1,126,101,134,239,107,37,235,62,229,97,227,30,111,145,241,26,107,158,89,206,164,77,31,105,181,138,197,189,46,250,32,244,173,192,78,229,102,107,96,151,98,221,21,141,240,179,238,186,179,218,245,179,155,181,186,220,54,171,203,198,94,208,233,40,154,50,80,64,15,6,198,108,62,163,41,6,204,147,150,79,184,22,43,237,100,174,77,147,124,65,218,66,36,73,169,140,162,2,254,103,206,28,131,208,170,89,134,181,90,171,204,81,226,127,164,7,26,99,145,248,235,76,20,85,83,29,35,126,201,203,37,174,32,128,15,154,98,118,194,17,49,247,232,81,67,149,197,117,222,229,174,145,2,26,48,122,37,166,155,199,105,34,28,56,224,58,230,145,179,15,155,213,141,75,51,90,163,17,101,70,177,36,15,242,28,74,2,206,242,36,65,21,14,7,186,133,246,85,137,62,165,193,200,238,38,233,93,83,7,215,51,214,9,187,122,141,68,144,96,154,115,35,61,164,227,109,28,46,180,40,87,39,227,67,165,234,11,153,8,190,238,124,163,235,104,79,198,211,88,45,173,23,15,240,184,150,69,248,243,24,244,163,205,68,63,226,42,58,237,150,40,143,137,11,39,137,29,233,4,152,116,247,134,247,198,142,41,240,24,99,145,129,49,88,77,54,150,66,49,226,117,63,198,214,43,207,40,20,35,181,90,138,166,31,69,197,8,240,56,247,122,89,242,152,97,136,255,248,10,241,111,135,247,39,82,68,113,118,112,234,27,207,63,1,166,118,184,112,177,36,27,72,156,26,110,239,93,65,160,37,210,231,23,14,166,132,181,119,106,151,63,27,163,209,44,171,103,244,122,42,42,209,27,128,225,172,84,234,86,140,114,66,20,146,109,255,13,119,82,255,163,209,2,157,159,163,77,166,227,137,234,40,8,90,74,111,54,233,171,108,81,94,175,195,122,235,118,17,199,86,138,209,233,162,188,30,231,37,161,123,149,188,105,74,18,213,159,95,113,211,123,128,224,240,238,130,38,190,159,156,139,76,190,149,22,128,243,45,194,30,200,208,231,96,76,211,49,40,82,119,68,145,162,254,32,78,53,122,199,15,53,32,167,171,126,72,11,104,44,128,212,166,105,10,95,12,254,160,181,136,137,79,73,66,59,249,251,132,37,73,84,69,234,143,152,4,155,145,247,246,133,15,198,163,251,116,96,129,172,236,43,44,97,157,197,238,240,186,126,20,37,210,255,121,106,143,171,183,40,145,80,116,68,94,174,240,43,235,191,238,141,165,93,33,75,23,98,208,165,151,117,92,56,67,233,141,244,57,19,172,187,150,54,24,193,88,60,156,228,54,7,201,235,174,116,65,39,73,39,120,68,210,45,25,118,229,212,143,210,212,83,139,221,125,190,230,133,197,110,141,46,195,143,38,19,154,192,158,70,79,17,0,94,231,114,62,105,96,221,141,69,24,234,127,177,193,3,202,158,199,115,203,110,197,115,246,159,27,156,118,143,213,110,187,96,166,197,173,146,54,208,38,61,173,51,51,198,219,223,59,93,210,254,42,174,6,109,50,26,245,217,84,71,32,77,16,85,92,251,34,223,178,120,164,159,38,219,45,217,245,14,21,28,102,53,179,180,145,161,109,81,38,247,56,225,55,42,67,140,253,185,106,125,91,90,18,137,100,194,123,211,32,239,64,216,145,190,79,146,188,75,151,113,234,246,144,44,154,156,153,50,129,209,167,181,81,58,171,216,150,177,246,233,147,6,59,69,153,232,68,9,149,44,30,200,202,48,24,194,178,154,220,57,160,127,16,15,56,52,200,7,145,105,76,140,162,60,72,181,189,194,129,16,108,154,164,123,48,188,223,45,27,41,24,147,25,47,170,108,207,206,200,35,64,102,250,146,60,72,209,25,119,144,48,144,27,196,105,144,174,33,180,233,68,5,71,210,31,249,205,16,31,154,146,76,63,77,178,161,115,46,77,196,213,23,39,130,14,140,36,157,3,74,246,168,0,227,1,198,38,130,210,144,232,81,24,237,3,241,66,122,3,73,67,220,169,103,221,22,47,107,211,84,53,106,174,54,88,156,53,120,250,163,185,205,122,47,91,60,172,166,212,85,87,223,0,2,76,35,73,48,120,127,254,63,53,183,188,182,243,241,49,82,177,41,217,169,24,131,152,17,151,82,144,226,31,210,173,204,88,188,99,189,189,81,82,228,36,204,197,164,141,24,206,238,182,38,152,231,94,139,23,24,62,129,194,64,78,21,85,51,172,76,84,171,189,206,82,195,122,96,51,22,31,47,149,105,136,197,89,39,106,117,233,251,113,82,149,33,185,245,63,138,203,77,255,174,16,48,63,123,97,73,129,57,242,255,87,119,172,77,78,91,215,207,217,95,113,215,45,88,6,63,247,5,172,241,102,150,205,134,108,75,54,105,118,201,116,134,97,60,178,37,239,106,35,75,30,73,54,108,193,157,37,9,45,143,208,208,105,32,9,143,129,18,2,76,82,160,157,188,32,16,248,49,93,219,203,167,252,133,158,115,31,210,149,165,125,64,248,144,50,33,150,116,207,61,247,220,115,238,61,175,123,36,86,222,95,91,57,1,75,168,251,233,245,103,151,174,244,110,156,99,187,34,118,133,138,194,225,13,203,167,69,101,110,164,168,152,202,245,220,55,221,79,191,239,126,127,10,214,45,233,60,253,122,237,222,253,231,174,38,94,4,193,55,236,134,248,149,170,137,249,234,224,13,132,255,210,210,42,90,16,205,219,143,29,171,47,207,209,130,104,104,117,23,237,35,228,85,146,172,54,29,71,183,188,36,25,39,201,100,187,157,232,43,195,22,120,130,10,222,189,126,237,113,213,180,93,29,0,132,57,95,82,91,170,91,117,140,134,55,94,228,227,26,213,247,56,220,219,118,67,249,173,222,130,161,82,69,169,240,221,213,205,90,98,226,143,226,187,49,172,59,161,53,254,9,228,40,176,181,14,122,215,211,67,149,221,13,98,88,4,70,70,202,28,251,8,163,139,87,194,251,251,97,239,182,82,35,139,158,202,182,137,223,212,0,184,233,152,209,138,123,10,68,95,175,216,54,33,136,224,53,245,168,149,176,85,51,96,9,121,219,38,158,11,177,224,81,221,118,244,196,196,161,181,251,183,186,31,156,60,44,169,32,88,83,116,174,65,217,121,248,231,149,176,28,44,151,22,108,211,215,80,226,101,106,184,239,232,170,182,140,223,173,163,114,173,179,14,40,103,89,184,33,172,179,88,51,159,169,216,158,135,190,11,43,140,95,167,57,195,23,128,191,39,100,226,60,221,45,251,142,97,223,22,98,165,250,113,24,171,118,99,217,193,183,54,64,12,155,3,101,12,154,19,222,142,15,196,43,3,164,176,103,207,46,116,98,135,9,207,35,82,21,141,9,150,171,31,116,79,175,128,222,150,139,254,125,146,34,39,181,182,211,144,194,202,201,10,248,61,66,139,83,23,228,248,115,244,95,168,228,84,68,144,179,91,186,131,222,18,125,9,4,15,138,40,109,247,86,86,31,157,125,17,164,48,125,79,173,122,77,151,227,67,109,251,205,163,238,197,135,224,34,190,8,190,37,155,254,229,216,186,103,47,175,157,248,140,89,214,173,96,91,212,205,70,232,80,234,70,247,212,15,76,135,190,8,49,166,190,160,154,156,148,103,151,206,247,110,159,232,126,242,180,119,247,226,102,184,48,253,93,87,29,112,147,48,146,151,232,161,95,90,90,143,30,191,10,202,127,131,164,166,235,218,62,181,250,222,1,92,192,146,238,90,84,45,205,212,95,151,90,167,176,65,73,197,196,48,253,231,35,249,252,174,93,35,163,249,183,115,136,188,2,221,203,71,64,179,219,124,61,72,175,98,208,173,227,3,241,98,246,15,63,94,187,125,162,243,241,185,103,183,88,149,244,241,200,87,229,94,40,65,66,157,18,19,246,178,71,166,116,172,243,217,138,180,24,102,137,187,143,78,119,239,126,193,16,134,140,58,87,94,210,165,248,17,218,206,168,17,37,71,45,130,103,232,185,44,104,14,79,225,108,193,122,126,15,107,83,92,93,117,170,139,169,20,57,6,152,106,77,171,138,79,137,170,105,179,250,145,57,116,199,21,139,95,48,16,66,90,170,195,28,245,105,83,175,195,180,72,137,104,118,181,137,151,89,80,203,252,233,190,229,25,77,73,82,56,183,188,228,38,83,69,218,25,73,26,148,123,11,172,100,93,156,85,80,173,158,104,224,40,5,186,112,175,44,218,50,232,154,164,214,172,234,186,201,88,40,67,67,152,128,52,1,20,51,11,119,223,242,188,186,48,171,214,117,37,185,8,42,63,153,58,148,63,156,85,27,13,221,210,166,22,13,83,83,66,115,97,152,218,3,145,33,229,30,125,19,155,7,90,103,33,200,14,248,76,209,32,18,89,10,73,176,156,122,6,205,76,154,224,202,64,12,25,124,149,8,110,245,70,6,27,61,240,71,142,137,216,137,88,182,165,147,65,163,78,3,124,203,43,182,9,184,34,174,87,230,125,201,49,187,161,226,249,250,56,201,23,27,48,18,236,105,188,132,13,190,96,88,244,202,176,50,236,77,63,184,107,28,141,195,5,163,150,233,168,18,46,104,91,114,145,30,220,91,125,244,20,219,40,184,246,64,212,32,51,215,109,237,135,59,189,11,31,245,46,95,238,156,124,192,220,243,238,119,247,58,103,238,116,175,254,147,116,30,175,116,110,159,101,142,220,102,176,189,71,255,232,94,189,70,63,253,198,183,4,244,80,53,207,129,61,15,33,130,248,194,228,135,171,143,190,167,64,220,21,218,162,235,43,156,68,31,33,141,20,67,119,89,77,31,171,236,169,213,70,209,115,36,170,187,108,85,39,130,73,83,250,217,249,153,255,186,98,247,242,213,206,201,211,16,255,64,56,20,124,180,110,201,205,97,194,194,180,85,77,119,0,87,208,210,187,249,100,245,199,155,44,12,150,123,201,83,89,119,18,14,152,55,88,143,57,211,168,192,52,192,212,89,170,185,236,26,46,4,129,22,245,117,37,90,159,11,33,224,178,64,203,228,102,231,223,204,252,254,245,253,243,99,51,187,15,102,134,243,128,243,85,240,175,199,18,253,76,64,119,34,147,31,203,20,134,72,190,48,62,186,103,188,48,234,79,113,208,176,170,102,83,211,9,175,18,179,29,48,29,232,146,189,128,200,162,158,62,112,22,145,253,121,116,52,63,146,215,224,145,54,146,175,245,207,157,202,233,214,197,224,80,51,252,77,65,65,96,203,112,188,38,190,194,27,50,71,67,111,236,63,152,43,236,2,201,89,26,55,67,162,35,195,179,250,232,139,222,117,176,189,79,58,87,238,200,248,123,151,62,92,125,112,102,237,201,67,121,162,146,155,30,248,254,137,9,66,114,57,178,118,255,75,118,223,189,254,215,222,221,39,157,179,79,97,31,252,252,248,4,251,239,217,149,21,54,70,247,194,183,171,15,190,146,71,98,20,192,120,221,43,43,88,216,115,241,225,127,87,222,167,218,11,176,226,94,130,176,237,204,245,181,159,126,98,232,127,126,252,209,234,211,171,189,11,159,195,5,14,114,234,186,130,123,238,63,239,231,86,31,156,237,254,237,78,14,112,247,126,124,152,99,27,17,147,124,215,63,78,81,116,190,97,193,149,60,71,145,41,224,202,167,73,85,53,77,180,196,129,25,160,230,133,205,121,3,35,64,1,146,41,161,222,233,109,22,22,3,244,1,188,225,199,182,133,163,66,139,160,66,9,70,35,62,5,100,251,118,255,90,73,249,205,28,71,67,197,200,13,245,116,214,209,235,224,109,114,237,79,91,5,116,91,154,2,139,81,226,109,163,108,85,196,76,192,174,240,222,172,167,60,162,97,185,186,227,237,211,107,16,224,240,33,211,28,44,229,91,28,144,24,155,232,234,143,103,65,175,245,46,255,189,115,254,95,81,137,201,86,30,67,196,55,168,211,229,16,69,7,218,210,116,153,165,73,205,18,28,66,123,141,45,89,176,16,211,24,81,30,192,52,177,165,59,1,11,99,155,21,129,8,254,170,166,171,11,211,8,208,174,46,97,245,192,205,94,164,61,251,17,6,45,74,210,182,146,100,103,64,155,192,53,224,207,188,115,234,102,247,226,221,238,103,247,59,231,111,177,153,35,39,228,185,86,85,235,160,171,31,192,133,160,200,158,140,101,31,224,139,3,201,44,250,207,155,192,242,201,5,230,138,64,136,100,44,168,160,128,178,254,211,0,208,112,103,166,113,213,137,150,44,213,51,111,213,148,4,88,218,6,40,164,138,169,39,82,100,130,100,10,184,196,98,224,222,156,155,153,230,16,69,152,140,60,151,153,233,189,133,66,247,59,112,79,79,117,62,191,67,136,52,234,180,182,160,199,143,139,45,210,136,131,72,97,20,49,236,122,4,140,71,62,51,93,40,196,34,79,206,59,134,134,57,140,13,103,228,180,198,11,133,108,94,76,74,66,60,167,214,84,199,136,167,155,181,109,204,171,169,69,176,149,56,187,189,36,79,209,250,242,163,114,56,126,92,112,134,94,209,105,208,43,134,155,246,112,116,175,233,88,100,144,245,100,190,86,88,231,111,77,49,163,30,151,26,183,160,172,7,250,20,225,62,26,118,79,74,43,146,127,47,149,17,224,179,77,213,202,11,180,120,22,166,121,136,62,13,142,251,253,72,161,233,188,138,5,64,37,48,123,58,132,210,219,213,90,205,48,241,93,141,18,22,25,98,170,98,59,184,252,193,13,165,209,49,170,139,117,93,51,212,237,34,32,40,21,18,233,151,58,4,181,127,81,244,135,139,108,189,229,118,16,97,98,239,63,132,48,155,236,200,137,202,255,220,142,206,15,192,220,11,59,114,254,131,119,159,221,248,75,231,218,53,233,9,33,104,123,46,62,132,232,171,247,201,29,48,59,132,248,173,200,187,42,104,17,125,210,113,212,101,82,58,116,88,184,250,60,10,98,30,237,100,200,54,148,97,78,186,155,118,155,213,170,238,186,169,192,80,32,182,215,161,141,34,43,49,176,162,223,106,212,20,191,49,107,234,214,130,183,56,145,151,122,211,238,184,224,116,109,202,110,90,94,41,31,244,37,160,216,21,186,63,224,169,177,151,244,35,42,26,59,119,202,168,232,226,65,160,96,200,67,198,225,116,96,222,100,88,121,208,157,59,139,114,11,208,44,83,84,234,31,55,140,7,193,81,162,118,141,112,230,144,82,137,36,196,168,137,62,104,1,164,164,66,99,182,7,162,151,109,9,68,60,20,191,161,13,67,231,76,253,134,136,120,104,96,137,237,51,238,244,81,79,9,196,158,6,248,84,159,24,81,118,111,85,150,74,235,184,23,9,190,97,37,178,120,15,17,97,70,246,118,20,210,119,70,130,38,159,109,254,21,232,38,73,106,237,40,150,192,119,241,31,56,152,122,164,31,219,192,143,59,83,35,16,235,216,48,150,120,139,224,214,211,46,52,117,137,35,38,105,56,161,37,65,124,37,18,215,142,134,203,132,61,30,11,17,26,34,94,200,1,243,179,141,166,187,136,18,219,64,194,190,16,42,182,182,28,138,148,249,156,133,189,71,215,193,79,22,132,199,109,115,87,192,95,45,193,74,240,23,117,186,140,116,80,4,242,102,29,44,89,77,211,68,115,179,238,254,197,37,3,143,72,100,131,176,193,97,247,18,182,125,65,20,249,34,252,236,69,112,184,128,109,43,184,133,194,144,119,43,176,150,210,227,115,147,155,37,207,105,234,242,156,218,3,188,129,251,39,248,132,219,4,118,82,236,27,6,95,97,243,15,129,75,97,16,38,141,81,213,211,215,249,32,82,173,216,71,217,255,51,173,66,182,144,29,130,248,11,34,32,26,172,30,6,77,111,129,174,86,124,163,35,68,23,108,127,85,195,2,129,121,189,222,120,237,0,25,68,37,208,4,251,92,51,44,93,3,45,0,70,76,107,26,25,48,12,150,208,228,97,98,217,162,120,78,114,53,179,12,102,168,140,69,20,249,225,252,48,146,26,74,183,72,228,121,118,163,92,193,207,158,59,229,86,44,121,164,133,95,177,88,200,44,55,95,6,125,16,73,98,84,153,205,131,199,83,200,180,16,243,114,51,211,218,144,196,128,131,243,181,88,18,151,154,153,250,203,165,110,36,91,24,206,44,213,53,47,66,23,95,78,21,8,135,159,107,29,45,97,10,100,10,34,127,199,54,51,48,200,238,252,46,26,234,39,184,153,21,214,85,9,79,32,198,78,113,10,144,57,229,37,212,143,129,165,150,121,38,0,10,192,177,16,195,132,110,9,225,8,110,164,37,45,48,136,69,29,35,25,1,51,244,139,71,25,138,142,34,129,71,157,4,153,97,28,42,214,168,203,112,40,53,95,185,250,134,52,164,43,215,133,167,100,181,253,116,35,58,83,44,119,64,240,115,17,30,115,164,80,113,5,193,147,146,18,26,75,10,30,121,82,57,205,44,75,50,29,114,110,49,66,229,97,31,235,232,235,251,72,204,152,124,237,173,55,167,104,38,201,99,126,9,160,242,53,186,100,219,92,221,155,55,234,186,221,244,20,121,164,52,25,202,231,197,202,142,155,21,24,22,156,83,95,130,135,59,241,143,31,246,190,250,148,37,14,89,158,102,110,234,157,153,183,231,201,129,201,217,253,7,39,247,79,151,18,191,3,115,207,114,23,160,52,165,143,108,85,84,67,107,130,172,202,170,150,32,229,80,70,42,240,157,151,94,196,119,198,3,207,134,236,59,79,236,205,49,178,68,22,144,102,254,88,184,176,133,180,20,61,60,228,91,177,110,107,186,137,201,177,178,213,114,107,244,159,132,232,203,82,145,206,205,219,221,11,255,238,158,187,183,197,140,215,200,204,220,31,88,154,173,172,58,48,134,129,33,51,197,233,163,236,174,220,94,251,224,39,8,209,187,223,157,37,107,79,207,247,30,125,187,85,220,239,190,155,107,232,14,24,219,186,106,85,233,14,234,67,125,254,74,239,219,27,157,51,215,96,0,252,166,23,231,116,153,157,112,68,179,163,91,79,244,50,12,52,203,27,92,102,171,90,165,186,103,120,184,176,126,138,183,81,237,125,253,249,179,149,75,24,152,208,69,230,243,209,175,132,96,228,50,218,48,207,47,135,142,85,23,171,14,178,40,52,122,74,123,228,79,106,58,116,135,11,37,252,36,131,71,208,199,106,176,43,188,113,240,65,106,158,72,237,103,240,102,156,12,55,142,242,12,63,127,48,20,60,160,39,191,227,133,60,60,105,216,176,86,97,197,141,131,87,98,2,119,90,122,177,189,25,33,253,153,254,129,24,194,124,16,86,210,213,30,200,237,8,65,141,87,104,142,235,24,230,224,22,28,8,74,180,113,244,160,149,95,80,142,226,130,39,169,218,139,77,181,220,26,194,34,179,20,201,20,26,71,241,64,163,72,191,105,56,78,10,35,112,45,14,58,10,200,144,42,211,65,227,36,145,144,88,161,86,92,219,108,122,122,49,224,28,120,26,208,101,12,174,218,76,175,160,8,65,148,170,124,90,47,38,215,95,137,17,173,228,104,217,134,166,228,83,9,250,69,186,170,101,24,102,25,251,77,4,117,51,52,89,67,79,1,227,199,160,255,146,222,243,141,3,122,107,193,166,195,172,61,189,220,57,249,101,231,228,55,221,149,149,222,105,62,204,166,25,13,66,148,56,27,229,235,109,64,61,3,154,160,47,40,165,38,31,154,232,9,236,6,39,136,18,27,194,113,36,69,64,9,223,20,133,63,195,24,12,192,183,50,202,115,147,254,179,101,1,24,135,164,169,198,39,9,179,158,125,192,62,162,59,83,160,134,148,152,126,64,211,65,199,220,52,71,156,192,192,40,65,79,30,161,125,210,243,28,163,2,235,80,73,168,142,161,102,176,34,166,15,55,248,25,131,57,3,118,126,206,96,135,190,77,53,133,1,142,207,44,184,22,243,233,143,218,225,143,104,10,197,98,162,111,223,80,248,71,52,101,233,130,68,146,49,66,142,236,254,68,184,103,123,75,36,75,18,150,136,230,147,57,40,226,185,205,201,15,240,164,138,175,68,186,4,173,89,55,196,97,220,58,137,52,31,42,58,115,169,223,47,152,187,143,3,252,71,60,14,148,2,122,18,142,232,37,102,241,12,150,229,213,49,100,151,110,179,13,199,94,210,171,222,140,150,98,145,99,148,108,92,123,13,213,81,235,48,82,20,59,254,73,180,84,179,172,86,189,4,232,64,32,15,166,66,41,227,185,187,8,52,31,210,208,0,62,142,146,72,175,118,116,17,177,110,179,243,211,115,147,150,55,41,14,36,93,144,224,107,170,167,42,148,222,84,145,144,13,24,41,137,227,87,203,74,212,208,255,15,188,68,183,95,32,234,119,212,73,28,39,215,129,85,18,232,162,39,210,114,158,11,216,240,142,142,33,9,40,197,118,248,128,200,39,38,56,40,242,49,7,39,66,27,18,32,29,28,37,88,250,108,131,209,251,135,141,100,169,36,38,201,38,77,96,8,147,33,5,38,235,36,99,57,111,183,180,232,176,97,147,211,67,180,12,172,38,197,215,63,193,89,9,154,7,4,0,47,165,102,232,71,49,134,197,99,147,151,183,150,51,16,27,171,77,211,203,216,160,104,127,5,235,57,44,202,244,112,222,15,7,195,120,125,151,68,196,138,120,21,45,121,136,247,121,182,26,60,176,48,11,203,161,135,134,242,35,67,35,57,20,7,22,66,128,89,2,191,75,29,27,27,29,45,140,20,42,106,101,108,207,80,161,50,186,123,100,100,172,50,82,217,157,199,194,145,10,184,109,213,69,213,113,209,141,107,122,181,204,238,80,93,66,14,197,138,191,24,1,77,252,15,163,20,36,13]},"filename":"response_d88b3ee4-5cdb-4aee-a94a-5e471320dde1.html"}}},"http_error":-1,"assert":[],"datetime":"2023-06-12 02:01:18","script_error":{"pre_script":"预执行脚本语法错误: ReferenceError: _ is not defined","test":"后执行脚本语法错误: ReferenceError: _ is not defined"},"assert_error":-1}]};
|
|
636
|
+
console.log(data, 'data')
|
|
637
|
+
|
|
638
|
+
document.title = data?.report_name || '';
|
|
639
|
+
const _docContentHtml = template('tpl', {
|
|
640
|
+
value: data,
|
|
641
|
+
});
|
|
642
|
+
const oWrap = document.querySelector('.apipost-report-wrap');
|
|
643
|
+
oWrap.innerHTML = _docContentHtml;
|
|
644
|
+
|
|
645
|
+
(() => {
|
|
646
|
+
const oApp = document.querySelector('#app'),
|
|
647
|
+
oTestReport = oApp.querySelector('.apipost-report-wrap'),
|
|
648
|
+
oActionWrap = oTestReport.querySelector('.action-wrap'),
|
|
649
|
+
oTestDetailFailed = oActionWrap.querySelector('.test-detail.failed'),
|
|
650
|
+
oTestDetailSuccess = oActionWrap.querySelector('.test-detail.success');
|
|
651
|
+
|
|
652
|
+
const oTestDetails = document.querySelectorAll('.test-detail');
|
|
653
|
+
let curIndex = 0;
|
|
654
|
+
|
|
655
|
+
const init = () => {
|
|
656
|
+
bindEvent();
|
|
657
|
+
initPie();
|
|
658
|
+
};
|
|
659
|
+
|
|
660
|
+
function bindEvent() {
|
|
661
|
+
Array.from(oTestDetails).forEach(item => {
|
|
662
|
+
item.addEventListener('click', handleToggle.bind(null, item), false)
|
|
663
|
+
})
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
function handleToggle(detailWrap, e) {
|
|
667
|
+
const clickClassName = e.target.className;
|
|
668
|
+
const oTestList = detailWrap.querySelector('.test-event-list');
|
|
669
|
+
|
|
670
|
+
if (oTestList && ['title', 'toggle-arrow', 'arrow'].includes(clickClassName)) {
|
|
671
|
+
const className = oTestList.className;
|
|
672
|
+
if (className.includes('show')) {
|
|
673
|
+
oTestList.className = 'test-event-list hide';
|
|
674
|
+
} else {
|
|
675
|
+
oTestList.className = 'test-event-list show';
|
|
676
|
+
}
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
const computedInfo = (info) => {
|
|
681
|
+
if (info?.passed == 0 && info?.failure == 0) {
|
|
682
|
+
return [{ value: info?.passed, name: '接口通过率' }];
|
|
683
|
+
}
|
|
684
|
+
return [
|
|
685
|
+
{ value: info?.passed, name: '接口通过率' },
|
|
686
|
+
{ value: info?.failure, name: '接口失败率' },
|
|
687
|
+
];
|
|
688
|
+
};
|
|
689
|
+
|
|
690
|
+
const getOption = (info, color) => {
|
|
691
|
+
return {
|
|
692
|
+
color: color || ['#26CEA4', 'red'],
|
|
693
|
+
series: [
|
|
694
|
+
{
|
|
695
|
+
name: 'Access From',
|
|
696
|
+
type: 'pie',
|
|
697
|
+
radius: ['50%', '80%'],
|
|
698
|
+
avoidLabelOverlap: false,
|
|
699
|
+
label: {
|
|
700
|
+
show: false,
|
|
701
|
+
position: 'center',
|
|
702
|
+
},
|
|
703
|
+
emphasis: {
|
|
704
|
+
label: {
|
|
705
|
+
show: true,
|
|
706
|
+
fontSize: 5,
|
|
707
|
+
},
|
|
708
|
+
},
|
|
709
|
+
labelLine: {
|
|
710
|
+
show: false,
|
|
711
|
+
},
|
|
712
|
+
data: computedInfo(info),
|
|
713
|
+
},
|
|
714
|
+
],
|
|
715
|
+
};
|
|
716
|
+
};
|
|
717
|
+
function initPie() {
|
|
718
|
+
const apiPieWrap = document.querySelector('#api-pie');
|
|
719
|
+
const assertPieWrap = document.querySelector('#assert-pie');
|
|
720
|
+
|
|
721
|
+
if (apiPieWrap) {
|
|
722
|
+
const pie = echarts.init(apiPieWrap);
|
|
723
|
+
const options = getOption(
|
|
724
|
+
{
|
|
725
|
+
passed: data?.http?.passed,
|
|
726
|
+
failure: data?.http?.failure,
|
|
727
|
+
},
|
|
728
|
+
['#26CEA4', '#E45252']
|
|
729
|
+
);
|
|
730
|
+
pie && pie.setOption(options);
|
|
731
|
+
}
|
|
732
|
+
if (assertPieWrap) {
|
|
733
|
+
const pie = echarts.init(assertPieWrap);
|
|
734
|
+
const options = getOption(
|
|
735
|
+
{
|
|
736
|
+
passed: data?.assert?.passed,
|
|
737
|
+
failure: data?.assert?.failure,
|
|
738
|
+
},
|
|
739
|
+
['#26CEA4', '#E45252']
|
|
740
|
+
);
|
|
741
|
+
pie && pie.setOption(options);
|
|
742
|
+
}
|
|
743
|
+
}
|
|
744
|
+
|
|
745
|
+
init();
|
|
746
|
+
})();
|
|
747
|
+
</script>
|
|
748
|
+
</body>
|
|
749
|
+
</html>
|
|
750
|
+
|