|
|
@@ -1,5 +1,6 @@
|
|
1
|
1
|
package com.ruoyi.wisdomarbitrate.utils;
|
|
2
|
2
|
|
|
|
3
|
+import com.alibaba.fastjson.JSONObject;
|
|
3
|
4
|
import com.google.gson.Gson;
|
|
4
|
5
|
import com.google.gson.JsonArray;
|
|
5
|
6
|
import com.google.gson.JsonObject;
|
|
|
@@ -9,6 +10,7 @@ import com.ruoyi.common.exception.EsignDemoException;
|
|
9
|
10
|
import com.ruoyi.common.utils.DateUtils;
|
|
10
|
11
|
import com.ruoyi.common.utils.EsignApplicaConfig;
|
|
11
|
12
|
import com.ruoyi.common.utils.EsignHttpHelper;
|
|
|
13
|
+import com.ruoyi.common.utils.SealUtil;
|
|
12
|
14
|
import com.ruoyi.wisdomarbitrate.domain.DeptIdentify;
|
|
13
|
15
|
import com.ruoyi.wisdomarbitrate.domain.SealSignRecord;
|
|
14
|
16
|
|
|
|
@@ -18,10 +20,9 @@ import java.util.Map;
|
|
18
|
20
|
|
|
19
|
21
|
public class SignAward {
|
|
20
|
22
|
|
|
21
|
|
- private static String eSignHost= EsignApplicaConfig.EsignHost;
|
|
22
|
|
- private static String eSignAppId= EsignApplicaConfig.EsignAppId;
|
|
23
|
|
- private static String eSignAppSecret= EsignApplicaConfig.EsignAppSecret;
|
|
24
|
|
-
|
|
|
23
|
+ private static String eSignHost = EsignApplicaConfig.EsignHost;
|
|
|
24
|
+ private static String eSignAppId = EsignApplicaConfig.EsignAppId;
|
|
|
25
|
+ private static String eSignAppSecret = EsignApplicaConfig.EsignAppSecret;
|
|
25
|
26
|
|
|
26
|
27
|
|
|
27
|
28
|
public static void main(String[] args) throws EsignDemoException {
|
|
|
@@ -89,8 +90,6 @@ public class SignAward {
|
|
89
|
90
|
// System.out.println("机构印章名称:" +sealNames.substring(0,sealNames.length()-1));
|
|
90
|
91
|
|
|
91
|
92
|
|
|
92
|
|
-
|
|
93
|
|
-
|
|
94
|
93
|
//查询签署流程详情
|
|
95
|
94
|
// EsignHttpResponse signFlowDetail = signFlowDetail(sealSignRecord);
|
|
96
|
95
|
// JsonObject signFlowDetailJsonObject = gson.fromJson(signFlowDetail.getBody(),JsonObject.class);
|
|
|
@@ -120,31 +119,30 @@ public class SignAward {
|
|
120
|
119
|
// System.out.println(signFlowDetailJsonObject);
|
|
121
|
120
|
|
|
122
|
121
|
|
|
123
|
|
-
|
|
124
|
|
-
|
|
125
|
122
|
}
|
|
126
|
123
|
|
|
127
|
124
|
|
|
128
|
|
-
|
|
129
|
125
|
/**
|
|
130
|
126
|
* 查询签署流程详情
|
|
|
127
|
+ *
|
|
131
|
128
|
* @return
|
|
132
|
129
|
*/
|
|
133
|
130
|
public static EsignHttpResponse signFlowDetail(SealSignRecord sealSignRecord) throws EsignDemoException {
|
|
134
|
131
|
String signFlowId = sealSignRecord.getSignFlowid();
|
|
135
|
|
- String apiaddr= "/v3/sign-flow/"+ signFlowId + "/detail";
|
|
|
132
|
+ String apiaddr = "/v3/sign-flow/" + signFlowId + "/detail";
|
|
136
|
133
|
String jsonParm = null;
|
|
137
|
134
|
//请求方法
|
|
138
|
135
|
EsignRequestType requestType = EsignRequestType.GET;
|
|
139
|
136
|
//生成签名鉴权方式的的header
|
|
140
|
|
- Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId,eSignAppSecret,jsonParm,requestType.name(),apiaddr,true);
|
|
|
137
|
+ Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId, eSignAppSecret, jsonParm, requestType.name(), apiaddr, true);
|
|
141
|
138
|
//发起接口请求
|
|
142
|
|
- return EsignHttpHelper.doCommHttp(eSignHost, apiaddr,requestType , jsonParm, header,true);
|
|
|
139
|
+ return EsignHttpHelper.doCommHttp(eSignHost, apiaddr, requestType, jsonParm, header, true);
|
|
143
|
140
|
}
|
|
144
|
141
|
|
|
145
|
142
|
|
|
146
|
143
|
/**
|
|
147
|
144
|
* 发起签署
|
|
|
145
|
+ *
|
|
148
|
146
|
* @return
|
|
149
|
147
|
* @throws EsignDemoException
|
|
150
|
148
|
*/
|
|
|
@@ -174,8 +172,8 @@ public class SignAward {
|
|
174
|
172
|
String jsonParm = "{\n" +
|
|
175
|
173
|
" \"docs\": [\n" +
|
|
176
|
174
|
" {\n" +
|
|
177
|
|
- " \"fileId\": \"" + fileId + "\",\n" +
|
|
178
|
|
- " \"fileName\": \"" + fileName + "\"\n" +
|
|
|
175
|
+ " \"fileId\": \"" + fileId + "\",\n" +
|
|
|
176
|
+ " \"fileName\": \"" + fileName + "\"\n" +
|
|
179
|
177
|
" }\n" +
|
|
180
|
178
|
" ],\n" +
|
|
181
|
179
|
" \"signFlowConfig\": {\n" +
|
|
|
@@ -203,22 +201,22 @@ public class SignAward {
|
|
203
|
201
|
" \"signers\": [\n" +
|
|
204
|
202
|
" {\n" +
|
|
205
|
203
|
" \"psnSignerInfo\": {\n" +
|
|
206
|
|
- " \"psnAccount\": \"" + psnAccount + "\",\n" +
|
|
|
204
|
+ " \"psnAccount\": \"" + psnAccount + "\",\n" +
|
|
207
|
205
|
" \"psnInfo\": {\n" +
|
|
208
|
|
- " \"psnName\": \"" + psnName + "\"\n" +
|
|
|
206
|
+ " \"psnName\": \"" + psnName + "\"\n" +
|
|
209
|
207
|
" }\n" +
|
|
210
|
208
|
" },\n" +
|
|
211
|
209
|
" \"signFields\": [\n" +
|
|
212
|
210
|
" {\n" +
|
|
213
|
|
- " \"fileId\": \"" + fileId + "\",\n" +
|
|
|
211
|
+ " \"fileId\": \"" + fileId + "\",\n" +
|
|
214
|
212
|
" \"normalSignFieldConfig\": {\n" +
|
|
215
|
213
|
" \"autoSign\": false,\n" +
|
|
216
|
214
|
" \"freeMode\": false,\n" +
|
|
217
|
215
|
" \"movableSignField\": false,\n" +
|
|
218
|
216
|
" \"signFieldPosition\": {\n" +
|
|
219
|
|
- " \"positionPage\": \"" + positionPagepsn + "\",\n" +
|
|
220
|
|
- " \"positionX\": " + positionXpsn + ",\n" +
|
|
221
|
|
- " \"positionY\": " + positionYpsn + "\n" +
|
|
|
217
|
+ " \"positionPage\": \"" + positionPagepsn + "\",\n" +
|
|
|
218
|
+ " \"positionX\": " + positionXpsn + ",\n" +
|
|
|
219
|
+ " \"positionY\": " + positionYpsn + "\n" +
|
|
222
|
220
|
" },\n" +
|
|
223
|
221
|
" \"signFieldStyle\": 1\n" +
|
|
224
|
222
|
" },\n" +
|
|
|
@@ -230,31 +228,31 @@ public class SignAward {
|
|
230
|
228
|
|
|
231
|
229
|
" {\n" +
|
|
232
|
230
|
" \"orgSignerInfo\": {\n" +
|
|
233
|
|
- " \"orgName\": \"" + orgName + "\",\n" +
|
|
|
231
|
+ " \"orgName\": \"" + orgName + "\",\n" +
|
|
234
|
232
|
" \"transactorInfo\": {\n" +
|
|
235
|
|
- " \"psnAccount\": \"" + orgNamePsnAccount + "\",\n" +
|
|
|
233
|
+ " \"psnAccount\": \"" + orgNamePsnAccount + "\",\n" +
|
|
236
|
234
|
" \"psnInfo\": {\n" +
|
|
237
|
|
- " \"psnName\": \"" + orgNamepsnName + "\"\n" +
|
|
|
235
|
+ " \"psnName\": \"" + orgNamepsnName + "\"\n" +
|
|
238
|
236
|
" }\n" +
|
|
239
|
237
|
" }\n" +
|
|
240
|
238
|
" },\n" +
|
|
241
|
239
|
|
|
242
|
240
|
" \"signFields\": [\n" +
|
|
243
|
241
|
" {\n" +
|
|
244
|
|
- " \"fileId\": \"" + fileId + "\",\n" +
|
|
|
242
|
+ " \"fileId\": \"" + fileId + "\",\n" +
|
|
245
|
243
|
" \"normalSignFieldConfig\": {\n" +
|
|
246
|
244
|
" \"autoSign\": false,\n" +
|
|
247
|
245
|
" \"freeMode\": false,\n" +
|
|
248
|
246
|
|
|
249
|
247
|
" \"availableSealIds\": [\n" +
|
|
250
|
|
- " \"" + availableSealId + "\"\n" +
|
|
|
248
|
+ " \"" + availableSealId + "\"\n" +
|
|
251
|
249
|
" ],\n" +
|
|
252
|
250
|
|
|
253
|
251
|
|
|
254
|
252
|
" \"signFieldPosition\": {\n" +
|
|
255
|
|
- " \"positionPage\": \"" + positionPageorg + "\",\n" +
|
|
256
|
|
- " \"positionX\": " + positionXorg + ",\n" +
|
|
257
|
|
- " \"positionY\": " + positionYorg + "\n" +
|
|
|
253
|
+ " \"positionPage\": \"" + positionPageorg + "\",\n" +
|
|
|
254
|
+ " \"positionX\": " + positionXorg + ",\n" +
|
|
|
255
|
+ " \"positionY\": " + positionYorg + "\n" +
|
|
258
|
256
|
" },\n" +
|
|
259
|
257
|
" \"signFieldStyle\": 1\n" +
|
|
260
|
258
|
" },\n" +
|
|
|
@@ -277,6 +275,7 @@ public class SignAward {
|
|
277
|
275
|
|
|
278
|
276
|
/**
|
|
279
|
277
|
* 获取合同文件签名链接
|
|
|
278
|
+ *
|
|
280
|
279
|
* @return
|
|
281
|
280
|
* @throws EsignDemoException
|
|
282
|
281
|
*/
|
|
|
@@ -291,7 +290,7 @@ public class SignAward {
|
|
291
|
290
|
" \"clientType\": \"PC\",\n" +
|
|
292
|
291
|
|
|
293
|
292
|
" \"operator\": {\n" +
|
|
294
|
|
- " \"psnAccount\": \"" + psnAccount + "\"\n" +
|
|
|
293
|
+ " \"psnAccount\": \"" + psnAccount + "\"\n" +
|
|
295
|
294
|
" }\n" +
|
|
296
|
295
|
"}";
|
|
297
|
296
|
//请求方法
|
|
|
@@ -304,6 +303,7 @@ public class SignAward {
|
|
304
|
303
|
|
|
305
|
304
|
/**
|
|
306
|
305
|
* 获取合同文件用印链接
|
|
|
306
|
+ *
|
|
307
|
307
|
* @return
|
|
308
|
308
|
* @throws EsignDemoException
|
|
309
|
309
|
*/
|
|
|
@@ -317,10 +317,10 @@ public class SignAward {
|
|
317
|
317
|
String jsonParm = "{\n" +
|
|
318
|
318
|
" \"operator\": {\n" +
|
|
319
|
319
|
|
|
320
|
|
- " \"psnAccount\": \"" + psnAccount + "\"\n" +
|
|
|
320
|
+ " \"psnAccount\": \"" + psnAccount + "\"\n" +
|
|
321
|
321
|
" },\n" +
|
|
322
|
322
|
" \"organization\": {\n" +
|
|
323
|
|
- " \"orgName\": \"" + orgName + "\"\n" +
|
|
|
323
|
+ " \"orgName\": \"" + orgName + "\"\n" +
|
|
324
|
324
|
|
|
325
|
325
|
" }\n" +
|
|
326
|
326
|
"}";
|
|
|
@@ -346,10 +346,10 @@ public class SignAward {
|
|
346
|
346
|
" \"orgAuthConfig\": {\n" +
|
|
347
|
347
|
" \"orgName\": \"" + deptName + " \",\n" +
|
|
348
|
348
|
" \"transactorInfo\": {\n" +
|
|
349
|
|
- " \"psnAccount\": \"" + phonenumber + "\",\n" +
|
|
|
349
|
+ " \"psnAccount\": \"" + phonenumber + "\",\n" +
|
|
350
|
350
|
" \"psnInfo\": {\n" +
|
|
351
|
|
- " \"psnName\": \"" + nickName + "\",\n" +
|
|
352
|
|
- " \"psnMobile\": \"" + phonenumber + "\"\n" +
|
|
|
351
|
+ " \"psnName\": \"" + nickName + "\",\n" +
|
|
|
352
|
+ " \"psnMobile\": \"" + phonenumber + "\"\n" +
|
|
353
|
353
|
" }\n" +
|
|
354
|
354
|
" }\n" +
|
|
355
|
355
|
" },\n" +
|
|
|
@@ -377,36 +377,37 @@ public class SignAward {
|
|
377
|
377
|
* 查询企业认证状态
|
|
378
|
378
|
*/
|
|
379
|
379
|
public static EsignHttpResponse getDeptIdentifyInfo(DeptIdentify deptIdentify) throws EsignDemoException {
|
|
380
|
|
- String apiaddr="/v3/organizations/identity-info?orgName="+deptIdentify.getDeptName();
|
|
|
380
|
+ String apiaddr = "/v3/organizations/identity-info?orgName=" + deptIdentify.getDeptName();
|
|
381
|
381
|
|
|
382
|
|
- String jsonParm="{}";
|
|
|
382
|
+ String jsonParm = "{}";
|
|
383
|
383
|
//请求方法
|
|
384
|
|
- EsignRequestType requestType= EsignRequestType.GET;
|
|
|
384
|
+ EsignRequestType requestType = EsignRequestType.GET;
|
|
385
|
385
|
//生成签名鉴权方式的的header
|
|
386
|
|
- Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId,eSignAppSecret,jsonParm,requestType.name(),apiaddr,true);
|
|
|
386
|
+ Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId, eSignAppSecret, jsonParm, requestType.name(), apiaddr, true);
|
|
387
|
387
|
//发起接口请求
|
|
388
|
|
- return EsignHttpHelper.doCommHttp(eSignHost, apiaddr,requestType , jsonParm, header,true);
|
|
|
388
|
+ return EsignHttpHelper.doCommHttp(eSignHost, apiaddr, requestType, jsonParm, header, true);
|
|
389
|
389
|
}
|
|
|
390
|
+
|
|
390
|
391
|
/**
|
|
391
|
392
|
* 查询企业认证印章信息
|
|
392
|
393
|
*/
|
|
393
|
394
|
public static EsignHttpResponse deptIdentifySealList(String orgId) throws EsignDemoException {
|
|
394
|
|
- int pageNum=1;
|
|
395
|
|
- int pageSize=10;
|
|
396
|
|
- String apiaddr="/v3/seals/org-own-seal-list?orgId="+orgId+"&pageNum="+pageNum+"&pageSize="+pageSize;
|
|
397
|
|
- String jsonParm=null;
|
|
|
395
|
+ int pageNum = 1;
|
|
|
396
|
+ int pageSize = 10;
|
|
|
397
|
+ String apiaddr = "/v3/seals/org-own-seal-list?orgId=" + orgId + "&pageNum=" + pageNum + "&pageSize=" + pageSize;
|
|
|
398
|
+ String jsonParm = null;
|
|
398
|
399
|
//请求方法
|
|
399
|
|
- EsignRequestType requestType= EsignRequestType.GET;
|
|
|
400
|
+ EsignRequestType requestType = EsignRequestType.GET;
|
|
400
|
401
|
//生成签名鉴权方式的的header
|
|
401
|
|
- Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId,eSignAppSecret,jsonParm,requestType.name(),apiaddr,true);
|
|
|
402
|
+ Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId, eSignAppSecret, jsonParm, requestType.name(), apiaddr, true);
|
|
402
|
403
|
//发起接口请求
|
|
403
|
|
- return EsignHttpHelper.doCommHttp(eSignHost, apiaddr,requestType , jsonParm, header,true);
|
|
|
404
|
+ return EsignHttpHelper.doCommHttp(eSignHost, apiaddr, requestType, jsonParm, header, true);
|
|
404
|
405
|
}
|
|
405
|
406
|
|
|
406
|
407
|
|
|
407
|
|
-
|
|
408
|
408
|
/**
|
|
409
|
409
|
* 获取文件签名印章位置
|
|
|
410
|
+ *
|
|
410
|
411
|
* @return
|
|
411
|
412
|
* @throws EsignDemoException
|
|
412
|
413
|
*/
|
|
|
@@ -432,27 +433,70 @@ public class SignAward {
|
|
432
|
433
|
*
|
|
433
|
434
|
* @return
|
|
434
|
435
|
*/
|
|
435
|
|
- public static EsignHttpResponse createOrgByImage(DeptIdentify deptIdentify) throws EsignDemoException {
|
|
436
|
|
- String apiaddr = "/v3/seals/org-seals/create-by-image";
|
|
437
|
|
- String orgId = deptIdentify.getOrgId();
|
|
438
|
|
- String sealImageFileKey = "";
|
|
|
436
|
+ public static EsignHttpResponse createOrgByImage(DeptIdentify deptIdentify, String filePath) throws EsignDemoException {
|
|
|
437
|
+ //获取认证授权流程ID
|
|
|
438
|
+ String authFlowId = deptIdentify.getAuthFlowId();
|
|
|
439
|
+ //查询认证授权流程详情
|
|
|
440
|
+ EsignHttpResponse response = SealUtil.queryAuthProcess(authFlowId);
|
|
|
441
|
+ String body = response.getBody();
|
|
|
442
|
+ if (body != null) {
|
|
|
443
|
+ JSONObject jsonObject = JSONObject.parseObject(body);
|
|
|
444
|
+ //查询授权流程状态
|
|
|
445
|
+ int authorizedStatus = jsonObject.getJSONObject("data").getIntValue("authorizedStatus");
|
|
|
446
|
+ if (authorizedStatus == 1) {//0 -流程过期失效 1 - 已授权 2 - 授权中 3 - 审批未通过
|
|
|
447
|
+ String apiaddr = "/v3/seals/org-seals/create-by-image";
|
|
|
448
|
+ String orgId = deptIdentify.getOrgId();
|
|
|
449
|
+ //上传印章图片
|
|
|
450
|
+ //步骤一:获取印章图片上传地址fileUploadUrl
|
|
|
451
|
+ EsignHttpResponse response1 = SealUtil.getFileUploadUrl(filePath);
|
|
|
452
|
+ JSONObject jsonObject1 = JSONObject.parseObject(response1.getBody());
|
|
|
453
|
+ String fileUploadUrl = jsonObject1.getJSONObject("data").getString("fileUploadUrl");
|
|
|
454
|
+ //步骤二:将印章图片文件流上传到fileUploadUrl
|
|
|
455
|
+ EsignHttpResponse response2 = SealUtil.fileStreamUpload(fileUploadUrl, filePath);
|
|
|
456
|
+ JSONObject jsonObject2 = JSONObject.parseObject(response2.getBody());
|
|
|
457
|
+ int errCode = jsonObject2.getIntValue("errCode");
|
|
|
458
|
+ if (errCode == 0){ //业务码,0表示成功,非0表示异常。
|
|
|
459
|
+ //获取步骤一里面的fileKey
|
|
|
460
|
+ String sealImageFileKey = jsonObject1.getJSONObject("data").getString("fileKey");
|
|
|
461
|
+ String sealName = deptIdentify.getSealName();
|
|
|
462
|
+ //请求参数body体,json格式。get或者delete请求时jsonString传空json:"{}"或者null
|
|
|
463
|
+ String jsonParm = "{\n" +
|
|
|
464
|
+ " \"orgId\": \"" + orgId + "\",\n" +
|
|
|
465
|
+ " \"sealImageFileKey\": \"" + sealImageFileKey + "\",\n" +
|
|
|
466
|
+ " \"sealName\": \" " + sealName + " \",\n" +
|
|
|
467
|
+ " \"sealWidth\": 50,\n" +
|
|
|
468
|
+ " \"sealHeight\": 50,\n" +
|
|
|
469
|
+ "}";
|
|
|
470
|
+ //请求方法
|
|
|
471
|
+ EsignRequestType requestType = EsignRequestType.POST;
|
|
|
472
|
+ //生成签名鉴权方式的的header
|
|
|
473
|
+ Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId, eSignAppSecret, jsonParm, requestType.name(), apiaddr, true);
|
|
|
474
|
+ //发起接口请求
|
|
|
475
|
+ return EsignHttpHelper.doCommHttp(eSignHost, apiaddr, requestType, jsonParm, header, true);
|
|
|
476
|
+ }
|
|
|
477
|
+ }
|
|
|
478
|
+ }
|
|
|
479
|
+ return null;
|
|
|
480
|
+ }
|
|
|
481
|
+
|
|
|
482
|
+ /**
|
|
|
483
|
+ * 查询企业内部印章
|
|
|
484
|
+ */
|
|
|
485
|
+
|
|
|
486
|
+ public static EsignHttpResponse orgOwnSealList(DeptIdentify deptIdentify) throws EsignDemoException {
|
|
|
487
|
+ String orgId=deptIdentify.getOrgId();
|
|
|
488
|
+ int pageNum=1;
|
|
|
489
|
+ int pageSize=20;
|
|
|
490
|
+
|
|
|
491
|
+ String apiaddr="/v3/seals/org-own-seal-list?orgId="+orgId+"&pageNum="+pageNum+"&pageSize="+pageSize;
|
|
|
492
|
+
|
|
439
|
493
|
//请求参数body体,json格式。get或者delete请求时jsonString传空json:"{}"或者null
|
|
440
|
|
- String jsonParm = "{\n" +
|
|
441
|
|
- " \"orgId\": \"" + orgId + "\",\n" +
|
|
442
|
|
- " \"sealImageFileKey\": \"" + sealImageFileKey + "\",\n" +
|
|
443
|
|
- " \"sealName\": \"企业公章1\",\n" +
|
|
444
|
|
- " \"sealWidth\": 50,\n" +
|
|
445
|
|
- " \"sealHeight\": 50,\n" +
|
|
446
|
|
- "}";
|
|
|
494
|
+ String jsonParm=null;
|
|
447
|
495
|
//请求方法
|
|
448
|
|
- EsignRequestType requestType = EsignRequestType.POST;
|
|
|
496
|
+ EsignRequestType requestType= EsignRequestType.GET;
|
|
449
|
497
|
//生成签名鉴权方式的的header
|
|
450
|
|
- Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId, eSignAppSecret, jsonParm, requestType.name(), apiaddr, true);
|
|
|
498
|
+ Map<String, String> header = EsignHttpHelper.signAndBuildSignAndJsonHeader(eSignAppId,eSignAppSecret,jsonParm,requestType.name(),apiaddr,true);
|
|
451
|
499
|
//发起接口请求
|
|
452
|
|
- EsignHttpResponse response = EsignHttpHelper.doCommHttp(eSignHost, apiaddr, requestType, jsonParm, header, true);
|
|
453
|
|
- System.out.println(response);
|
|
454
|
|
- return response;
|
|
|
500
|
+ return EsignHttpHelper.doCommHttp(eSignHost, apiaddr,requestType , jsonParm, header,true);
|
|
455
|
501
|
}
|
|
456
|
|
-
|
|
457
|
|
-
|
|
458
|
502
|
}
|