1
|
|
|
# |
2
|
|
|
# This file is part of Glances. |
3
|
|
|
# |
4
|
|
|
# SPDX-FileCopyrightText: 2022 Nicolas Hennion <[email protected]> |
5
|
|
|
# |
6
|
|
|
# SPDX-License-Identifier: LGPL-3.0-only |
7
|
|
|
# |
8
|
|
|
|
9
|
|
|
"""Containers plugin.""" |
10
|
|
|
|
11
|
|
|
from copy import deepcopy |
12
|
|
|
from typing import Any, Dict, List, Optional, Tuple |
13
|
|
|
|
14
|
|
|
from glances.globals import iteritems, itervalues |
15
|
|
|
from glances.logger import logger |
16
|
|
|
from glances.plugins.containers.engines import ContainersExtension |
17
|
|
|
from glances.plugins.containers.engines.docker import DockerExtension, import_docker_error_tag |
18
|
|
|
from glances.plugins.containers.engines.podman import PodmanExtension, import_podman_error_tag |
19
|
|
|
from glances.plugins.plugin.model import GlancesPluginModel |
20
|
|
|
from glances.processes import glances_processes |
21
|
|
|
from glances.processes import sort_stats as sort_stats_processes |
22
|
|
|
|
23
|
|
|
# Fields description |
24
|
|
|
# description: human readable description |
25
|
|
|
# short_name: shortname to use un UI |
26
|
|
|
# unit: unit type |
27
|
|
|
# rate: is it a rate ? If yes, // by time_since_update when displayed, |
28
|
|
|
# min_symbol: Auto unit should be used if value > than 1 'X' (K, M, G)... |
29
|
|
|
fields_description = { |
30
|
|
|
'name': { |
31
|
|
|
'description': 'Container name', |
32
|
|
|
}, |
33
|
|
|
'id': { |
34
|
|
|
'description': 'Container ID', |
35
|
|
|
}, |
36
|
|
|
'image': { |
37
|
|
|
'description': 'Container image', |
38
|
|
|
}, |
39
|
|
|
'status': { |
40
|
|
|
'description': 'Container status', |
41
|
|
|
}, |
42
|
|
|
'created': { |
43
|
|
|
'description': 'Container creation date', |
44
|
|
|
}, |
45
|
|
|
'command': { |
46
|
|
|
'description': 'Container command', |
47
|
|
|
}, |
48
|
|
|
'cpu_percent': { |
49
|
|
|
'description': 'Container CPU consumption', |
50
|
|
|
'unit': 'percent', |
51
|
|
|
}, |
52
|
|
|
'memory_usage': { |
53
|
|
|
'description': 'Container memory usage', |
54
|
|
|
'unit': 'byte', |
55
|
|
|
}, |
56
|
|
|
'io_rx': { |
57
|
|
|
'description': 'Container IO bytes read rate', |
58
|
|
|
'unit': 'bytepersecond', |
59
|
|
|
}, |
60
|
|
|
'io_wx': { |
61
|
|
|
'description': 'Container IO bytes write rate', |
62
|
|
|
'unit': 'bytepersecond', |
63
|
|
|
}, |
64
|
|
|
'network_rx': { |
65
|
|
|
'description': 'Container network RX bitrate', |
66
|
|
|
'unit': 'bitpersecond', |
67
|
|
|
}, |
68
|
|
|
'network_tx': { |
69
|
|
|
'description': 'Container network TX bitrate', |
70
|
|
|
'unit': 'bitpersecond', |
71
|
|
|
}, |
72
|
|
|
'uptime': { |
73
|
|
|
'description': 'Container uptime', |
74
|
|
|
}, |
75
|
|
|
'engine': { |
76
|
|
|
'description': 'Container engine (Docker and Podman are currently supported)', |
77
|
|
|
}, |
78
|
|
|
'pod_name': { |
79
|
|
|
'description': 'Pod name (only with Podman)', |
80
|
|
|
}, |
81
|
|
|
'pod_id': { |
82
|
|
|
'description': 'Pod ID (only with Podman)', |
83
|
|
|
}, |
84
|
|
|
} |
85
|
|
|
|
86
|
|
|
# Define the items history list (list of items to add to history) |
87
|
|
|
# TODO: For the moment limited to the CPU. Had to change the graph exports |
88
|
|
|
# method to display one graph per container. |
89
|
|
|
# items_history_list = [{'name': 'cpu_percent', |
90
|
|
|
# 'description': 'Container CPU consumption in %', |
91
|
|
|
# 'y_unit': '%'}, |
92
|
|
|
# {'name': 'memory_usage', |
93
|
|
|
# 'description': 'Container memory usage in bytes', |
94
|
|
|
# 'y_unit': 'B'}, |
95
|
|
|
# {'name': 'network_rx', |
96
|
|
|
# 'description': 'Container network RX bitrate in bits per second', |
97
|
|
|
# 'y_unit': 'bps'}, |
98
|
|
|
# {'name': 'network_tx', |
99
|
|
|
# 'description': 'Container network TX bitrate in bits per second', |
100
|
|
|
# 'y_unit': 'bps'}, |
101
|
|
|
# {'name': 'io_r', |
102
|
|
|
# 'description': 'Container IO bytes read per second', |
103
|
|
|
# 'y_unit': 'Bps'}, |
104
|
|
|
# {'name': 'io_w', |
105
|
|
|
# 'description': 'Container IO bytes write per second', |
106
|
|
|
# 'y_unit': 'Bps'}] |
107
|
|
|
items_history_list = [{'name': 'cpu_percent', 'description': 'Container CPU consumption in %', 'y_unit': '%'}] |
108
|
|
|
|
109
|
|
|
# List of key to remove before export |
110
|
|
|
export_exclude_list = ['cpu', 'io', 'memory', 'network'] |
111
|
|
|
|
112
|
|
|
# Sort dictionary for human |
113
|
|
|
sort_for_human = { |
114
|
|
|
'io_counters': 'disk IO', |
115
|
|
|
'cpu_percent': 'CPU consumption', |
116
|
|
|
'memory_usage': 'memory consumption', |
117
|
|
|
'cpu_times': 'uptime', |
118
|
|
|
'name': 'container name', |
119
|
|
|
None: 'None', |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
|
123
|
|
|
class PluginModel(GlancesPluginModel): |
124
|
|
|
"""Glances Docker plugin. |
125
|
|
|
|
126
|
|
|
stats is a dict: {'version': {...}, 'containers': [{}, {}]} |
127
|
|
|
""" |
128
|
|
|
|
129
|
|
|
def __init__(self, args=None, config=None): |
130
|
|
|
"""Init the plugin.""" |
131
|
|
|
super().__init__( |
132
|
|
|
args=args, config=config, items_history_list=items_history_list, fields_description=fields_description |
133
|
|
|
) |
134
|
|
|
|
135
|
|
|
# The plugin can be disabled using: args.disable_docker |
136
|
|
|
self.args = args |
137
|
|
|
|
138
|
|
|
# Default config keys |
139
|
|
|
self.config = config |
140
|
|
|
|
141
|
|
|
# We want to display the stat in the curse interface |
142
|
|
|
self.display_curse = True |
143
|
|
|
|
144
|
|
|
self.watchers: Dict[str, ContainersExtension] = {} |
145
|
|
|
|
146
|
|
|
# Init the Docker API |
147
|
|
|
if not import_docker_error_tag: |
148
|
|
|
self.watchers['docker'] = DockerExtension() |
149
|
|
|
|
150
|
|
|
# Init the Podman API |
151
|
|
|
if not import_podman_error_tag: |
152
|
|
|
self.watchers['podman'] = PodmanExtension(podman_sock=self._podman_sock()) |
153
|
|
|
|
154
|
|
|
# Sort key |
155
|
|
|
self.sort_key = None |
156
|
|
|
|
157
|
|
|
# Force a first update because we need two update to have the first stat |
158
|
|
|
self.update() |
159
|
|
|
self.refresh_timer.set(0) |
160
|
|
|
|
161
|
|
|
def _podman_sock(self) -> str: |
162
|
|
|
"""Return the podman sock. |
163
|
|
|
Could be desfined in the [docker] section thanks to the podman_sock option. |
164
|
|
|
Default value: unix:///run/user/1000/podman/podman.sock |
165
|
|
|
""" |
166
|
|
|
conf_podman_sock = self.get_conf_value('podman_sock') |
167
|
|
|
if len(conf_podman_sock) == 0: |
168
|
|
|
return "unix:///run/user/1000/podman/podman.sock" |
169
|
|
|
return conf_podman_sock[0] |
170
|
|
|
|
171
|
|
|
def exit(self) -> None: |
172
|
|
|
"""Overwrite the exit method to close threads.""" |
173
|
|
|
for watcher in itervalues(self.watchers): |
174
|
|
|
watcher.stop() |
175
|
|
|
|
176
|
|
|
# Call the father class |
177
|
|
|
super().exit() |
178
|
|
|
|
179
|
|
|
def get_key(self) -> str: |
180
|
|
|
"""Return the key of the list.""" |
181
|
|
|
return 'name' |
182
|
|
|
|
183
|
|
|
def get_export(self) -> List[Dict]: |
184
|
|
|
"""Overwrite the default export method. |
185
|
|
|
|
186
|
|
|
- Only exports containers |
187
|
|
|
- The key is the first container name |
188
|
|
|
""" |
189
|
|
|
try: |
190
|
|
|
ret = deepcopy(self.stats) |
191
|
|
|
except KeyError as e: |
192
|
|
|
logger.debug(f"docker plugin - Docker export error {e}") |
193
|
|
|
ret = [] |
194
|
|
|
|
195
|
|
|
# Remove fields uses to compute rate |
196
|
|
|
for container in ret: |
197
|
|
|
for i in export_exclude_list: |
198
|
|
|
container.pop(i) |
199
|
|
|
|
200
|
|
|
return ret |
201
|
|
|
|
202
|
|
|
def _all_tag(self) -> bool: |
203
|
|
|
"""Return the all tag of the Glances/Docker configuration file. |
204
|
|
|
|
205
|
|
|
# By default, Glances only display running containers |
206
|
|
|
# Set the following key to True to display all containers |
207
|
|
|
all=True |
208
|
|
|
""" |
209
|
|
|
all_tag = self.get_conf_value('all') |
210
|
|
|
if len(all_tag) == 0: |
211
|
|
|
return False |
212
|
|
|
return all_tag[0].lower() == 'true' |
213
|
|
|
|
214
|
|
|
@GlancesPluginModel._check_decorator |
215
|
|
|
@GlancesPluginModel._log_result_decorator |
216
|
|
|
def update(self) -> List[Dict]: |
217
|
|
|
"""Update Docker and podman stats using the input method.""" |
218
|
|
|
# Connection should be ok |
219
|
|
|
if not self.watchers: |
220
|
|
|
return self.get_init_value() |
221
|
|
|
|
222
|
|
|
if self.input_method != 'local': |
223
|
|
|
return self.get_init_value() |
224
|
|
|
|
225
|
|
|
# Update stats |
226
|
|
|
stats = [] |
227
|
|
|
for engine, watcher in iteritems(self.watchers): |
228
|
|
|
version, containers = watcher.update(all_tag=self._all_tag()) |
229
|
|
|
for container in containers: |
230
|
|
|
container["engine"] = 'docker' |
231
|
|
|
stats.extend(containers) |
232
|
|
|
|
233
|
|
|
# Sort and update the stats |
234
|
|
|
# @TODO: Have a look because sort did not work for the moment (need memory stats ?) |
235
|
|
|
self.sort_key, self.stats = sort_docker_stats(stats) |
236
|
|
|
return self.stats |
237
|
|
|
|
238
|
|
|
@staticmethod |
239
|
|
|
def memory_usage_no_cache(mem: Dict[str, float]) -> float: |
240
|
|
|
"""Return the 'real' memory usage by removing inactive_file to usage""" |
241
|
|
|
# Ref: https://github.com/docker/docker-py/issues/3210 |
242
|
|
|
return mem['usage'] - (mem['inactive_file'] if 'inactive_file' in mem else 0) |
243
|
|
|
|
244
|
|
|
def update_views(self) -> bool: |
245
|
|
|
"""Update stats views.""" |
246
|
|
|
# Call the father's method |
247
|
|
|
super().update_views() |
248
|
|
|
|
249
|
|
|
if not self.stats: |
250
|
|
|
return False |
251
|
|
|
|
252
|
|
|
# Add specifics information |
253
|
|
|
# Alert |
254
|
|
|
for i in self.stats: |
255
|
|
|
# Init the views for the current container (key = container name) |
256
|
|
|
self.views[i[self.get_key()]] = {'cpu': {}, 'mem': {}} |
257
|
|
|
# CPU alert |
258
|
|
|
if 'cpu' in i and 'total' in i['cpu']: |
259
|
|
|
# Looking for specific CPU container threshold in the conf file |
260
|
|
|
alert = self.get_alert(i['cpu']['total'], header=i['name'] + '_cpu', action_key=i['name']) |
261
|
|
|
if alert == 'DEFAULT': |
262
|
|
|
# Not found ? Get back to default CPU threshold value |
263
|
|
|
alert = self.get_alert(i['cpu']['total'], header='cpu') |
264
|
|
|
self.views[i[self.get_key()]]['cpu']['decoration'] = alert |
265
|
|
|
# MEM alert |
266
|
|
|
if 'memory' in i and 'usage' in i['memory']: |
267
|
|
|
# Looking for specific MEM container threshold in the conf file |
268
|
|
|
alert = self.get_alert( |
269
|
|
|
self.memory_usage_no_cache(i['memory']), |
270
|
|
|
maximum=i['memory']['limit'], |
271
|
|
|
header=i['name'] + '_mem', |
272
|
|
|
action_key=i['name'], |
273
|
|
|
) |
274
|
|
|
if alert == 'DEFAULT': |
275
|
|
|
# Not found ? Get back to default MEM threshold value |
276
|
|
|
alert = self.get_alert( |
277
|
|
|
self.memory_usage_no_cache(i['memory']), maximum=i['memory']['limit'], header='mem' |
278
|
|
|
) |
279
|
|
|
self.views[i[self.get_key()]]['mem']['decoration'] = alert |
280
|
|
|
|
281
|
|
|
# Display Engine and Pod name ? |
282
|
|
|
show_pod_name = False |
283
|
|
|
if any(ct.get("pod_name") for ct in self.stats): |
284
|
|
|
show_pod_name = True |
285
|
|
|
self.views['show_pod_name'] = show_pod_name |
286
|
|
|
show_engine_name = False |
287
|
|
|
if len({ct["engine"] for ct in self.stats}) > 1: |
288
|
|
|
show_engine_name = True |
289
|
|
|
self.views['show_engine_name'] = show_engine_name |
290
|
|
|
|
291
|
|
|
return True |
292
|
|
|
|
293
|
|
|
def msg_curse(self, args=None, max_width: Optional[int] = None) -> List[str]: |
294
|
|
|
"""Return the dict to display in the curse interface.""" |
295
|
|
|
# Init the return message |
296
|
|
|
ret = [] |
297
|
|
|
|
298
|
|
|
# Only process if stats exist (and non null) and display plugin enable... |
299
|
|
|
if not self.stats or len(self.stats) == 0 or self.is_disabled(): |
300
|
|
|
return ret |
301
|
|
|
|
302
|
|
|
# Build the string message |
303
|
|
|
# Title |
304
|
|
|
msg = '{}'.format('CONTAINERS') |
305
|
|
|
ret.append(self.curse_add_line(msg, "TITLE")) |
306
|
|
|
msg = f' {len(self.stats)}' |
307
|
|
|
ret.append(self.curse_add_line(msg)) |
308
|
|
|
msg = f' sorted by {sort_for_human[self.sort_key]}' |
309
|
|
|
ret.append(self.curse_add_line(msg)) |
310
|
|
|
ret.append(self.curse_new_line()) |
311
|
|
|
# Header |
312
|
|
|
ret.append(self.curse_new_line()) |
313
|
|
|
# Get the maximum containers name |
314
|
|
|
# Max size is configurable. See feature request #1723. |
315
|
|
|
name_max_width = min( |
316
|
|
|
self.config.get_int_value('containers', 'max_name_size', default=20) if self.config is not None else 20, |
317
|
|
|
len(max(self.stats, key=lambda x: len(x['name']))['name']), |
318
|
|
|
) |
319
|
|
|
|
320
|
|
|
if self.views['show_engine_name']: |
321
|
|
|
msg = ' {:{width}}'.format('Engine', width=6) |
322
|
|
|
ret.append(self.curse_add_line(msg)) |
323
|
|
|
if self.views['show_pod_name']: |
324
|
|
|
msg = ' {:{width}}'.format('Pod', width=12) |
325
|
|
|
ret.append(self.curse_add_line(msg)) |
326
|
|
|
msg = ' {:{width}}'.format('Name', width=name_max_width) |
327
|
|
|
ret.append(self.curse_add_line(msg, 'SORT' if self.sort_key == 'name' else 'DEFAULT')) |
328
|
|
|
msg = '{:>10}'.format('Status') |
329
|
|
|
ret.append(self.curse_add_line(msg)) |
330
|
|
|
msg = '{:>10}'.format('Uptime') |
331
|
|
|
ret.append(self.curse_add_line(msg)) |
332
|
|
|
msg = '{:>6}'.format('CPU%') |
333
|
|
|
ret.append(self.curse_add_line(msg, 'SORT' if self.sort_key == 'cpu_percent' else 'DEFAULT')) |
334
|
|
|
msg = '{:>7}'.format('MEM') |
335
|
|
|
ret.append(self.curse_add_line(msg, 'SORT' if self.sort_key == 'memory_usage' else 'DEFAULT')) |
336
|
|
|
msg = '/{:<7}'.format('MAX') |
337
|
|
|
ret.append(self.curse_add_line(msg)) |
338
|
|
|
msg = '{:>7}'.format('IOR/s') |
339
|
|
|
ret.append(self.curse_add_line(msg)) |
340
|
|
|
msg = ' {:<7}'.format('IOW/s') |
341
|
|
|
ret.append(self.curse_add_line(msg)) |
342
|
|
|
msg = '{:>7}'.format('Rx/s') |
343
|
|
|
ret.append(self.curse_add_line(msg)) |
344
|
|
|
msg = ' {:<7}'.format('Tx/s') |
345
|
|
|
ret.append(self.curse_add_line(msg)) |
346
|
|
|
msg = ' {:8}'.format('Command') |
347
|
|
|
ret.append(self.curse_add_line(msg)) |
348
|
|
|
|
349
|
|
|
# Data |
350
|
|
|
for container in self.stats: |
351
|
|
|
ret.append(self.curse_new_line()) |
352
|
|
|
if self.views['show_engine_name']: |
353
|
|
|
ret.append(self.curse_add_line(' {:{width}}'.format(container["engine"], width=6))) |
354
|
|
|
if self.views['show_pod_name']: |
355
|
|
|
ret.append(self.curse_add_line(' {:{width}}'.format(container.get("pod_id", "-"), width=12))) |
356
|
|
|
# Name |
357
|
|
|
ret.append( |
358
|
|
|
self.curse_add_line(' {:{width}}'.format(container['name'][:name_max_width], width=name_max_width)) |
359
|
|
|
) |
360
|
|
|
# Status |
361
|
|
|
status = self.container_alert(container['status']) |
362
|
|
|
msg = '{:>10}'.format(container['status'][0:10]) |
363
|
|
|
ret.append(self.curse_add_line(msg, status)) |
364
|
|
|
# Uptime |
365
|
|
|
if container['uptime']: |
366
|
|
|
msg = '{:>10}'.format(container['uptime']) |
367
|
|
|
else: |
368
|
|
|
msg = '{:>10}'.format('_') |
369
|
|
|
ret.append(self.curse_add_line(msg)) |
370
|
|
|
# CPU |
371
|
|
|
try: |
372
|
|
|
msg = '{:>6.1f}'.format(container['cpu']['total']) |
373
|
|
|
except (KeyError, TypeError): |
374
|
|
|
msg = '{:>6}'.format('_') |
375
|
|
|
ret.append(self.curse_add_line(msg, self.get_views(item=container['name'], key='cpu', option='decoration'))) |
376
|
|
|
# MEM |
377
|
|
|
try: |
378
|
|
|
msg = '{:>7}'.format(self.auto_unit(self.memory_usage_no_cache(container['memory']))) |
379
|
|
|
except KeyError: |
380
|
|
|
msg = '{:>7}'.format('_') |
381
|
|
|
ret.append(self.curse_add_line(msg, self.get_views(item=container['name'], key='mem', option='decoration'))) |
382
|
|
|
try: |
383
|
|
|
msg = '/{:<7}'.format(self.auto_unit(container['memory']['limit'])) |
384
|
|
|
except (KeyError, TypeError): |
385
|
|
|
msg = '/{:<7}'.format('_') |
386
|
|
|
ret.append(self.curse_add_line(msg)) |
387
|
|
|
# IO R/W |
388
|
|
|
unit = 'B' |
389
|
|
|
try: |
390
|
|
|
value = self.auto_unit(int(container['io_rx'])) + unit |
391
|
|
|
msg = f'{value:>7}' |
392
|
|
|
except (KeyError, TypeError): |
393
|
|
|
msg = '{:>7}'.format('_') |
394
|
|
|
ret.append(self.curse_add_line(msg)) |
395
|
|
|
try: |
396
|
|
|
value = self.auto_unit(int(container['io_wx'])) + unit |
397
|
|
|
msg = f' {value:<7}' |
398
|
|
|
except (KeyError, TypeError): |
399
|
|
|
msg = ' {:<7}'.format('_') |
400
|
|
|
ret.append(self.curse_add_line(msg)) |
401
|
|
|
# NET RX/TX |
402
|
|
|
if args.byte: |
403
|
|
|
# Bytes per second (for dummy) |
404
|
|
|
to_bit = 1 |
405
|
|
|
unit = '' |
406
|
|
|
else: |
407
|
|
|
# Bits per second (for real network administrator | Default) |
408
|
|
|
to_bit = 8 |
409
|
|
|
unit = 'b' |
410
|
|
|
try: |
411
|
|
|
value = self.auto_unit(int(container['network_rx'] * to_bit)) + unit |
412
|
|
|
msg = f'{value:>7}' |
413
|
|
|
except (KeyError, TypeError): |
414
|
|
|
msg = '{:>7}'.format('_') |
415
|
|
|
ret.append(self.curse_add_line(msg)) |
416
|
|
|
try: |
417
|
|
|
value = self.auto_unit(int(container['network_tx'] * to_bit)) + unit |
418
|
|
|
msg = f' {value:<7}' |
419
|
|
|
except (KeyError, TypeError): |
420
|
|
|
msg = ' {:<7}'.format('_') |
421
|
|
|
ret.append(self.curse_add_line(msg)) |
422
|
|
|
# Command |
423
|
|
|
if container['command'] is not None: |
424
|
|
|
msg = ' {}'.format(container['command']) |
425
|
|
|
else: |
426
|
|
|
msg = ' {}'.format('_') |
427
|
|
|
ret.append(self.curse_add_line(msg, splittable=True)) |
428
|
|
|
|
429
|
|
|
return ret |
430
|
|
|
|
431
|
|
|
@staticmethod |
432
|
|
|
def container_alert(status: str) -> str: |
433
|
|
|
"""Analyse the container status.""" |
434
|
|
|
if status == 'running': |
435
|
|
|
return 'OK' |
436
|
|
|
if status == 'exited': |
437
|
|
|
return 'WARNING' |
438
|
|
|
if status == 'dead': |
439
|
|
|
return 'CRITICAL' |
440
|
|
|
return 'CAREFUL' |
441
|
|
|
|
442
|
|
|
|
443
|
|
|
def sort_docker_stats(stats: List[Dict[str, Any]]) -> Tuple[str, List[Dict[str, Any]]]: |
444
|
|
|
# Sort Docker stats using the same function than processes |
445
|
|
|
sort_by = glances_processes.sort_key |
446
|
|
|
sort_by_secondary = 'memory_usage' |
447
|
|
|
if sort_by == 'memory_percent': |
448
|
|
|
sort_by = 'memory_usage' |
449
|
|
|
sort_by_secondary = 'cpu_percent' |
450
|
|
|
elif sort_by in ['username', 'io_counters', 'cpu_times']: |
451
|
|
|
sort_by = 'cpu_percent' |
452
|
|
|
|
453
|
|
|
# Sort docker stats |
454
|
|
|
sort_stats_processes( |
455
|
|
|
stats, |
456
|
|
|
sorted_by=sort_by, |
457
|
|
|
sorted_by_secondary=sort_by_secondary, |
458
|
|
|
# Reverse for all but name |
459
|
|
|
reverse=glances_processes.sort_key != 'name', |
460
|
|
|
) |
461
|
|
|
|
462
|
|
|
# Return the main sort key and the sorted stats |
463
|
|
|
return sort_by, stats |
464
|
|
|
|