2004-02-01 16:00:06 +00:00
|
|
|
/*
|
2005-10-30 16:09:35 +00:00
|
|
|
$Id: iso-info.c,v 1.34 2005/10/30 16:09:35 rocky Exp $
|
2004-02-01 16:00:06 +00:00
|
|
|
|
2005-01-22 22:21:36 +00:00
|
|
|
Copyright (C) 2004, 2005 Rocky Bernstein <rocky@panix.com>
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
ISO Info - prints various information about a ISO 9660 image.
|
|
|
|
|
*/
|
|
|
|
|
#include "util.h"
|
|
|
|
|
#undef err_exit
|
|
|
|
|
|
2004-11-04 10:08:23 +00:00
|
|
|
#define err_exit(fmt, args...) \
|
|
|
|
|
report (stderr, "%s: "fmt, program_name, ##args); \
|
2004-06-19 00:10:23 +00:00
|
|
|
iso9660_close(p_iso); \
|
2005-10-30 16:09:35 +00:00
|
|
|
free(program_name); \
|
2004-02-01 16:00:06 +00:00
|
|
|
return(EXIT_FAILURE);
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
# include "config.h"
|
|
|
|
|
#endif
|
|
|
|
|
#include <sys/types.h>
|
2004-10-22 01:13:38 +00:00
|
|
|
#include <cdio/bytesex.h>
|
2004-02-01 16:00:06 +00:00
|
|
|
#include <cdio/cdio.h>
|
2004-10-09 03:20:28 +00:00
|
|
|
#include <cdio/ds.h>
|
2004-02-01 16:00:06 +00:00
|
|
|
#include <cdio/iso9660.h>
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
2004-06-19 19:15:15 +00:00
|
|
|
#ifdef HAVE_UNISTD_H
|
2004-02-01 16:00:06 +00:00
|
|
|
#include <unistd.h>
|
2004-06-19 19:15:15 +00:00
|
|
|
#endif
|
2004-02-01 16:00:06 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
2005-10-05 09:48:11 +00:00
|
|
|
#include <getopt.h>
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
#define STRONG "\033[1m"
|
|
|
|
|
#define NORMAL "\033[0m"
|
|
|
|
|
#else
|
|
|
|
|
#define STRONG "__________________________________\n"
|
|
|
|
|
#define NORMAL ""
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* Used by `main' to communicate with `parse_opt'. And global options
|
|
|
|
|
*/
|
|
|
|
|
struct arguments
|
|
|
|
|
{
|
|
|
|
|
uint32_t debug_level;
|
|
|
|
|
int version_only;
|
|
|
|
|
int silent;
|
|
|
|
|
int no_header;
|
2004-10-24 11:20:30 +00:00
|
|
|
int no_joliet;
|
2005-02-19 11:43:05 +00:00
|
|
|
int no_xa;
|
|
|
|
|
int no_rock_ridge;
|
2004-02-01 16:00:06 +00:00
|
|
|
int print_iso9660;
|
2004-12-18 21:24:25 +00:00
|
|
|
int print_iso9660_short;
|
2004-02-01 16:00:06 +00:00
|
|
|
} opts;
|
|
|
|
|
|
|
|
|
|
/* Configuration option codes */
|
|
|
|
|
enum {
|
2005-10-05 09:48:11 +00:00
|
|
|
OP_HANDLED = 0,
|
|
|
|
|
|
|
|
|
|
OP_USAGE,
|
|
|
|
|
|
2004-02-01 16:00:06 +00:00
|
|
|
/* These are the remaining configuration options */
|
|
|
|
|
OP_VERSION,
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
char *temp_str;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Parse a all options. */
|
|
|
|
|
static bool
|
2005-10-05 09:48:11 +00:00
|
|
|
parse_options (int argc, char *argv[])
|
2004-02-01 16:00:06 +00:00
|
|
|
{
|
|
|
|
|
int opt;
|
|
|
|
|
|
2005-10-05 09:48:11 +00:00
|
|
|
const char* helpText =
|
|
|
|
|
"Usage: %s [OPTION...]\n"
|
|
|
|
|
" -d, --debug=INT Set debugging to LEVEL\n"
|
|
|
|
|
" -i, --input[=FILE] Filename to read ISO-9960 image from\n"
|
|
|
|
|
" -f Generate output similar to 'find . -print'\n"
|
|
|
|
|
" -l, --iso9660 Generate output similar to 'ls -lR'\n"
|
|
|
|
|
" --no-header Don't display header and copyright (for regression\n"
|
|
|
|
|
" testing)\n"
|
2004-10-29 02:11:48 +00:00
|
|
|
#ifdef HAVE_JOLIET
|
2005-10-05 09:48:11 +00:00
|
|
|
" --no-joliet Don't use Joliet-extension information\n"
|
2004-10-29 02:11:48 +00:00
|
|
|
#endif /*HAVE_JOLIET*/
|
2005-10-05 09:48:11 +00:00
|
|
|
" --no-rock-ridge Don't use Rock-Ridge-extension information\n"
|
|
|
|
|
" --no-xa Don't use XA-extension information\n"
|
|
|
|
|
" -q, --quiet Don't produce warning output\n"
|
|
|
|
|
" -V, --version display version and copyright information and exit\n"
|
|
|
|
|
"\n"
|
|
|
|
|
"Help options:\n"
|
|
|
|
|
" -?, --help Show this help message\n"
|
|
|
|
|
" --usage Display brief usage message\n";
|
|
|
|
|
|
|
|
|
|
const char* usageText =
|
|
|
|
|
"Usage: %s [-d|--debug INT] [-i|--input FILE] [-f] [-l|--iso9660]\n"
|
|
|
|
|
" [--no-header] [--no-joliet] [--no-rock-ridge] [--no-xa] [-q|--quiet]\n"
|
|
|
|
|
" [-V|--version] [-?|--help] [--usage]\n";
|
|
|
|
|
|
|
|
|
|
const char* optionsString = "d:i::flqV?";
|
|
|
|
|
struct option optionsTable[] = {
|
|
|
|
|
{"debug", required_argument, NULL, 'd'},
|
|
|
|
|
{"input", optional_argument, NULL, 'i'},
|
|
|
|
|
{"iso9660", no_argument, NULL, 'l'},
|
|
|
|
|
{"no-header", no_argument, &opts.no_header, 1 },
|
|
|
|
|
#ifdef HAVE_JOLIET
|
|
|
|
|
{"no-joliet", no_argument, &opts.no_joliet, 1 },
|
|
|
|
|
#endif /*HAVE_JOLIET*/
|
|
|
|
|
{"no-rock-ridge", no_argument, &opts.no_rock_ridge, 1 },
|
|
|
|
|
{"no-xa", no_argument, &opts.no_xa, 1 },
|
|
|
|
|
{"quiet", no_argument, NULL, 'q'},
|
|
|
|
|
{"version", no_argument, NULL, 'V'},
|
|
|
|
|
|
|
|
|
|
{"help", no_argument, NULL, '?' },
|
|
|
|
|
{"usage", no_argument, NULL, OP_USAGE },
|
|
|
|
|
{ NULL, 0, NULL, 0 }
|
2004-02-01 16:00:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
program_name = strrchr(argv[0],'/');
|
2004-02-07 02:40:20 +00:00
|
|
|
program_name = program_name ? strdup(program_name+1) : strdup(argv[0]);
|
2004-02-01 16:00:06 +00:00
|
|
|
|
2005-10-05 09:48:11 +00:00
|
|
|
while ((opt = getopt_long(argc, argv, optionsString, optionsTable, NULL)) >= 0) {
|
|
|
|
|
switch (opt)
|
|
|
|
|
{
|
|
|
|
|
case 'd': opts.debug_level = atoi(optarg); break;
|
|
|
|
|
case 'i': if (optarg != NULL) source_name = strdup(optarg); break;
|
|
|
|
|
case 'f': opts.print_iso9660_short = 1; break;
|
|
|
|
|
case 'l': opts.print_iso9660 = 1; break;
|
|
|
|
|
case 'q': opts.silent = 1; break;
|
|
|
|
|
case 'V': opts.version_only = 1; break;
|
|
|
|
|
|
|
|
|
|
case '?':
|
2005-10-06 09:37:11 +00:00
|
|
|
fprintf(stdout, helpText, program_name);
|
2005-10-05 09:48:11 +00:00
|
|
|
free(program_name);
|
2005-10-06 09:37:11 +00:00
|
|
|
exit(EXIT_INFO);
|
2005-10-05 09:48:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_USAGE:
|
|
|
|
|
fprintf(stderr, usageText, program_name);
|
|
|
|
|
free(program_name);
|
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case OP_HANDLED:
|
|
|
|
|
break;
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
2005-10-05 09:48:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (optind < argc) {
|
|
|
|
|
const char *remaining_arg = argv[optind++];
|
|
|
|
|
if ( optind < argc ) {
|
|
|
|
|
report( stderr, "%s: Source specified in previously %s and %s\n",
|
|
|
|
|
program_name, source_name, remaining_arg );
|
|
|
|
|
free(program_name);
|
|
|
|
|
exit (EXIT_FAILURE);
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
2005-10-05 09:48:11 +00:00
|
|
|
source_name = strdup(remaining_arg);
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* CDIO logging routines */
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
_log_handler (cdio_log_level_t level, const char message[])
|
|
|
|
|
{
|
|
|
|
|
if (level == CDIO_LOG_DEBUG && opts.debug_level < 2)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (level == CDIO_LOG_INFO && opts.debug_level < 1)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (level == CDIO_LOG_WARN && opts.silent)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
gl_default_cdio_log_handler (level, message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2005-10-30 15:58:37 +00:00
|
|
|
print_iso9660_recurse (iso9660_t *p_iso, const char psz_path[])
|
2004-02-01 16:00:06 +00:00
|
|
|
{
|
2005-01-12 11:34:51 +00:00
|
|
|
CdioList_t *entlist;
|
|
|
|
|
CdioList_t *dirlist = _cdio_list_new ();
|
|
|
|
|
CdioListNode_t *entnode;
|
2004-10-23 20:55:08 +00:00
|
|
|
uint8_t i_joliet_level = iso9660_ifs_get_joliet_level(p_iso);
|
2004-02-01 16:00:06 +00:00
|
|
|
|
2005-10-30 15:58:37 +00:00
|
|
|
entlist = iso9660_ifs_readdir (p_iso, psz_path);
|
2004-02-01 16:00:06 +00:00
|
|
|
|
2004-12-18 21:24:25 +00:00
|
|
|
if (opts.print_iso9660) {
|
2005-10-30 15:58:37 +00:00
|
|
|
printf ("%s:\n", psz_path);
|
2004-12-18 21:24:25 +00:00
|
|
|
}
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
if (NULL == entlist) {
|
2004-11-04 10:08:23 +00:00
|
|
|
report( stderr, "Error getting above directory information\n" );
|
2004-02-01 16:00:06 +00:00
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Iterate over files in this directory */
|
|
|
|
|
|
|
|
|
|
_CDIO_LIST_FOREACH (entnode, entlist)
|
|
|
|
|
{
|
2005-02-14 07:49:46 +00:00
|
|
|
iso9660_stat_t *p_statbuf = _cdio_list_node_data (entnode);
|
2005-02-21 02:02:12 +00:00
|
|
|
char *psz_iso_name = p_statbuf->filename;
|
2004-02-01 16:00:06 +00:00
|
|
|
char _fullname[4096] = { 0, };
|
|
|
|
|
char translated_name[MAX_ISONAME+1];
|
|
|
|
|
|
2005-02-21 09:00:53 +00:00
|
|
|
if (yep != p_statbuf->rr.b3_rock || 1 == opts.no_rock_ridge) {
|
2005-02-21 02:02:12 +00:00
|
|
|
iso9660_name_translate_ext(psz_iso_name, translated_name,
|
|
|
|
|
i_joliet_level);
|
2005-10-30 15:58:37 +00:00
|
|
|
snprintf (_fullname, sizeof (_fullname), "%s%s", psz_path,
|
2005-02-18 22:36:29 +00:00
|
|
|
translated_name);
|
|
|
|
|
} else {
|
2005-10-30 15:58:37 +00:00
|
|
|
snprintf (_fullname, sizeof (_fullname), "%s%s", psz_path,
|
2005-02-21 02:02:12 +00:00
|
|
|
psz_iso_name);
|
2005-02-18 22:36:29 +00:00
|
|
|
}
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
strncat (_fullname, "/", sizeof (_fullname));
|
|
|
|
|
|
2005-02-14 07:49:46 +00:00
|
|
|
if (p_statbuf->type == _STAT_DIR
|
2005-02-21 02:02:12 +00:00
|
|
|
&& strcmp (psz_iso_name, ".")
|
|
|
|
|
&& strcmp (psz_iso_name, ".."))
|
2004-02-01 16:00:06 +00:00
|
|
|
_cdio_list_append (dirlist, strdup (_fullname));
|
|
|
|
|
|
2004-12-18 21:24:25 +00:00
|
|
|
if (opts.print_iso9660) {
|
2005-02-20 10:21:01 +00:00
|
|
|
print_fs_attrs(p_statbuf,
|
|
|
|
|
0 == opts.no_rock_ridge,
|
|
|
|
|
iso9660_ifs_is_xa(p_iso) && 0 == opts.no_xa,
|
2005-02-21 02:02:12 +00:00
|
|
|
psz_iso_name, translated_name);
|
2004-12-18 21:24:25 +00:00
|
|
|
} else
|
2005-02-21 02:02:12 +00:00
|
|
|
if ( strcmp (psz_iso_name, ".") && strcmp (psz_iso_name, ".."))
|
2005-10-30 15:58:37 +00:00
|
|
|
printf("%9u %s%s\n", (unsigned int) p_statbuf->size, psz_path,
|
2005-02-21 09:00:53 +00:00
|
|
|
yep == p_statbuf->rr.b3_rock
|
|
|
|
|
? psz_iso_name : translated_name);
|
|
|
|
|
if (p_statbuf->rr.i_symlink) {
|
|
|
|
|
free(p_statbuf->rr.psz_symlink);
|
|
|
|
|
p_statbuf->rr.i_symlink = 0;
|
2005-02-21 02:02:12 +00:00
|
|
|
}
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_cdio_list_free (entlist, true);
|
|
|
|
|
|
2004-12-18 21:24:25 +00:00
|
|
|
if (opts.print_iso9660) {
|
|
|
|
|
printf ("\n");
|
|
|
|
|
}
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
/* Now recurse over the directories. */
|
|
|
|
|
|
|
|
|
|
_CDIO_LIST_FOREACH (entnode, dirlist)
|
|
|
|
|
{
|
|
|
|
|
char *_fullname = _cdio_list_node_data (entnode);
|
|
|
|
|
|
2004-10-22 01:13:38 +00:00
|
|
|
print_iso9660_recurse (p_iso, _fullname);
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_cdio_list_free (dirlist, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
print_iso9660_fs (iso9660_t *iso)
|
|
|
|
|
{
|
|
|
|
|
print_iso9660_recurse (iso, "/");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Initialize global variables. */
|
|
|
|
|
static void
|
|
|
|
|
init(void)
|
|
|
|
|
{
|
|
|
|
|
gl_default_cdio_log_handler = cdio_log_set_handler (_log_handler);
|
|
|
|
|
|
|
|
|
|
/* Default option values. */
|
2004-12-18 21:24:25 +00:00
|
|
|
opts.silent = false;
|
|
|
|
|
opts.no_header = false;
|
2005-02-19 11:43:05 +00:00
|
|
|
opts.no_joliet = 0;
|
|
|
|
|
opts.no_rock_ridge = 0;
|
|
|
|
|
opts.no_xa = 0;
|
2004-12-18 21:24:25 +00:00
|
|
|
opts.debug_level = 0;
|
|
|
|
|
opts.print_iso9660 = 0;
|
|
|
|
|
opts.print_iso9660_short = 0;
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-23 20:55:08 +00:00
|
|
|
#define print_vd_info(title, fn) \
|
|
|
|
|
if (fn(p_iso, &psz_str)) { \
|
|
|
|
|
printf(title ": %s\n", psz_str); \
|
2005-02-21 02:02:12 +00:00
|
|
|
} \
|
|
|
|
|
free(psz_str); \
|
|
|
|
|
psz_str = NULL;
|
2004-10-23 20:55:08 +00:00
|
|
|
|
2004-02-01 16:00:06 +00:00
|
|
|
/* ------------------------------------------------------------------------ */
|
|
|
|
|
|
|
|
|
|
int
|
2005-10-05 09:48:11 +00:00
|
|
|
main(int argc, char *argv[])
|
2004-02-01 16:00:06 +00:00
|
|
|
{
|
|
|
|
|
|
2004-06-19 00:10:23 +00:00
|
|
|
iso9660_t *p_iso=NULL;
|
2004-10-24 11:20:30 +00:00
|
|
|
iso_extension_mask_t iso_extension_mask = ISO_EXTENSION_ALL;
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
init();
|
|
|
|
|
|
|
|
|
|
/* Parse our arguments; every option seen by `parse_opt' will
|
|
|
|
|
be reflected in `arguments'. */
|
|
|
|
|
parse_options(argc, argv);
|
2005-02-19 11:43:05 +00:00
|
|
|
|
2005-01-22 22:21:36 +00:00
|
|
|
print_version(program_name, CDIO_VERSION, opts.no_header, opts.version_only);
|
2004-02-01 16:00:06 +00:00
|
|
|
|
|
|
|
|
if (opts.debug_level == 3) {
|
|
|
|
|
cdio_loglevel_default = CDIO_LOG_INFO;
|
|
|
|
|
} else if (opts.debug_level >= 4) {
|
|
|
|
|
cdio_loglevel_default = CDIO_LOG_DEBUG;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (source_name==NULL) {
|
2004-10-30 02:55:17 +00:00
|
|
|
err_exit("No input device given/found%s\n", "");
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
2004-10-24 11:20:30 +00:00
|
|
|
if (opts.no_joliet) {
|
|
|
|
|
iso_extension_mask &= ~ISO_EXTENSION_JOLIET;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p_iso = iso9660_open_ext (source_name, iso_extension_mask);
|
2004-02-01 16:00:06 +00:00
|
|
|
|
2004-06-19 00:10:23 +00:00
|
|
|
if (p_iso==NULL) {
|
2004-02-21 18:31:48 +00:00
|
|
|
free(source_name);
|
2004-10-30 02:55:17 +00:00
|
|
|
err_exit("Error in opening ISO-9660 image%s\n", "");
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (opts.silent == 0) {
|
2004-10-23 20:55:08 +00:00
|
|
|
char *psz_str = NULL;
|
|
|
|
|
|
2004-06-19 00:10:23 +00:00
|
|
|
printf(STRONG "ISO 9660 image: %s\n", source_name);
|
2004-10-23 20:55:08 +00:00
|
|
|
print_vd_info("Application", iso9660_ifs_get_application_id);
|
|
|
|
|
print_vd_info("Preparer ", iso9660_ifs_get_preparer_id);
|
|
|
|
|
print_vd_info("Publisher ", iso9660_ifs_get_publisher_id);
|
|
|
|
|
print_vd_info("System ", iso9660_ifs_get_system_id);
|
|
|
|
|
print_vd_info("Volume ", iso9660_ifs_get_volume_id);
|
|
|
|
|
print_vd_info("Volume Set ", iso9660_ifs_get_volumeset_id);
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
2004-12-18 21:24:25 +00:00
|
|
|
if (opts.print_iso9660 || opts.print_iso9660_short) {
|
2004-02-01 16:00:06 +00:00
|
|
|
printf(STRONG "ISO-9660 Information\n" NORMAL);
|
2004-12-18 21:24:25 +00:00
|
|
|
if (opts.print_iso9660 && opts.print_iso9660_short) {
|
|
|
|
|
printf("Note: both -f and -l options given -- "
|
|
|
|
|
"-l (long listing) takes precidence\n");
|
|
|
|
|
}
|
2004-06-19 00:10:23 +00:00
|
|
|
print_iso9660_fs(p_iso);
|
2004-02-01 16:00:06 +00:00
|
|
|
}
|
|
|
|
|
|
2004-02-21 18:31:48 +00:00
|
|
|
free(source_name);
|
2004-06-19 00:10:23 +00:00
|
|
|
iso9660_close(p_iso);
|
2004-02-01 16:00:06 +00:00
|
|
|
/* Not reached:*/
|
2004-02-07 02:40:20 +00:00
|
|
|
free(program_name);
|
2004-02-01 16:00:06 +00:00
|
|
|
return(EXIT_SUCCESS);
|
|
|
|
|
}
|