>
polylineLayer.addLayer(polyline);
this.map.addLayer(polylineLayer);
polylineLayer.addLayer(polyline)
this.map.addLayer(polylineLayer)
},
polygon() {
polygon() { // 加载地图围栏
var params = new FormData()
// params.append('data', JSON.stringify({
// pageNum: pageNum,
// pageSize: pageSize,
// mapTagName: MAP_TAG_NAME
// }))
this.$test.post(services.mapTag.GET_ALL_MAP_TAG, params
).then(res => {
// 请求成功处理...
res.data.dataList.forEach(e => {
if(e.MAP_TAG_TYPE === 1){
console.log(e.MAP_TAG_SHAPE)
}
this.$test
.post(services.mapTag.GET_ALL_MAP_TAG, params)
.then((res) => {
// 请求成功处理...
res.data.dataList.forEach((e) => {
if (e.MAP_TAG_TYPE === '1') { // 电子围栏
var polygon = Ai.Polygon(e.MAP_TAG_SHAPE, {
color: '#A74B5C',
opacity: 1.0,
weight: 0
})
this.layer.dzwlLayer.addLayer(polygon)
// this.fitBounds.push(polygon)
} else if (e.MAP_TAG_TYPE === '2') { // 作业区域
var polygon = Ai.Polygon(e.MAP_TAG_SHAPE, {
color: '#438D65',
opacity: 1.0,
weight: 0
})
this.layer.zyqyLayer.addLayer(polygon)
// this.fitBounds.push(polygon)
}
})
this.map.addLayer(this.layer.dzwlLayer)
this.map.addLayer(this.layer.zyqyLayer)
// console.log(this.fitBounds)
// this.map.fitBoundsForLayers(this.fitBounds)
})
.catch((res) => {
// 请求失败处理...
})
}).catch(res => {
// 请求失败处理...
})
var polygonLayer = new Ai.FeatureGroup();
// 面绘制
var coverWktStr = "POLYGON ((" + this.polygonarr + "))";
var polygon = Ai.Polygon(coverWktStr, {
color: "red",
opacity: 1.0,
weight: 0,
});
// this.polygonarr.arr(polygon);
polygonLayer.addLayer(polygon);
this.map.addLayer(polygonLayer);
},
showSlip() {
this.visible = true;
this.visible = true
},
showPopup(number) {
if (this.popup != null && this.popup != "") {
this.popup.closePopup();
this.popup.remove();
}
var data = find(this.dataList, (o) => {
return o.number == number;
});
if (data != null && data != "") {
var content =
'<div class="tips-item"><div class="top"><div class="user-pic"><t-icon icon="user-outline"></t-icon></div><div>张三</div><div class="hand-alarm">救援人员</div></div><div class="middle"><div class="row">' +
"<div>终端编号</div>" +
"<div>ZDBH0001</div>" +
"</div>" +
'<div class="row">' +
"<div>最新定位时间</div>" +
"<div>2020.08.13 08:24:32</div>" +
"</div></div></div>" +
'<div style="display:flex;">' +
'<button class="point-out" onClick="window.Vue.modal=true"><i style="font-size: 20px;" class="aidicon aidicon-user-outline"></i>指派</button>' +
'<button class="close-confirm" onClick="window.Vue.close()"><i style="font-size: 20px;" class="aidicon aidicon-close"></i>关闭</button>' +
"</div></div></div>";
this.popup = Ai.Popup({
minWidth: 300,
offset: [0, -10],
autoClose: false,
loadEquipment() { // 加载地图设备
var params = new FormData()
this.$test
.post(services.equipment.GET_ALL_EQUIPMENT, params)
.then((res) => {
// 请求成功处理...
console.log(res.data)
res.data.dataList.forEach((e) => {
if (e.FACILITY_TYPE === '001') { // 船舶
this.layer.chuanboLayer.addLayer(Ai.Point([e.LATITUDE, e.LONGITUDE], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: '/static/images/船舶.png',
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0]
})
}))
} else if (e.FACILITY_TYPE === '002') { // 风机
this.layer.fenjiLayer.addLayer(Ai.Point([e.LATITUDE, e.LONGITUDE], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: '/static/images/风机.png',
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0]
})
}))
} else if (e.FACILITY_TYPE === '003') { // 升压站
this.layer.shengyazhanLayer.addLayer(Ai.Point([e.LATITUDE, e.LONGITUDE], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: '/static/images/升压站画面.png',
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0]
})
}))
}
})
this.map.addLayer(this.layer.chuanboLayer)
this.map.addLayer(this.layer.fenjiLayer)
this.map.addLayer(this.layer.shengyazhanLayer)
})
.catch((res) => {
// 请求失败处理...
})
// 设置弹出框弹出位置
.setLatLng({ lat: data.Longitude, lng: data.latitude })
// 设置弹出框弹出内容
.setContent(content)
.openOn(this.map);
}
},
loadFenji() {
var point = Ai.Point([29.86089241772908, 122.09930419921876], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: "/static/images/风机.png",
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0],
}),
});
this.pointsLayer.addLayer(point);
this.map.addLayer(this.pointsLayer);
},
loadchuanbo() {
var point = Ai.Point([29.960892, 122.09930419921876], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: "/static/images/船舶.png",
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0],
}),
});
this.pointsLayer.addLayer(point);
this.map.addLayer(this.pointsLayer);
loadPerson() { // 加载地图人员
var params = new FormData()
this.$test
.post(services.organization.PERSON_LOCATION, params)
.then((res) => {
console.log(res.data)
var layer
res.data.dataList.forEach((e) => {
var icon, tips
var callHelp = ''
if (e.LOCATION_STATUS === '0') {
icon = '/static/images/normalworker.png'
layer = this.layer.normalLayer
tips = '<div class="normal">正常</div>'
} else if (e.LOCATION_STATUS === '1') {
icon = '/static/images/offlineworker.png'
layer = this.layer.offLineLayer
tips = '<div class="offline">离线</div>'
} else if (e.LOCATION_STATUS === '2') {
icon = '/static/images/outlineworker.png'
layer = this.layer.outLineLayer
tips = '<div class="outline">违规</div>'
} else if (e.LOCATION_STATUS === '3' || e.LOCATION_STATUS === '4') {
icon = '/static/images/sosworker.png'
layer = this.layer.sosLayer
tips = '<div class="sos">SOS</div>'
callHelp = '<div style="display:flex;">' +
'<button class="point-out" onClick="window.Vue.rescueModal=true"><i style="font-size: 20px;" class="aidicon aidicon-user-outline"></i>指派</button>' +
'<button class="close-confirm" onClick="window.Vue.close()"><i style="font-size: 20px;" class="aidicon aidicon-close"></i>关闭</button>' +
'</div>'
}
var point = Ai.Point([e.LATITUDE, e.LONGITUDE], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: icon,
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0]
}),
id: e.DEVICE_NO
})
point.on('click', (pointE) => {
var content =
'<div class="tips-item"><div class="top"><div class="user-pic"><t-icon icon="user-outline"></t-icon></div><div>' + e.PARTY_NAME + '</div>' + tips + '</div><div class="middle"><div class="row">' +
'<div>终端编号</div>' +
'<div>' + e.DEVICE_NO + '</div>' +
'</div>' +
'<div class="row">' +
'<div>经度</div>' +
'<div>' + e.LONGITUDE + '</div>' +
'</div>' +
'<div class="row">' +
'<div>纬度</div>' +
'<div>' + e.LATITUDE + '</div>' +
'</div>' +
'<div class="row">' +
'<div>最新定位时间</div>' +
'<div>' + e.LOCATION_DATE + '</div>' +
'</div></div></div>' + callHelp +
'</div></div>'
Ai.Popup({
minWidth: 300,
offset: [0, -10],
autoClose: true
})
// 设置弹出框弹出位置
.setLatLng(point.getLatLng())
// 设置弹出框弹出内容
.setContent(content)
.openOn(this.map)
})
layer.addLayer(point)
})
this.map.addLayer(this.layer.sosLayer)
this.map.addLayer(this.layer.outLineLayer)
this.map.addLayer(this.layer.offLineLayer)
this.map.addLayer(this.layer.normalLayer)
this.map.fitBoundsForLayers(this.layer.normalLayer)
})
.catch((res) => {
// 请求失败处理...
})
},
loadshengyazhan() {
var point = Ai.Point([29.86089241772908, 122.1993], {
icon: Ai.Icon({
// 设置图标URL路径
iconUrl: "/static/images/升压站画面.png",
// 设置图标大小
iconSize: [20, 20],
// 设置点对象和图标的相对偏移量
iconAnchor: [0, 0],
}),
});
this.pointsLayer.addLayer(point);
this.map.addLayer(this.pointsLayer);
showOrHide(layer, type) {
if (this.map.hasLayer(layer)) {
this.map.removeLayer(layer)
this.mapShow[type] = false
} else {
this.map.addLayer(layer)
this.mapShow[type] = true
}
},
changeTrackTime(index) {
this.trackQueryCondition.currentIndex = index;
this.trackQueryCondition.currentIndex = index
},
initTrackMap() {
if (this.trackMap != null && this.trackMap != '') {
this.trackMap.remove()
}
this.trackMap = new Ai.Map('track-map', {
ak: this.$store.getters.getGisToken,
center: [39.915599, 122.406568]
})
var maplayer = null
maplayer = Ai.TileLayer('http://192.168.74.189:9999/tdtvector')
var la = Ai.WMTSLayer('http://192.168.74.216:5071/gisserver/dzht/dzht/wmts', {opacity: 0.5})
this.trackMap.addLayer(maplayer)
this.trackMap.addLayer(la)
Ai.Scale({position: 'bottomright'}).addTo(this.trackMap)
Ai.Zoom({type: 'small'}).addTo(this.trackMap)
},
onChangeDate() {},
toExport() {},
close(item) {
this.$Confirm.confirm({
title: "确认要关闭张三落水报警吗?",
content: "关闭后将不再进行报警显示",
title: '确认要关闭张三落水报警吗?',
content: '关闭后将不再进行报警显示',
ok: () => {
console.log("点击了确定");
console.log('点击了确定')
},
cancel: () => {
console.log("点击了取消");
},
});
console.log('点击了取消')
}
})
},
cancel() {
this.rescueModal = false;
},
},
};
this.rescueModal = false
}
}
}
</script>
|
||
6 | 6 |
|
7 | 7 |
|
8 | 8 |
|
9 |
|
|
9 |
|
|
10 |
|
|
11 |
|
|
12 |
|
|
10 | 13 |
|
11 | 14 |
|
12 | 15 |
|
13 |
|
|
14 |
|
|
15 |
|
|
16 |
|
|
17 |
|
|
18 |
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
23 |
|
|
24 |
|
|
16 | 25 |
|
17 | 26 |
|
18 | 27 |
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
|
|
28 |
|
|
29 |
|
|
30 |
|
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
35 |
|
|
36 |
|
|
37 |
|
|
38 |
|
|
39 |
|
|
23 | 40 |
|
24 | 41 |
|
25 | 42 |
|
|
||
28 | 45 |
|
29 | 46 |
|
30 | 47 |
|
31 |
|
|
32 |
|
|
33 |
|
|
34 |
|
|
48 |
|
|
49 |
|
|
50 |
|
|
51 |
|
|
35 | 52 |
|
36 | 53 |
|
37 |
|
|
38 | 54 |
|
39 |
|
|
40 |
|
|
41 |
|
|
42 |
|
|
55 |
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
|
|
43 | 60 |
|
44 |
|
|
61 |
|
|
62 |
|
|
63 |
|
|
64 |
|
|
65 |
|
|
66 |
|
|
45 | 67 |
|
46 |
|
|
68 |
|
|
69 |
|
|
70 |
|
|
47 | 71 |
|
48 | 72 |
|
49 | 73 |
|
50 |
|
|
51 |
|
|
52 |
|
|
53 |
|
|
54 |
|
|
55 |
|
|
56 |
|
|
74 |
|
|
75 |
|
|
76 |
|
|
77 |
|
|
78 |
|
|
79 |
|
|
80 |
|
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
57 | 85 |
|
58 | 86 |
|
59 |
|
|
87 |
|
|
88 |
|
|
89 |
|
|
90 |
|
|
91 |
|
|
92 |
|
|
93 |
|
|
94 |
|
|
95 |
|
|
60 | 96 |
|
61 | 97 |
|
62 | 98 |
|
63 | 99 |
|
64 | 100 |
|
65 |
|
|
101 |
|
|
102 |
|
|
103 |
|
|
104 |
|
|
105 |
|
|
106 |
|
|
66 | 107 |
|
67 | 108 |
|
68 | 109 |
|
69 | 110 |
|
70 | 111 |
|
71 | 112 |
|
72 |
|
|
113 |
|
|
114 |
|
|
115 |
|
|
116 |
|
|
117 |
|
|
73 | 118 |
|
74 | 119 |
|
120 |
|
|
121 |
|
|
122 |
|
|
123 |
|
|
124 |
|
|
125 |
|
|
126 |
|
|
127 |
|
|
128 |
|
|
129 |
|
|
130 |
|
|
75 | 131 |
|
76 | 132 |
|
77 | 133 |
|
78 | 134 |
|
79 | 135 |
|
80 | 136 |
|
81 |
|
|
82 |
|
|
83 |
|
|
84 |
|
|
137 |
|
|
138 |
|
|
139 |
|
|
140 |
|
|
141 |
|
|
142 |
|
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
85 | 147 |
|
86 |
|
|
148 |
|
|
149 |
|
|
150 |
|
|
87 | 151 |
|
88 | 152 |
|
89 | 153 |
|
90 | 154 |
|
91 |
|
|
92 |
|
|
93 |
|
|
155 |
|
|
156 |
|
|
157 |
|
|
158 |
|
|
159 |
|
|
160 |
|
|
161 |
|
|
162 |
|
|
163 |
|
|
164 |
|
|
165 |
|
|
166 |
|
|
167 |
|
|
168 |
|
|
169 |
|
|
94 | 170 |
|
95 | 171 |
|
96 | 172 |
|
97 | 173 |
|
98 |
|
|
99 |
|
|
100 |
|
|
174 |
|
|
101 | 175 |
|
102 | 176 |
|
103 | 177 |
|
104 |
|
|
105 |
|
|
106 |
|
|
178 |
|
|
107 | 179 |
|
108 | 180 |
|
109 |
|
|
110 |
|
|
181 |
|
|
111 | 182 |
|
112 | 183 |
|
113 | 184 |
|
|
||
119 | 190 |
|
120 | 191 |
|
121 | 192 |
|
122 |
|
|
123 |
|
|
193 |
|
|
124 | 194 |
|
125 | 195 |
|
126 | 196 |
|
|
||
135 | 205 |
|
136 | 206 |
|
137 | 207 |
|
208 |
|
|
138 | 209 |
|
139 | 210 |
|
140 | 211 |
|
|
||
164 | 235 |
|
165 | 236 |
|
166 | 237 |
|
167 |
|
|
168 | 238 |
|
169 |
|
|
239 |
|
|
170 | 240 |
|
171 | 241 |
|
172 | 242 |
|
173 | 243 |
|
174 | 244 |
|
175 | 245 |
|
176 |
|
|
246 |
|
|
247 |
|
|
248 |
|
|
249 |
|
|
177 | 250 |
|
178 | 251 |
|
179 |
|
|
252 |
|
|
180 | 253 |
|
181 |
|
|
182 |
|
|
254 |
|
|
255 |
|
|
183 | 256 |
|
184 | 257 |
|
185 | 258 |
|
186 |
|
|
259 |
|
|
187 | 260 |
|
188 | 261 |
|
189 | 262 |
|
|
||
194 | 267 |
|
195 | 268 |
|
196 | 269 |
|
197 |
|
|
198 |
|
|
199 |
|
|
200 |
|
|
201 |
|
|
202 |
|
|
203 |
|
|
204 |
|
|
205 |
|
|
206 |
|
|
207 |
|
|
208 |
|
|
209 |
|
|
210 |
|
|
270 |
|
|
271 |
|
|
272 |
|
|
273 |
|
|
274 |
|
|
275 |
|
|
276 |
|
|
277 |
|
|
278 |
|
|
279 |
|
|
280 |
|
|
281 |
|
|
282 |
|
|
283 |
|
|
284 |
|
|
285 |
|
|
286 |
|
|
287 |
|
|
288 |
|
|
211 | 289 |
|
212 | 290 |
|
213 | 291 |
|
|
||
222 | 300 |
|
223 | 301 |
|
224 | 302 |
|
225 |
|
|
226 |
|
|
227 |
|
|
228 |
|
|
229 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
|
309 |
|
|
310 |
|
|
230 | 311 |
|
231 | 312 |
|
232 |
|
|
233 |
|
|
234 |
|
|
235 |
|
|
236 |
|
|
237 |
|
|
238 |
|
|
239 |
|
|
240 |
|
|
313 |
|
|
314 |
|
|
315 |
|
|
316 |
|
|
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
241 | 324 |
|
242 | 325 |
|
243 | 326 |
|
244 |
|
|
327 |
|
|
328 |
|
|
329 |
|
|
245 | 330 |
|
246 | 331 |
|
247 | 332 |
|
|
||
257 | 342 |
|
258 | 343 |
|
259 | 344 |
|
345 |
|
|
346 |
|
|
260 | 347 |
|
261 | 348 |
|
262 |
|
|
349 |
|
|
263 | 350 |
|
264 | 351 |
|
265 |
|
|
352 |
|
|
353 |
|
|
354 |
|
|
355 |
|
|
266 | 356 |
|
267 | 357 |
|
268 | 358 |
|
|
||
286 | 376 |
|
287 | 377 |
|
288 | 378 |
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
384 |
|
|
385 |
|
|
386 |
|
|
289 | 387 |
|
290 | 388 |
|
291 | 389 |
|
|
||
293 | 391 |
|
294 | 392 |
|
295 | 393 |
|
296 |
|
|
394 |
|
|
395 |
|
|
396 |
|
|
297 | 397 |
|
298 | 398 |
|
399 |
|
|
299 | 400 |
|
300 | 401 |
|
301 |
|
|
302 |
|
|
303 |
|
|
304 |
|
|
305 |
|
|
306 |
|
|
307 |
|
|
308 |
|
|
309 |
|
|
310 |
|
|
311 |
|
|
312 |
|
|
313 |
|
|
314 |
|
|
402 |
|
|
403 |
|
|
404 |
|
|
405 |
|
|
406 |
|
|
407 |
|
|
408 |
|
|
409 |
|
|
410 |
|
|
411 |
|
|
412 |
|
|
413 |
|
|
414 |
|
|
415 |
|
|
416 |
|
|
417 |
|
|
418 |
|
|
419 |
|
|
420 |
|
|
421 |
|
|
422 |
|
|
315 | 423 |
|
316 |
|
|
317 |
|
|
318 |
|
|
319 |
|
|
320 |
|
|
321 |
|
|
322 |
|
|
323 |
|
|
324 |
|
|
325 |
|
|
326 |
|
|
327 |
|
|
328 |
|
|
329 |
|
|
330 |
|
|
331 |
|
|
332 |
|
|
333 |
|
|
334 |
|
|
424 |
|
|
425 |
|
|
426 |
|
|
427 |
|
|
428 |
|
|
429 |
|
|
430 |
|
|
431 |
|
|
432 |
|
|
433 |
|
|
434 |
|
|
435 |
|
|
436 |
|
|
437 |
|
|
438 |
|
|
439 |
|
|
440 |
|
|
441 |
|
|
442 |
|
|
443 |
|
|
444 |
|
|
445 |
|
|
446 |
|
|
447 |
|
|
448 |
|
|
449 |
|
|
450 |
|
|
451 |
|
|
452 |
|
|
453 |
|
|
335 | 454 |
|
336 | 455 |
|
337 | 456 |
|
|
||
360 | 479 |
|
361 | 480 |
|
362 | 481 |
|
363 |
|
|
364 |
|
|
365 |
|
|
366 |
|
|
367 |
|
|
368 |
|
|
369 |
|
|
370 |
|
|
371 |
|
|
372 |
|
|
373 |
|
|
374 |
|
|
375 |
|
|
376 |
|
|
377 |
|
|
378 |
|
|
379 |
|
|
380 |
|
|
381 |
|
|
382 |
|
|
383 |
|
|
384 |
|
|
482 |
|
|
483 |
|
|
484 |
|
|
485 |
|
|
486 |
|
|
487 |
|
|
488 |
|
|
489 |
|
|
490 |
|
|
491 |
|
|
492 |
|
|
493 |
|
|
494 |
|
|
495 |
|
|
496 |
|
|
497 |
|
|
498 |
|
|
499 |
|
|
500 |
|
|
501 |
|
|
502 |
|
|
503 |
|
|
504 |
|
|
505 |
|
|
506 |
|
|
507 |
|
|
508 |
|
|
509 |
|
|
510 |
|
|
511 |
|
|
385 | 512 |
|
386 | 513 |
|
387 | 514 |
|
515 |
|
|
388 | 516 |
|
389 | 517 |
|
390 | 518 |
|
391 | 519 |
|
392 | 520 |
|
393 | 521 |
|
394 |
|
|
395 |
|
|
396 |
|
|
522 |
|
|
397 | 523 |
|
398 |
|
|
399 |
|
|
400 |
|
|
401 |
|
|
402 |
|
|
524 |
|
|
403 | 525 |
|
404 | 526 |
|
405 | 527 |
|
|
||
409 | 531 |
|
410 | 532 |
|
411 | 533 |
|
412 |
|
|
534 |
|
|
413 | 535 |
|
414 | 536 |
|
415 | 537 |
|
|
||
424 | 546 |
|
425 | 547 |
|
426 | 548 |
|
427 |
|
|
549 |
|
|
428 | 550 |
|
429 | 551 |
|
430 |
|
|
552 |
|
|
431 | 553 |
|
432 | 554 |
|
433 | 555 |
|
434 |
|
|
556 |
|
|
557 |
|
|
558 |
|
|
435 | 559 |
|
436 | 560 |
|
437 | 561 |
|
|
||
441 | 565 |
|
442 | 566 |
|
443 | 567 |
|
444 |
|
|
568 |
|
|
569 |
|
|
570 |
|
|
571 |
|
|
445 | 572 |
|
446 | 573 |
|
447 |
|
|
574 |
|
|
575 |
|
|
576 |
|
|
577 |
|
|
448 | 578 |
|
449 |
|
|
579 |
|
|
580 |
|
|
581 |
|
|
450 | 582 |
|
451 | 583 |
|
452 |
|
|
584 |
|
|
585 |
|
|
586 |
|
|
587 |
|
|
453 | 588 |
|
454 | 589 |
|
455 | 590 |
|
|
||
466 | 601 |
|
467 | 602 |
|
468 | 603 |
|
469 |
|
|
470 |
|
|
471 |
|
|
604 |
|
|
605 |
|
|
606 |
|
|
607 |
|
|
608 |
|
|
609 |
|
|
472 | 610 |
|
473 |
|
|
474 |
|
|
475 |
|
|
476 |
|
|
477 |
|
|
478 |
|
|
479 |
|
|
480 |
|
|
481 |
|
|
611 |
|
|
612 |
|
|
613 |
|
|
614 |
|
|
615 |
|
|
616 |
|
|
617 |
|
|
618 |
|
|
619 |
|
|
620 |
|
|
621 |
|
|
622 |
|
|
623 |
|
|
624 |
|
|
625 |
|
|
482 | 626 |
|
483 | 627 |
|
484 | 628 |
|
|
||
78 | 78 |
|
79 | 79 |
|
80 | 80 |
|
81 |
|
|
81 |
|
|
82 | 82 |
|
83 | 83 |
|
84 | 84 |
|
|
||
106 | 106 |
|
107 | 107 |
|
108 | 108 |
|
109 |
|
|
109 |
|
|
110 | 110 |
|
111 | 111 |
|
112 | 112 |
|