Skip to content

Instantly share code, notes, and snippets.

@hexfusion
Last active September 11, 2015 15:19
Show Gist options
  • Save hexfusion/69550995a42795d6ab9e to your computer and use it in GitHub Desktop.
Save hexfusion/69550995a42795d6ab9e to your computer and use it in GitHub Desktop.
# PSGI
use Plack::App::CGIBin;
use Plack::Builder;
my $app = Plack::App::CGIBin->new(root => “/my/interchange/cgi-bin")->to_app;
builder {
mount "/" => $app;
};
# nginx nothing special
location / {
root /home/sam/web;
rewrite ^/$ /strap/index.html permanent;
proxy_http_version 1.1;
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:5011;
}
# simple test plackup -MPlack::App::CGIBin -e 'Plack::App::CGIBin->new(root => "/my/interchange/cgi-bin")'
#!/bin/bash
export PERL5LIB=/home/sam/local/lib/perl5"${PERL5LIB:+:$PERL5LIB}";
export PERL5LIB=/home/sam/local/lib/perl5/x86_64-linux"${PERL5LIB:+:$PERL5LIB}";
PID=/home/sam/var/run/plackup.pid
PORT=5011
WORKERS=1
APP_DIR="/home/sam/live/catalogs/strap"
APP=$APP_DIR/bin/app.pl
plackup="/home/sam/local/bin/plackup"
plackup_args="-p $PORT -s Starman --pid=$PID --workers $WORKERS -D"
website="Starting Plack Port: $PORT"
lockfile=/home/sam/var/lock/plackup
start() {
[ -x $plackup ] || exit 5
[ -f $APP ] || exit 6
echo $"Starting $website: "
$plackup $plackup_args -a $APP 2>&1 > /dev/null
retval=$?
[ $retval = 0 ] && touch $lockfile
return $retval
}
stop() {
echo $"Stopping $website: "
if [ -f $PID ]; then
kill -QUIT `cat $PID` 2>&1> /dev/null
retval=$?
[ $retval -eq 0 ] && rm -f $lockfile ${PID}
fi
}
restart() {
stop
start
}
case "$1" in
start)
$1
;;
stop)
$1
;;
restart)
$1
;;
*)
echo $"Usage: $0 {start|stop|restart}"
exit 2
esac
This file has been truncated, but you can view the full file.
4613 execve("/home/sam/live/interchange/bin/interchange", ["/home/sam/live/interchange/bin/i"..., "-r"], [/* 28 vars */]) = 0
4613 brk(0) = 0x2557000
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46ded000
4613 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
4613 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
4613 fstat(3, {st_mode=S_IFREG|0644, st_size=29668, ...}) = 0
4613 mmap(NULL, 29668, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fde46de5000
4613 close(3) = 0
4613 open("/lib64/libnsl.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20A\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=113320, ...}) = 0
4613 mmap(NULL, 2198200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde469b4000
4613 mprotect(0x7fde469ca000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde46bc9000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7fde46bc9000
4613 mmap(0x7fde46bcb000, 6840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fde46bcb000
4613 close(3) = 0
4613 open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\16\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=19512, ...}) = 0
4613 mmap(NULL, 2109744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde467b0000
4613 mprotect(0x7fde467b3000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde469b2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7fde469b2000
4613 close(3) = 0
4613 open("/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260T\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=1141552, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46de4000
4613 mmap(NULL, 3150168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde464ae000
4613 mprotect(0x7fde465af000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde467ae000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x100000) = 0x7fde467ae000
4613 close(3) = 0
4613 open("/lib64/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\16\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=40816, ...}) = 0
4613 mmap(NULL, 2318912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde46277000
4613 mprotect(0x7fde4627f000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde4647e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7fde4647e000
4613 mmap(0x7fde46480000, 184896, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fde46480000
4613 close(3) = 0
4613 open("/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\17\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=14608, ...}) = 0
4613 mmap(NULL, 2105616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde46074000
4613 mprotect(0x7fde46076000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde46275000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fde46275000
4613 close(3) = 0
4613 open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\34\2\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=2107760, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46de3000
4613 mmap(NULL, 3932736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde45cb3000
4613 mprotect(0x7fde45e69000, 2097152, PROT_NONE) = 0
4613 mmap(0x7fde46069000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b6000) = 0x7fde46069000
4613 mmap(0x7fde4606f000, 16960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7fde4606f000
4613 close(3) = 0
4613 open("/lib64/libfreebl3.so", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\v\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=11376, ...}) = 0
4613 mmap(NULL, 2105536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7fde45ab0000
4613 mprotect(0x7fde45ab2000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde45cb1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7fde45cb1000
4613 close(3) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46de2000
4613 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46de0000
4613 arch_prctl(ARCH_SET_FS, 0x7fde46de0740) = 0
4613 mprotect(0x7fde46069000, 16384, PROT_READ) = 0
4613 mprotect(0x7fde469b2000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde45cb1000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde46275000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde4647e000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde467ae000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde46bc9000, 4096, PROT_READ) = 0
4613 mprotect(0x72c000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde46dee000, 4096, PROT_READ) = 0
4613 munmap(0x7fde46de5000, 29668) = 0
4613 rt_sigaction(SIGFPE, {SIG_IGN, [FPE], SA_RESTORER|SA_RESTART, 0x7fde45ce8650}, {SIG_DFL, [], 0}, 8) = 0
4613 brk(0) = 0x2557000
4613 brk(0x2578000) = 0x2578000
4613 brk(0) = 0x2578000
4613 getuid() = 1000
4613 geteuid() = 1000
4613 getgid() = 1000
4613 getegid() = 1000
4613 open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
4613 fstat(3, {st_mode=S_IFREG|0644, st_size=106065056, ...}) = 0
4613 mmap(NULL, 106065056, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7fde3f589000
4613 close(3) = 0
4613 open("/dev/urandom", O_RDONLY) = 3
4613 read(3, "\"`\346\236", 4) = 4
4613 close(3) = 0
4613 readlink("/proc/self/exe", "/home/sam/.plenv/versions/5.10.1"..., 4095) = 47
4613 stat("/home/sam/local/lib/perl5/5.10.1/x86_64-linux", 0x7fff996f9400) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/5.10.1", 0x7fff996f9400) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(2, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 open("/home/sam/live/interchange/bin/interchange", O_RDONLY) = 3
4613 ioctl(3, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f92e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(3, 0, SEEK_CUR) = 0
4613 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
4613 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
4613 getpid() = 4613
4613 read(3, "#!/home/sam/.plenv/versions/5.10"..., 4096) = 4096
4613 brk(0) = 0x2578000
4613 brk(0x2599000) = 0x2599000
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/strict.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/strict.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/strict.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/strict.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/strict.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/strict.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pm", {st_mode=S_IFREG|0444, st_size=3716, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package strict;\n\n$strict::VERSIO"..., 4096) = 3716
4613 lseek(4, 878, SEEK_SET) = 878
4613 lseek(4, 0, SEEK_CUR) = 878
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Config.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pm", {st_mode=S_IFREG|0444, st_size=2973, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# This file was created by confi"..., 4096) = 2973
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/warnings.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pm", {st_mode=S_IFREG|0444, st_size=16133, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# -*- buffer-read-only: t -*-\n# "..., 4096) = 4096
4613 read(4, "\t=> 66,\n 'printf'\t\t=> 68,\n "..., 4096) = 4096
4613 read(4, "00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x"..., 4096) = 4096
4613 brk(0) = 0x2599000
4613 brk(0x25ba000) = 0x25ba000
4613 read(4, "ory '$word'\")}\n }\n\n return"..., 4096) = 3845
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 read(3, "NV{MINIVEND_STORABLE} = 1;\n\t}\n\n\t"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Config_heavy.pl", 0x7fff996f8b70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config_heavy.pl", 0x7fff996f8b70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config_heavy.pl", 0x7fff996f8b70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config_heavy.pl", 0x7fff996f8b70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_heavy.pl", {st_mode=S_IFREG|0444, st_size=39854, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_heavy.pl", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8950) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# This file was created by confi"..., 4096) = 4096
4613 read(4, "CE -D_FILE_OFFSET_BITS=64'\nccnam"..., 4096) = 4096
4613 read(4, "32_TYPE__=int __INT_LEAST64_MAX_"..., 4096) = 4096
4613 read(4, "'\nd_bsdsetpgrp='undef'\nd_builtin"..., 4096) = 4096
4613 brk(0) = 0x25ba000
4613 brk(0x25dd000) = 0x25dd000
4613 brk(0) = 0x25dd000
4613 brk(0) = 0x25dd000
4613 brk(0x25db000) = 0x25db000
4613 brk(0) = 0x25db000
4613 read(4, "efine'\nd_mprotect='define'\nd_msg"..., 4096) = 4096
4613 read(4, "tile='define'\nd_vprintf='define'"..., 4096) = 4096
4613 read(4, "n='define'\ni_sysmode='undef'\ni_s"..., 4096) = 4096
4613 read(4, "=''\nmake='make'\nmake_set_make='#"..., 4096) = 4096
4613 read(4, "\"UNUSED\", 0'\nsig_num='0 1 2 3 4 "..., 4096) = 4096
4613 read(4, "g_SH_expanded = \"\\n$_\" . << 'EOV"..., 4096) = 2990
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 brk(0) = 0x25db000
4613 brk(0x2601000) = 0x2601000
4613 stat("/home/sam/live/interchange/Config_git.pl", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config_git.pl", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config_git.pl", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config_git.pl", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_git.pl", {st_mode=S_IFREG|0444, st_size=409, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_git.pl", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8780) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "################################"..., 4096) = 409
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/interchange.cfg", {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 stat("/home/sam/live/interchange/_session_storable", {st_mode=S_IFREG|0664, st_size=40, ...}) = 0
4613 stat("/home/sam/live/interchange/_db_storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/vars.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/vars.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/vars.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/vars.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/vars.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pm", {st_mode=S_IFREG|0444, st_size=2358, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package vars;\n\nuse 5.006;\n\nour $"..., 4096) = 2358
4613 stat("/home/sam/live/interchange/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/warnings/register.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings/register.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings/register.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings/register.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings/register.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pm", {st_mode=S_IFREG|0444, st_size=1023, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package warnings::register;\n\nour"..., 4096) = 1023
4613 read(5, "", 4096) = 0
4613 close(5) = 0
4613 lseek(4, 1148, SEEK_SET) = 1148
4613 lseek(4, 0, SEEK_CUR) = 1148
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Fcntl.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Fcntl.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Fcntl.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Fcntl.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Fcntl.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Fcntl.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Fcntl.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Fcntl.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pm", {st_mode=S_IFREG|0444, st_size=5445, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Fcntl;\n\n=head1 NAME\n\nFcn"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/XSLoader.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/XSLoader.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/XSLoader.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/XSLoader.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/XSLoader.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/XSLoader.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/XSLoader.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/XSLoader.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pm", {st_mode=S_IFREG|0444, st_size=10523, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Generated from XSLoader.pm.PL "..., 4096) = 4096
4613 lseek(5, 3468, SEEK_SET) = 3468
4613 lseek(5, 0, SEEK_CUR) = 3468
4613 close(5) = 0
4613 read(4, "T S_ENFMT\n\t\t S_IRUSR S_IWUSR"..., 4096) = 1349
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.so", {st_mode=S_IFREG|0555, st_size=21773, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.so", O_RDONLY|O_CLOEXEC) = 5
4613 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\33\0\0\0\0\0\0"..., 832) = 832
4613 fstat(5, {st_mode=S_IFREG|0555, st_size=21773, ...}) = 0
4613 mmap(NULL, 2113768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7fde3f384000
4613 mprotect(0x7fde3f387000, 2097152, PROT_NONE) = 0
4613 mmap(0x7fde3f587000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x3000) = 0x7fde3f587000
4613 close(5) = 0
4613 mprotect(0x7fde3f587000, 4096, PROT_READ) = 0
4613 brk(0) = 0x2601000
4613 brk(0x2622000) = 0x2622000
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Exporter.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pm", {st_mode=S_IFREG|0444, st_size=18595, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Exporter;\n\nrequire 5.006"..., 4096) = 4096
4613 lseek(4, 2290, SEEK_SET) = 2290
4613 lseek(4, 0, SEEK_CUR) = 2290
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/DBI.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/DBI.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DBI.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DBI.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DBI.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DBI.pm", {st_mode=S_IFREG|0444, st_size=316207, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/DBI.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 brk(0) = 0x2622000
4613 brk(0x2643000) = 0x2643000
4613 read(4, "# $Id$\n# vim: ts=8:sw=4:et\n#\n# C"..., 4096) = 4096
4613 read(4, "org.\n\n=head3 Reporting a Bug\n\nIf"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Carp.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pm", {st_mode=S_IFREG|0444, st_size=7611, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package Carp;\n\nour $VERSION = '1"..., 4096) = 4096
4613 lseek(5, 1458, SEEK_SET) = 1458
4613 lseek(5, 0, SEEK_CUR) = 1458
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/DynaLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/DynaLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DynaLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DynaLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DynaLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DynaLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/DynaLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/DynaLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pm", {st_mode=S_IFREG|0444, st_size=25033, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "\n# Generated from DynaLoader_pm."..., 4096) = 4096
4613 read(5, "\\n\".\n\t\" dynamic loading or has "..., 4096) = 4096
4613 lseek(5, 7422, SEEK_SET) = 7422
4613 lseek(5, 0, SEEK_CUR) = 7422
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/AutoLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/AutoLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/AutoLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/AutoLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/AutoLoader.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pm", {st_mode=S_IFREG|0444, st_size=14997, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 brk(0) = 0x2643000
4613 brk(0x2664000) = 0x2664000
4613 read(5, "package AutoLoader;\n\nuse strict;"..., 4096) = 4096
4613 read(5, "owever, if @INC is a relative pa"..., 4096) = 4096
4613 lseek(5, 5403, SEEK_SET) = 5403
4613 lseek(5, 0, SEEK_CUR) = 5403
4613 close(5) = 0
4613 read(4, "EXPORT_TAGS{preparse_flags} = [ "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/auto/DBI", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/DBI", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.so", {st_mode=S_IFREG|0555, st_size=134344, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.so", O_RDONLY|O_CLOEXEC) = 5
4613 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0206\0\0\0\0\0\0"..., 832) = 832
4613 fstat(5, {st_mode=S_IFREG|0555, st_size=134344, ...}) = 0
4613 mmap(NULL, 2217184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7fde3f166000
4613 mprotect(0x7fde3f183000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3f382000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x1c000) = 0x7fde3f382000
4613 close(5) = 0
4613 mprotect(0x7fde3f382000, 4096, PROT_READ) = 0
4613 brk(0) = 0x2664000
4613 brk(0x2685000) = 0x2685000
4613 stat("/home/sam/live/interchange/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Exporter/Heavy.pm", 0x7fff996f8990) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter/Heavy.pm", 0x7fff996f8990) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter/Heavy.pm", 0x7fff996f8990) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter/Heavy.pm", 0x7fff996f8990) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter/Heavy.pm", 0x7fff996f8990) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pmc", 0x7fff996f8a40) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pm", {st_mode=S_IFREG|0444, st_size=6491, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8770) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package Exporter::Heavy;\n\nuse st"..., 4096) = 4096
4613 read(5, " {});\n\n if (@$fail) {\n\tif (!%"..., 4096) = 2395
4613 brk(0) = 0x2685000
4613 brk(0x26a6000) = 0x26a6000
4613 read(5, "", 4096) = 0
4613 close(5) = 0
4613 read(4, "olid', },\n spatialite_"..., 4096) = 4096
4613 read(4, "tr [, @bind_params ] ]'], O=>0x2"..., 4096) = 4096
4613 brk(0) = 0x26a6000
4613 brk(0x26c7000) = 0x26c7000
4613 read(4, "I::installed_drh;\n}\n\n\nsub CLONE "..., 4096) = 4096
4613 read(4, " (),\n\t # attributes in DSN ta"..., 4096) = 4096
4613 read(4, "bi_connect_closure} = $connect_c"..., 4096) = 4096
4613 brk(0) = 0x26c7000
4613 brk(0x26e8000) = 0x26e8000
4613 read(4, " foreach my $suffix ('::db','"..., 4096) = 4096
4613 read(4, "(%seen_dir, %seen_dbd);\n my $"..., 4096) = 4096
4613 brk(0) = 0x26e8000
4613 brk(0x2709000) = 0x2709000
4613 read(4, "b) : unpack(\"C*\", $b);\n my $i"..., 4096) = 4096
4613 read(4, ", undef, '');\n my $attr = {\n\t"..., 4096) = 4096
4613 brk(0) = 0x2709000
4613 brk(0x272a000) = 0x272a000
4613 read(4, " into the DBI dispatcher\n\t# DBD:"..., 4096) = 4096
4613 read(4, "$cb and (my $conn_cb = $cb->{\"co"..., 4096) = 4096
4613 brk(0) = 0x272a000
4613 brk(0x274b000) = 0x274b000
4613 read(4, "ashref { return _do_selectrow('"..., 4096) = 4096
4613 read(4, "or Informix I recall)\n\t\t my $"..., 4096) = 4096
4613 brk(0) = 0x274b000
4613 brk(0x276c000) = 0x276c000
4613 read(4, "\n\n sub bind_columns {\n\tmy $st"..., 4096) = 4096
4613 read(4, "uple_status, [ $sth->err, $sth->"..., 4096) = 4096
4613 brk(0) = 0x276c000
4613 brk(0x278d000) = 0x278d000
4613 read(4, "ksize, \\$buf))) {\n\t print $fh"..., 4096) = 4096
4613 lseek(4, 74186, SEEK_SET) = 74186
4613 lseek(4, 0, SEEK_CUR) = 74186
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Scalar/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Scalar/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Scalar/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Scalar/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Scalar/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Scalar/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Scalar/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Scalar/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pm", {st_mode=S_IFREG|0444, st_size=8059, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Scalar::Util.pm\n#\n# Copyright "..., 4096) = 4096
4613 lseek(4, 1686, SEEK_SET) = 1686
4613 lseek(4, 0, SEEK_CUR) = 1686
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/List/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/List/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/List/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/List/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/List/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/List/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/List/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/List/Util.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pm", {st_mode=S_IFREG|0444, st_size=6698, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# List::Util.pm\n#\n# Copyright (c"..., 4096) = 4096
4613 lseek(4, 1066, SEEK_SET) = 1066
4613 lseek(4, 0, SEEK_CUR) = 1066
4613 close(4) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.so", {st_mode=S_IFREG|0555, st_size=32996, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.so", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0$\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0555, st_size=32996, ...}) = 0
4613 mmap(NULL, 2122256, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fde3ef5f000
4613 mprotect(0x7fde3ef65000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3f164000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7fde3f164000
4613 close(4) = 0
4613 mprotect(0x7fde3f164000, 4096, PROT_READ) = 0
4613 brk(0) = 0x278d000
4613 brk(0x27ae000) = 0x27ae000
4613 stat("/home/sam/live/interchange/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("./Net/LDAP.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("./Net/LDAP.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/GDBM_File.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/GDBM_File.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/GDBM_File.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/GDBM_File.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/GDBM_File.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/GDBM_File.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/GDBM_File.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/GDBM_File.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pm", {st_mode=S_IFREG|0444, st_size=1819, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# GDBM_File.pm -- Perl 5 interfa"..., 4096) = 1819
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Tie/Hash.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Tie/Hash.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Tie/Hash.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Tie/Hash.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Tie/Hash.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pm", {st_mode=S_IFREG|0444, st_size=7311, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Tie::Hash;\n\nour $VERSION"..., 4096) = 4096
4613 read(4, " reference, and the remaining me"..., 4096) = 3215
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.so", {st_mode=S_IFREG|0555, st_size=32111, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.so", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\36\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0555, st_size=32111, ...}) = 0
4613 mmap(NULL, 2122176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fde3ed58000
4613 mprotect(0x7fde3ed5e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3ef5d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7fde3ef5d000
4613 close(4) = 0
4613 open("/lib/../lib64/tls/x86_64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/tls/x86_64", 0x7fff996f84a0) = -1 ENOENT (No such file or directory)
4613 open("/lib/../lib64/tls/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/tls", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
4613 open("/lib/../lib64/x86_64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/x86_64", 0x7fff996f84a0) = -1 ENOENT (No such file or directory)
4613 open("/lib/../lib64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\37\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0755, st_size=36720, ...}) = 0
4613 mmap(NULL, 2130496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7fde3eb4f000
4613 mprotect(0x7fde3eb56000, 2097152, PROT_NONE) = 0
4613 mmap(0x7fde3ed56000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7fde3ed56000
4613 close(4) = 0
4613 mprotect(0x7fde3ed56000, 4096, PROT_READ) = 0
4613 mprotect(0x7fde3ef5d000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/GDBM.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/GDBM.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/GDBM.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/GDBM.pm", {st_mode=S_IFREG|0444, st_size=5723, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/GDBM.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::GDBM - Access an "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Table/Common.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/Common.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Common.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Common.pm", {st_mode=S_IFREG|0444, st_size=38748, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/Common.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Table::Common - Common a"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Symbol.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Symbol.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Symbol.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Symbol.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Symbol.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pm", {st_mode=S_IFREG|0444, st_size=4794, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Symbol;\n\n=head1 NAME\n\nSy"..., 4096) = 4096
4613 read(6, "{\n my $pkg = shift;\n\n # ex"..., 4096) = 698
4613 brk(0) = 0x27ae000
4613 brk(0x27cf000) = 0x27cf000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Util.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Util.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Util.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Util.pm", {st_mode=S_IFREG|0444, st_size=61374, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Util.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Util - Interchange utili"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Errno.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Errno.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Errno.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Errno.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Errno.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Errno.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Errno.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Errno.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pm", {st_mode=S_IFREG|0444, st_size=7627, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "#\n# This file is auto-generated."..., 4096) = 4096
4613 read(7, "2 }\nsub ELIBEXEC () { 83 }\nsub E"..., 4096) = 3531
4613 brk(0) = 0x27cf000
4613 brk(0x27f0000) = 0x27f0000
4613 lseek(7, 6276, SEEK_SET) = 6276
4613 lseek(7, 0, SEEK_CUR) = 6276
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Text/ParseWords.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/ParseWords.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/ParseWords.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/ParseWords.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Text/ParseWords.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pm", {st_mode=S_IFREG|0444, st_size=7927, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Text::ParseWords;\n\nuse s"..., 4096) = 4096
4613 read(7, ")'//s) {\n\t\t($snippet = $1) =~ s#"..., 4096) = 3831
4613 lseek(7, 4490, SEEK_SET) = 4490
4613 lseek(7, 0, SEEK_CUR) = 4490
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Vend/Safe.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Safe.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Safe.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Safe.pm", {st_mode=S_IFREG|0444, st_size=2543, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Safe.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Safe - utility methods f"..., 4096) = 2543
4613 stat("/home/sam/live/interchange/Vend/CharSet.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/CharSet.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CharSet.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CharSet.pm", {st_mode=S_IFREG|0444, st_size=3570, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/CharSet.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::CharSet - utility method"..., 4096) = 3570
4613 stat("/home/sam/live/interchange/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/utf8.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pm", {st_mode=S_IFREG|0444, st_size=6918, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package utf8;\n\n$utf8::hint_bits "..., 4096) = 4096
4613 brk(0) = 0x27f0000
4613 brk(0x2811000) = 0x2811000
4613 lseek(9, 378, SEEK_SET) = 378
4613 lseek(9, 0, SEEK_CUR) = 378
4613 close(9) = 0
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/utf8_heavy.pl", 0x7fff996f6fc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8_heavy.pl", 0x7fff996f6fc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8_heavy.pl", 0x7fff996f6fc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8_heavy.pl", 0x7fff996f6fc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8_heavy.pl", 0x7fff996f6fc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8_heavy.pl", {st_mode=S_IFREG|0444, st_size=8001, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8_heavy.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6da0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package utf8;\nuse strict;\nuse wa"..., 4096) = 4096
4613 read(8, "nical{$canonical} || $utf8::Cano"..., 4096) = 3905
4613 brk(0) = 0x2811000
4613 brk(0x2832000) = 0x2832000
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/PVA.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/PVA.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/PVA.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/PVA.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/PVA.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", {st_mode=S_IFREG|0444, st_size=27017, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bd0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "\n'expandsonnfd',\n'XONFD',\n'age',"..., 4096) = 4096
4613 read(8, "y',\n'Yes',\n'n',\n'No',\n},\n'XIDC',"..., 4096) = 4096
4613 brk(0) = 0x2832000
4613 brk(0x2853000) = 0x2853000
4613 read(8, "QC',\n{\n'y',\n'Yes',\n'n',\n'No',\n},"..., 4096) = 4096
4613 read(8, ",\n'Y',\n'no',\n'N',\n},\n'STerm',\n{\n"..., 4096) = 4096
4613 brk(0) = 0x2853000
4613 brk(0x2874000) = 0x2874000
4613 read(8, "',\n},\n'Hex',\n{\n'yes',\n'Y',\n'no',"..., 4096) = 4096
4613 brk(0) = 0x2874000
4613 brk(0x2895000) = 0x2895000
4613 read(8, "y',\n'Y',\n'n',\n'N',\n},\n'ODI',\n{\n'"..., 4096) = 2441
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x2895000
4613 brk(0x28b6000) = 0x28b6000
4613 brk(0) = 0x28b6000
4613 brk(0x28d7000) = 0x28d7000
4613 stat("/home/sam/live/interchange/unicore/Exact.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Exact.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Exact.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Exact.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Exact.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", {st_mode=S_IFREG|0444, st_size=1680, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bd0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 1680
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/Word.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/Word.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/Word.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/Word.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/Word.pl", 0x7fff996f6df0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Word.pl", {st_mode=S_IFREG|0444, st_size=5740, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Word.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bd0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "1A0\t31B7\t\n31F0\t31FF\t\n3220\t3229\t\n"..., 4096) = 1644
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/Canonical.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Canonical.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Canonical.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Canonical.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Canonical.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", {st_mode=S_IFREG|0444, st_size=24610, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6ce0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "eprecated\t\t\t\t => 'Deprecat',\n"..., 4096) = 4096
4613 read(8, " => 'InCjkRad',\n\n # InCjkStro"..., 4096) = 4096
4613 read(8, "'InLatin2',\n\n # InLatinExtendedA"..., 4096) = 4096
4613 read(8, "ugu',\n\n # InThaana\n inthaana\t\t"..., 4096) = 4096
4613 read(8, "ca',\n\n oriya\t\t\t\t => 'Orya',"..., 4096) = 4096
4613 read(8, "ables\t\t\t\t => 'InYiSyll',\n\n);\n"..., 4096) = 34
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/IdContin.pl", 0x7fff996f6d30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/IdContin.pl", 0x7fff996f6d30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/IdContin.pl", 0x7fff996f6d30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/IdContin.pl", 0x7fff996f6d30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/IdContin.pl", 0x7fff996f6d30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/IdContin.pl", {st_mode=S_IFREG|0444, st_size=5600, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/IdContin.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6b10) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "000\tA48C\t\nA500\tA60C\t\nA610\tA62B\t\n"..., 4096) = 1504
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/Digit.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/Digit.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/Digit.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/Digit.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/Digit.pl", 0x7fff996f6f00) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Digit.pl", {st_mode=S_IFREG|0444, st_size=773, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Digit.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6ce0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 773
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Encode.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pm", {st_mode=S_IFREG|0444, st_size=29731, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n# $Id: Encode.pm,v 2.35 2009/0"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/base.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/base.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/base.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/base.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/base.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pm", {st_mode=S_IFREG|0444, st_size=6986, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package base;\n\nuse strict 'vars'"..., 4096) = 4096
4613 read(9, "private\n # ones to the derive"..., 4096) = 2890
4613 lseek(9, 4886, SEEK_SET) = 4886
4613 lseek(9, 0, SEEK_CUR) = 4886
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Encode/Alias.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Alias.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Alias.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Alias.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Alias.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Alias.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Alias.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Alias.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pm", {st_mode=S_IFREG|0444, st_size=11735, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Encode::Alias;\nuse stric"..., 4096) = 4096
4613 read(9, "UTF-?(16|32)-?BE$/i => '\"UTF-$1B"..., 4096) = 4096
4613 read(9, "' );\n define_alias( qr/\\b"..., 4096) = 3543
4613 lseek(9, 8542, SEEK_SET) = 8542
4613 lseek(9, 0, SEEK_CUR) = 8542
4613 close(9) = 0
4613 brk(0) = 0x28d7000
4613 brk(0x28f8000) = 0x28f8000
4613 read(8, "$check and !ref $check and !( $c"..., 4096) = 4096
4613 read(8, "rrently ignores $chk\n "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/bytes.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/bytes.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/bytes.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/bytes.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/bytes.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pm", {st_mode=S_IFREG|0444, st_size=2384, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package bytes;\n\nour $VERSION = '"..., 4096) = 2384
4613 lseek(9, 446, SEEK_SET) = 446
4613 lseek(9, 0, SEEK_CUR) = 446
4613 close(9) = 0
4613 lseek(8, 8962, SEEK_SET) = 8962
4613 lseek(8, 0, SEEK_CUR) = 8962
4613 close(8) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.so", {st_mode=S_IFREG|0555, st_size=46951, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220,\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=46951, ...}) = 0
4613 mmap(NULL, 2134568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fde3e945000
4613 mprotect(0x7fde3e94e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3eb4d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x8000) = 0x7fde3eb4d000
4613 close(8) = 0
4613 mprotect(0x7fde3eb4d000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Encode/Config.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Config.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Config.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Config.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Config.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Config.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Config.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Config.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pm", {st_mode=S_IFREG|0444, st_size=6065, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n# Demand-load module list\n#\npa"..., 4096) = 4096
4613 brk(0) = 0x28f8000
4613 brk(0x2919000) = 0x2919000
4613 read(8, "16LE' => 'Encode::Unicode',\n "..., 4096) = 1969
4613 lseek(8, 6001, SEEK_SET) = 6001
4613 lseek(8, 0, SEEK_CUR) = 6001
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("./Encode/ConfigLocal.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("./Encode/ConfigLocal.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Encoding.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Encoding.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Encoding.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Encoding.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Encoding.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Encoding.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Encoding.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Encoding.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pm", {st_mode=S_IFREG|0444, st_size=9095, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Encode::Encoding;\n\n# Bas"..., 4096) = 4096
4613 lseek(8, 1496, SEEK_SET) = 1496
4613 lseek(8, 0, SEEK_CUR) = 1496
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Safe.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Safe.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Safe.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pm", {st_mode=S_IFREG|0444, st_size=18793, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Safe;\n\nuse 5.003_11;\nuse"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Carp/Heavy.pm", 0x7fff996f6e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp/Heavy.pm", 0x7fff996f6e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp/Heavy.pm", 0x7fff996f6e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp/Heavy.pm", 0x7fff996f6e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp/Heavy.pm", 0x7fff996f6e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pmc", 0x7fff996f6f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pm", {st_mode=S_IFREG|0444, st_size=8279, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6c50) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Carp::Heavy uses some variable"..., 4096) = 4096
4613 read(9, " [{$pkg => $pkg}, [trusts_direct"..., 4096) = 4096
4613 brk(0) = 0x2919000
4613 brk(0x293a000) = 0x293a000
4613 read(9, "{\"$class\\::CARP_NOT\"}\n ? @{"..., 4096) = 87
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Opcode.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Opcode.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Opcode.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Opcode.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Opcode.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Opcode.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Opcode.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Opcode.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pm", {st_mode=S_IFREG|0444, st_size=15490, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Opcode;\n\nuse 5.006_001;\n"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/subs.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/subs.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/subs.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/subs.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/subs.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pm", {st_mode=S_IFREG|0444, st_size=842, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "package subs;\n\nour $VERSION = '1"..., 4096) = 842
4613 read(10, "", 4096) = 0
4613 close(10) = 0
4613 fcntl(9, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.so", {st_mode=S_IFREG|0555, st_size=28416, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.so", O_RDONLY|O_CLOEXEC) = 10
4613 read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\37\0\0\0\0\0\0"..., 832) = 832
4613 fstat(10, {st_mode=S_IFREG|0555, st_size=28416, ...}) = 0
4613 mmap(NULL, 2118144, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fde3e73f000
4613 mprotect(0x7fde3e744000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3e943000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x4000) = 0x7fde3e943000
4613 close(10) = 0
4613 mprotect(0x7fde3e943000, 4096, PROT_READ) = 0
4613 read(9, "on mark, e.g., !mkdir.\nNegating "..., 4096) = 4096
4613 read(9, " ('foo', '!bar', ...)\n\n=cut\n\n# t"..., 4096) = 4096
4613 read(9, "her, optag!\n\n=item :filesys_read"..., 4096) = 3202
4613 brk(0) = 0x293a000
4613 brk(0x295b000) = 0x295b000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, " stem=$stem, leaf=$leaf\";\n #w"..., 4096) = 4096
4613 lseek(8, 7682, SEEK_SET) = 7682
4613 lseek(8, 0, SEEK_CUR) = 7682
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Vend/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/File.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/File.pm", {st_mode=S_IFREG|0444, st_size=19335, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/File.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::File - Interchange file "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Path.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Path.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Path.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Path.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Path.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pm", {st_mode=S_IFREG|0444, st_size=29608, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package File::Path;\n\nuse 5.005_0"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Cwd.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Cwd.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Cwd.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Cwd.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Cwd.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Cwd.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Cwd.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Cwd.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pm", {st_mode=S_IFREG|0444, st_size=22398, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Cwd;\n\n=head1 NAME\n\nCwd -"..., 4096) = 4096
4613 read(9, "d.xs> for the\ndetails.\n\n=head1 S"..., 4096) = 4096
4613 brk(0) = 0x295b000
4613 brk(0x297c000) = 0x297c000
4613 read(9, "bin/pwd',\n\t\t '/usr/bin/pwd',\n\t\t "..., 4096) = 4096
4613 read(9, "h =~ /^(.*)\\z/s\t\t# untaint\n\t&& C"..., 4096) = 4096
4613 brk(0) = 0x297c000
4613 brk(0x299d000) = 0x299d000
4613 read(9, "NV{PWD} || ''; # Guard against c"..., 4096) = 4096
4613 read(9, " # lookup avoids needing a stri"..., 4096) = 1918
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.so", {st_mode=S_IFREG|0555, st_size=23351, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.so", O_RDONLY|O_CLOEXEC) = 9
4613 read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\30\0\0\0\0\0\0"..., 832) = 832
4613 fstat(9, {st_mode=S_IFREG|0555, st_size=23351, ...}) = 0
4613 mmap(NULL, 2113952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7fde3e53a000
4613 mprotect(0x7fde3e53e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3e73d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3000) = 0x7fde3e73d000
4613 close(9) = 0
4613 mprotect(0x7fde3e73d000, 4096, PROT_READ) = 0
4613 stat("/bin/pwd", {st_mode=S_IFREG|0755, st_size=33200, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/home/sam/live/interchange/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Basename.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Basename.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Basename.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Basename.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Basename.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pm", {st_mode=S_IFREG|0444, st_size=11328, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "=head1 NAME\n\nFile::Basename - Pa"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/re.pmc", 0x7fff996f6f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/re.pm", 0x7fff996f6e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/re.pmc", 0x7fff996f6f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/re.pm", 0x7fff996f6e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/re.pmc", 0x7fff996f6f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/re.pm", 0x7fff996f6e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/re.pmc", 0x7fff996f6f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/re.pm", 0x7fff996f6e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pmc", 0x7fff996f6f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pm", {st_mode=S_IFREG|0444, st_size=14817, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "package re;\n\n# pragma for contro"..., 4096) = 4096
4613 read(10, "lags: \",\n "..., 4096) = 4096
4613 brk(0) = 0x299d000
4613 brk(0x29be000) = 0x29be000
4613 lseek(10, 5200, SEEK_SET) = 5200
4613 lseek(10, 0, SEEK_CUR) = 5200
4613 close(10) = 0
4613 read(9, "$fullname =~ /^(.*[:>\\]])?(.*)/s"..., 4096) = 4096
4613 read(9, "/baz/\n dirname(\"/foo/bar/baz/"..., 4096) = 3136
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/File/Spec.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Spec.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pm", {st_mode=S_IFREG|0444, st_size=10490, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package File::Spec;\n\nuse strict;"..., 4096) = 4096
4613 lseek(9, 589, SEEK_SET) = 589
4613 lseek(9, 0, SEEK_CUR) = 589
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/File/Spec/Unix.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Spec/Unix.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec/Unix.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec/Unix.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec/Unix.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec/Unix.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec/Unix.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec/Unix.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pm", {st_mode=S_IFREG|0444, st_size=16287, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package File::Spec::Unix;\n\nuse s"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/constant.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/constant.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/constant.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/constant.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/constant.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pm", {st_mode=S_IFREG|0444, st_size=12528, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 brk(0) = 0x29be000
4613 brk(0x29df000) = 0x29df000
4613 read(10, "package constant;\nuse 5.005;\nuse"..., 4096) = 4096
4613 lseek(10, 3585, SEEK_SET) = 3585
4613 lseek(10, 0, SEEK_CUR) = 3585
4613 close(10) = 0
4613 read(9, "rent directory if none from the "..., 4096) = 4096
4613 read(9, "\n $directory = $path;\n "..., 4096) = 4096
4613 read(9, "ks && @basechunks && $self->_sam"..., 4096) = 3999
4613 brk(0) = 0x29df000
4613 brk(0x2a00000) = 0x2a00000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, " $arg->{safe} = defined"..., 4096) = 4096
4613 read(8, "th strange permissions\n\n "..., 4096) = 4096
4613 brk(0) = 0x2a00000
4613 brk(0x2a21000) = 0x2a21000
4613 read(8, " if ($arg->{safe} &&\n "..., 4096) = 4096
4613 lseek(8, 13644, SEEK_SET) = 13644
4613 lseek(8, 0, SEEK_CUR) = 13644
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Copy.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Copy.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Copy.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Copy.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Copy.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pm", {st_mode=S_IFREG|0444, st_size=16396, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# File/Copy.pm. Written in 1994 "..., 4096) = 4096
4613 read(8, "= VMS::Filespec::vmsify($to);\n "..., 4096) = 4096
4613 brk(0) = 0x2a21000
4613 brk(0x2a42000) = 0x2a42000
4613 read(8, " ($sts,$ossts) = ($! + 0, $^E +"..., 4096) = 4096
4613 lseek(8, 9522, SEEK_SET) = 9522
4613 lseek(8, 0, SEEK_CUR) = 9522
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/overload.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/overload.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/overload.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/overload.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/overload.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pm", {st_mode=S_IFREG|0444, st_size=48050, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package overload;\n\nour $VERSION "..., 4096) = 4096
4613 brk(0) = 0x2a42000
4613 brk(0x2a63000) = 0x2a63000
4613 read(8, "eference\");\n }\n }\n "..., 4096) = 4096
4613 lseek(8, 4382, SEEK_SET) = 4382
4613 lseek(8, 0, SEEK_CUR) = 4382
4613 close(8) = 0
4613 read(7, "n unless $Vend::Cfg->{FileDataba"..., 4096) = 4096
4613 read(7, "$wait) {\n fcntl($fh, $op,"..., 4096) = 4096
4613 brk(0) = 0x2a63000
4613 brk(0x2a84000) = 0x2a84000
4613 read(7, " $result;\n}\n\nsub win_canonpath {"..., 4096) = 4096
4613 read(7, " denying.\", $_);\n\t\t\t\treturn unde"..., 4096) = 2951
4613 brk(0) = 0x2a84000
4613 brk(0x2aa5000) = 0x2aa5000
4613 close(7) = 0
4613 read(6, ")) {\n $in = encode_ut"..., 4096) = 4096
4613 read(6, "rn;\n\t for(keys %$loc) {\n\t\t\tre"..., 4096) = 4096
4613 brk(0) = 0x2aa5000
4613 brk(0x2ac6000) = 0x2ac6000
4613 read(6, "space = 1;\n\t\t\t}\n\t\t}\n\t\telsif ( $d"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Digest/SHA.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/SHA.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/SHA.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/SHA.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/SHA.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/SHA.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/SHA.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/SHA.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pm", {st_mode=S_IFREG|0444, st_size=17986, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Digest::SHA;\n\nrequire 5."..., 4096) = 4096
4613 stat("/home/sam/live/interchange/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/integer.pm", 0x7fff996f7940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/integer.pm", 0x7fff996f7940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/integer.pm", 0x7fff996f7940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/integer.pm", 0x7fff996f7940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/integer.pm", 0x7fff996f7940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pmc", 0x7fff996f79f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pm", {st_mode=S_IFREG|0444, st_size=3266, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package integer;\n\nour $VERSION ="..., 4096) = 3266
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x2ac6000
4613 brk(0x2ae7000) = 0x2ae7000
4613 lseek(7, 3564, SEEK_SET) = 3564
4613 lseek(7, 0, SEEK_CUR) = 3564
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/MIME/Base64.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/Base64.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Base64.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Base64.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Base64.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Base64.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Base64.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Base64.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pm", {st_mode=S_IFREG|0444, st_size=4851, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package MIME::Base64;\n\nuse stric"..., 4096) = 4096
4613 lseek(7, 303, SEEK_SET) = 303
4613 lseek(7, 0, SEEK_CUR) = 303
4613 close(7) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.so", {st_mode=S_IFREG|0555, st_size=17794, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\17\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=17794, ...}) = 0
4613 mmap(NULL, 2109672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fde3e336000
4613 mprotect(0x7fde3e339000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3e538000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x7fde3e538000
4613 close(7) = 0
4613 mprotect(0x7fde3e538000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/base.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/base.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/base.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/base.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/base.pm", 0x7fff996f7eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pmc", 0x7fff996f7f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pm", {st_mode=S_IFREG|0444, st_size=1804, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Digest::base;\n\nuse stric"..., 4096) = 1804
4613 lseek(7, 1125, SEEK_SET) = 1125
4613 lseek(7, 0, SEEK_CUR) = 1125
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.so", {st_mode=S_IFREG|0555, st_size=53093, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\36\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=53093, ...}) = 0
4613 mmap(NULL, 2142728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fde3e12a000
4613 mprotect(0x7fde3e135000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3e334000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xa000) = 0x7fde3e334000
4613 close(7) = 0
4613 mprotect(0x7fde3e334000, 4096, PROT_READ) = 0
4613 brk(0) = 0x2ae7000
4613 brk(0x2b08000) = 0x2b08000
4613 read(6, "30% faster\neval {\n\t\tdie if $ENV{"..., 4096) = 4096
4613 read(6, " # Check the special case of "..., 4096) = 4096
4613 brk(0) = 0x2b08000
4613 brk(0x2b29000) = 0x2b29000
4613 read(6, "\n\tif($Vend::Cfg->{Locale}) {\n\t\tm"..., 4096) = 4096
4613 read(6, "ast;\n\t\t}\n\t\tlast if defined $only"..., 4096) = 4096
4613 brk(0) = 0x2b29000
4613 brk(0x2b4a000) = 0x2b4a000
4613 read(6, "fied.\n\nsub tag_nitems {\n\tmy($ref"..., 4096) = 4096
4613 brk(0) = 0x2b4a000
4613 brk(0x2b6b000) = 0x2b6b000
4613 read(6, "nfigure_catalog, $Vend::Cfg->{Pa"..., 4096) = 4096
4613 read(6, "\t\tqw(\n\t\t\tauth\n\t\t\tauthpriv\n\t\t\tcro"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Sys/Syslog.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Sys/Syslog.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pm", {st_mode=S_IFREG|0444, st_size=42016, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Sys::Syslog;\nuse strict;"..., 4096) = 4096
4613 brk(0) = 0x2b6b000
4613 brk(0x2b8c000) = 0x2b8c000
4613 stat("/home/sam/live/interchange/POSIX.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/POSIX.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/POSIX.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/POSIX.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/POSIX.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/POSIX.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/POSIX.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/POSIX.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pm", {st_mode=S_IFREG|0444, st_size=21011, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package POSIX;\nuse strict;\nuse w"..., 4096) = 4096
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/autosplit.ix", {st_mode=S_IFREG|0444, st_size=2463, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/autosplit.ix", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Index created by AutoSplit for"..., 4096) = 2463
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 lseek(8, 1713, SEEK_SET) = 1713
4613 lseek(8, 0, SEEK_CUR) = 1713
4613 close(8) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.so", {st_mode=S_IFREG|0555, st_size=120233, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340v\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=120233, ...}) = 0
4613 mmap(NULL, 2200880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fde3df10000
4613 mprotect(0x7fde3df27000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3e126000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x16000) = 0x7fde3e126000
4613 close(8) = 0
4613 mprotect(0x7fde3e126000, 12288, PROT_READ) = 0
4613 brk(0) = 0x2b8c000
4613 brk(0x2bba000) = 0x2bba000
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", {st_mode=S_IFREG|0444, st_size=6878, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", {st_mode=S_IFREG|0444, st_size=6878, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# NOTE: Derived from ../../lib/P"..., 4096) = 4096
4613 read(8, "trspn strstr\n\t\tstrtok strxfrm)],"..., 4096) = 2782
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x2bba000
4613 brk(0x2bdb000) = 0x2bdb000
4613 brk(0) = 0x2bdb000
4613 brk(0x2bfc000) = 0x2bfc000
4613 stat("/home/sam/live/interchange/Socket.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Socket.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Socket.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Socket.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Socket.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Socket.pm", {st_mode=S_IFREG|0444, st_size=36405, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Socket.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Socket;\n\nuse strict;\n{ u"..., 4096) = 4096
4613 read(8, "ants giving the special C<AF_INE"..., 4096) = 4096
4613 read(8, "r_in6().\n\nProvided largely for l"..., 4096) = 4096
4613 read(8, "ed binary address structure.\n\nSe"..., 4096) = 4096
4613 read(8, "ants are recognised as $flags. O"..., 4096) = 4096
4613 read(8, "m $hostname\\n\";\n\nSince in this e"..., 4096) = 4096
4613 read(8, "IP_RECVOPTS IP_RECVRETOPTS\n\tIP_R"..., 4096) = 4096
4613 read(8, "hing uses them, and deleting the"..., 4096) = 4096
4613 brk(0) = 0x2bfc000
4613 brk(0x2c1d000) = 0x2c1d000
4613 read(8, "ndef, @addrs ) = gethostbyname( "..., 4096) = 3637
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.so", {st_mode=S_IFREG|0555, st_size=48990, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@0\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=48990, ...}) = 0
4613 mmap(NULL, 2138584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fde3dd05000
4613 mprotect(0x7fde3dd0e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3df0d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x8000) = 0x7fde3df0d000
4613 close(8) = 0
4613 mprotect(0x7fde3df0d000, 8192, PROT_READ) = 0
4613 brk(0) = 0x2c1d000
4613 brk(0x2c3e000) = 0x2c3e000
4613 read(7, "systems \n# except on OSX where i"..., 4096) = 4096
4613 read(7, "le\";\n\t return undef;\n\t}\n\n "..., 4096) = 4096
4613 brk(0) = 0x2c3e000
4613 brk(0x2c5f000) = 0x2c5f000
4613 read(7, "to go back to what used to be OK"..., 4096) = 4096
4613 read(7, "slog) {\n\tpush @$errs, \"getservby"..., 4096) = 4096
4613 brk(0) = 0x2c5f000
4613 brk(0x2c80000) = 0x2c80000
4613 read(7, ");\n $syslog_send = \\&Sys::Sys"..., 4096) = 4096
4613 lseek(7, 22345, SEEK_SET) = 22345
4613 lseek(7, 0, SEEK_CUR) = 22345
4613 close(7) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.so", {st_mode=S_IFREG|0555, st_size=22726, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\30\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=22726, ...}) = 0
4613 mmap(NULL, 2113832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fde3db00000
4613 mprotect(0x7fde3db04000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3dd03000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3000) = 0x7fde3dd03000
4613 close(7) = 0
4613 mprotect(0x7fde3dd03000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 stat("./Sys/Syslog/Win32.pmc", 0x7fff996f79b0) = -1 ENOENT (No such file or directory)
4613 stat("./Sys/Syslog/Win32.pm", 0x7fff996f7900) = -1 ENOENT (No such file or directory)
4613 read(6, ";\n\t\treturn;\n\t}\n\n\t$Vend::Errors ."..., 4096) = 4096
4613 read(6, "~ s/\\s+$/\\n/;\n\t}\n\n\t$ok = 0;\n\tmy "..., 4096) = 4096
4613 brk(0) = 0x2c80000
4613 brk(0x2ca1000) = 0x2ca1000
4613 read(6, "\n\nsub codedef_options {\n\tmy ($ta"..., 4096) = 4096
4613 read(6, " but mktime ignores these (and s"..., 4096) = 4030
4613 brk(0) = 0x2ca1000
4613 brk(0x2cc2000) = 0x2cc2000
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/HTML/Entities.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTML/Entities.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Entities.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Entities.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pm", {st_mode=S_IFREG|0444, st_size=14995, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package HTML::Entities;\n\n=encodi"..., 4096) = 4096
4613 read(6, "ncoded = HTML::Entities::encode_"..., 4096) = 4096
4613 read(6, "\n # Some extra Latin 1 chars tha"..., 4096) = 4096
4613 brk(0) = 0x2cc2000
4613 brk(0x2ce3000) = 0x2ce3000
4613 read(6, "721),\n 'minus;' => chr(8722)"..., 4096) = 2707
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/HTML/Parser.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTML/Parser.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Parser.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Parser.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pm", {st_mode=S_IFREG|0444, st_size=39789, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package HTML::Parser;\n\n# Copyrig"..., 4096) = 4096
4613 lseek(6, 2888, SEEK_SET) = 2888
4613 lseek(6, 0, SEEK_CUR) = 2888
4613 close(6) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.so", {st_mode=S_IFREG|0555, st_size=55072, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 '\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=55072, ...}) = 0
4613 mmap(NULL, 2143112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3d8f4000
4613 mprotect(0x7fde3d8ff000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3dafe000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa000) = 0x7fde3dafe000
4613 close(6) = 0
4613 mprotect(0x7fde3dafe000, 4096, PROT_READ) = 0
4613 brk(0) = 0x2ce3000
4613 brk(0x2d04000) = 0x2d04000
4613 stat("/home/sam/live/interchange/Digest/MD5.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/MD5.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/MD5.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/MD5.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/MD5.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/MD5.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/MD5.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/MD5.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pm", {st_mode=S_IFREG|0444, st_size=10558, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Digest::MD5;\n\nuse strict"..., 4096) = 4096
4613 lseek(6, 733, SEEK_SET) = 733
4613 lseek(6, 0, SEEK_CUR) = 733
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.so", {st_mode=S_IFREG|0555, st_size=22372, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=22372, ...}) = 0
4613 mmap(NULL, 2113792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3d6ef000
4613 mprotect(0x7fde3d6f3000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3d8f2000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x7fde3d8f2000
4613 close(6) = 0
4613 mprotect(0x7fde3d8f2000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Storable.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Storable.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Storable.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Storable.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Storable.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Storable.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Storable.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Storable.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pm", {st_mode=S_IFREG|0444, st_size=40995, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Copyright (c) 1995-2000, Ra"..., 4096) = 4096
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/autosplit.ix", {st_mode=S_IFREG|0444, st_size=519, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/autosplit.ix", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Index created by AutoSplit for"..., 4096) = 519
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/FileHandle.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/FileHandle.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/FileHandle.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/FileHandle.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/FileHandle.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pm", {st_mode=S_IFREG|0444, st_size=6778, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package FileHandle;\n\nuse 5.006;\n"..., 4096) = 4096
4613 lseek(7, 2104, SEEK_SET) = 2104
4613 lseek(7, 0, SEEK_CUR) = 2104
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/IO/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/File.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/File.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/File.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/File.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pm", {st_mode=S_IFREG|0444, st_size=4907, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "#\n\npackage IO::File;\n\n=head1 NAM"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/SelectSaver.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/SelectSaver.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/SelectSaver.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/SelectSaver.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/SelectSaver.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pm", {st_mode=S_IFREG|0444, st_size=1076, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package SelectSaver;\n\nour $VERSI"..., 4096) = 1076
4613 brk(0) = 0x2d04000
4613 brk(0x2d25000) = 0x2d25000
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/IO/Seekable.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Seekable.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Seekable.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Seekable.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Seekable.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Seekable.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Seekable.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Seekable.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pm", {st_mode=S_IFREG|0444, st_size=2935, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n\npackage IO::Seekable;\n\n=head1"..., 4096) = 2935
4613 stat("/home/sam/live/interchange/IO/Handle.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Handle.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Handle.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Handle.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Handle.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Handle.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Handle.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Handle.pm", 0x7fff996f7380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pmc", 0x7fff996f7430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pm", {st_mode=S_IFREG|0444, st_size=16421, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package IO::Handle;\n\n=head1 NAME"..., 4096) = 4096
4613 read(9, "e given ordinal value back onto "..., 4096) = 4096
4613 read(9, "es with its own name separated b"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/IO.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO.pm", 0x7fff996f6e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pmc", 0x7fff996f6ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pm", {st_mode=S_IFREG|0444, st_size=1401, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f6bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "#\n\npackage IO;\n\nuse XSLoader ();"..., 4096) = 1401
4613 lseek(10, 412, SEEK_SET) = 412
4613 lseek(10, 0, SEEK_CUR) = 412
4613 close(10) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.so", {st_mode=S_IFREG|0555, st_size=23396, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.so", O_RDONLY|O_CLOEXEC) = 10
4613 read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\32\0\0\0\0\0\0"..., 832) = 832
4613 fstat(10, {st_mode=S_IFREG|0555, st_size=23396, ...}) = 0
4613 mmap(NULL, 2113944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7fde3d4ea000
4613 mprotect(0x7fde3d4ee000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3d6ed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x3000) = 0x7fde3d6ed000
4613 close(10) = 0
4613 mprotect(0x7fde3d6ed000, 4096, PROT_READ) = 0
4613 read(9, ", OFFSET])';\n read($_[0], $_["..., 4096) = 4096
4613 brk(0) = 0x2d25000
4613 brk(0x2d46000) = 0x2d46000
4613 read(9, " }\n else {\n\tprint @_;\n }\n}"..., 4096) = 37
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, "###################\n## Open\n##\n\n"..., 4096) = 811
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 lseek(6, 1320, SEEK_SET) = 1320
4613 lseek(6, 0, SEEK_CUR) = 1320
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("./Log/Agent.pmc", 0x7fff996f7f20) = -1 ENOENT (No such file or directory)
4613 stat("./Log/Agent.pm", 0x7fff996f7e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.so", {st_mode=S_IFREG|0555, st_size=90043, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3002\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=90043, ...}) = 0
4613 mmap(NULL, 2175792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3d2d6000
4613 mprotect(0x7fde3d2e9000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3d4e8000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x12000) = 0x7fde3d4e8000
4613 close(6) = 0
4613 mprotect(0x7fde3d4e8000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Data/Dumper.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Data/Dumper.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Data/Dumper.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Data/Dumper.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pm", {st_mode=S_IFREG|0444, st_size=44069, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Data/Dumper.pm\n#\n# convert p"..., 4096) = 4096
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.so", {st_mode=S_IFREG|0555, st_size=45145, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340 \0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=45145, ...}) = 0
4613 mmap(NULL, 2134624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7fde3d0cc000
4613 mprotect(0x7fde3d0d4000, 2097152, PROT_NONE) = 0
4613 mmap(0x7fde3d2d4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x8000) = 0x7fde3d2d4000
4613 close(7) = 0
4613 mprotect(0x7fde3d2d4000, 4096, PROT_READ) = 0
4613 read(6, "st users of current versions of "..., 4096) = 4096
4613 brk(0) = 0x2d46000
4613 brk(0x2d67000) = 0x2d67000
4613 read(6, "mplementation.\n my $freezer ="..., 4096) = 4096
4613 read(6, "};\n $pair = $s->{pair};\n "..., 4096) = 4096
4613 brk(0) = 0x2d67000
4613 brk(0x2d88000) = 0x2d88000
4613 read(6, " and $v = _vstring($val)\n a"..., 4096) = 4096
4613 brk(0) = 0x2d88000
4613 brk(0x2da9000) = 0x2da9000
4613 read(6, ";\n } elsif ($high eq \"utf8\") "..., 4096) = 4096
4613 lseek(6, 22145, SEEK_SET) = 22145
4613 lseek(6, 0, SEEK_CUR) = 22145
4613 close(6) = 0
4613 read(5, "]{IC_LOCKING};\n\tVend::Util::unlo"..., 4096) = 4096
4613 brk(0) = 0x2da9000
4613 brk(0x2dca000) = 0x2dca000
4613 read(5, " return (@{ Storable::thaw($li"..., 4096) = 4096
4613 read(5, "lds) = @_;\n\tmy $key = $fields[$s"..., 4096) = 4096
4613 brk(0) = 0x2dca000
4613 brk(0x2deb000) = 0x2deb000
4613 read(5, "n) = split /\\s*=\\s*/, $restrict;"..., 4096) = 4096
4613 brk(0) = 0x2deb000
4613 brk(0x2e0c000) = 0x2e0c000
4613 read(5, "$sub;\n\n\tif($update eq 'INSERT') "..., 4096) = 4096
4613 read(5, "\n\telse {\n\t\t$format = 'NONE';\n\t}\n"..., 4096) = 4096
4613 brk(0) = 0x2e0c000
4613 brk(0x2e2d000) = 0x2e2d000
4613 read(5, "OPTIONS}{$f}) {\n\n\t\t\t\tpush @o, $o"..., 4096) = 4096
4613 read(5, "\t\t\tpush (\\@fields, '') until \\$f"..., 4096) = 4096
4613 brk(0) = 0x2e2d000
4613 brk(0x2e4e000) = 0x2e4e000
4613 read(5, "pect = 1;\n my @a = ();\n my"..., 4096) = 1884
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/DbSearch.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/DbSearch.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/DbSearch.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/DbSearch.pm", {st_mode=S_IFREG|0444, st_size=12052, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/DbSearch.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::DbSearch - Search indexe"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Search/Dict.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Search/Dict.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Search/Dict.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Search/Dict.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Search/Dict.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pm", {st_mode=S_IFREG|0444, st_size=2751, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Search::Dict;\nrequire 5."..., 4096) = 2751
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 brk(0) = 0x2e4e000
4613 brk(0x2e6f000) = 0x2e6f000
4613 read(5, "chfiles[0]' is not a valid datab"..., 4096) = 4096
4613 read(5, "rror('No search definition');\n\t\t"..., 4096) = 3860
4613 brk(0) = 0x2e6f000
4613 brk(0x2e90000) = 0x2e90000
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Search.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Search.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Search.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Search.pm", {st_mode=S_IFREG|0444, st_size=34207, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Search.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Search - Base class for "..., 4096) = 4096
4613 brk(0) = 0x2e90000
4613 brk(0x2eb1000) = 0x2eb1000
4613 read(5, "t=\" . ::uneval(\\@text));\n ret"..., 4096) = 4096
4613 read(5, "nd up pre-emptively\n\t# removing "..., 4096) = 4096
4613 brk(0) = 0x2eb1000
4613 brk(0x2ed2000) = 0x2ed2000
4613 read(5, ") {\n\t\t\t\tif (substr($sortkey, 0, "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Text/Query.pmc", 0x7fff996f84d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Text/Query.pm", 0x7fff996f8420) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/Query.pmc", 0x7fff996f84d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/Query.pm", 0x7fff996f8420) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/Query.pmc", 0x7fff996f84d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/Query.pm", 0x7fff996f8420) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/Query.pmc", 0x7fff996f84d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/Query.pm", {st_mode=S_IFREG|0444, st_size=8705, ...}) = 0
4613 open("/home/sam/local/lib/perl5/Text/Query.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8200) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Copyright (C) 1999 Eric Bo"..., 4096) = 4096
4613 read(6, "turn $self->{-optimize};\n}\n\n1;\n\n"..., 4096) = 4096
4613 lseek(6, 4136, SEEK_SET) = 4136
4613 lseek(6, 0, SEEK_CUR) = 4136
4613 close(6) = 0
4613 brk(0) = 0x2ed2000
4613 brk(0x2ef3000) = 0x2ef3000
4613 read(5, "' => [' ne q{', '}'],\n\t\t\t\t'=' ="..., 4096) = 4096
4613 read(5, "\t}\n\n\tmy $fields = join \",\", @{$s"..., 4096) = 4096
4613 brk(0) = 0x2ef3000
4613 brk(0x2f14000) = 0x2f14000
4613 read(5, "\t}\n\t\t\tif(defined $pats[1]) {\n\t\t\t"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/locale.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/locale.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/locale.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/locale.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/locale.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pm", {st_mode=S_IFREG|0444, st_size=820, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package locale;\n\nour $VERSION = "..., 4096) = 820
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(5, "\" if $@;\n\n return $func;\n} \n\n"..., 4096) = 4096
4613 brk(0) = 0x2f14000
4613 brk(0x2f35000) = 0x2f35000
4613 read(5, " { $_[1] cmp $_[0]\t\t\t},\n\trf\t=> s"..., 4096) = 1439
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/TextSearch.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/TextSearch.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/TextSearch.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/TextSearch.pm", {st_mode=S_IFREG|0444, st_size=11364, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/TextSearch.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::TextSearch - Search inde"..., 4096) = 4096
4613 read(5, "string_match mv_negate/\n\t\t\t\t\t\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x2f35000
4613 brk(0x2f56000) = 0x2f56000
4613 read(5, "elayed_return = $s->get_return(1"..., 4096) = 3172
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/CounterFile.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/CounterFile.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CounterFile.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CounterFile.pm", {st_mode=S_IFREG|0444, st_size=11088, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/CounterFile.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# This -*-perl -*- module implem"..., 4096) = 4096
4613 brk(0) = 0x2f56000
4613 brk(0x2f77000) = 0x2f77000
4613 read(5, "ified\\n\" unless defined $file;\n\n"..., 4096) = 4096
4613 read(5, "print $fh \"$self->{'value'}\\n\";\n"..., 4096) = 2896
4613 lseek(5, 9891, SEEK_SET) = 9891
4613 lseek(5, 0, SEEK_CUR) = 9891
4613 close(5) = 0
4613 read(4, "ter_store_key($out_filter);\n\t$ha"..., 4096) = 1627
4613 brk(0) = 0x2f77000
4613 brk(0x2f98000) = 0x2f98000
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/InMemory.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/InMemory.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/InMemory.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/InMemory.pm", {st_mode=S_IFREG|0444, st_size=5121, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/InMemory.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::InMemory - Store "..., 4096) = 4096
4613 read(4, "ow($key) ];\n\t}\n}\n\n\n#sub each_rec"..., 4096) = 1025
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/Shadow.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/Shadow.pm", 0x7fff996f8eb0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Shadow.pmc", 0x7fff996f8f60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Shadow.pm", {st_mode=S_IFREG|0444, st_size=16728, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/Shadow.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::Shadow - Access a"..., 4096) = 4096
4613 brk(0) = 0x2f98000
4613 brk(0x2fb9000) = 0x2fb9000
4613 read(4, "b column_exists {\n my ($s, $c"..., 4096) = 4096
4613 brk(0) = 0x2fb9000
4613 brk(0x2fda000) = 0x2fda000
4613 read(4, "wed\n\t\t\tmy (@map_matches, @map_en"..., 4096) = 4096
4613 read(4, "\t\t\t\t} else {\n\t\t\t\t\t$d->{MAP}->{$f"..., 4096) = 4096
4613 brk(0) = 0x2fda000
4613 brk(0x2ffb000) = 0x2ffb000
4613 read(4, "OBJ]->field($key, $column);\n\t}\n\n"..., 4096) = 344
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Server.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Server.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Server.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Server.pm", {st_mode=S_IFREG|0444, st_size=84087, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Server.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Server - Listen for Inte"..., 4096) = 4096
4613 read(4, " IP address?\n\t\t\tif ($ip !~ /^\\d\\"..., 4096) = 4096
4613 brk(0) = 0x2ffb000
4613 brk(0x301c000) = 0x301c000
4613 read(4, "e_multipart\n# Doesn't do unhexif"..., 4096) = 4096
4613 read(4, "OST') {\n\t\t\t\t\tdie ::errmsg(\"Synta"..., 4096) = 4096
4613 brk(0) = 0x301c000
4613 brk(0x303d000) = 0x303d000
4613 read(4, "| undef,\n\t\t\t\tundef,\n\t\t\t\tundef,\n\t"..., 4096) = 4096
4613 read(4, ">{rfh} = $rfh;\n\t\tumask $save;\n\t}"..., 4096) = 4096
4613 brk(0) = 0x303d000
4613 brk(0x305e000) = 0x305e000
4613 read(4, "le ((!defined($r) || $r == -1) &"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/URI/URL.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/URL.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/URL.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/URL.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/URL.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/URL.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/URL.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/URL.pm", {st_mode=S_IFREG|0444, st_size=5487, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/URL.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package URI::URL;\n\nuse strict;\nu"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/parent.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/parent.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/parent.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/parent.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/parent.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/parent.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/parent.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/parent.pm", {st_mode=S_IFREG|0444, st_size=2592, ...}) = 0
4613 open("/home/sam/local/lib/perl5/parent.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package parent;\nuse strict;\nuse "..., 4096) = 2592
4613 lseek(6, 478, SEEK_SET) = 478
4613 lseek(6, 0, SEEK_CUR) = 478
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/URI/WithBase.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/WithBase.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/WithBase.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/WithBase.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/WithBase.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/WithBase.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/WithBase.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/WithBase.pm", {st_mode=S_IFREG|0444, st_size=3857, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/WithBase.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package URI::WithBase;\n\nuse stri"..., 4096) = 3857
4613 stat("/home/sam/live/interchange/URI.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI.pm", {st_mode=S_IFREG|0444, st_size=34595, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package URI;\n\nuse strict;\nuse wa"..., 4096) = 4096
4613 brk(0) = 0x305e000
4613 brk(0x307f000) = 0x307f000
4613 stat("/home/sam/live/interchange/URI/Escape.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/Escape.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/Escape.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/Escape.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/Escape.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/Escape.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/Escape.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/Escape.pm", {st_mode=S_IFREG|0444, st_size=7022, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/Escape.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package URI::Escape;\n\nuse strict"..., 4096) = 4096
4613 read(8, "f the inline RE above) if a few "..., 4096) = 2926
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x307f000
4613 brk(0x30a0000) = 0x30a0000
4613 read(7, "$scheme_re:/o\n\t}\n\telse {\n\t $o"..., 4096) = 4096
4613 lseek(7, 7453, SEEK_SET) = 7453
4613 lseek(7, 0, SEEK_CUR) = 7453
4613 close(7) = 0
4613 lseek(6, 2433, SEEK_SET) = 2433
4613 lseek(6, 0, SEEK_CUR) = 2433
4613 close(6) = 0
4613 brk(0) = 0x30a0000
4613 brk(0x30c1000) = 0x30c1000
4613 lseek(5, 3715, SEEK_SET) = 3715
4613 lseek(5, 0, SEEK_CUR) = 3715
4613 close(5) = 0
4613 read(4, "EMOTE_USER} =\n\t\t\t\t\tVend::Util::c"..., 4096) = 4096
4613 brk(0) = 0x30c1000
4613 brk(0x30e2000) = 0x30e2000
4613 read(4, ";\n\treset 'A-Z';\n\treset 'a-z';\n\tp"..., 4096) = 4096
4613 read(4, "Global::PreFork, $server_deficit"..., 4096) = 4096
4613 brk(0) = 0x30e2000
4613 brk(0x3103000) = 0x3103000
4613 read(4, "nless $Global::SelectorAlias{$_}"..., 4096) = 4096
4613 read(4, "_})\n\t\t\t\t\t\tor ::logGlobal(\n\t\t\t\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x3103000
4613 brk(0x3124000) = 0x3124000
4613 read(4, "ind_port, $bind_addr))\n\t\t\t\t\t|| d"..., 4096) = 4096
4613 read(4, ") {\n\t\t\t\t\tmy $msg = $@;\n\t\t\t\t\t::lo"..., 4096) = 4096
4613 brk(0) = 0x3124000
4613 brk(0x3145000) = 0x3145000
4613 read(4, "eck;\n\t\t\t\t\t\t&$Sig_inc;\n\t\t\t\t\t\tconn"..., 4096) = 4096
4613 read(4, "Vend::StatusLine);\n\t\t\tprint MESS"..., 4096) = 4096
4613 brk(0) = 0x3145000
4613 brk(0x3166000) = 0x3166000
4613 read(4, "ODE_INDICATOR, \">$Global::RunDir"..., 4096) = 4096
4613 read(4, "$vector;\n\t\t\t$cycle = $tick;\n\t\t}\n"..., 4096) = 4096
4613 read(4, " );\n#::logDebug(\"SOAP pids: \" . "..., 4096) = 4096
4613 brk(0) = 0x3166000
4613 brk(0x3187000) = 0x3187000
4613 read(4, " open_pid {\n\tmy $fn = shift || $"..., 4096) = 4096
4613 brk(0) = 0x3187000
4613 brk(0x31a8000) = 0x31a8000
4613 read(4, "ockfile($pidh);\n\t\t\t\topendir(RUND"..., 4096) = 2167
4613 lseek(4, 84086, SEEK_SET) = 84086
4613 lseek(4, 0, SEEK_CUR) = 84086
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pm", {st_mode=S_IFREG|0444, st_size=70496, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package JSON;\n\n\nuse strict;\nuse "..., 4096) = 4096
4613 read(4, "] eq 'HASH') {\n my $opt "..., 4096) = 4096
4613 brk(0) = 0x31a8000
4613 brk(0x31c9000) = 0x31c9000
4613 read(4, " }\n\n *{\"JSON::is_bool\"} = \\&{"..., 4096) = 4096
4613 fcntl(4, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/home/sam/live/interchange/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("./JSON/XS.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("./JSON/XS.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/PP.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/PP.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/PP.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/PP.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/PP.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/PP.pm", 0x7fff996f8900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/PP.pmc", 0x7fff996f89b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/PP.pm", {st_mode=S_IFREG|0444, st_size=81833, ...}) = 0
4613 open("/home/sam/local/lib/perl5/JSON/PP.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package JSON::PP;\n\n# JSON-2.0\n\nu"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/B.pmc", 0x7fff996f8440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/B.pm", 0x7fff996f8390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/B.pmc", 0x7fff996f8440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/B.pm", 0x7fff996f8390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/B.pmc", 0x7fff996f8440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/B.pm", 0x7fff996f8390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/B.pmc", 0x7fff996f8440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/B.pm", 0x7fff996f8390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pmc", 0x7fff996f8440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pm", {st_mode=S_IFREG|0444, st_size=25706, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8170) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# B.pm\n#\n# Copyright ("..., 4096) = 4096
4613 brk(0) = 0x31c9000
4613 brk(0x31ea000) = 0x31ea000
4613 read(6, "plroot, $method, $level + 1);\n\ts"..., 4096) = 4096
4613 brk(0) = 0x31ea000
4613 brk(0x320b000) = 0x320b000
4613 lseek(6, 8076, SEEK_SET) = 8076
4613 lseek(6, 0, SEEK_CUR) = 8076
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.so", {st_mode=S_IFREG|0555, st_size=130561, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220Y\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=130561, ...}) = 0
4613 mmap(NULL, 2212480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3ceaf000
4613 mprotect(0x7fde3cecb000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3d0ca000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1b000) = 0x7fde3d0ca000
4613 close(6) = 0
4613 mprotect(0x7fde3d0ca000, 4096, PROT_READ) = 0
4613 brk(0) = 0x320b000
4613 brk(0x322c000) = 0x322c000
4613 brk(0) = 0x322c000
4613 brk(0x324d000) = 0x324d000
4613 brk(0) = 0x324d000
4613 brk(0x326e000) = 0x326e000
4613 read(5, "0)->space_before(0)->space_after"..., 4096) = 4096
4613 read(5, "if ($allow_blessed and $as_nonbl"..., 4096) = 4096
4613 brk(0) = 0x326e000
4613 brk(0x328f000) = 0x328f000
4613 read(5, "0e-\\x1f])/'\\\\u00' . unpack('H2',"..., 4096) = 4096
4613 read(5, " ($max_depth, $max_size, $cb"..., 4096) = 4096
4613 brk(0) = 0x328f000
4613 brk(0x32b0000) = 0x32b0000
4613 read(5, " $is_utf8 = 1;\n "..., 4096) = 4096
4613 read(5, " if (!defined $ch) {\n "..., 4096) = 4096
4613 read(5, "t not be followed by another dig"..., 4096) = 4096
4613 brk(0) = 0x32b0000
4613 brk(0x32d1000) = 0x32d1000
4613 read(5, " last;\n }\n "..., 4096) = 4096
4613 read(5, " return\n exi"..., 4096) = 4096
4613 brk(0) = 0x32d1000
4613 brk(0x32f2000) = 0x32f2000
4613 read(5, " }\n }\n\n i"..., 4096) = 4096
4613 lseek(5, 42738, SEEK_SET) = 42738
4613 lseek(5, 0, SEEK_CUR) = 42738
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Session.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Session.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Session.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Session.pm", {st_mode=S_IFREG|0444, st_size=16951, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Session.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Session - Interchange se"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/SessionDB.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SessionDB.pm", 0x7fff996f8940) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionDB.pmc", 0x7fff996f89f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionDB.pm", {st_mode=S_IFREG|0444, st_size=4221, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SessionDB.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8720) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::SessionDB - Stores Inter"..., 4096) = 4096
4613 read(6, "else {\n\t\t$self->{DB}->set_field("..., 4096) = 125
4613 close(6) = 0
4613 read(5, "nLock, \"+>>$Vend::Cfg->{SessionL"..., 4096) = 4096
4613 brk(0) = 0x32f2000
4613 brk(0x3313000) = 0x3313000
4613 read(5, "not close $Vend::Cfg->{SessionDa"..., 4096) = 4096
4613 read(5, "arts\t= $Vend::Session->{carts};\n"..., 4096) = 4096
4613 brk(0) = 0x3313000
4613 brk(0x3334000) = 0x3334000
4613 read(5, "Vend::DELDIR);\n\t\tfor(@files) {\n\t"..., 4096) = 567
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/SessionFile.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SessionFile.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionFile.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionFile.pm", {st_mode=S_IFREG|0444, st_size=3804, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SessionFile.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::SessionFile - Stores Int"..., 4096) = 3804
4613 brk(0) = 0x3334000
4613 brk(0x3355000) = 0x3355000
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Config.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Config.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Config.pm", {st_mode=S_IFREG|0444, st_size=133508, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Config.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Config - Configure Inter"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Parse.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Parse.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parse.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parse.pm", {st_mode=S_IFREG|0444, st_size=23373, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Parse.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Parse - Parse Interchang"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Interpolate.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Interpolate.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Interpolate.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Interpolate.pm", {st_mode=S_IFREG|0444, st_size=154361, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Interpolate.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Interpolate - Interpret "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Safe/Hole.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Safe/Hole.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe/Hole.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe/Hole.pm", 0x7fff996f7e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pmc", 0x7fff996f7f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pm", {st_mode=S_IFREG|0444, st_size=8100, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Safe::Hole - make a hole to th"..., 4096) = 4096
4613 brk(0) = 0x3355000
4613 brk(0x3376000) = 0x3376000
4613 lseek(8, 3380, SEEK_SET) = 3380
4613 lseek(8, 0, SEEK_CUR) = 3380
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/auto/Safe/Hole", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Safe/Hole", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.so", {st_mode=S_IFREG|0555, st_size=13972, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\21\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=13972, ...}) = 0
4613 mmap(NULL, 2105624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7fde3ccac000
4613 mprotect(0x7fde3ccae000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3cead000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x7fde3cead000
4613 close(8) = 0
4613 mprotect(0x7fde3cead000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Vend/Data.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Data.pm", 0x7fff996f7e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Data.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Data.pm", {st_mode=S_IFREG|0444, st_size=60625, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Data.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Data - Interchange datab"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Table/DBI.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/DBI.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI.pm", {st_mode=S_IFREG|0444, st_size=63089, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/DBI.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Table::DBI - Access a ta"..., 4096) = 4096
4613 brk(0) = 0x3376000
4613 brk(0x3397000) = 0x3397000
4613 read(9, "OLUMN_ _DEF_',\n\t\tPg => 'ALTER TA"..., 4096) = 4096
4613 read(9, " ||= $keycol;\n\t$config->{KEY} ||"..., 4096) = 4096
4613 read(9, "ame) : $seq_name;\n\t\tmy $seq_name"..., 4096) = 4096
4613 brk(0) = 0x3397000
4613 brk(0x33b8000) = 0x33b8000
4613 read(9, "\n\nsub new {\n\tmy ($class, $obj) ="..., 4096) = 4096
4613 read(9, " @{$config->{NAME}}] :\n\t\t $co"..., 4096) = 4096
4613 brk(0) = 0x33b8000
4613 brk(0x33d9000) = 0x33d9000
4613 read(9, "mn) ]; \n\tmy $q1 = \"select $colum"..., 4096) = 4096
4613 brk(0) = 0x33d9000
4613 brk(0x33fa000) = 0x33fa000
4613 read(9, "\n}\n\nsub copy_table {\n\tmy ($s, $c"..., 4096) = 4096
4613 read(9, "or($msg1);\n\t\t\t::logError($msg2);"..., 4096) = 4096
4613 brk(0) = 0x33fa000
4613 brk(0x341b000) = 0x341b000
4613 read(9, "as:%s\\nvalues were:'%s'\",\n\t\t\t'se"..., 4096) = 4096
4613 brk(0) = 0x341b000
4613 brk(0x343c000) = 0x343c000
4613 read(9, "missing return value from %s: %s"..., 4096) = 4096
4613 read(9, "s->[$QTABLE] WHERE \";\n\t\n\tmy @fie"..., 4096) = 4096
4613 brk(0) = 0x343c000
4613 brk(0x345d000) = 0x345d000
4613 read(9, "\n\n $s->[$DBI]->do(\"delete fro"..., 4096) = 4096
4613 read(9, ")\n or die $s->log_err"..., 4096) = 4096
4613 brk(0) = 0x345d000
4613 brk(0x347e000) = 0x347e000
4613 read(9, "late::Tmp->{$opt->{arrayref}}\n\t\t"..., 4096) = 4096
4613 brk(0) = 0x347e000
4613 brk(0x349f000) = 0x349f000
4613 read(9, "$ref, \\%nh, \\@na) : $ref;\n}\n\nsub"..., 4096) = 1649
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/DBI_CompositeKey.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/DBI_CompositeKey.pm", 0x7fff996f78f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pmc", 0x7fff996f79a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pm", {st_mode=S_IFREG|0444, st_size=20673, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f76d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Table::DBI - Access a ta"..., 4096) = 4096
4613 read(9, "siteKey keys = \" . ::uneval(\\@ke"..., 4096) = 4096
4613 brk(0) = 0x349f000
4613 brk(0x34c0000) = 0x34c0000
4613 read(9, "\",\n\t\t\t$key,\n\t\t\t$s->[$CONFIG]{nam"..., 4096) = 4096
4613 read(9, "ndex($_)];\n\t\t}\n\t}\n\n\tif($force_ke"..., 4096) = 4096
4613 brk(0) = 0x34c0000
4613 brk(0x34e1000) = 0x34e1000
4613 read(9, "ign {\n\tdie \"Foreign keys not sup"..., 4096) = 4096
4613 brk(0) = 0x34e1000
4613 brk(0x3502000) = 0x3502000
4613 read(9, "::auto_config;\n*config = \\&Vend:"..., 4096) = 193
4613 close(9) = 0
4613 read(8, "sefinder{$ref} if $ref->record_e"..., 4096) = 4096
4613 read(8, "defined $db->test_column($field_"..., 4096) = 4096
4613 brk(0) = 0x3502000
4613 brk(0x3523000) = 0x3523000
4613 read(8, "\";\n\twhile(<AUTODELIM>) {\n\t\tmy $l"..., 4096) = 4096
4613 read(8, "field names in CREATE_EMPTY_TXT\""..., 4096) = 4096
4613 brk(0) = 0x3523000
4613 brk(0x3544000) = 0x3544000
4613 read(8, "} if defined $obj->{DELIMITER};\n"..., 4096) = 4096
4613 read(8, ");\n\n\tmy $ext = $opt->{extension}"..., 4096) = 4096
4613 brk(0) = 0x3544000
4613 brk(0x3565000) = 0x3565000
4613 read(8, "table '%s'\",\n\t\t\t\t$field,\n\t\t\t\t$ta"..., 4096) = 4096
4613 read(8, "d::Cfg->{Sub}{$name} || $Global:"..., 4096) = 4096
4613 brk(0) = 0x3565000
4613 brk(0x3586000) = 0x3586000
4613 read(8, "\n\n\t\t\t\t\tmy $keep;\n\t\t\t\t\t$keep = $r"..., 4096) = 4096
4613 brk(0) = 0x3586000
4613 brk(0x35a7000) = 0x35a7000
4613 read(8, "=$attr table=$table key=$key sel"..., 4096) = 4096
4613 read(8, "le, fields, or key.\\n\" .\n\t\t\t\t\t \""..., 4096) = 4096
4613 brk(0) = 0x35a7000
4613 brk(0x35c8000) = 0x35c8000
4613 read(8, " $base_db->config('COMPOSITE_KEY"..., 4096) = 4096
4613 read(8, ";\n\n\t\t%blob_exception =\n\t\t\t\tmap"..., 4096) = 4096
4613 read(8, "$qd) {\n#::logDebug(\"update_data:"..., 4096) = 3281
4613 brk(0) = 0x35c8000
4613 brk(0x35e9000) = 0x35e9000
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Form.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Form.pm", 0x7fff996f7e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Form.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Form.pm", {st_mode=S_IFREG|0444, st_size=38770, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Form.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Form - Generate Form wid"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Tags.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Tags.pm", 0x7fff996f78a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Tags.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Tags.pm", {st_mode=S_IFREG|0444, st_size=1255, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Tags.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7680) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Tags - Interpret Interch"..., 4096) = 1255
4613 close(9) = 0
4613 read(8, "q(>{APPEND})\n\t\t,\n\thiddentext =>\n"..., 4096) = 4096
4613 brk(0) = 0x35e9000
4613 brk(0x360a000) = 0x360a000
4613 read(8, "pt $_ = \" . uneval_it($_) . \"\\n\""..., 4096) = 4096
4613 read(8, "->{year_begin} || $::Variable->{"..., 4096) = 4096
4613 brk(0) = 0x360a000
4613 brk(0x362b000) = 0x362b000
4613 read(8, "get_box($name, '', '', '', $widt"..., 4096) = 4096
4613 brk(0) = 0x362b000
4613 brk(0x364c000) = 0x364c000
4613 read(8, "y $vvalue = $value;\n\t\tencode($vv"..., 4096) = 4096
4613 read(8, "elected};\n\t\t$label =~ s/\\*$//\n\t\t"..., 4096) = 4096
4613 brk(0) = 0x364c000
4613 brk(0x366d000) = 0x366d000
4613 read(8, "checks) {\n\t\t\tif(my $sub = Vend::"..., 4096) = 4096
4613 read(8, "$def = $CGI::values{$opt->{name}"..., 4096) = 4096
4613 brk(0) = 0x366d000
4613 brk(0x368e000) = 0x368e000
4613 read(8, "ck)/i) {\n\t\t$opt->{type} = 'box';"..., 4096) = 1906
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 8
4613 fstat(8, {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 fstat(8, {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46dec000
4613 read(8, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\0"..., 4096) = 3519
4613 lseek(8, -2252, SEEK_CUR) = 1267
4613 read(8, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 2252
4613 close(8) = 0
4613 munmap(0x7fde46dec000, 4096) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 brk(0) = 0x368e000
4613 brk(0x36af000) = 0x36af000
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/home/sam/live/interchange/Vend/Scan.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Scan.pm", 0x7fff996f7e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Scan.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Scan.pm", {st_mode=S_IFREG|0444, st_size=22830, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Scan.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Scan - Prepare searches "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/SQL_Parser.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SQL_Parser.pm", 0x7fff996f78a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SQL_Parser.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SQL_Parser.pm", {st_mode=S_IFREG|0444, st_size=18370, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SQL_Parser.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7680) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::SQL_Parser - Interchange"..., 4096) = 4096
4613 read(9, "b order {\n\tmy $s = shift;\n\tretur"..., 4096) = 4096
4613 brk(0) = 0x36af000
4613 brk(0x36d0000) = 0x36d0000
4613 read(9, "op is valid\");\n\t\t\tif($op eq 'bet"..., 4096) = 4096
4613 read(9, "y @valtype;\n\tmy $params;\n\n\tmy $s"..., 4096) = 4096
4613 brk(0) = 0x36d0000
4613 brk(0x36f1000) = 0x36f1000
4613 read(9, "lf->{name} = lc $name unless $se"..., 4096) = 1986
4613 brk(0) = 0x36f1000
4613 brk(0x3712000) = 0x3712000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Vend/RefSearch.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/RefSearch.pm", 0x7fff996f78a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/RefSearch.pmc", 0x7fff996f7950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/RefSearch.pm", {st_mode=S_IFREG|0444, st_size=9817, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/RefSearch.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7680) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::DbSearch - Search indexe"..., 4096) = 4096
4613 read(9, "\n\n\t$@ and return $s->search_er"..., 4096) = 4096
4613 read(9, "eturn: self=\" . ::Vend::Util::un"..., 4096) = 1625
4613 brk(0) = 0x3712000
4613 brk(0x3733000) = 0x3733000
4613 close(9) = 0
4613 read(8, "Scan;\n%RevScan = reverse %Scan;\n"..., 4096) = 4096
4613 read(8, "efined $RevScan{$p} and $var = $"..., 4096) = 4096
4613 brk(0) = 0x3733000
4613 brk(0x3754000) = 0x3754000
4613 read(8, "! $options{mv_cache_key}) {\n\t\t$o"..., 4096) = 4096
4613 read(8, "ug(\"found limit=\" . $l->limit())"..., 4096) = 4096
4613 brk(0) = 0x3754000
4613 brk(0x3775000) = 0x3775000
4613 read(8, "ug(\"receiving verbatim_array: \" "..., 4096) = 2350
4613 brk(0) = 0x3775000
4613 brk(0x3796000) = 0x3796000
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Subs.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Subs.pm", 0x7fff996f7e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Subs.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Subs.pm", {st_mode=S_IFREG|0444, st_size=1585, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Subs.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Subs - Run Interchange S"..., 4096) = 1585
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Document.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Document.pm", 0x7fff996f7e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Document.pmc", 0x7fff996f7ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Document.pm", {st_mode=S_IFREG|0444, st_size=1755, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Document.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Document - Document obje"..., 4096) = 1755
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, " Vend::Safe $pkg;\n\t\t$ready_safe-"..., 4096) = 4096
4613 brk(0) = 0x3796000
4613 brk(0x37b7000) = 0x37b7000
4613 read(7, "@};\nmy $Evar = qr{\\@_([A-Za-z0-"..., 4096) = 4096
4613 read(7, "ch_count}\\]),\n\t'more'\t\t\t=> qr($T"..., 4096) = 4096
4613 brk(0) = 0x37b7000
4613 brk(0x37d8000) = 0x37d8000
4613 read(7, "y ($html, $wantref, $opt) = @_;\n"..., 4096) = 4096
4613 brk(0) = 0x37d8000
4613 brk(0x37f9000) = 0x37f9000
4613 read(7, "d=$field value=$opt->{value}\");\n"..., 4096) = 4096
4613 read(7, "\t$base = $term;\n\t\t$total = 1;\n\t}"..., 4096) = 4096
4613 brk(0) = 0x37f9000
4613 brk(0x381a000) = 0x381a000
4613 read(7, "t(@terms)) {\n\t\t\t\t$op = $op->{$t}"..., 4096) = 4096
4613 read(7, "/else]' if length $else;\n\t\tmy $p"..., 4096) = 4096
4613 brk(0) = 0x381a000
4613 brk(0x383b000) = 0x383b000
4613 read(7, "\n\t\t\t\tscalar(@new),\n\t\t\t\t$max,\n\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x383b000
4613 brk(0x385c000) = 0x385c000
4613 read(7, "\n\n\t$body = readfile($opt->{file}"..., 4096) = 4096
4613 read(7, "end::TransactionDatabase{$dbname"..., 4096) = 4096
4613 brk(0) = 0x385c000
4613 brk(0x387d000) = 0x387d000
4613 read(7, "}\n$head\n\n$text\nEndOFmiMe\n\n\t}\n#::"..., 4096) = 4096
4613 read(7, "op};\n\tshift;\n#::logDebug(\"tag ar"..., 4096) = 4096
4613 brk(0) = 0x387d000
4613 brk(0x389e000) = 0x389e000
4613 read(7, " be a mac file.\n\t\t\t\t$CGI::file{$"..., 4096) = 4096
4613 brk(0) = 0x389e000
4613 brk(0x38bf000) = 0x38bf000
4613 read(7, "f @headers;\n\n\treturn error_opt(\""..., 4096) = 4096
4613 brk(0) = 0x38bf000
4613 brk(0x38e0000) = 0x38e0000
4613 read(7, "a {\n ($page, $arg, $opt) = @_"..., 4096) = 4096
4613 read(7, "\t\tundef $operator;\n\t\tundef $comp"..., 4096) = 4096
4613 brk(0) = 0x38e0000
4613 brk(0x3901000) = 0x3901000
4613 read(7, "s/\\s+$//; \n#::logDebug(\"tag_sort"..., 4096) = 4096
4613 read(7, ", $pretty_url);\n my $this_pre"..., 4096) = 4096
4613 brk(0) = 0x3901000
4613 brk(0x3922000) = 0x3922000
4613 read(7, "All)\\[/first[-_]anchor\\]::i) {\n\t"..., 4096) = 4096
4613 read(7, "r eq 'none';\n\t\t\tpush @more_links"..., 4096) = 4096
4613 brk(0) = 0x3922000
4613 brk(0x3943000) = 0x3943000
4613 read(7, "r};\n\t\t$opt->{ml}\t= $CGI::values{"..., 4096) = 4096
4613 brk(0) = 0x3943000
4613 brk(0x3964000) = 0x3964000
4613 read(7, "!$hash->{$1} || $2!eg;\n\t$body =~"..., 4096) = 4096
4613 read(7, "t = -1;\n\n\twhile($int > -1) {\n\t\t$"..., 4096) = 4096
4613 brk(0) = 0x3964000
4613 brk(0x3985000) = 0x3985000
4613 read(7, "$fa ||= [];\n\t@$fa = sort { $fh->"..., 4096) = 4096
4613 brk(0) = 0x3985000
4613 brk(0x39a6000) = 0x39a6000
4613 read(7, "$once++;\n\t\t1 while $run =~ s#$IB"..., 4096) = 4096
4613 read(7, "logError(\n\t\t\t\t\"list iterator sub"..., 4096) = 4096
4613 brk(0) = 0x39a6000
4613 brk(0x39c7000) = 0x39c7000
4613 read(7, ")\n\t\t\t\t#ige;\n\t\t$run =~ s#$B$QR{_f"..., 4096) = 4096
4613 brk(0) = 0x39c7000
4613 brk(0x39e8000) = 0x39e8000
4613 read(7, "\tVend::Scan::parse_profile_ref($"..., 4096) = 4096
4613 read(7, "g(\"list is: \" . uneval($list) );"..., 4096) = 4096
4613 brk(0) = 0x39e8000
4613 brk(0x3a09000) = 0x3a09000
4613 read(7, "de, $opt, $page) = @_;\n\n\tmy ($se"..., 4096) = 4096
4613 read(7, " defined $::Discounts->{ALL_ITEM"..., 4096) = 4096
4613 brk(0) = 0x3a09000
4613 brk(0x3a2a000) = 0x3a2a000
4613 read(7, "$save_scratch if $save_scratch;\n"..., 4096) = 4096
4613 read(7, "$::Variable->{MV_COUNTRY_TAX_FIE"..., 4096) = 4096
4613 brk(0) = 0x3a2a000
4613 brk(0x3a4b000) = 0x3a4b000
4613 read(7, "ession->{assigned}) {\n\t\treturn $"..., 4096) = 4096
4613 read(7, "cost = $Vend::Interpolate::ready"..., 4096) = 4096
4613 brk(0) = 0x3a4b000
4613 brk(0x3a6c000) = 0x3a6c000
4613 read(7, "Vend::Cfg->{SalesTax};\n\t\t\t\t$Vend"..., 4096) = 2809
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46dbf000
4613 stat("/home/sam/live/interchange/Vend/Cart.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Cart.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cart.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cart.pm", {st_mode=S_IFREG|0444, st_size=9846, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Cart.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Cart - Interchange shopp"..., 4096) = 4096
4613 brk(0) = 0x3a6c000
4613 brk(0x3a8d000) = 0x3a8d000
4613 read(7, "ion}{$s->[$i]{code}}) {\n\t\t\t\t$sub"..., 4096) = 4096
4613 read(7, "aster, $s->[$i]->{mv_ci})\n\t\t\t\t\t\t"..., 4096) = 1654
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/unicore/PVA.pl", 0x7fff996f7690) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/PVA.pl", 0x7fff996f7690) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/PVA.pl", 0x7fff996f7690) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/PVA.pl", 0x7fff996f7690) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/PVA.pl", 0x7fff996f7690) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", {st_mode=S_IFREG|0444, st_size=27017, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f7470) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 brk(0) = 0x3a8d000
4613 brk(0x3aae000) = 0x3aae000
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "\n'expandsonnfd',\n'XONFD',\n'age',"..., 4096) = 4096
4613 read(7, "y',\n'Yes',\n'n',\n'No',\n},\n'XIDC',"..., 4096) = 4096
4613 brk(0) = 0x3aae000
4613 brk(0x3acf000) = 0x3acf000
4613 read(7, "QC',\n{\n'y',\n'Yes',\n'n',\n'No',\n},"..., 4096) = 4096
4613 read(7, ",\n'Y',\n'no',\n'N',\n},\n'STerm',\n{\n"..., 4096) = 4096
4613 brk(0) = 0x3acf000
4613 brk(0x3af0000) = 0x3af0000
4613 read(7, "',\n},\n'Hex',\n{\n'yes',\n'Y',\n'no',"..., 4096) = 4096
4613 read(7, "y',\n'Y',\n'n',\n'N',\n},\n'ODI',\n{\n'"..., 4096) = 2441
4613 brk(0) = 0x3af0000
4613 brk(0x3b11000) = 0x3b11000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x3b11000
4613 brk(0x3b32000) = 0x3b32000
4613 stat("/home/sam/live/interchange/unicore/Exact.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Exact.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Exact.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Exact.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Exact.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", {st_mode=S_IFREG|0444, st_size=1680, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f72a0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 1680
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/unicore/Canonical.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Canonical.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Canonical.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Canonical.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Canonical.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", {st_mode=S_IFREG|0444, st_size=24610, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f72a0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "eprecated\t\t\t\t => 'Deprecat',\n"..., 4096) = 4096
4613 read(7, " => 'InCjkRad',\n\n # InCjkStro"..., 4096) = 4096
4613 read(7, "'InLatin2',\n\n # InLatinExtendedA"..., 4096) = 4096
4613 read(7, "ugu',\n\n # InThaana\n inthaana\t\t"..., 4096) = 4096
4613 read(7, "ca',\n\n oriya\t\t\t\t => 'Orya',"..., 4096) = 4096
4613 read(7, "ables\t\t\t\t => 'InYiSyll',\n\n);\n"..., 4096) = 34
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/unicore/To/Fold.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/To/Fold.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/To/Fold.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/To/Fold.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/To/Fold.pl", 0x7fff996f74c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/To/Fold.pl", {st_mode=S_IFREG|0444, st_size=15634, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/To/Fold.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f72a0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "\\xEF\\xAC\\x83\" => \"\\x{0066}\\x{006"..., 4096) = 4096
4613 read(7, "42E\t\t044E\n042F\t\t044F\n0460\t\t0461\n"..., 4096) = 4096
4613 read(7, "\t2172\n2163\t\t2173\n2164\t\t2174\n2165"..., 4096) = 3346
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x3b32000
4613 brk(0x3b53000) = 0x3b53000
4613 brk(0) = 0x3b53000
4613 brk(0x3b74000) = 0x3b74000
4613 read(6, "e {\n\t\t# This is default, deny al"..., 4096) = 4096
4613 read(6, " => \\%Routine,\n);\n\nmy @my"..., 4096) = 4096
4613 read(6, " '' if $attr->{'unless'} =~ /^\\s"..., 4096) = 4096
4613 read(6, "Order{$tag}}] = $attr if $addAtt"..., 4096) = 4096
4613 brk(0) = 0x3b74000
4613 brk(0x3b95000) = 0x3b95000
4613 read(6, "'';\n return $out;\n}\n\nsub find"..., 4096) = 2893
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Parser.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Parser.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parser.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parser.pm", {st_mode=S_IFREG|0444, st_size=7393, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Parser.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Parser - Interchange par"..., 4096) = 4096
4613 read(6, "$eaten .= $1;\n\t\t\t\t\tmy $attr = lc"..., 4096) = 3297
4613 brk(0) = 0x3b95000
4613 brk(0x3bb6000) = 0x3bb6000
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Cron.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Cron.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cron.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cron.pm", {st_mode=S_IFREG|0444, st_size=3718, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Cron.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Cron - Determine tasks t"..., 4096) = 3718
4613 stat("/home/sam/live/interchange/Set/Crontab.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Set/Crontab.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Set/Crontab.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Set/Crontab.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Set/Crontab.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Set/Crontab.pm", 0x7fff996f83d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Set/Crontab.pmc", 0x7fff996f8480) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Set/Crontab.pm", {st_mode=S_IFREG|0444, st_size=3392, ...}) = 0
4613 open("/home/sam/local/lib/perl5/Set/Crontab.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f81b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Copyright 2001 Abhijit Menon-S"..., 4096) = 3392
4613 lseek(7, 1898, SEEK_SET) = 1898
4613 lseek(7, 0, SEEK_CUR) = 1898
4613 close(7) = 0
4613 lseek(6, 3717, SEEK_SET) = 3717
4613 lseek(6, 0, SEEK_CUR) = 3717
4613 close(6) = 0
4613 read(5, " \n\tSessionDB \n\tSessionDatabase \n"..., 4096) = 4096
4613 brk(0) = 0x3bb6000
4613 brk(0x3bd7000) = 0x3bd7000
4613 read(5, " || ''],\n\t['LockType', u"..., 4096) = 4096
4613 read(5, "g',\t\t\t\t ''],\n\t['CodeDef',\t\t\t 'ma"..., 4096) = 4096
4613 read(5, " 'user'],\n\t['SessionExpire'"..., 4096) = 4096
4613 read(5, "f, \t '.html'],\n\t['Custom"..., 4096) = 4096
4613 brk(0) = 0x3bd7000
4613 brk(0x3bf8000) = 0x3bf8000
4613 read(5, "\t\t\t## No lock, some other proces"..., 4096) = 4096
4613 read(5, "d::Cfg->{DisplayErrors} to 0.\n# "..., 4096) = 4096
4613 brk(0) = 0x3bf8000
4613 brk(0x3c19000) = 0x3c19000
4613 read(5, "thing is defined in options to d"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Glob.pmc", 0x7fff996f8840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Glob.pm", 0x7fff996f8790) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Glob.pmc", 0x7fff996f8840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Glob.pm", 0x7fff996f8790) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Glob.pmc", 0x7fff996f8840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Glob.pm", 0x7fff996f8790) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Glob.pmc", 0x7fff996f8840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Glob.pm", 0x7fff996f8790) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pmc", 0x7fff996f8840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pm", {st_mode=S_IFREG|0444, st_size=15311, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8570) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package File::Glob;\n\nuse strict;"..., 4096) = 4096
4613 brk(0) = 0x3c19000
4613 brk(0x3c3a000) = 0x3c3a000
4613 lseek(6, 4079, SEEK_SET) = 4079
4613 lseek(6, 0, SEEK_CUR) = 4079
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.so", {st_mode=S_IFREG|0555, st_size=27623, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\27\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=27623, ...}) = 0
4613 mmap(NULL, 2118032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3caa6000
4613 mprotect(0x7fde3caaa000, 2097152, PROT_NONE) = 0
4613 mmap(0x7fde3ccaa000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x4000) = 0x7fde3ccaa000
4613 close(6) = 0
4613 mprotect(0x7fde3ccaa000, 4096, PROT_READ) = 0
4613 read(5, "if it isn't already there....\n\ti"..., 4096) = 4096
4613 read(5, "\t$::Pragma = $Vend::Cfg->{Prag"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Find.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Find.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Find.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Find.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Find.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pm", {st_mode=S_IFREG|0444, st_size=39155, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package File::Find;\nuse 5.006;\nu"..., 4096) = 4096
4613 read(6, " fast file checks involving S<_>"..., 4096) = 4096
4613 read(6, " / /\n "..., 4096) = 4096
4613 read(6, " the volume root level (i.e.\n\"Ma"..., 4096) = 4096
4613 brk(0) = 0x3c3a000
4613 brk(0x3c5b000) = 0x3c5b000
4613 read(6, "newlen == length($Base) || subst"..., 4096) = 4096
4613 read(6, "\n\t\t $abs_dir = contract_name_"..., 4096) = 4096
4613 brk(0) = 0x3c5b000
4613 brk(0x3c7c000) = 0x3c7c000
4613 read(6, "Find::dir\n\t $name= $dir_name;"..., 4096) = 4096
4613 read(6, "r always has a trailing ':', exc"..., 4096) = 4096
4613 read(6, "nge to that directory\n\tunless ($"..., 4096) = 4096
4613 brk(0) = 0x3c7c000
4613 brk(0x3c9d000) = 0x3c9d000
4613 read(6, "hift;\n if ( ref($wanted) eq '"..., 4096) = 2291
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(5, "ainer value\n\t\tif(my $sub = $Cont"..., 4096) = 4096
4613 brk(0) = 0x3c9d000
4613 brk(0x3cbe000) = 0x3cbe000
4613 read(5, "ng a GlobalRead for $lvar\") unle"..., 4096) = 4096
4613 read(5, "It};\n\tparse_action('WatchIt', \"$"..., 4096) = 4096
4613 brk(0) = 0x3cbe000
4613 brk(0x3cdf000) = 0x3cdf000
4613 read(5, "atalogName}};\n\t\t$perlglobal = $G"..., 4096) = 4096
4613 read(5, "gnore) {\n\t\t\t\tunlink \"$initdir/$f"..., 4096) = 4096
4613 brk(0) = 0x3cdf000
4613 brk(0x3d00000) = 0x3d00000
4613 read(5, "= @_;\n\n\treturn '' if ! $val;\n\n\tm"..., 4096) = 4096
4613 brk(0) = 0x3d00000
4613 brk(0x3d21000) = 0x3d21000
4613 read(5, "\t\t$testsub = sub {\n\t\t\tmy $name ="..., 4096) = 4096
4613 read(5, "\n\n# Allow a subcatalog value to "..., 4096) = 4096
4613 brk(0) = 0x3d21000
4613 brk(0x3d42000) = 0x3d42000
4613 read(5, "nless $store->{$name};\n\n\treturn "..., 4096) = 4096
4613 read(5, "tory}{$locale};\n }\n "..., 4096) = 4096
4613 brk(0) = 0x3d42000
4613 brk(0x3d63000) = 0x3d63000
4613 read(5, " = \"Vend::Ship::${_}::Default\";\n"..., 4096) = 4096
4613 read(5, " => sub {\n\t\t\treturn 1 unless $C-"..., 4096) = 4096
4613 brk(0) = 0x3d63000
4613 brk(0x3d84000) = 0x3d84000
4613 read(5, "it /[\\s,]+/, $settings;\n\t}\n\telse"..., 4096) = 4096
4613 brk(0) = 0x3d84000
4613 brk(0x3da5000) = 0x3da5000
4613 read(5, " 60;\n\t\t}\n\t\telsif (m/^d|day|days$"..., 4096) = 4096
4613 read(5, "->[0]} = $ref->[1];\n\t\t}\n\t}\n\telse"..., 4096) = 4096
4613 brk(0) = 0x3da5000
4613 brk(0x3dc6000) = 0x3dc6000
4613 read(5, "} = Vend::Data::import_database("..., 4096) = 4096
4613 brk(0) = 0x3dc6000
4613 brk(0x3de7000) = 0x3de7000
4613 read(5, "e {\n\t\t\t\tconfig_warn(\n\t\t\t\t\t'Datab"..., 4096) = 4096
4613 brk(0) = 0x3de7000
4613 brk(0x3e08000) = 0x3e08000
4613 read(5, "nd::Cfg->{$real} !~ /HASH/) {\n\t\t"..., 4096) = 4096
4613 read(5, "\"Global::$type\"}\t||= {};\n\t}\n\n\tmy"..., 4096) = 4096
4613 brk(0) = 0x3e08000
4613 brk(0x3e29000) = 0x3e29000
4613 read(5, "eturn $c;\n\t}\n\n\t# Canonicalize\n\t$"..., 4096) = 4096
4613 read(5, "rict 'refs';\n $c->{$1} = "..., 4096) = 4096
4613 brk(0) = 0x3e29000
4613 brk(0x3e4a000) = 0x3e4a000
4613 read(5, "ed\n\t\t\t\t\terror\n\t\t\t\t\tflag\n\t\t\t\t\tinp"..., 4096) = 2436
4613 fcntl(5, F_SETFD, FD_CLOEXEC) = 0
4613 fstat(5, {st_mode=S_IFREG|0444, st_size=133508, ...}) = 0
4613 read(5, "", 4096) = 0
4613 stat("/home/sam/live/interchange/Vend/Payment.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Payment.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Payment.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Payment.pm", {st_mode=S_IFREG|0444, st_size=19616, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Payment.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Payment - Interchange pa"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Order.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Order.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Order.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Order.pm", {st_mode=S_IFREG|0444, st_size=63818, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Order.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Order - Interchange orde"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Error.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Error.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Error.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Error.pm", {st_mode=S_IFREG|0444, st_size=5437, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Error.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Error - Handle Interchan"..., 4096) = 4096
4613 brk(0) = 0x3e4a000
4613 brk(0x3e6b000) = 0x3e6b000
4613 read(8, ".= \"\\n###### END SESSION ####"..., 4096) = 1341
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/autouse.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/autouse.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/autouse.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/autouse.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/autouse.pm", 0x7fff996f8380) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pmc", 0x7fff996f8430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pm", {st_mode=S_IFREG|0444, st_size=4238, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8160) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package autouse;\n\n#use strict;\t\t"..., 4096) = 4096
4613 lseek(8, 2026, SEEK_SET) = 2026
4613 lseek(8, 0, SEEK_CUR) = 2026
4613 close(8) = 0
4613 brk(0) = 0x3e6b000
4613 brk(0x3e8c000) = 0x3e8c000
4613 read(7, "routine\"}) {\n\t\t$sub = \\&{\"_$rout"..., 4096) = 4096
4613 read(7, "$expire = $_ if m:/: ;\n\t}\n\tretur"..., 4096) = 4096
4613 brk(0) = 0x3e8c000
4613 brk(0x3ead000) = 0x3ead000
4613 read(7, "d number\n# mv_credit_card_exp"..., 4096) = 4096
4613 read(7, "$opt) = @_;\n\tmy $item_text;\n\tif "..., 4096) = 4096
4613 brk(0) = 0x3ead000
4613 brk(0x3ece000) = 0x3ece000
4613 read(7, "\n\t\tlocal($_) = shift;\n\t\tmy $ref "..., 4096) = 4096
4613 read(7, "\\\\n//g;\n\n\t$And = 1;\n\t$Fatal = $F"..., 4096) = 4096
4613 brk(0) = 0x3ece000
4613 brk(0x3eef000) = 0x3eef000
4613 read(7, "VALID_PROVINCE}\n\t\t\t\t? \" $::Varia"..., 4096) = 4096
4613 brk(0) = 0x3eef000
4613 brk(0x3f10000) = 0x3f10000
4613 read(7, " $val and $val =~ /\\S/);\n\treturn"..., 4096) = 4096
4613 read(7, "ted.\n\tmy $master_transactions;\n\n"..., 4096) = 4096
4613 brk(0) = 0x3f10000
4613 brk(0x3f31000) = 0x3f31000
4613 read(7, "ute->{encrypt_program} || $main-"..., 4096) = 4096
4613 read(7, "f($::Scratch->{mv_route_failed})"..., 4096) = 4096
4613 brk(0) = 0x3f31000
4613 brk(0x3f52000) = 0x3f52000
4613 read(7, "$path =~ s:/(.*)::) {\n\t\t$cart = "..., 4096) = 4096
4613 read(7, "sub) {\n\t\t\t\t\t$sub->($line, $loc);"..., 4096) = 4096
4613 brk(0) = 0x3f52000
4613 brk(0x3f73000) = 0x3f73000
4613 read(7, "$Vend::Cfg->{UseModifier};\n\t\tmy "..., 4096) = 4096
4613 read(7, "e a line.\n\t\tif ($found == -1) {\n"..., 4096) = 2378
4613 brk(0) = 0x3f73000
4613 brk(0x3f94000) = 0x3f94000
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/IO/Pipe.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Pipe.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Pipe.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Pipe.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Pipe.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Pipe.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Pipe.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Pipe.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pm", {st_mode=S_IFREG|0444, st_size=5473, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# IO::Pipe.pm\n#\n# Copyright (c) "..., 4096) = 4096
4613 lseek(7, 3425, SEEK_SET) = 3425
4613 lseek(7, 0, SEEK_CUR) = 3425
4613 close(7) = 0
4613 read(6, ", $str;\n\t}\n\n\t@billing_set{@billi"..., 4096) = 4096
4613 brk(0) = 0x3f94000
4613 brk(0x3fb5000) = 0x3fb5000
4613 read(6, "y_opt->{amount} = \"$currency $am"..., 4096) = 4096
4613 read(6, "g(\"Unknown charge type\");\n\t\tmy $"..., 4096) = 4096
4613 brk(0) = 0x3fb5000
4613 brk(0x3fd6000) = 0x3fd6000
4613 read(6, "\t\t}\n\t\tmy $post = join \"&\", @post"..., 4096) = 3232
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Ship.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Ship.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Ship.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Ship.pm", {st_mode=S_IFREG|0444, st_size=33408, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Ship.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Ship - Interchange shipp"..., 4096) = 4096
4613 brk(0) = 0x3fd6000
4613 brk(0x3ff7000) = 0x3ff7000
4613 read(6, "Vend::Util::catfile($base_dir, $"..., 4096) = 4096
4613 read(6, "->[MODE]\n\t\t\t\t);\n\t\t\t\t$row->[MODE]"..., 4096) = 4096
4613 brk(0) = 0x3ff7000
4613 brk(0x4018000) = 0x4018000
4613 read(6, "#::logDebug(\"Check BEGIN, must g"..., 4096) = 4096
4613 read(6, "unless ($db and db_column_exists"..., 4096) = 4096
4613 brk(0) = 0x4018000
4613 brk(0x4039000) = 0x4039000
4613 read(6, "=~ s/\\s+(.*)//;\n\t\t\tmy $extra = $"..., 4096) = 4096
4613 brk(0) = 0x4039000
4613 brk(0x405a000) = 0x405a000
4613 read(6, "at} ||= '%M=%D (%F)' if $opt->{o"..., 4096) = 4096
4613 read(6, "ncy($out, $opt->{noformat}, 0, $"..., 4096) = 4096
4613 brk(0) = 0x405a000
4613 brk(0x407b000) = 0x407b000
4613 read(6, "v=$v\");\n\t\t\tif( $Values->{$v} ) {"..., 4096) = 640
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/UserDB.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/UserDB.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/UserDB.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/UserDB.pm", {st_mode=S_IFREG|0444, st_size=62714, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/UserDB.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::UserDB - Interchange use"..., 4096) = 4096
4613 read(6, "->{cipher}));\n\n return bseria"..., 4096) = 4096
4613 brk(0) = 0x407b000
4613 brk(0x409c000) = 0x409c000
4613 read(6, "turn to a\nprevious session witho"..., 4096) = 4096
4613 read(6, "\t\tdefault: (none)\n\nKey informati"..., 4096) = 4096
4613 read(6, "\t\t\t\t\tCREATED_DATE_UNIX\t\t=> $opti"..., 4096) = 4096
4613 brk(0) = 0x409c000
4613 brk(0x40bd000) = 0x40bd000
4613 read(6, ";\n\t\treturn $cmp < time() ? '' : "..., 4096) = 4096
4613 brk(0) = 0x40bd000
4613 brk(0x40de000) = 0x40de000
4613 read(6, "= split /[\\s=,]+/, $self->{OUTBO"..., 4096) = 4096
4613 brk(0) = 0x40de000
4613 brk(0x40ff000) = 0x40ff000
4613 read(6, "extra, uneval_it($hash);\n\t}\n\n\tfo"..., 4096) = 4096
4613 read(6, " shift;\n\tmy $ref = $self->get_ha"..., 4096) = 4096
4613 brk(0) = 0x40ff000
4613 brk(0x4120000) = 0x4120000
4613 read(6, "ccess to web-connected systems. "..., 4096) = 4096
4613 read(6, "f->{PASSED_USERNAME} ||= $self->"..., 4096) = 4096
4613 brk(0) = 0x4120000
4613 brk(0x4141000) = 0x4141000
4613 read(6, "{MERGED_USER} } ) {\n\t\t\tmy $old ="..., 4096) = 4096
4613 read(6, "\t\t\t\tundef $self;\n\t\t\t\t}\n\t\t\t} else"..., 4096) = 4096
4613 brk(0) = 0x4141000
4613 brk(0x4162000) = 0x4162000
4613 read(6, "e();\n\t\t\t$self->{USERNAME} = lc $"..., 4096) = 4096
4613 read(6, "return;\n}\n\nsub get_cart {\n\tmy($s"..., 4096) = 4096
4613 brk(0) = 0x4162000
4613 brk(0x4183000) = 0x4183000
4613 read(6, "ns);\n\t\tunless (defined $user) {\n"..., 4096) = 1274
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("./Digest/Bcrypt.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("./Digest/Bcrypt.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Page.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Page.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Page.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Page.pm", {st_mode=S_IFREG|0444, st_size=8111, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Page.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Page - Handle Interchang"..., 4096) = 4096
4613 brk(0) = 0x4183000
4613 brk(0x41a4000) = 0x41a4000
4613 read(6, "ay_page();\n}\n\nsub _check_search_"..., 4096) = 4015
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Dispatch.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Dispatch.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Dispatch.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Dispatch.pm", {st_mode=S_IFREG|0444, st_size=49104, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Dispatch.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Dispatch - Handle Interc"..., 4096) = 4096
4613 brk(0) = 0x41a4000
4613 brk(0x41c5000) = 0x41c5000
4613 stat("/home/sam/live/interchange/Vend/Track.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Track.pm", 0x7fff996f88f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Track.pmc", 0x7fff996f89a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Track.pm", {st_mode=S_IFREG|0444, st_size=5286, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Track.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f86d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Track - Interchange User"..., 4096) = 4096
4613 read(7, "rnal server error by Apache, fou"..., 4096) = 1190
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x41c5000
4613 brk(0x41e6000) = 0x41e6000
4613 read(6, " in the mv_check pass, though,\n#"..., 4096) = 4096
4613 read(6, "file,\n\t\t\t\t\t\t\tmode => $mode,\n\t\t\t\t"..., 4096) = 4096
4613 read(6, "nd the order report.\n\t\t\t\t\t# If t"..., 4096) = 4096
4613 brk(0) = 0x41e6000
4613 brk(0x4207000) = 0x4207000
4613 read(6, "lsif (defined $CGI::values{'mv_t"..., 4096) = 4096
4613 read(6, "f ($@) {\n\t\t\t# job terminated due"..., 4096) = 4096
4613 brk(0) = 0x4207000
4613 brk(0x4228000) = 0x4228000
4613 read(6, "_global();\n\t\t\t\t\t&do_process(@_);"..., 4096) = 4096
4613 read(6, "\t\t$Vend::Cfg->{SetGroup}, $msg\n\t"..., 4096) = 4096
4613 brk(0) = 0x4228000
4613 brk(0x4249000) = 0x4249000
4613 read(6, "nd $CGI::cookie =~ /\\b$::Instanc"..., 4096) = 4096
4613 read(6, "us: 403 Forbidden\nContent-Type: "..., 4096) = 4096
4613 brk(0) = 0x4249000
4613 brk(0x426a000) = 0x426a000
4613 read(6, "ame}, $Vend::Session->{source});"..., 4096) = 4096
4613 read(6, "\t\t\"Results of init at %s: \",\n\t\t\t"..., 4096) = 4048
4613 brk(0) = 0x426a000
4613 brk(0x428b000) = 0x428b000
4613 lseek(6, 49103, SEEK_SET) = 49103
4613 lseek(6, 0, SEEK_CUR) = 49103
4613 close(6) = 0
4613 read(3, "$mod\";\n\t\t\tdie $@ if $@;\n\t\t};\n\t\ti"..., 4096) = 4096
4613 read(3, "ause only catalog C<name> to re-"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Getopt/Long.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Getopt/Long.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Getopt/Long.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Getopt/Long.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Getopt/Long.pm", 0x7fff996f8e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pmc", 0x7fff996f8f10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pm", {st_mode=S_IFREG|0444, st_size=82390, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f8c40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#! perl\n\n# Getopt::Long.pm -- Un"..., 4096) = 4096
4613 read(6, ";\n\n # Register the callers pa"..., 4096) = 4096
4613 read(6, "= 0;\n\tprint STDERR\n\t (\"Getopt::"..., 4096) = 4096
4613 brk(0) = 0x428b000
4613 brk(0x42ac000) = 0x42ac000
4613 read(6, " Make sure a valid perl identifi"..., 4096) = 4096
4613 read(6, "}) eq 'ARRAY' ) {\n\t\t\tprint STDER"..., 4096) = 4096
4613 brk(0) = 0x42ac000
4613 brk(0x42cd000) = 0x42cd000
4613 read(6, "\n\t\t $@;\n\t\t};\n\t\tprint STDERR ("..., 4096) = 4096
4613 read(6, " foreach ( @names ) {\n\n\t$_ = "..., 4096) = 4096
4613 brk(0) = 0x42cd000
4613 brk(0x42ee000) = 0x42ee000
4613 read(6, "it{help};\n\t\t}\n\t }\n\t # Now "..., 4096) = 4096
4613 read(6, " eq $argend ||\n\t $arg =~ /^$p"..., 4096) = 4096
4613 brk(0) = 0x42ee000
4613 brk(0x430f000) = 0x430f000
4613 read(6, "$opt ( @options ) {\n\tmy $try = l"..., 4096) = 4096
4613 read(6, "equire Pod::Usage;\n\timport Pod::"..., 4096) = 4096
4613 read(6, "rovided support for handling the"..., 4096) = 4096
4613 read(6, "that follows the option and assi"..., 4096) = 4096
4613 read(6, "red. For a hash destination,\nthe"..., 4096) = 4096
4613 read(6, "rary sequence of characters. It "..., 4096) = 4096
4613 read(6, "sFromArray(\\@ARGV, ... );\n\nThis "..., 4096) = 4096
4613 read(6, "an be enabled with:\n\n Getopt:"..., 4096) = 4096
4613 read(6, "f C<permute> is enabled, this me"..., 4096) = 4096
4613 read(6, "essing will terminate at the\nfir"..., 4096) = 4096
4613 read(6, "hese variables must be\npre-decla"..., 4096) = 4096
4613 read(6, "undation; either version 2 of th"..., 4096) = 470
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(3, " \"Can't set two modes -$mode and"..., 4096) = 4096
4613 brk(0) = 0x430f000
4613 brk(0x4330000) = 0x4330000
4613 read(3, " a couple of arrays\n\tsetup_escap"..., 4096) = 4096
4613 read(3, " $g->{'script'}.\\n\";\n\t\t\t\twarn \"S"..., 4096) = 4096
4613 read(3, " Jos\351 M\252 Revuelto\n "..., 4096) = 2705
4613 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/usr/sbin/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
4613 connect(6, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
4613 close(6) = 0
4613 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
4613 connect(6, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
4613 close(6) = 0
4613 open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=1728, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46dec000
4613 read(6, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) = 1728
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 munmap(0x7fde46dec000, 4096) = 0
4613 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=29668, ...}) = 0
4613 mmap(NULL, 29668, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7fde46de5000
4613 close(6) = 0
4613 open("/lib64/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\"\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0755, st_size=58288, ...}) = 0
4613 mmap(NULL, 2144360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7fde3c89a000
4613 mprotect(0x7fde3c8a5000, 2093056, PROT_NONE) = 0
4613 mmap(0x7fde3caa4000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa000) = 0x7fde3caa4000
4613 close(6) = 0
4613 mprotect(0x7fde3caa4000, 4096, PROT_READ) = 0
4613 munmap(0x7fde46de5000, 29668) = 0
4613 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=1185, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46dec000
4613 read(6, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1185
4613 close(6) = 0
4613 munmap(0x7fde46dec000, 4096) = 0
4613 open("/dev/urandom", O_RDONLY) = 6
4613 read(6, "n\f\226u", 4) = 4
4613 close(6) = 0
4613 brk(0) = 0x4330000
4613 brk(0x4351000) = 0x4351000
4613 brk(0) = 0x4351000
4613 brk(0) = 0x4351000
4613 brk(0x4350000) = 0x4350000
4613 brk(0) = 0x4350000
4613 stat("/home/sam/live/interchange/Vend/Control.pmc", 0x7fff996f9460) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Control.pm", 0x7fff996f93b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Control.pmc", 0x7fff996f9460) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Control.pm", {st_mode=S_IFREG|0444, st_size=6421, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Control.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f9190) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Control - Routines that "..., 4096) = 4096
4613 read(6, "l::Catalog{$name};\n\n\tfor(@aliase"..., 4096) = 2325
4613 brk(0) = 0x4350000
4613 brk(0x4371000) = 0x4371000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/etc/interchange.pid", {st_mode=S_IFREG|0600, st_size=5, ...}) = 0
4613 open("/home/sam/live/interchange/etc/interchange.pid", O_RDWR|O_CREAT|O_APPEND, 0666) = 6
4613 lseek(6, 0, SEEK_END) = 5
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff996f91b0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 5
4613 fstat(6, {st_mode=S_IFREG|0600, st_size=5, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 lseek(6, 0, SEEK_SET) = 0
4613 lseek(6, 0, SEEK_CUR) = 0
4613 flock(6, LOCK_EX|LOCK_NB) = -1 EAGAIN (Resource temporarily unavailable)
4613 open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 7
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=2502, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7fde46dec000
4613 read(7, "# Locale name alias data base.\n#"..., 4096) = 2502
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 munmap(0x7fde46dec000, 4096) = 0
4613 open("/usr/share/locale/en_US.UTF-8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 open("/usr/share/locale/en_US.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 open("/usr/share/locale/en_US/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 open("/usr/share/locale/en.UTF-8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 open("/usr/share/locale/en.utf8/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 open("/usr/share/locale/en/LC_MESSAGES/libc.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
4613 read(6, "4470\n", 4096) = 5
4613 write(1, "Killing Interchange server 4470 "..., 43) = 43
4613 kill(4470, SIGTERM) = 0
4613 close(6) = 0
4613 rt_sigprocmask(SIG_BLOCK, [CHLD], [], 8) = 0
4613 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
4613 rt_sigprocmask(SIG_SETMASK, [], NULL, 8) = 0
4613 nanosleep({3, 0}, 0x7fff996f93d0) = 0
4613 lseek(4, 10405, SEEK_SET) = 10405
4613 lseek(4, 0, SEEK_CUR) = 10405
4613 rt_sigaction(SIGFPE, {SIG_DFL, [], SA_RESTORER, 0x7fde45ce8650}, {SIG_IGN, [FPE], SA_RESTORER|SA_RESTART, 0x7fde45ce8650}, 8) = 0
4613 execve("/home/sam/live/interchange/bin/interchange", ["/home/sam/live/interchange/bin/i"..., "--Ignore", "-r"], [/* 31 vars */]) = 0
4613 brk(0) = 0xe94000
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bfa6000
4613 access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
4613 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
4613 fstat(3, {st_mode=S_IFREG|0644, st_size=29668, ...}) = 0
4613 mmap(NULL, 29668, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6e6bf9e000
4613 close(3) = 0
4613 open("/lib64/libnsl.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20A\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=113320, ...}) = 0
4613 mmap(NULL, 2198200, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6bb6d000
4613 mprotect(0x7f6e6bb83000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6bd82000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x15000) = 0x7f6e6bd82000
4613 mmap(0x7f6e6bd84000, 6840, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bd84000
4613 close(3) = 0
4613 open("/lib64/libdl.so.2", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\16\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=19512, ...}) = 0
4613 mmap(NULL, 2109744, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6b969000
4613 mprotect(0x7f6e6b96c000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6bb6b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x2000) = 0x7f6e6bb6b000
4613 close(3) = 0
4613 open("/lib64/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\260T\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=1141552, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bf9d000
4613 mmap(NULL, 3150168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6b667000
4613 mprotect(0x7f6e6b768000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6b967000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x100000) = 0x7f6e6b967000
4613 close(3) = 0
4613 open("/lib64/libcrypt.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\16\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=40816, ...}) = 0
4613 mmap(NULL, 2318912, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6b430000
4613 mprotect(0x7f6e6b438000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6b637000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x7000) = 0x7f6e6b637000
4613 mmap(0x7f6e6b639000, 184896, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e6b639000
4613 close(3) = 0
4613 open("/lib64/libutil.so.1", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\20\17\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=14608, ...}) = 0
4613 mmap(NULL, 2105616, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6b22d000
4613 mprotect(0x7f6e6b22f000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6b42e000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f6e6b42e000
4613 close(3) = 0
4613 open("/lib64/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\3\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\34\2\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=2107760, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bf9c000
4613 mmap(NULL, 3932736, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6ae6c000
4613 mprotect(0x7f6e6b022000, 2097152, PROT_NONE) = 0
4613 mmap(0x7f6e6b222000, 24576, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1b6000) = 0x7f6e6b222000
4613 mmap(0x7f6e6b228000, 16960, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x7f6e6b228000
4613 close(3) = 0
4613 open("/lib64/libfreebl3.so", O_RDONLY|O_CLOEXEC) = 3
4613 read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\v\0\0\0\0\0\0"..., 832) = 832
4613 fstat(3, {st_mode=S_IFREG|0755, st_size=11376, ...}) = 0
4613 mmap(NULL, 2105536, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 3, 0) = 0x7f6e6ac69000
4613 mprotect(0x7f6e6ac6b000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6ae6a000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 3, 0x1000) = 0x7f6e6ae6a000
4613 close(3) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bf9b000
4613 mmap(NULL, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bf99000
4613 arch_prctl(ARCH_SET_FS, 0x7f6e6bf99740) = 0
4613 mprotect(0x7f6e6b222000, 16384, PROT_READ) = 0
4613 mprotect(0x7f6e6bb6b000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6ae6a000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6b42e000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6b637000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6b967000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6bd82000, 4096, PROT_READ) = 0
4613 mprotect(0x72c000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e6bfa7000, 4096, PROT_READ) = 0
4613 munmap(0x7f6e6bf9e000, 29668) = 0
4613 rt_sigaction(SIGFPE, {SIG_IGN, [FPE], SA_RESTORER|SA_RESTART, 0x7f6e6aea1650}, {SIG_DFL, [], 0}, 8) = 0
4613 brk(0) = 0xe94000
4613 brk(0xeb5000) = 0xeb5000
4613 brk(0) = 0xeb5000
4613 getuid() = 1000
4613 geteuid() = 1000
4613 getgid() = 1000
4613 getegid() = 1000
4613 open("/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
4613 fstat(3, {st_mode=S_IFREG|0644, st_size=106065056, ...}) = 0
4613 mmap(NULL, 106065056, PROT_READ, MAP_PRIVATE, 3, 0) = 0x7f6e64742000
4613 close(3) = 0
4613 open("/dev/urandom", O_RDONLY) = 3
4613 read(3, "\ra\1\260", 4) = 4
4613 close(3) = 0
4613 readlink("/proc/self/exe", "/home/sam/.plenv/versions/5.10.1"..., 4095) = 47
4613 stat("/home/sam/local/lib/perl5/5.10.1/x86_64-linux", 0x7fff77fb3370) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/5.10.1", 0x7fff77fb3370) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 ioctl(0, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(0, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 ioctl(1, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(1, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 ioctl(2, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
4613 lseek(2, 0, SEEK_CUR) = -1 ESPIPE (Illegal seek)
4613 open("/home/sam/live/interchange/bin/interchange", O_RDONLY) = 3
4613 ioctl(3, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3250) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(3, 0, SEEK_CUR) = 0
4613 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
4613 rt_sigaction(SIGCHLD, NULL, {SIG_DFL, [], 0}, 8) = 0
4613 getpid() = 4613
4613 read(3, "#!/home/sam/.plenv/versions/5.10"..., 4096) = 4096
4613 brk(0) = 0xeb5000
4613 brk(0xed6000) = 0xed6000
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/strict.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/strict.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/strict.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/strict.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/strict.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/strict.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pm", {st_mode=S_IFREG|0444, st_size=3716, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/strict.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package strict;\n\n$strict::VERSIO"..., 4096) = 3716
4613 lseek(4, 878, SEEK_SET) = 878
4613 lseek(4, 0, SEEK_CUR) = 878
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Config.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pm", {st_mode=S_IFREG|0444, st_size=2973, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# This file was created by confi"..., 4096) = 2973
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/warnings.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pm", {st_mode=S_IFREG|0444, st_size=16133, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# -*- buffer-read-only: t -*-\n# "..., 4096) = 4096
4613 read(4, "\t=> 66,\n 'printf'\t\t=> 68,\n "..., 4096) = 4096
4613 read(4, "00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x"..., 4096) = 4096
4613 brk(0) = 0xed6000
4613 brk(0xef7000) = 0xef7000
4613 read(4, "ory '$word'\")}\n }\n\n return"..., 4096) = 3845
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 read(3, "NV{MINIVEND_STORABLE} = 1;\n\t}\n\n\t"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Config_heavy.pl", 0x7fff77fb2ae0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config_heavy.pl", 0x7fff77fb2ae0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config_heavy.pl", 0x7fff77fb2ae0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config_heavy.pl", 0x7fff77fb2ae0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_heavy.pl", {st_mode=S_IFREG|0444, st_size=39854, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_heavy.pl", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb28c0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# This file was created by confi"..., 4096) = 4096
4613 read(4, "CE -D_FILE_OFFSET_BITS=64'\nccnam"..., 4096) = 4096
4613 read(4, "32_TYPE__=int __INT_LEAST64_MAX_"..., 4096) = 4096
4613 read(4, "'\nd_bsdsetpgrp='undef'\nd_builtin"..., 4096) = 4096
4613 brk(0) = 0xef7000
4613 brk(0xf1a000) = 0xf1a000
4613 brk(0) = 0xf1a000
4613 brk(0) = 0xf1a000
4613 brk(0xf18000) = 0xf18000
4613 brk(0) = 0xf18000
4613 read(4, "efine'\nd_mprotect='define'\nd_msg"..., 4096) = 4096
4613 read(4, "tile='define'\nd_vprintf='define'"..., 4096) = 4096
4613 read(4, "n='define'\ni_sysmode='undef'\ni_s"..., 4096) = 4096
4613 read(4, "=''\nmake='make'\nmake_set_make='#"..., 4096) = 4096
4613 read(4, "\"UNUSED\", 0'\nsig_num='0 1 2 3 4 "..., 4096) = 4096
4613 read(4, "g_SH_expanded = \"\\n$_\" . << 'EOV"..., 4096) = 2990
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 brk(0) = 0xf18000
4613 brk(0xf3e000) = 0xf3e000
4613 stat("/home/sam/live/interchange/Config_git.pl", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Config_git.pl", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Config_git.pl", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Config_git.pl", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_git.pl", {st_mode=S_IFREG|0444, st_size=409, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Config_git.pl", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb26f0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "################################"..., 4096) = 409
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/interchange.cfg", {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 stat("/home/sam/live/interchange/_session_storable", {st_mode=S_IFREG|0664, st_size=40, ...}) = 0
4613 stat("/home/sam/live/interchange/_db_storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/vars.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/vars.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/vars.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/vars.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/vars.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pm", {st_mode=S_IFREG|0444, st_size=2358, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/vars.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package vars;\n\nuse 5.006;\n\nour $"..., 4096) = 2358
4613 stat("/home/sam/live/interchange/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/warnings/register.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/warnings/register.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/warnings/register.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/warnings/register.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/warnings/register.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pm", {st_mode=S_IFREG|0444, st_size=1023, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/warnings/register.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package warnings::register;\n\nour"..., 4096) = 1023
4613 read(5, "", 4096) = 0
4613 close(5) = 0
4613 lseek(4, 1148, SEEK_SET) = 1148
4613 lseek(4, 0, SEEK_CUR) = 1148
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Fcntl.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Fcntl.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Fcntl.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Fcntl.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Fcntl.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Fcntl.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Fcntl.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Fcntl.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pm", {st_mode=S_IFREG|0444, st_size=5445, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Fcntl.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Fcntl;\n\n=head1 NAME\n\nFcn"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/XSLoader.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/XSLoader.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/XSLoader.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/XSLoader.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/XSLoader.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/XSLoader.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/XSLoader.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/XSLoader.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pm", {st_mode=S_IFREG|0444, st_size=10523, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/XSLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Generated from XSLoader.pm.PL "..., 4096) = 4096
4613 lseek(5, 3468, SEEK_SET) = 3468
4613 lseek(5, 0, SEEK_CUR) = 3468
4613 close(5) = 0
4613 read(4, "T S_ENFMT\n\t\t S_IRUSR S_IWUSR"..., 4096) = 1349
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.so", {st_mode=S_IFREG|0555, st_size=21773, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Fcntl/Fcntl.so", O_RDONLY|O_CLOEXEC) = 5
4613 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\240\33\0\0\0\0\0\0"..., 832) = 832
4613 fstat(5, {st_mode=S_IFREG|0555, st_size=21773, ...}) = 0
4613 mmap(NULL, 2113768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e6453d000
4613 mprotect(0x7f6e64540000, 2097152, PROT_NONE) = 0
4613 mmap(0x7f6e64740000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x3000) = 0x7f6e64740000
4613 close(5) = 0
4613 mprotect(0x7f6e64740000, 4096, PROT_READ) = 0
4613 brk(0) = 0xf3e000
4613 brk(0xf5f000) = 0xf5f000
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Exporter.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pm", {st_mode=S_IFREG|0444, st_size=18595, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Exporter;\n\nrequire 5.006"..., 4096) = 4096
4613 lseek(4, 2290, SEEK_SET) = 2290
4613 lseek(4, 0, SEEK_CUR) = 2290
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/DBI.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/DBI.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DBI.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DBI.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DBI.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DBI.pm", {st_mode=S_IFREG|0444, st_size=316207, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/DBI.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 brk(0) = 0xf5f000
4613 brk(0xf80000) = 0xf80000
4613 read(4, "# $Id$\n# vim: ts=8:sw=4:et\n#\n# C"..., 4096) = 4096
4613 read(4, "org.\n\n=head3 Reporting a Bug\n\nIf"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Carp.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pm", {st_mode=S_IFREG|0444, st_size=7611, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package Carp;\n\nour $VERSION = '1"..., 4096) = 4096
4613 lseek(5, 1458, SEEK_SET) = 1458
4613 lseek(5, 0, SEEK_CUR) = 1458
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/DynaLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/DynaLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DynaLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/DynaLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DynaLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/DynaLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/DynaLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/DynaLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pm", {st_mode=S_IFREG|0444, st_size=25033, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/DynaLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "\n# Generated from DynaLoader_pm."..., 4096) = 4096
4613 read(5, "\\n\".\n\t\" dynamic loading or has "..., 4096) = 4096
4613 lseek(5, 7422, SEEK_SET) = 7422
4613 lseek(5, 0, SEEK_CUR) = 7422
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/AutoLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/AutoLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/AutoLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/AutoLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/AutoLoader.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pm", {st_mode=S_IFREG|0444, st_size=14997, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/AutoLoader.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 brk(0) = 0xf80000
4613 brk(0xfa1000) = 0xfa1000
4613 read(5, "package AutoLoader;\n\nuse strict;"..., 4096) = 4096
4613 read(5, "owever, if @INC is a relative pa"..., 4096) = 4096
4613 lseek(5, 5403, SEEK_SET) = 5403
4613 lseek(5, 0, SEEK_CUR) = 5403
4613 close(5) = 0
4613 read(4, "EXPORT_TAGS{preparse_flags} = [ "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/auto/DBI", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/DBI", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.so", {st_mode=S_IFREG|0555, st_size=134344, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/DBI/DBI.so", O_RDONLY|O_CLOEXEC) = 5
4613 read(5, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0206\0\0\0\0\0\0"..., 832) = 832
4613 fstat(5, {st_mode=S_IFREG|0555, st_size=134344, ...}) = 0
4613 mmap(NULL, 2217184, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 5, 0) = 0x7f6e6431f000
4613 mprotect(0x7f6e6433c000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6453b000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 5, 0x1c000) = 0x7f6e6453b000
4613 close(5) = 0
4613 mprotect(0x7f6e6453b000, 4096, PROT_READ) = 0
4613 brk(0) = 0xfa1000
4613 brk(0xfc2000) = 0xfc2000
4613 stat("/home/sam/live/interchange/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Exporter/Heavy.pm", 0x7fff77fb2900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Exporter/Heavy.pm", 0x7fff77fb2900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Exporter/Heavy.pm", 0x7fff77fb2900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Exporter/Heavy.pm", 0x7fff77fb2900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Exporter/Heavy.pm", 0x7fff77fb2900) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pmc", 0x7fff77fb29b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pm", {st_mode=S_IFREG|0444, st_size=6491, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Exporter/Heavy.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb26e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package Exporter::Heavy;\n\nuse st"..., 4096) = 4096
4613 read(5, " {});\n\n if (@$fail) {\n\tif (!%"..., 4096) = 2395
4613 brk(0) = 0xfc2000
4613 brk(0xfe3000) = 0xfe3000
4613 read(5, "", 4096) = 0
4613 close(5) = 0
4613 read(4, "olid', },\n spatialite_"..., 4096) = 4096
4613 read(4, "tr [, @bind_params ] ]'], O=>0x2"..., 4096) = 4096
4613 brk(0) = 0xfe3000
4613 brk(0x1004000) = 0x1004000
4613 read(4, "I::installed_drh;\n}\n\n\nsub CLONE "..., 4096) = 4096
4613 read(4, " (),\n\t # attributes in DSN ta"..., 4096) = 4096
4613 read(4, "bi_connect_closure} = $connect_c"..., 4096) = 4096
4613 brk(0) = 0x1004000
4613 brk(0x1025000) = 0x1025000
4613 read(4, " foreach my $suffix ('::db','"..., 4096) = 4096
4613 read(4, "(%seen_dir, %seen_dbd);\n my $"..., 4096) = 4096
4613 brk(0) = 0x1025000
4613 brk(0x1046000) = 0x1046000
4613 read(4, "b) : unpack(\"C*\", $b);\n my $i"..., 4096) = 4096
4613 read(4, ", undef, '');\n my $attr = {\n\t"..., 4096) = 4096
4613 brk(0) = 0x1046000
4613 brk(0x1067000) = 0x1067000
4613 read(4, " into the DBI dispatcher\n\t# DBD:"..., 4096) = 4096
4613 read(4, "$cb and (my $conn_cb = $cb->{\"co"..., 4096) = 4096
4613 brk(0) = 0x1067000
4613 brk(0x1088000) = 0x1088000
4613 read(4, "ashref { return _do_selectrow('"..., 4096) = 4096
4613 read(4, "or Informix I recall)\n\t\t my $"..., 4096) = 4096
4613 brk(0) = 0x1088000
4613 brk(0x10a9000) = 0x10a9000
4613 read(4, "\n\n sub bind_columns {\n\tmy $st"..., 4096) = 4096
4613 read(4, "uple_status, [ $sth->err, $sth->"..., 4096) = 4096
4613 brk(0) = 0x10a9000
4613 brk(0x10ca000) = 0x10ca000
4613 read(4, "ksize, \\$buf))) {\n\t print $fh"..., 4096) = 4096
4613 lseek(4, 74186, SEEK_SET) = 74186
4613 lseek(4, 0, SEEK_CUR) = 74186
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Scalar/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Scalar/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Scalar/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Scalar/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Scalar/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Scalar/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Scalar/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Scalar/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pm", {st_mode=S_IFREG|0444, st_size=8059, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Scalar/Util.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Scalar::Util.pm\n#\n# Copyright "..., 4096) = 4096
4613 lseek(4, 1686, SEEK_SET) = 1686
4613 lseek(4, 0, SEEK_CUR) = 1686
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/List/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/List/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/List/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/List/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/List/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/List/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/List/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/List/Util.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pm", {st_mode=S_IFREG|0444, st_size=6698, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/List/Util.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# List::Util.pm\n#\n# Copyright (c"..., 4096) = 4096
4613 lseek(4, 1066, SEEK_SET) = 1066
4613 lseek(4, 0, SEEK_CUR) = 1066
4613 close(4) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.so", {st_mode=S_IFREG|0555, st_size=32996, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/List/Util/Util.so", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0$\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0555, st_size=32996, ...}) = 0
4613 mmap(NULL, 2122256, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f6e64118000
4613 mprotect(0x7f6e6411e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e6431d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f6e6431d000
4613 close(4) = 0
4613 mprotect(0x7f6e6431d000, 4096, PROT_READ) = 0
4613 brk(0) = 0x10ca000
4613 brk(0x10eb000) = 0x10eb000
4613 stat("/home/sam/live/interchange/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("./Net/LDAP.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("./Net/LDAP.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/GDBM_File.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/GDBM_File.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/GDBM_File.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/GDBM_File.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/GDBM_File.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/GDBM_File.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/GDBM_File.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/GDBM_File.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pm", {st_mode=S_IFREG|0444, st_size=1819, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/GDBM_File.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# GDBM_File.pm -- Perl 5 interfa"..., 4096) = 1819
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Tie/Hash.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Tie/Hash.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Tie/Hash.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Tie/Hash.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Tie/Hash.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pm", {st_mode=S_IFREG|0444, st_size=7311, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Tie/Hash.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package Tie::Hash;\n\nour $VERSION"..., 4096) = 4096
4613 read(4, " reference, and the remaining me"..., 4096) = 3215
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.so", {st_mode=S_IFREG|0555, st_size=32111, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/GDBM_File/GDBM_File.so", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\36\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0555, st_size=32111, ...}) = 0
4613 mmap(NULL, 2122176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f6e63f11000
4613 mprotect(0x7f6e63f17000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e64116000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x5000) = 0x7f6e64116000
4613 close(4) = 0
4613 open("/lib/../lib64/tls/x86_64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/tls/x86_64", 0x7fff77fb2410) = -1 ENOENT (No such file or directory)
4613 open("/lib/../lib64/tls/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/tls", {st_mode=S_IFDIR|0555, st_size=4096, ...}) = 0
4613 open("/lib/../lib64/x86_64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 stat("/lib/../lib64/x86_64", 0x7fff77fb2410) = -1 ENOENT (No such file or directory)
4613 open("/lib/../lib64/libgdbm.so.4", O_RDONLY|O_CLOEXEC) = 4
4613 read(4, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\37\0\0\0\0\0\0"..., 832) = 832
4613 fstat(4, {st_mode=S_IFREG|0755, st_size=36720, ...}) = 0
4613 mmap(NULL, 2130496, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 4, 0) = 0x7f6e63d08000
4613 mprotect(0x7f6e63d0f000, 2097152, PROT_NONE) = 0
4613 mmap(0x7f6e63f0f000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 4, 0x7000) = 0x7f6e63f0f000
4613 close(4) = 0
4613 mprotect(0x7f6e63f0f000, 4096, PROT_READ) = 0
4613 mprotect(0x7f6e64116000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/GDBM.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/GDBM.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/GDBM.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/GDBM.pm", {st_mode=S_IFREG|0444, st_size=5723, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/GDBM.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::GDBM - Access an "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Table/Common.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/Common.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Common.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Common.pm", {st_mode=S_IFREG|0444, st_size=38748, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/Common.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Table::Common - Common a"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Symbol.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Symbol.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Symbol.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Symbol.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Symbol.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pm", {st_mode=S_IFREG|0444, st_size=4794, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Symbol.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Symbol;\n\n=head1 NAME\n\nSy"..., 4096) = 4096
4613 read(6, "{\n my $pkg = shift;\n\n # ex"..., 4096) = 698
4613 brk(0) = 0x10eb000
4613 brk(0x110c000) = 0x110c000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Util.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Util.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Util.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Util.pm", {st_mode=S_IFREG|0444, st_size=61374, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Util.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Util - Interchange utili"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Errno.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Errno.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Errno.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Errno.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Errno.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Errno.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Errno.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Errno.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pm", {st_mode=S_IFREG|0444, st_size=7627, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Errno.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "#\n# This file is auto-generated."..., 4096) = 4096
4613 read(7, "2 }\nsub ELIBEXEC () { 83 }\nsub E"..., 4096) = 3531
4613 brk(0) = 0x110c000
4613 brk(0x112d000) = 0x112d000
4613 lseek(7, 6276, SEEK_SET) = 6276
4613 lseek(7, 0, SEEK_CUR) = 6276
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Text/ParseWords.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/ParseWords.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/ParseWords.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/ParseWords.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Text/ParseWords.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pm", {st_mode=S_IFREG|0444, st_size=7927, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Text/ParseWords.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Text::ParseWords;\n\nuse s"..., 4096) = 4096
4613 read(7, ")'//s) {\n\t\t($snippet = $1) =~ s#"..., 4096) = 3831
4613 lseek(7, 4490, SEEK_SET) = 4490
4613 lseek(7, 0, SEEK_CUR) = 4490
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Vend/Safe.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Safe.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Safe.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Safe.pm", {st_mode=S_IFREG|0444, st_size=2543, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Safe.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Safe - utility methods f"..., 4096) = 2543
4613 stat("/home/sam/live/interchange/Vend/CharSet.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/CharSet.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CharSet.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CharSet.pm", {st_mode=S_IFREG|0444, st_size=3570, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/CharSet.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::CharSet - utility method"..., 4096) = 3570
4613 stat("/home/sam/live/interchange/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/utf8.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pm", {st_mode=S_IFREG|0444, st_size=6918, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package utf8;\n\n$utf8::hint_bits "..., 4096) = 4096
4613 brk(0) = 0x112d000
4613 brk(0x114e000) = 0x114e000
4613 lseek(9, 378, SEEK_SET) = 378
4613 lseek(9, 0, SEEK_CUR) = 378
4613 close(9) = 0
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/utf8_heavy.pl", 0x7fff77fb0f30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/utf8_heavy.pl", 0x7fff77fb0f30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/utf8_heavy.pl", 0x7fff77fb0f30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/utf8_heavy.pl", 0x7fff77fb0f30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/utf8_heavy.pl", 0x7fff77fb0f30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8_heavy.pl", {st_mode=S_IFREG|0444, st_size=8001, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/utf8_heavy.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0d10) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package utf8;\nuse strict;\nuse wa"..., 4096) = 4096
4613 read(8, "nical{$canonical} || $utf8::Cano"..., 4096) = 3905
4613 brk(0) = 0x114e000
4613 brk(0x116f000) = 0x116f000
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/PVA.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/PVA.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/PVA.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/PVA.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/PVA.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", {st_mode=S_IFREG|0444, st_size=27017, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "\n'expandsonnfd',\n'XONFD',\n'age',"..., 4096) = 4096
4613 read(8, "y',\n'Yes',\n'n',\n'No',\n},\n'XIDC',"..., 4096) = 4096
4613 brk(0) = 0x116f000
4613 brk(0x1190000) = 0x1190000
4613 read(8, "QC',\n{\n'y',\n'Yes',\n'n',\n'No',\n},"..., 4096) = 4096
4613 read(8, ",\n'Y',\n'no',\n'N',\n},\n'STerm',\n{\n"..., 4096) = 4096
4613 brk(0) = 0x1190000
4613 brk(0x11b1000) = 0x11b1000
4613 read(8, "',\n},\n'Hex',\n{\n'yes',\n'Y',\n'no',"..., 4096) = 4096
4613 brk(0) = 0x11b1000
4613 brk(0x11d2000) = 0x11d2000
4613 read(8, "y',\n'Y',\n'n',\n'N',\n},\n'ODI',\n{\n'"..., 4096) = 2441
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x11d2000
4613 brk(0x11f3000) = 0x11f3000
4613 brk(0) = 0x11f3000
4613 brk(0x1214000) = 0x1214000
4613 stat("/home/sam/live/interchange/unicore/Exact.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Exact.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Exact.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Exact.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Exact.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", {st_mode=S_IFREG|0444, st_size=1680, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 1680
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/Word.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/Word.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/Word.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/Word.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/Word.pl", 0x7fff77fb0d60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Word.pl", {st_mode=S_IFREG|0444, st_size=5740, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Word.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b40) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "1A0\t31B7\t\n31F0\t31FF\t\n3220\t3229\t\n"..., 4096) = 1644
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/Canonical.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Canonical.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Canonical.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Canonical.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Canonical.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", {st_mode=S_IFREG|0444, st_size=24610, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0c50) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "eprecated\t\t\t\t => 'Deprecat',\n"..., 4096) = 4096
4613 read(8, " => 'InCjkRad',\n\n # InCjkStro"..., 4096) = 4096
4613 read(8, "'InLatin2',\n\n # InLatinExtendedA"..., 4096) = 4096
4613 read(8, "ugu',\n\n # InThaana\n inthaana\t\t"..., 4096) = 4096
4613 read(8, "ca',\n\n oriya\t\t\t\t => 'Orya',"..., 4096) = 4096
4613 read(8, "ables\t\t\t\t => 'InYiSyll',\n\n);\n"..., 4096) = 34
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/IdContin.pl", 0x7fff77fb0ca0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/IdContin.pl", 0x7fff77fb0ca0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/IdContin.pl", 0x7fff77fb0ca0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/IdContin.pl", 0x7fff77fb0ca0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/IdContin.pl", 0x7fff77fb0ca0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/IdContin.pl", {st_mode=S_IFREG|0444, st_size=5600, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/IdContin.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0a80) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(8, "000\tA48C\t\nA500\tA60C\t\nA610\tA62B\t\n"..., 4096) = 1504
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/unicore/lib/gc_sc/Digit.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/lib/gc_sc/Digit.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/lib/gc_sc/Digit.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/lib/gc_sc/Digit.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/lib/gc_sc/Digit.pl", 0x7fff77fb0e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Digit.pl", {st_mode=S_IFREG|0444, st_size=773, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/lib/gc_sc/Digit.pl", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0c50) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 773
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Encode.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pm", {st_mode=S_IFREG|0444, st_size=29731, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n# $Id: Encode.pm,v 2.35 2009/0"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/base.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/base.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/base.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/base.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/base.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pm", {st_mode=S_IFREG|0444, st_size=6986, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/base.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package base;\n\nuse strict 'vars'"..., 4096) = 4096
4613 read(9, "private\n # ones to the derive"..., 4096) = 2890
4613 lseek(9, 4886, SEEK_SET) = 4886
4613 lseek(9, 0, SEEK_CUR) = 4886
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Encode/Alias.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Alias.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Alias.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Alias.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Alias.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Alias.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Alias.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Alias.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pm", {st_mode=S_IFREG|0444, st_size=11735, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Alias.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Encode::Alias;\nuse stric"..., 4096) = 4096
4613 read(9, "UTF-?(16|32)-?BE$/i => '\"UTF-$1B"..., 4096) = 4096
4613 read(9, "' );\n define_alias( qr/\\b"..., 4096) = 3543
4613 lseek(9, 8542, SEEK_SET) = 8542
4613 lseek(9, 0, SEEK_CUR) = 8542
4613 close(9) = 0
4613 brk(0) = 0x1214000
4613 brk(0x1235000) = 0x1235000
4613 read(8, "$check and !ref $check and !( $c"..., 4096) = 4096
4613 read(8, "rrently ignores $chk\n "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/bytes.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/bytes.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/bytes.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/bytes.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/bytes.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pm", {st_mode=S_IFREG|0444, st_size=2384, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/bytes.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package bytes;\n\nour $VERSION = '"..., 4096) = 2384
4613 lseek(9, 446, SEEK_SET) = 446
4613 lseek(9, 0, SEEK_CUR) = 446
4613 close(9) = 0
4613 lseek(8, 8962, SEEK_SET) = 8962
4613 lseek(8, 0, SEEK_CUR) = 8962
4613 close(8) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.so", {st_mode=S_IFREG|0555, st_size=46951, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Encode/Encode.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220,\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=46951, ...}) = 0
4613 mmap(NULL, 2134568, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f6e63afe000
4613 mprotect(0x7f6e63b07000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e63d06000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x8000) = 0x7f6e63d06000
4613 close(8) = 0
4613 mprotect(0x7f6e63d06000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Encode/Config.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Config.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Config.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Config.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Config.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Config.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Config.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Config.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pm", {st_mode=S_IFREG|0444, st_size=6065, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Config.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n# Demand-load module list\n#\npa"..., 4096) = 4096
4613 brk(0) = 0x1235000
4613 brk(0x1256000) = 0x1256000
4613 read(8, "16LE' => 'Encode::Unicode',\n "..., 4096) = 1969
4613 lseek(8, 6001, SEEK_SET) = 6001
4613 lseek(8, 0, SEEK_CUR) = 6001
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("./Encode/ConfigLocal.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("./Encode/ConfigLocal.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Encoding.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Encode/Encoding.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Encoding.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Encode/Encoding.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Encoding.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Encode/Encoding.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Encoding.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Encode/Encoding.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pm", {st_mode=S_IFREG|0444, st_size=9095, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Encode/Encoding.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Encode::Encoding;\n\n# Bas"..., 4096) = 4096
4613 lseek(8, 1496, SEEK_SET) = 1496
4613 lseek(8, 0, SEEK_CUR) = 1496
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Safe.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Safe.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Safe.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pm", {st_mode=S_IFREG|0444, st_size=18793, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Safe.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Safe;\n\nuse 5.003_11;\nuse"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Carp/Heavy.pm", 0x7fff77fb0de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Carp/Heavy.pm", 0x7fff77fb0de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Carp/Heavy.pm", 0x7fff77fb0de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Carp/Heavy.pm", 0x7fff77fb0de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Carp/Heavy.pm", 0x7fff77fb0de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pmc", 0x7fff77fb0e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pm", {st_mode=S_IFREG|0444, st_size=8279, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Carp/Heavy.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0bc0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Carp::Heavy uses some variable"..., 4096) = 4096
4613 read(9, " [{$pkg => $pkg}, [trusts_direct"..., 4096) = 4096
4613 brk(0) = 0x1256000
4613 brk(0x1277000) = 0x1277000
4613 read(9, "{\"$class\\::CARP_NOT\"}\n ? @{"..., 4096) = 87
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Opcode.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Opcode.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Opcode.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Opcode.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Opcode.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Opcode.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Opcode.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Opcode.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pm", {st_mode=S_IFREG|0444, st_size=15490, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Opcode.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Opcode;\n\nuse 5.006_001;\n"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/subs.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/subs.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/subs.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/subs.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/subs.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pm", {st_mode=S_IFREG|0444, st_size=842, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/subs.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "package subs;\n\nour $VERSION = '1"..., 4096) = 842
4613 read(10, "", 4096) = 0
4613 close(10) = 0
4613 fcntl(9, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.so", {st_mode=S_IFREG|0555, st_size=28416, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Opcode/Opcode.so", O_RDONLY|O_CLOEXEC) = 10
4613 read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\0\37\0\0\0\0\0\0"..., 832) = 832
4613 fstat(10, {st_mode=S_IFREG|0555, st_size=28416, ...}) = 0
4613 mmap(NULL, 2118144, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7f6e638f8000
4613 mprotect(0x7f6e638fd000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e63afc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x4000) = 0x7f6e63afc000
4613 close(10) = 0
4613 mprotect(0x7f6e63afc000, 4096, PROT_READ) = 0
4613 read(9, "on mark, e.g., !mkdir.\nNegating "..., 4096) = 4096
4613 read(9, " ('foo', '!bar', ...)\n\n=cut\n\n# t"..., 4096) = 4096
4613 read(9, "her, optag!\n\n=item :filesys_read"..., 4096) = 3202
4613 brk(0) = 0x1277000
4613 brk(0x1298000) = 0x1298000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, " stem=$stem, leaf=$leaf\";\n #w"..., 4096) = 4096
4613 lseek(8, 7682, SEEK_SET) = 7682
4613 lseek(8, 0, SEEK_CUR) = 7682
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/Vend/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/File.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/File.pm", {st_mode=S_IFREG|0444, st_size=19335, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/File.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::File - Interchange file "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Path.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Path.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Path.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Path.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Path.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pm", {st_mode=S_IFREG|0444, st_size=29608, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Path.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package File::Path;\n\nuse 5.005_0"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Cwd.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Cwd.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Cwd.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Cwd.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Cwd.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Cwd.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Cwd.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Cwd.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pm", {st_mode=S_IFREG|0444, st_size=22398, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Cwd.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Cwd;\n\n=head1 NAME\n\nCwd -"..., 4096) = 4096
4613 read(9, "d.xs> for the\ndetails.\n\n=head1 S"..., 4096) = 4096
4613 brk(0) = 0x1298000
4613 brk(0x12b9000) = 0x12b9000
4613 read(9, "bin/pwd',\n\t\t '/usr/bin/pwd',\n\t\t "..., 4096) = 4096
4613 read(9, "h =~ /^(.*)\\z/s\t\t# untaint\n\t&& C"..., 4096) = 4096
4613 brk(0) = 0x12b9000
4613 brk(0x12da000) = 0x12da000
4613 read(9, "NV{PWD} || ''; # Guard against c"..., 4096) = 4096
4613 read(9, " # lookup avoids needing a stri"..., 4096) = 1918
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.so", {st_mode=S_IFREG|0555, st_size=23351, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Cwd/Cwd.so", O_RDONLY|O_CLOEXEC) = 9
4613 read(9, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340\30\0\0\0\0\0\0"..., 832) = 832
4613 fstat(9, {st_mode=S_IFREG|0555, st_size=23351, ...}) = 0
4613 mmap(NULL, 2113952, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 9, 0) = 0x7f6e636f3000
4613 mprotect(0x7f6e636f7000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e638f6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 9, 0x3000) = 0x7f6e638f6000
4613 close(9) = 0
4613 mprotect(0x7f6e638f6000, 4096, PROT_READ) = 0
4613 stat("/bin/pwd", {st_mode=S_IFREG|0755, st_size=33200, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/home/sam/live/interchange/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Basename.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Basename.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Basename.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Basename.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Basename.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pm", {st_mode=S_IFREG|0444, st_size=11328, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Basename.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "=head1 NAME\n\nFile::Basename - Pa"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/re.pmc", 0x7fff77fb0e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/re.pm", 0x7fff77fb0dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/re.pmc", 0x7fff77fb0e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/re.pm", 0x7fff77fb0dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/re.pmc", 0x7fff77fb0e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/re.pm", 0x7fff77fb0dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/re.pmc", 0x7fff77fb0e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/re.pm", 0x7fff77fb0dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pmc", 0x7fff77fb0e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pm", {st_mode=S_IFREG|0444, st_size=14817, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/re.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "package re;\n\n# pragma for contro"..., 4096) = 4096
4613 read(10, "lags: \",\n "..., 4096) = 4096
4613 brk(0) = 0x12da000
4613 brk(0x12fb000) = 0x12fb000
4613 lseek(10, 5200, SEEK_SET) = 5200
4613 lseek(10, 0, SEEK_CUR) = 5200
4613 close(10) = 0
4613 read(9, "$fullname =~ /^(.*[:>\\]])?(.*)/s"..., 4096) = 4096
4613 read(9, "/baz/\n dirname(\"/foo/bar/baz/"..., 4096) = 3136
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/File/Spec.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Spec.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pm", {st_mode=S_IFREG|0444, st_size=10490, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package File::Spec;\n\nuse strict;"..., 4096) = 4096
4613 lseek(9, 589, SEEK_SET) = 589
4613 lseek(9, 0, SEEK_CUR) = 589
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/File/Spec/Unix.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Spec/Unix.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec/Unix.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Spec/Unix.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec/Unix.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Spec/Unix.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec/Unix.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Spec/Unix.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pm", {st_mode=S_IFREG|0444, st_size=16287, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Spec/Unix.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package File::Spec::Unix;\n\nuse s"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/constant.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/constant.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/constant.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/constant.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/constant.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pm", {st_mode=S_IFREG|0444, st_size=12528, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/constant.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 brk(0) = 0x12fb000
4613 brk(0x131c000) = 0x131c000
4613 read(10, "package constant;\nuse 5.005;\nuse"..., 4096) = 4096
4613 lseek(10, 3585, SEEK_SET) = 3585
4613 lseek(10, 0, SEEK_CUR) = 3585
4613 close(10) = 0
4613 read(9, "rent directory if none from the "..., 4096) = 4096
4613 read(9, "\n $directory = $path;\n "..., 4096) = 4096
4613 read(9, "ks && @basechunks && $self->_sam"..., 4096) = 3999
4613 brk(0) = 0x131c000
4613 brk(0x133d000) = 0x133d000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, " $arg->{safe} = defined"..., 4096) = 4096
4613 read(8, "th strange permissions\n\n "..., 4096) = 4096
4613 brk(0) = 0x133d000
4613 brk(0x135e000) = 0x135e000
4613 read(8, " if ($arg->{safe} &&\n "..., 4096) = 4096
4613 lseek(8, 13644, SEEK_SET) = 13644
4613 lseek(8, 0, SEEK_CUR) = 13644
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Copy.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Copy.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Copy.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Copy.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Copy.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pm", {st_mode=S_IFREG|0444, st_size=16396, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Copy.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# File/Copy.pm. Written in 1994 "..., 4096) = 4096
4613 read(8, "= VMS::Filespec::vmsify($to);\n "..., 4096) = 4096
4613 brk(0) = 0x135e000
4613 brk(0x137f000) = 0x137f000
4613 read(8, " ($sts,$ossts) = ($! + 0, $^E +"..., 4096) = 4096
4613 lseek(8, 9522, SEEK_SET) = 9522
4613 lseek(8, 0, SEEK_CUR) = 9522
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/overload.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/overload.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/overload.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/overload.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/overload.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pm", {st_mode=S_IFREG|0444, st_size=48050, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/overload.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package overload;\n\nour $VERSION "..., 4096) = 4096
4613 brk(0) = 0x137f000
4613 brk(0x13a0000) = 0x13a0000
4613 read(8, "eference\");\n }\n }\n "..., 4096) = 4096
4613 lseek(8, 4382, SEEK_SET) = 4382
4613 lseek(8, 0, SEEK_CUR) = 4382
4613 close(8) = 0
4613 read(7, "n unless $Vend::Cfg->{FileDataba"..., 4096) = 4096
4613 read(7, "$wait) {\n fcntl($fh, $op,"..., 4096) = 4096
4613 brk(0) = 0x13a0000
4613 brk(0x13c1000) = 0x13c1000
4613 read(7, " $result;\n}\n\nsub win_canonpath {"..., 4096) = 4096
4613 read(7, " denying.\", $_);\n\t\t\t\treturn unde"..., 4096) = 2951
4613 brk(0) = 0x13c1000
4613 brk(0x13e2000) = 0x13e2000
4613 close(7) = 0
4613 read(6, ")) {\n $in = encode_ut"..., 4096) = 4096
4613 read(6, "rn;\n\t for(keys %$loc) {\n\t\t\tre"..., 4096) = 4096
4613 brk(0) = 0x13e2000
4613 brk(0x1403000) = 0x1403000
4613 read(6, "space = 1;\n\t\t\t}\n\t\t}\n\t\telsif ( $d"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Digest/SHA.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/SHA.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/SHA.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/SHA.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/SHA.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/SHA.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/SHA.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/SHA.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pm", {st_mode=S_IFREG|0444, st_size=17986, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/SHA.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Digest::SHA;\n\nrequire 5."..., 4096) = 4096
4613 stat("/home/sam/live/interchange/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/integer.pm", 0x7fff77fb18b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/integer.pm", 0x7fff77fb18b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/integer.pm", 0x7fff77fb18b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/integer.pm", 0x7fff77fb18b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/integer.pm", 0x7fff77fb18b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pmc", 0x7fff77fb1960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pm", {st_mode=S_IFREG|0444, st_size=3266, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/integer.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package integer;\n\nour $VERSION ="..., 4096) = 3266
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x1403000
4613 brk(0x1424000) = 0x1424000
4613 lseek(7, 3564, SEEK_SET) = 3564
4613 lseek(7, 0, SEEK_CUR) = 3564
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/MIME/Base64.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/Base64.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Base64.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Base64.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Base64.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Base64.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Base64.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Base64.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pm", {st_mode=S_IFREG|0444, st_size=4851, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/Base64.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package MIME::Base64;\n\nuse stric"..., 4096) = 4096
4613 lseek(7, 303, SEEK_SET) = 303
4613 lseek(7, 0, SEEK_CUR) = 303
4613 close(7) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.so", {st_mode=S_IFREG|0555, st_size=17794, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/MIME/Base64/Base64.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\17\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=17794, ...}) = 0
4613 mmap(NULL, 2109672, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f6e634ef000
4613 mprotect(0x7f6e634f2000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e636f1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x2000) = 0x7f6e636f1000
4613 close(7) = 0
4613 mprotect(0x7f6e636f1000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/base.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/base.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/base.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/base.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/base.pm", 0x7fff77fb1e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pmc", 0x7fff77fb1ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pm", {st_mode=S_IFREG|0444, st_size=1804, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/base.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Digest::base;\n\nuse stric"..., 4096) = 1804
4613 lseek(7, 1125, SEEK_SET) = 1125
4613 lseek(7, 0, SEEK_CUR) = 1125
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/auto/Digest/SHA", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.so", {st_mode=S_IFREG|0555, st_size=53093, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/SHA/SHA.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220\36\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=53093, ...}) = 0
4613 mmap(NULL, 2142728, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f6e632e3000
4613 mprotect(0x7f6e632ee000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e634ed000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0xa000) = 0x7f6e634ed000
4613 close(7) = 0
4613 mprotect(0x7f6e634ed000, 4096, PROT_READ) = 0
4613 brk(0) = 0x1424000
4613 brk(0x1445000) = 0x1445000
4613 read(6, "30% faster\neval {\n\t\tdie if $ENV{"..., 4096) = 4096
4613 read(6, " # Check the special case of "..., 4096) = 4096
4613 brk(0) = 0x1445000
4613 brk(0x1466000) = 0x1466000
4613 read(6, "\n\tif($Vend::Cfg->{Locale}) {\n\t\tm"..., 4096) = 4096
4613 read(6, "ast;\n\t\t}\n\t\tlast if defined $only"..., 4096) = 4096
4613 brk(0) = 0x1466000
4613 brk(0x1487000) = 0x1487000
4613 read(6, "fied.\n\nsub tag_nitems {\n\tmy($ref"..., 4096) = 4096
4613 brk(0) = 0x1487000
4613 brk(0x14a8000) = 0x14a8000
4613 read(6, "nfigure_catalog, $Vend::Cfg->{Pa"..., 4096) = 4096
4613 read(6, "\t\tqw(\n\t\t\tauth\n\t\t\tauthpriv\n\t\t\tcro"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Sys/Syslog.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Sys/Syslog.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pm", {st_mode=S_IFREG|0444, st_size=42016, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package Sys::Syslog;\nuse strict;"..., 4096) = 4096
4613 brk(0) = 0x14a8000
4613 brk(0x14c9000) = 0x14c9000
4613 stat("/home/sam/live/interchange/POSIX.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/POSIX.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/POSIX.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/POSIX.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/POSIX.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/POSIX.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/POSIX.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/POSIX.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pm", {st_mode=S_IFREG|0444, st_size=21011, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/POSIX.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package POSIX;\nuse strict;\nuse w"..., 4096) = 4096
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/autosplit.ix", {st_mode=S_IFREG|0444, st_size=2463, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/autosplit.ix", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Index created by AutoSplit for"..., 4096) = 2463
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 lseek(8, 1713, SEEK_SET) = 1713
4613 lseek(8, 0, SEEK_CUR) = 1713
4613 close(8) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.so", {st_mode=S_IFREG|0555, st_size=120233, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/POSIX.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340v\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=120233, ...}) = 0
4613 mmap(NULL, 2200880, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f6e630c9000
4613 mprotect(0x7f6e630e0000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e632df000, 16384, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x16000) = 0x7f6e632df000
4613 close(8) = 0
4613 mprotect(0x7f6e632df000, 12288, PROT_READ) = 0
4613 brk(0) = 0x14c9000
4613 brk(0x14f6000) = 0x14f6000
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", {st_mode=S_IFREG|0444, st_size=6878, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", {st_mode=S_IFREG|0444, st_size=6878, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/POSIX/load_imports.al", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# NOTE: Derived from ../../lib/P"..., 4096) = 4096
4613 read(8, "trspn strstr\n\t\tstrtok strxfrm)],"..., 4096) = 2782
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x14f6000
4613 brk(0x1517000) = 0x1517000
4613 brk(0) = 0x1517000
4613 brk(0x1538000) = 0x1538000
4613 stat("/home/sam/live/interchange/Socket.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Socket.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Socket.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Socket.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Socket.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Socket.pm", {st_mode=S_IFREG|0444, st_size=36405, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Socket.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package Socket;\n\nuse strict;\n{ u"..., 4096) = 4096
4613 read(8, "ants giving the special C<AF_INE"..., 4096) = 4096
4613 read(8, "r_in6().\n\nProvided largely for l"..., 4096) = 4096
4613 read(8, "ed binary address structure.\n\nSe"..., 4096) = 4096
4613 read(8, "ants are recognised as $flags. O"..., 4096) = 4096
4613 read(8, "m $hostname\\n\";\n\nSince in this e"..., 4096) = 4096
4613 read(8, "IP_RECVOPTS IP_RECVRETOPTS\n\tIP_R"..., 4096) = 4096
4613 read(8, "hing uses them, and deleting the"..., 4096) = 4096
4613 brk(0) = 0x1538000
4613 brk(0x1559000) = 0x1559000
4613 read(8, "ndef, @addrs ) = gethostbyname( "..., 4096) = 3637
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.so", {st_mode=S_IFREG|0555, st_size=48990, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Socket/Socket.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@0\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=48990, ...}) = 0
4613 mmap(NULL, 2138584, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f6e62ebe000
4613 mprotect(0x7f6e62ec7000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e630c6000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x8000) = 0x7f6e630c6000
4613 close(8) = 0
4613 mprotect(0x7f6e630c6000, 8192, PROT_READ) = 0
4613 brk(0) = 0x1559000
4613 brk(0x157a000) = 0x157a000
4613 read(7, "systems \n# except on OSX where i"..., 4096) = 4096
4613 read(7, "le\";\n\t return undef;\n\t}\n\n "..., 4096) = 4096
4613 brk(0) = 0x157a000
4613 brk(0x159b000) = 0x159b000
4613 read(7, "to go back to what used to be OK"..., 4096) = 4096
4613 read(7, "slog) {\n\tpush @$errs, \"getservby"..., 4096) = 4096
4613 brk(0) = 0x159b000
4613 brk(0x15bc000) = 0x15bc000
4613 read(7, ");\n $syslog_send = \\&Sys::Sys"..., 4096) = 4096
4613 lseek(7, 22345, SEEK_SET) = 22345
4613 lseek(7, 0, SEEK_CUR) = 22345
4613 close(7) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.so", {st_mode=S_IFREG|0555, st_size=22726, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Sys/Syslog/Syslog.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\360\30\0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=22726, ...}) = 0
4613 mmap(NULL, 2113832, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f6e62cb9000
4613 mprotect(0x7f6e62cbd000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e62ebc000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x3000) = 0x7f6e62ebc000
4613 close(7) = 0
4613 mprotect(0x7f6e62ebc000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 stat("./Sys/Syslog/Win32.pmc", 0x7fff77fb1920) = -1 ENOENT (No such file or directory)
4613 stat("./Sys/Syslog/Win32.pm", 0x7fff77fb1870) = -1 ENOENT (No such file or directory)
4613 read(6, ";\n\t\treturn;\n\t}\n\n\t$Vend::Errors ."..., 4096) = 4096
4613 read(6, "~ s/\\s+$/\\n/;\n\t}\n\n\t$ok = 0;\n\tmy "..., 4096) = 4096
4613 brk(0) = 0x15bc000
4613 brk(0x15dd000) = 0x15dd000
4613 read(6, "\n\nsub codedef_options {\n\tmy ($ta"..., 4096) = 4096
4613 read(6, " but mktime ignores these (and s"..., 4096) = 4030
4613 brk(0) = 0x15dd000
4613 brk(0x15fe000) = 0x15fe000
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/HTML/Entities.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTML/Entities.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Entities.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Entities.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pm", {st_mode=S_IFREG|0444, st_size=14995, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/HTML/Entities.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package HTML::Entities;\n\n=encodi"..., 4096) = 4096
4613 read(6, "ncoded = HTML::Entities::encode_"..., 4096) = 4096
4613 read(6, "\n # Some extra Latin 1 chars tha"..., 4096) = 4096
4613 brk(0) = 0x15fe000
4613 brk(0x161f000) = 0x161f000
4613 read(6, "721),\n 'minus;' => chr(8722)"..., 4096) = 2707
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/HTML/Parser.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTML/Parser.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Parser.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTML/Parser.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pm", {st_mode=S_IFREG|0444, st_size=39789, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/HTML/Parser.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package HTML::Parser;\n\n# Copyrig"..., 4096) = 4096
4613 lseek(6, 2888, SEEK_SET) = 2888
4613 lseek(6, 0, SEEK_CUR) = 2888
4613 close(6) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.so", {st_mode=S_IFREG|0555, st_size=55072, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/HTML/Parser/Parser.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 '\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=55072, ...}) = 0
4613 mmap(NULL, 2143112, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e62aad000
4613 mprotect(0x7f6e62ab8000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e62cb7000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa000) = 0x7f6e62cb7000
4613 close(6) = 0
4613 mprotect(0x7f6e62cb7000, 4096, PROT_READ) = 0
4613 brk(0) = 0x161f000
4613 brk(0x1640000) = 0x1640000
4613 stat("/home/sam/live/interchange/Digest/MD5.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/MD5.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/MD5.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/MD5.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/MD5.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/MD5.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/MD5.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/MD5.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pm", {st_mode=S_IFREG|0444, st_size=10558, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/MD5.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Digest::MD5;\n\nuse strict"..., 4096) = 4096
4613 lseek(6, 733, SEEK_SET) = 733
4613 lseek(6, 0, SEEK_CUR) = 733
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.so", {st_mode=S_IFREG|0555, st_size=22372, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Digest/MD5/MD5.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\320\21\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=22372, ...}) = 0
4613 mmap(NULL, 2113792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e628a8000
4613 mprotect(0x7f6e628ac000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e62aab000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x3000) = 0x7f6e62aab000
4613 close(6) = 0
4613 mprotect(0x7f6e62aab000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Storable.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Storable.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Storable.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Storable.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Storable.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Storable.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Storable.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Storable.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pm", {st_mode=S_IFREG|0444, st_size=40995, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Storable.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Copyright (c) 1995-2000, Ra"..., 4096) = 4096
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/autosplit.ix", {st_mode=S_IFREG|0444, st_size=519, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/autosplit.ix", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Index created by AutoSplit for"..., 4096) = 519
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/FileHandle.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/FileHandle.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/FileHandle.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/FileHandle.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/FileHandle.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pm", {st_mode=S_IFREG|0444, st_size=6778, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/FileHandle.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "package FileHandle;\n\nuse 5.006;\n"..., 4096) = 4096
4613 lseek(7, 2104, SEEK_SET) = 2104
4613 lseek(7, 0, SEEK_CUR) = 2104
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/IO/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/File.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/File.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/File.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/File.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pm", {st_mode=S_IFREG|0444, st_size=4907, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/File.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "#\n\npackage IO::File;\n\n=head1 NAM"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/SelectSaver.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/SelectSaver.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/SelectSaver.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/SelectSaver.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/SelectSaver.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pm", {st_mode=S_IFREG|0444, st_size=1076, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/SelectSaver.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package SelectSaver;\n\nour $VERSI"..., 4096) = 1076
4613 brk(0) = 0x1640000
4613 brk(0x1661000) = 0x1661000
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/IO/Seekable.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Seekable.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Seekable.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Seekable.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Seekable.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Seekable.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Seekable.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Seekable.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pm", {st_mode=S_IFREG|0444, st_size=2935, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Seekable.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "#\n\npackage IO::Seekable;\n\n=head1"..., 4096) = 2935
4613 stat("/home/sam/live/interchange/IO/Handle.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Handle.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Handle.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Handle.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Handle.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Handle.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Handle.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Handle.pm", 0x7fff77fb12f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pmc", 0x7fff77fb13a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pm", {st_mode=S_IFREG|0444, st_size=16421, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Handle.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb10d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package IO::Handle;\n\n=head1 NAME"..., 4096) = 4096
4613 read(9, "e given ordinal value back onto "..., 4096) = 4096
4613 read(9, "es with its own name separated b"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/IO.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO.pm", 0x7fff77fb0d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pmc", 0x7fff77fb0e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pm", {st_mode=S_IFREG|0444, st_size=1401, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb0b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "#\n\npackage IO;\n\nuse XSLoader ();"..., 4096) = 1401
4613 lseek(10, 412, SEEK_SET) = 412
4613 lseek(10, 0, SEEK_CUR) = 412
4613 close(10) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.so", {st_mode=S_IFREG|0555, st_size=23396, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/IO/IO.so", O_RDONLY|O_CLOEXEC) = 10
4613 read(10, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\32\0\0\0\0\0\0"..., 832) = 832
4613 fstat(10, {st_mode=S_IFREG|0555, st_size=23396, ...}) = 0
4613 mmap(NULL, 2113944, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 10, 0) = 0x7f6e626a3000
4613 mprotect(0x7f6e626a7000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e628a6000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 10, 0x3000) = 0x7f6e628a6000
4613 close(10) = 0
4613 mprotect(0x7f6e628a6000, 4096, PROT_READ) = 0
4613 read(9, ", OFFSET])';\n read($_[0], $_["..., 4096) = 4096
4613 brk(0) = 0x1661000
4613 brk(0x1682000) = 0x1682000
4613 read(9, " }\n else {\n\tprint @_;\n }\n}"..., 4096) = 37
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, "###################\n## Open\n##\n\n"..., 4096) = 811
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 lseek(6, 1320, SEEK_SET) = 1320
4613 lseek(6, 0, SEEK_CUR) = 1320
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("./Log/Agent.pmc", 0x7fff77fb1e90) = -1 ENOENT (No such file or directory)
4613 stat("./Log/Agent.pm", 0x7fff77fb1de0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/auto/Storable", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.so", {st_mode=S_IFREG|0555, st_size=90043, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/Storable/Storable.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\3002\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=90043, ...}) = 0
4613 mmap(NULL, 2175792, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e6248f000
4613 mprotect(0x7f6e624a2000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e626a1000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x12000) = 0x7f6e626a1000
4613 close(6) = 0
4613 mprotect(0x7f6e626a1000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Data/Dumper.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Data/Dumper.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Data/Dumper.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Data/Dumper.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pm", {st_mode=S_IFREG|0444, st_size=44069, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Data/Dumper.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Data/Dumper.pm\n#\n# convert p"..., 4096) = 4096
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.so", {st_mode=S_IFREG|0555, st_size=45145, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.bs", 0x730c20) = -1 ENOENT (No such file or directory)
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Data/Dumper/Dumper.so", O_RDONLY|O_CLOEXEC) = 7
4613 read(7, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\340 \0\0\0\0\0\0"..., 832) = 832
4613 fstat(7, {st_mode=S_IFREG|0555, st_size=45145, ...}) = 0
4613 mmap(NULL, 2134624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 7, 0) = 0x7f6e62285000
4613 mprotect(0x7f6e6228d000, 2097152, PROT_NONE) = 0
4613 mmap(0x7f6e6248d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 7, 0x8000) = 0x7f6e6248d000
4613 close(7) = 0
4613 mprotect(0x7f6e6248d000, 4096, PROT_READ) = 0
4613 brk(0) = 0x1682000
4613 brk(0x16a3000) = 0x16a3000
4613 read(6, "st users of current versions of "..., 4096) = 4096
4613 read(6, "mplementation.\n my $freezer ="..., 4096) = 4096
4613 read(6, "};\n $pair = $s->{pair};\n "..., 4096) = 4096
4613 brk(0) = 0x16a3000
4613 brk(0x16c4000) = 0x16c4000
4613 read(6, " and $v = _vstring($val)\n a"..., 4096) = 4096
4613 brk(0) = 0x16c4000
4613 brk(0x16e5000) = 0x16e5000
4613 read(6, ";\n } elsif ($high eq \"utf8\") "..., 4096) = 4096
4613 lseek(6, 22145, SEEK_SET) = 22145
4613 lseek(6, 0, SEEK_CUR) = 22145
4613 close(6) = 0
4613 read(5, "]{IC_LOCKING};\n\tVend::Util::unlo"..., 4096) = 4096
4613 brk(0) = 0x16e5000
4613 brk(0x1706000) = 0x1706000
4613 read(5, " return (@{ Storable::thaw($li"..., 4096) = 4096
4613 read(5, "lds) = @_;\n\tmy $key = $fields[$s"..., 4096) = 4096
4613 brk(0) = 0x1706000
4613 brk(0x1727000) = 0x1727000
4613 read(5, "n) = split /\\s*=\\s*/, $restrict;"..., 4096) = 4096
4613 brk(0) = 0x1727000
4613 brk(0x1748000) = 0x1748000
4613 read(5, "$sub;\n\n\tif($update eq 'INSERT') "..., 4096) = 4096
4613 read(5, "\n\telse {\n\t\t$format = 'NONE';\n\t}\n"..., 4096) = 4096
4613 brk(0) = 0x1748000
4613 brk(0x1769000) = 0x1769000
4613 read(5, "OPTIONS}{$f}) {\n\n\t\t\t\tpush @o, $o"..., 4096) = 4096
4613 read(5, "\t\t\tpush (\\@fields, '') until \\$f"..., 4096) = 4096
4613 brk(0) = 0x1769000
4613 brk(0x178a000) = 0x178a000
4613 read(5, "pect = 1;\n my @a = ();\n my"..., 4096) = 1884
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/DbSearch.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/DbSearch.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/DbSearch.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/DbSearch.pm", {st_mode=S_IFREG|0444, st_size=12052, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/DbSearch.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::DbSearch - Search indexe"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Search/Dict.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Search/Dict.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Search/Dict.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Search/Dict.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Search/Dict.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pm", {st_mode=S_IFREG|0444, st_size=2751, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Search/Dict.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package Search::Dict;\nrequire 5."..., 4096) = 2751
4613 brk(0) = 0x178a000
4613 brk(0x17ab000) = 0x17ab000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(5, "chfiles[0]' is not a valid datab"..., 4096) = 4096
4613 read(5, "rror('No search definition');\n\t\t"..., 4096) = 3860
4613 brk(0) = 0x17ab000
4613 brk(0x17cc000) = 0x17cc000
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Search.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Search.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Search.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Search.pm", {st_mode=S_IFREG|0444, st_size=34207, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Search.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Search - Base class for "..., 4096) = 4096
4613 brk(0) = 0x17cc000
4613 brk(0x17ed000) = 0x17ed000
4613 read(5, "t=\" . ::uneval(\\@text));\n ret"..., 4096) = 4096
4613 read(5, "nd up pre-emptively\n\t# removing "..., 4096) = 4096
4613 brk(0) = 0x17ed000
4613 brk(0x180e000) = 0x180e000
4613 read(5, ") {\n\t\t\t\tif (substr($sortkey, 0, "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Text/Query.pmc", 0x7fff77fb2440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Text/Query.pm", 0x7fff77fb2390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/Query.pmc", 0x7fff77fb2440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Text/Query.pm", 0x7fff77fb2390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/Query.pmc", 0x7fff77fb2440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Text/Query.pm", 0x7fff77fb2390) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/Query.pmc", 0x7fff77fb2440) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Text/Query.pm", {st_mode=S_IFREG|0444, st_size=8705, ...}) = 0
4613 open("/home/sam/local/lib/perl5/Text/Query.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2170) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#\n# Copyright (C) 1999 Eric Bo"..., 4096) = 4096
4613 read(6, "turn $self->{-optimize};\n}\n\n1;\n\n"..., 4096) = 4096
4613 lseek(6, 4136, SEEK_SET) = 4136
4613 lseek(6, 0, SEEK_CUR) = 4136
4613 close(6) = 0
4613 brk(0) = 0x180e000
4613 brk(0x182f000) = 0x182f000
4613 read(5, "' => [' ne q{', '}'],\n\t\t\t\t'=' ="..., 4096) = 4096
4613 read(5, "\t}\n\n\tmy $fields = join \",\", @{$s"..., 4096) = 4096
4613 brk(0) = 0x182f000
4613 brk(0x1850000) = 0x1850000
4613 read(5, "\t}\n\t\t\tif(defined $pats[1]) {\n\t\t\t"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/locale.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/locale.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/locale.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/locale.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/locale.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pm", {st_mode=S_IFREG|0444, st_size=820, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/locale.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package locale;\n\nour $VERSION = "..., 4096) = 820
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(5, "\" if $@;\n\n return $func;\n} \n\n"..., 4096) = 4096
4613 brk(0) = 0x1850000
4613 brk(0x1871000) = 0x1871000
4613 read(5, " { $_[1] cmp $_[0]\t\t\t},\n\trf\t=> s"..., 4096) = 1439
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/TextSearch.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/TextSearch.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/TextSearch.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/TextSearch.pm", {st_mode=S_IFREG|0444, st_size=11364, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/TextSearch.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::TextSearch - Search inde"..., 4096) = 4096
4613 read(5, "string_match mv_negate/\n\t\t\t\t\t\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x1871000
4613 brk(0x1892000) = 0x1892000
4613 read(5, "elayed_return = $s->get_return(1"..., 4096) = 3172
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/CounterFile.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/CounterFile.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CounterFile.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/CounterFile.pm", {st_mode=S_IFREG|0444, st_size=11088, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/CounterFile.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# This -*-perl -*- module implem"..., 4096) = 4096
4613 brk(0) = 0x1892000
4613 brk(0x18b3000) = 0x18b3000
4613 read(5, "ified\\n\" unless defined $file;\n\n"..., 4096) = 4096
4613 read(5, "print $fh \"$self->{'value'}\\n\";\n"..., 4096) = 2896
4613 lseek(5, 9891, SEEK_SET) = 9891
4613 lseek(5, 0, SEEK_CUR) = 9891
4613 close(5) = 0
4613 brk(0) = 0x18b3000
4613 brk(0x18d4000) = 0x18d4000
4613 read(4, "ter_store_key($out_filter);\n\t$ha"..., 4096) = 1627
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/InMemory.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/InMemory.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/InMemory.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/InMemory.pm", {st_mode=S_IFREG|0444, st_size=5121, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/InMemory.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::InMemory - Store "..., 4096) = 4096
4613 read(4, "ow($key) ];\n\t}\n}\n\n\n#sub each_rec"..., 4096) = 1025
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/Shadow.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/Shadow.pm", 0x7fff77fb2e20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Shadow.pmc", 0x7fff77fb2ed0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Shadow.pm", {st_mode=S_IFREG|0444, st_size=16728, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/Shadow.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2c00) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Table::Shadow - Access a"..., 4096) = 4096
4613 brk(0) = 0x18d4000
4613 brk(0x18f5000) = 0x18f5000
4613 read(4, "b column_exists {\n my ($s, $c"..., 4096) = 4096
4613 brk(0) = 0x18f5000
4613 brk(0x1916000) = 0x1916000
4613 read(4, "wed\n\t\t\tmy (@map_matches, @map_en"..., 4096) = 4096
4613 read(4, "\t\t\t\t} else {\n\t\t\t\t\t$d->{MAP}->{$f"..., 4096) = 4096
4613 brk(0) = 0x1916000
4613 brk(0x1937000) = 0x1937000
4613 read(4, "OBJ]->field($key, $column);\n\t}\n\n"..., 4096) = 344
4613 read(4, "", 4096) = 0
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/Vend/Server.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Server.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Server.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Server.pm", {st_mode=S_IFREG|0444, st_size=84087, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Server.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "# Vend::Server - Listen for Inte"..., 4096) = 4096
4613 brk(0) = 0x1937000
4613 brk(0x1958000) = 0x1958000
4613 read(4, " IP address?\n\t\t\tif ($ip !~ /^\\d\\"..., 4096) = 4096
4613 read(4, "e_multipart\n# Doesn't do unhexif"..., 4096) = 4096
4613 read(4, "OST') {\n\t\t\t\t\tdie ::errmsg(\"Synta"..., 4096) = 4096
4613 brk(0) = 0x1958000
4613 brk(0x1979000) = 0x1979000
4613 read(4, "| undef,\n\t\t\t\tundef,\n\t\t\t\tundef,\n\t"..., 4096) = 4096
4613 brk(0) = 0x1979000
4613 brk(0x199a000) = 0x199a000
4613 read(4, ">{rfh} = $rfh;\n\t\tumask $save;\n\t}"..., 4096) = 4096
4613 read(4, "le ((!defined($r) || $r == -1) &"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/URI/URL.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/URL.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/URL.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/URL.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/URL.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/URL.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/URL.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/URL.pm", {st_mode=S_IFREG|0444, st_size=5487, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/URL.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package URI::URL;\n\nuse strict;\nu"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/parent.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/parent.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/parent.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/parent.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/parent.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/parent.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/parent.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/parent.pm", {st_mode=S_IFREG|0444, st_size=2592, ...}) = 0
4613 open("/home/sam/local/lib/perl5/parent.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package parent;\nuse strict;\nuse "..., 4096) = 2592
4613 lseek(6, 478, SEEK_SET) = 478
4613 lseek(6, 0, SEEK_CUR) = 478
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/URI/WithBase.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/WithBase.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/WithBase.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/WithBase.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/WithBase.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/WithBase.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/WithBase.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/WithBase.pm", {st_mode=S_IFREG|0444, st_size=3857, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/WithBase.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package URI::WithBase;\n\nuse stri"..., 4096) = 3857
4613 stat("/home/sam/live/interchange/URI.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI.pm", {st_mode=S_IFREG|0444, st_size=34595, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 brk(0) = 0x199a000
4613 brk(0x19bb000) = 0x19bb000
4613 read(7, "package URI;\n\nuse strict;\nuse wa"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/URI/Escape.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/URI/Escape.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/Escape.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/URI/Escape.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/Escape.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/URI/Escape.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/Escape.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/URI/Escape.pm", {st_mode=S_IFREG|0444, st_size=7022, ...}) = 0
4613 open("/home/sam/local/lib/perl5/URI/Escape.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package URI::Escape;\n\nuse strict"..., 4096) = 4096
4613 read(8, "f the inline RE above) if a few "..., 4096) = 2926
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x19bb000
4613 brk(0x19dc000) = 0x19dc000
4613 read(7, "$scheme_re:/o\n\t}\n\telse {\n\t $o"..., 4096) = 4096
4613 lseek(7, 7453, SEEK_SET) = 7453
4613 lseek(7, 0, SEEK_CUR) = 7453
4613 close(7) = 0
4613 lseek(6, 2433, SEEK_SET) = 2433
4613 lseek(6, 0, SEEK_CUR) = 2433
4613 close(6) = 0
4613 brk(0) = 0x19dc000
4613 brk(0x19fd000) = 0x19fd000
4613 lseek(5, 3715, SEEK_SET) = 3715
4613 lseek(5, 0, SEEK_CUR) = 3715
4613 close(5) = 0
4613 read(4, "EMOTE_USER} =\n\t\t\t\t\tVend::Util::c"..., 4096) = 4096
4613 brk(0) = 0x19fd000
4613 brk(0x1a1e000) = 0x1a1e000
4613 read(4, ";\n\treset 'A-Z';\n\treset 'a-z';\n\tp"..., 4096) = 4096
4613 read(4, "Global::PreFork, $server_deficit"..., 4096) = 4096
4613 brk(0) = 0x1a1e000
4613 brk(0x1a3f000) = 0x1a3f000
4613 read(4, "nless $Global::SelectorAlias{$_}"..., 4096) = 4096
4613 read(4, "_})\n\t\t\t\t\t\tor ::logGlobal(\n\t\t\t\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x1a3f000
4613 brk(0x1a60000) = 0x1a60000
4613 read(4, "ind_port, $bind_addr))\n\t\t\t\t\t|| d"..., 4096) = 4096
4613 read(4, ") {\n\t\t\t\t\tmy $msg = $@;\n\t\t\t\t\t::lo"..., 4096) = 4096
4613 brk(0) = 0x1a60000
4613 brk(0x1a81000) = 0x1a81000
4613 read(4, "eck;\n\t\t\t\t\t\t&$Sig_inc;\n\t\t\t\t\t\tconn"..., 4096) = 4096
4613 read(4, "Vend::StatusLine);\n\t\t\tprint MESS"..., 4096) = 4096
4613 brk(0) = 0x1a81000
4613 brk(0x1aa2000) = 0x1aa2000
4613 read(4, "ODE_INDICATOR, \">$Global::RunDir"..., 4096) = 4096
4613 read(4, "$vector;\n\t\t\t$cycle = $tick;\n\t\t}\n"..., 4096) = 4096
4613 brk(0) = 0x1aa2000
4613 brk(0x1ac3000) = 0x1ac3000
4613 read(4, " );\n#::logDebug(\"SOAP pids: \" . "..., 4096) = 4096
4613 read(4, " open_pid {\n\tmy $fn = shift || $"..., 4096) = 4096
4613 brk(0) = 0x1ac3000
4613 brk(0x1ae4000) = 0x1ae4000
4613 read(4, "ockfile($pidh);\n\t\t\t\topendir(RUND"..., 4096) = 2167
4613 lseek(4, 84086, SEEK_SET) = 84086
4613 lseek(4, 0, SEEK_CUR) = 84086
4613 close(4) = 0
4613 stat("/home/sam/live/interchange/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pm", {st_mode=S_IFREG|0444, st_size=70496, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON.pm", O_RDONLY) = 4
4613 ioctl(4, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(4, 0, SEEK_CUR) = 0
4613 read(4, "package JSON;\n\n\nuse strict;\nuse "..., 4096) = 4096
4613 read(4, "] eq 'HASH') {\n my $opt "..., 4096) = 4096
4613 brk(0) = 0x1ae4000
4613 brk(0x1b05000) = 0x1b05000
4613 read(4, " }\n\n *{\"JSON::is_bool\"} = \\&{"..., 4096) = 4096
4613 fcntl(4, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/home/sam/live/interchange/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("./JSON/XS.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("./JSON/XS.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/PP.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/JSON/PP.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/PP.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/JSON/PP.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/PP.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/JSON/PP.pm", 0x7fff77fb2870) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/PP.pmc", 0x7fff77fb2920) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/JSON/PP.pm", {st_mode=S_IFREG|0444, st_size=81833, ...}) = 0
4613 open("/home/sam/local/lib/perl5/JSON/PP.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2650) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "package JSON::PP;\n\n# JSON-2.0\n\nu"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/B.pmc", 0x7fff77fb23b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/B.pm", 0x7fff77fb2300) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/B.pmc", 0x7fff77fb23b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/B.pm", 0x7fff77fb2300) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/B.pmc", 0x7fff77fb23b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/B.pm", 0x7fff77fb2300) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/B.pmc", 0x7fff77fb23b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/B.pm", 0x7fff77fb2300) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pmc", 0x7fff77fb23b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pm", {st_mode=S_IFREG|0444, st_size=25706, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/B.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb20e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 brk(0) = 0x1b05000
4613 brk(0x1b26000) = 0x1b26000
4613 read(6, "# B.pm\n#\n# Copyright ("..., 4096) = 4096
4613 read(6, "plroot, $method, $level + 1);\n\ts"..., 4096) = 4096
4613 brk(0) = 0x1b26000
4613 brk(0x1b47000) = 0x1b47000
4613 lseek(6, 8076, SEEK_SET) = 8076
4613 lseek(6, 0, SEEK_CUR) = 8076
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.so", {st_mode=S_IFREG|0555, st_size=130561, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/B/B.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\220Y\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=130561, ...}) = 0
4613 mmap(NULL, 2212480, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e62068000
4613 mprotect(0x7f6e62084000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e62283000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x1b000) = 0x7f6e62283000
4613 close(6) = 0
4613 mprotect(0x7f6e62283000, 4096, PROT_READ) = 0
4613 brk(0) = 0x1b47000
4613 brk(0x1b68000) = 0x1b68000
4613 brk(0) = 0x1b68000
4613 brk(0x1b89000) = 0x1b89000
4613 brk(0) = 0x1b89000
4613 brk(0x1baa000) = 0x1baa000
4613 read(5, "0)->space_before(0)->space_after"..., 4096) = 4096
4613 read(5, "if ($allow_blessed and $as_nonbl"..., 4096) = 4096
4613 brk(0) = 0x1baa000
4613 brk(0x1bcb000) = 0x1bcb000
4613 read(5, "0e-\\x1f])/'\\\\u00' . unpack('H2',"..., 4096) = 4096
4613 read(5, " ($max_depth, $max_size, $cb"..., 4096) = 4096
4613 brk(0) = 0x1bcb000
4613 brk(0x1bec000) = 0x1bec000
4613 read(5, " $is_utf8 = 1;\n "..., 4096) = 4096
4613 read(5, " if (!defined $ch) {\n "..., 4096) = 4096
4613 read(5, "t not be followed by another dig"..., 4096) = 4096
4613 brk(0) = 0x1bec000
4613 brk(0x1c0d000) = 0x1c0d000
4613 read(5, " last;\n }\n "..., 4096) = 4096
4613 read(5, " return\n exi"..., 4096) = 4096
4613 brk(0) = 0x1c0d000
4613 brk(0x1c2e000) = 0x1c2e000
4613 read(5, " }\n }\n\n i"..., 4096) = 4096
4613 lseek(5, 42738, SEEK_SET) = 42738
4613 lseek(5, 0, SEEK_CUR) = 42738
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Session.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Session.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Session.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Session.pm", {st_mode=S_IFREG|0444, st_size=16951, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Session.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Session - Interchange se"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/SessionDB.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SessionDB.pm", 0x7fff77fb28b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionDB.pmc", 0x7fff77fb2960) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionDB.pm", {st_mode=S_IFREG|0444, st_size=4221, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SessionDB.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2690) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::SessionDB - Stores Inter"..., 4096) = 4096
4613 read(6, "else {\n\t\t$self->{DB}->set_field("..., 4096) = 125
4613 close(6) = 0
4613 read(5, "nLock, \"+>>$Vend::Cfg->{SessionL"..., 4096) = 4096
4613 brk(0) = 0x1c2e000
4613 brk(0x1c4f000) = 0x1c4f000
4613 read(5, "not close $Vend::Cfg->{SessionDa"..., 4096) = 4096
4613 read(5, "arts\t= $Vend::Session->{carts};\n"..., 4096) = 4096
4613 brk(0) = 0x1c4f000
4613 brk(0x1c70000) = 0x1c70000
4613 read(5, "Vend::DELDIR);\n\t\tfor(@files) {\n\t"..., 4096) = 567
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/SessionFile.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SessionFile.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionFile.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SessionFile.pm", {st_mode=S_IFREG|0444, st_size=3804, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SessionFile.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::SessionFile - Stores Int"..., 4096) = 3804
4613 brk(0) = 0x1c70000
4613 brk(0x1c91000) = 0x1c91000
4613 close(5) = 0
4613 stat("/home/sam/live/interchange/Vend/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Config.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Config.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Config.pm", {st_mode=S_IFREG|0444, st_size=133508, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Config.pm", O_RDONLY) = 5
4613 ioctl(5, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(5, 0, SEEK_CUR) = 0
4613 read(5, "# Vend::Config - Configure Inter"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Parse.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Parse.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parse.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parse.pm", {st_mode=S_IFREG|0444, st_size=23373, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Parse.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Parse - Parse Interchang"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Interpolate.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Interpolate.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Interpolate.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Interpolate.pm", {st_mode=S_IFREG|0444, st_size=154361, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Interpolate.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb20d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Interpolate - Interpret "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Safe/Hole.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Safe/Hole.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe/Hole.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Safe/Hole.pm", 0x7fff77fb1dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pmc", 0x7fff77fb1e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pm", {st_mode=S_IFREG|0444, st_size=8100, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/Safe/Hole.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Safe::Hole - make a hole to th"..., 4096) = 4096
4613 brk(0) = 0x1c91000
4613 brk(0x1cb2000) = 0x1cb2000
4613 lseek(8, 3380, SEEK_SET) = 3380
4613 lseek(8, 0, SEEK_CUR) = 3380
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/auto/Safe/Hole", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/auto/Safe/Hole", 0x730c20) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.so", {st_mode=S_IFREG|0555, st_size=13972, ...}) = 0
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/local/lib/perl5/x86_64-linux/auto/Safe/Hole/Hole.so", O_RDONLY|O_CLOEXEC) = 8
4613 read(8, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0\300\21\0\0\0\0\0\0"..., 832) = 832
4613 fstat(8, {st_mode=S_IFREG|0555, st_size=13972, ...}) = 0
4613 mmap(NULL, 2105624, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 8, 0) = 0x7f6e61e65000
4613 mprotect(0x7f6e61e67000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e62066000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 8, 0x1000) = 0x7f6e62066000
4613 close(8) = 0
4613 mprotect(0x7f6e62066000, 4096, PROT_READ) = 0
4613 stat("/home/sam/live/interchange/Vend/Data.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Data.pm", 0x7fff77fb1d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Data.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Data.pm", {st_mode=S_IFREG|0444, st_size=60625, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Data.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Data - Interchange datab"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Table/DBI.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/DBI.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI.pm", {st_mode=S_IFREG|0444, st_size=63089, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/DBI.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Table::DBI - Access a ta"..., 4096) = 4096
4613 brk(0) = 0x1cb2000
4613 brk(0x1cd3000) = 0x1cd3000
4613 read(9, "OLUMN_ _DEF_',\n\t\tPg => 'ALTER TA"..., 4096) = 4096
4613 read(9, " ||= $keycol;\n\t$config->{KEY} ||"..., 4096) = 4096
4613 read(9, "ame) : $seq_name;\n\t\tmy $seq_name"..., 4096) = 4096
4613 brk(0) = 0x1cd3000
4613 brk(0x1cf4000) = 0x1cf4000
4613 read(9, "\n\nsub new {\n\tmy ($class, $obj) ="..., 4096) = 4096
4613 read(9, " @{$config->{NAME}}] :\n\t\t $co"..., 4096) = 4096
4613 brk(0) = 0x1cf4000
4613 brk(0x1d15000) = 0x1d15000
4613 read(9, "mn) ]; \n\tmy $q1 = \"select $colum"..., 4096) = 4096
4613 brk(0) = 0x1d15000
4613 brk(0x1d36000) = 0x1d36000
4613 read(9, "\n}\n\nsub copy_table {\n\tmy ($s, $c"..., 4096) = 4096
4613 read(9, "or($msg1);\n\t\t\t::logError($msg2);"..., 4096) = 4096
4613 brk(0) = 0x1d36000
4613 brk(0x1d57000) = 0x1d57000
4613 read(9, "as:%s\\nvalues were:'%s'\",\n\t\t\t'se"..., 4096) = 4096
4613 brk(0) = 0x1d57000
4613 brk(0x1d78000) = 0x1d78000
4613 read(9, "missing return value from %s: %s"..., 4096) = 4096
4613 read(9, "s->[$QTABLE] WHERE \";\n\t\n\tmy @fie"..., 4096) = 4096
4613 brk(0) = 0x1d78000
4613 brk(0x1d99000) = 0x1d99000
4613 read(9, "\n\n $s->[$DBI]->do(\"delete fro"..., 4096) = 4096
4613 read(9, ")\n or die $s->log_err"..., 4096) = 4096
4613 brk(0) = 0x1d99000
4613 brk(0x1dba000) = 0x1dba000
4613 read(9, "late::Tmp->{$opt->{arrayref}}\n\t\t"..., 4096) = 4096
4613 brk(0) = 0x1dba000
4613 brk(0x1ddb000) = 0x1ddb000
4613 read(9, "$ref, \\%nh, \\@na) : $ref;\n}\n\nsub"..., 4096) = 1649
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Vend/Table/DBI_CompositeKey.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/DBI_CompositeKey.pm", 0x7fff77fb1860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pmc", 0x7fff77fb1910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pm", {st_mode=S_IFREG|0444, st_size=20673, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/DBI_CompositeKey.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Table::DBI - Access a ta"..., 4096) = 4096
4613 read(9, "siteKey keys = \" . ::uneval(\\@ke"..., 4096) = 4096
4613 brk(0) = 0x1ddb000
4613 brk(0x1dfc000) = 0x1dfc000
4613 read(9, "\",\n\t\t\t$key,\n\t\t\t$s->[$CONFIG]{nam"..., 4096) = 4096
4613 read(9, "ndex($_)];\n\t\t}\n\t}\n\n\tif($force_ke"..., 4096) = 4096
4613 brk(0) = 0x1dfc000
4613 brk(0x1e1d000) = 0x1e1d000
4613 read(9, "ign {\n\tdie \"Foreign keys not sup"..., 4096) = 4096
4613 brk(0) = 0x1e1d000
4613 brk(0x1e3e000) = 0x1e3e000
4613 read(9, "::auto_config;\n*config = \\&Vend:"..., 4096) = 193
4613 close(9) = 0
4613 read(8, "sefinder{$ref} if $ref->record_e"..., 4096) = 4096
4613 read(8, "defined $db->test_column($field_"..., 4096) = 4096
4613 brk(0) = 0x1e3e000
4613 brk(0x1e5f000) = 0x1e5f000
4613 read(8, "\";\n\twhile(<AUTODELIM>) {\n\t\tmy $l"..., 4096) = 4096
4613 read(8, "field names in CREATE_EMPTY_TXT\""..., 4096) = 4096
4613 brk(0) = 0x1e5f000
4613 brk(0x1e80000) = 0x1e80000
4613 read(8, "} if defined $obj->{DELIMITER};\n"..., 4096) = 4096
4613 read(8, ");\n\n\tmy $ext = $opt->{extension}"..., 4096) = 4096
4613 brk(0) = 0x1e80000
4613 brk(0x1ea1000) = 0x1ea1000
4613 read(8, "table '%s'\",\n\t\t\t\t$field,\n\t\t\t\t$ta"..., 4096) = 4096
4613 read(8, "d::Cfg->{Sub}{$name} || $Global:"..., 4096) = 4096
4613 brk(0) = 0x1ea1000
4613 brk(0x1ec2000) = 0x1ec2000
4613 read(8, "\n\n\t\t\t\t\tmy $keep;\n\t\t\t\t\t$keep = $r"..., 4096) = 4096
4613 brk(0) = 0x1ec2000
4613 brk(0x1ee3000) = 0x1ee3000
4613 read(8, "=$attr table=$table key=$key sel"..., 4096) = 4096
4613 read(8, "le, fields, or key.\\n\" .\n\t\t\t\t\t \""..., 4096) = 4096
4613 brk(0) = 0x1ee3000
4613 brk(0x1f04000) = 0x1f04000
4613 read(8, " $base_db->config('COMPOSITE_KEY"..., 4096) = 4096
4613 read(8, ";\n\n\t\t%blob_exception =\n\t\t\t\tmap"..., 4096) = 4096
4613 read(8, "$qd) {\n#::logDebug(\"update_data:"..., 4096) = 3281
4613 brk(0) = 0x1f04000
4613 brk(0x1f25000) = 0x1f25000
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Form.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Form.pm", 0x7fff77fb1d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Form.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Form.pm", {st_mode=S_IFREG|0444, st_size=38770, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Form.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Form - Generate Form wid"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Tags.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Tags.pm", 0x7fff77fb1810) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Tags.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Tags.pm", {st_mode=S_IFREG|0444, st_size=1255, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Tags.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb15f0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::Tags - Interpret Interch"..., 4096) = 1255
4613 close(9) = 0
4613 read(8, "q(>{APPEND})\n\t\t,\n\thiddentext =>\n"..., 4096) = 4096
4613 brk(0) = 0x1f25000
4613 brk(0x1f46000) = 0x1f46000
4613 read(8, "pt $_ = \" . uneval_it($_) . \"\\n\""..., 4096) = 4096
4613 read(8, "->{year_begin} || $::Variable->{"..., 4096) = 4096
4613 brk(0) = 0x1f46000
4613 brk(0x1f67000) = 0x1f67000
4613 read(8, "get_box($name, '', '', '', $widt"..., 4096) = 4096
4613 brk(0) = 0x1f67000
4613 brk(0x1f88000) = 0x1f88000
4613 read(8, "y $vvalue = $value;\n\t\tencode($vv"..., 4096) = 4096
4613 read(8, "elected};\n\t\t$label =~ s/\\*$//\n\t\t"..., 4096) = 4096
4613 brk(0) = 0x1f88000
4613 brk(0x1fa9000) = 0x1fa9000
4613 read(8, "checks) {\n\t\t\tif(my $sub = Vend::"..., 4096) = 4096
4613 read(8, "$def = $CGI::values{$opt->{name}"..., 4096) = 4096
4613 brk(0) = 0x1fa9000
4613 brk(0x1fca000) = 0x1fca000
4613 read(8, "ck)/i) {\n\t\t$opt->{type} = 'box';"..., 4096) = 1906
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 brk(0) = 0x1fca000
4613 brk(0x1feb000) = 0x1feb000
4613 open("/etc/localtime", O_RDONLY|O_CLOEXEC) = 8
4613 fstat(8, {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 fstat(8, {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bfa5000
4613 read(8, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\4\0\0\0\4\0\0\0\0"..., 4096) = 3519
4613 lseek(8, -2252, SEEK_CUR) = 1267
4613 read(8, "TZif2\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\5\0\0\0\5\0\0\0\0"..., 4096) = 2252
4613 close(8) = 0
4613 munmap(0x7f6e6bfa5000, 4096) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/home/sam/live/interchange/Vend/Scan.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Scan.pm", 0x7fff77fb1d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Scan.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Scan.pm", {st_mode=S_IFREG|0444, st_size=22830, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Scan.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Scan - Prepare searches "..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/SQL_Parser.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/SQL_Parser.pm", 0x7fff77fb1810) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SQL_Parser.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/SQL_Parser.pm", {st_mode=S_IFREG|0444, st_size=18370, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/SQL_Parser.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb15f0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::SQL_Parser - Interchange"..., 4096) = 4096
4613 read(9, "b order {\n\tmy $s = shift;\n\tretur"..., 4096) = 4096
4613 brk(0) = 0x1feb000
4613 brk(0x200c000) = 0x200c000
4613 read(9, "op is valid\");\n\t\t\tif($op eq 'bet"..., 4096) = 4096
4613 read(9, "y @valtype;\n\tmy $params;\n\n\tmy $s"..., 4096) = 4096
4613 brk(0) = 0x200c000
4613 brk(0x202d000) = 0x202d000
4613 read(9, "lf->{name} = lc $name unless $se"..., 4096) = 1986
4613 brk(0) = 0x202d000
4613 brk(0x204e000) = 0x204e000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Vend/RefSearch.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/RefSearch.pm", 0x7fff77fb1810) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/RefSearch.pmc", 0x7fff77fb18c0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/RefSearch.pm", {st_mode=S_IFREG|0444, st_size=9817, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/RefSearch.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb15f0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Vend::DbSearch - Search indexe"..., 4096) = 4096
4613 read(9, "\n\n\t$@ and return $s->search_er"..., 4096) = 4096
4613 read(9, "eturn: self=\" . ::Vend::Util::un"..., 4096) = 1625
4613 brk(0) = 0x204e000
4613 brk(0x206f000) = 0x206f000
4613 close(9) = 0
4613 read(8, "Scan;\n%RevScan = reverse %Scan;\n"..., 4096) = 4096
4613 read(8, "efined $RevScan{$p} and $var = $"..., 4096) = 4096
4613 brk(0) = 0x206f000
4613 brk(0x2090000) = 0x2090000
4613 read(8, "! $options{mv_cache_key}) {\n\t\t$o"..., 4096) = 4096
4613 brk(0) = 0x2090000
4613 brk(0x20b1000) = 0x20b1000
4613 read(8, "ug(\"found limit=\" . $l->limit())"..., 4096) = 4096
4613 read(8, "ug(\"receiving verbatim_array: \" "..., 4096) = 2350
4613 brk(0) = 0x20b1000
4613 brk(0x20d2000) = 0x20d2000
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Subs.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Subs.pm", 0x7fff77fb1d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Subs.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Subs.pm", {st_mode=S_IFREG|0444, st_size=1585, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Subs.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Subs - Run Interchange S"..., 4096) = 1585
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Vend/Document.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Document.pm", 0x7fff77fb1d80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Document.pmc", 0x7fff77fb1e30) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Document.pm", {st_mode=S_IFREG|0444, st_size=1755, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Document.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1b60) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Document - Document obje"..., 4096) = 1755
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, " Vend::Safe $pkg;\n\t\t$ready_safe-"..., 4096) = 4096
4613 brk(0) = 0x20d2000
4613 brk(0x20f3000) = 0x20f3000
4613 read(7, "@};\nmy $Evar = qr{\\@_([A-Za-z0-"..., 4096) = 4096
4613 read(7, "ch_count}\\]),\n\t'more'\t\t\t=> qr($T"..., 4096) = 4096
4613 brk(0) = 0x20f3000
4613 brk(0x2114000) = 0x2114000
4613 read(7, "y ($html, $wantref, $opt) = @_;\n"..., 4096) = 4096
4613 brk(0) = 0x2114000
4613 brk(0x2135000) = 0x2135000
4613 read(7, "d=$field value=$opt->{value}\");\n"..., 4096) = 4096
4613 read(7, "\t$base = $term;\n\t\t$total = 1;\n\t}"..., 4096) = 4096
4613 brk(0) = 0x2135000
4613 brk(0x2156000) = 0x2156000
4613 read(7, "t(@terms)) {\n\t\t\t\t$op = $op->{$t}"..., 4096) = 4096
4613 read(7, "/else]' if length $else;\n\t\tmy $p"..., 4096) = 4096
4613 brk(0) = 0x2156000
4613 brk(0x2177000) = 0x2177000
4613 read(7, "\n\t\t\t\tscalar(@new),\n\t\t\t\t$max,\n\t\t\t"..., 4096) = 4096
4613 brk(0) = 0x2177000
4613 brk(0x2198000) = 0x2198000
4613 read(7, "\n\n\t$body = readfile($opt->{file}"..., 4096) = 4096
4613 read(7, "end::TransactionDatabase{$dbname"..., 4096) = 4096
4613 brk(0) = 0x2198000
4613 brk(0x21b9000) = 0x21b9000
4613 read(7, "}\n$head\n\n$text\nEndOFmiMe\n\n\t}\n#::"..., 4096) = 4096
4613 brk(0) = 0x21b9000
4613 brk(0x21da000) = 0x21da000
4613 read(7, "op};\n\tshift;\n#::logDebug(\"tag ar"..., 4096) = 4096
4613 read(7, " be a mac file.\n\t\t\t\t$CGI::file{$"..., 4096) = 4096
4613 brk(0) = 0x21da000
4613 brk(0x21fb000) = 0x21fb000
4613 read(7, "f @headers;\n\n\treturn error_opt(\""..., 4096) = 4096
4613 brk(0) = 0x21fb000
4613 brk(0x221c000) = 0x221c000
4613 read(7, "a {\n ($page, $arg, $opt) = @_"..., 4096) = 4096
4613 read(7, "\t\tundef $operator;\n\t\tundef $comp"..., 4096) = 4096
4613 brk(0) = 0x221c000
4613 brk(0x223d000) = 0x223d000
4613 read(7, "s/\\s+$//; \n#::logDebug(\"tag_sort"..., 4096) = 4096
4613 read(7, ", $pretty_url);\n my $this_pre"..., 4096) = 4096
4613 brk(0) = 0x223d000
4613 brk(0x225e000) = 0x225e000
4613 read(7, "All)\\[/first[-_]anchor\\]::i) {\n\t"..., 4096) = 4096
4613 brk(0) = 0x225e000
4613 brk(0x227f000) = 0x227f000
4613 read(7, "r eq 'none';\n\t\t\tpush @more_links"..., 4096) = 4096
4613 read(7, "r};\n\t\t$opt->{ml}\t= $CGI::values{"..., 4096) = 4096
4613 brk(0) = 0x227f000
4613 brk(0x22a0000) = 0x22a0000
4613 read(7, "!$hash->{$1} || $2!eg;\n\t$body =~"..., 4096) = 4096
4613 read(7, "t = -1;\n\n\twhile($int > -1) {\n\t\t$"..., 4096) = 4096
4613 brk(0) = 0x22a0000
4613 brk(0x22c1000) = 0x22c1000
4613 read(7, "$fa ||= [];\n\t@$fa = sort { $fh->"..., 4096) = 4096
4613 brk(0) = 0x22c1000
4613 brk(0x22e2000) = 0x22e2000
4613 read(7, "$once++;\n\t\t1 while $run =~ s#$IB"..., 4096) = 4096
4613 read(7, "logError(\n\t\t\t\t\"list iterator sub"..., 4096) = 4096
4613 brk(0) = 0x22e2000
4613 brk(0x2303000) = 0x2303000
4613 read(7, ")\n\t\t\t\t#ige;\n\t\t$run =~ s#$B$QR{_f"..., 4096) = 4096
4613 brk(0) = 0x2303000
4613 brk(0x2324000) = 0x2324000
4613 read(7, "\tVend::Scan::parse_profile_ref($"..., 4096) = 4096
4613 read(7, "g(\"list is: \" . uneval($list) );"..., 4096) = 4096
4613 brk(0) = 0x2324000
4613 brk(0x2345000) = 0x2345000
4613 read(7, "de, $opt, $page) = @_;\n\n\tmy ($se"..., 4096) = 4096
4613 read(7, " defined $::Discounts->{ALL_ITEM"..., 4096) = 4096
4613 brk(0) = 0x2345000
4613 brk(0x2366000) = 0x2366000
4613 read(7, "$save_scratch if $save_scratch;\n"..., 4096) = 4096
4613 read(7, "$::Variable->{MV_COUNTRY_TAX_FIE"..., 4096) = 4096
4613 brk(0) = 0x2366000
4613 brk(0x2387000) = 0x2387000
4613 read(7, "ession->{assigned}) {\n\t\treturn $"..., 4096) = 4096
4613 read(7, "cost = $Vend::Interpolate::ready"..., 4096) = 4096
4613 brk(0) = 0x2387000
4613 brk(0x23a8000) = 0x23a8000
4613 read(7, "Vend::Cfg->{SalesTax};\n\t\t\t\t$Vend"..., 4096) = 2809
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 mmap(NULL, 135168, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bf78000
4613 stat("/home/sam/live/interchange/Vend/Cart.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Cart.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cart.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cart.pm", {st_mode=S_IFREG|0444, st_size=9846, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Cart.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb20d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Cart - Interchange shopp"..., 4096) = 4096
4613 brk(0) = 0x23a8000
4613 brk(0x23c9000) = 0x23c9000
4613 read(7, "ion}{$s->[$i]{code}}) {\n\t\t\t\t$sub"..., 4096) = 4096
4613 read(7, "aster, $s->[$i]->{mv_ci})\n\t\t\t\t\t\t"..., 4096) = 1654
4613 close(7) = 0
4613 brk(0) = 0x23c9000
4613 brk(0x23ea000) = 0x23ea000
4613 stat("/home/sam/live/interchange/unicore/PVA.pl", 0x7fff77fb1600) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/PVA.pl", 0x7fff77fb1600) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/PVA.pl", 0x7fff77fb1600) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/PVA.pl", 0x7fff77fb1600) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/PVA.pl", 0x7fff77fb1600) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", {st_mode=S_IFREG|0444, st_size=27017, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/PVA.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb13e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "\n'expandsonnfd',\n'XONFD',\n'age',"..., 4096) = 4096
4613 read(7, "y',\n'Yes',\n'n',\n'No',\n},\n'XIDC',"..., 4096) = 4096
4613 brk(0) = 0x23ea000
4613 brk(0x240b000) = 0x240b000
4613 read(7, "QC',\n{\n'y',\n'Yes',\n'n',\n'No',\n},"..., 4096) = 4096
4613 read(7, ",\n'Y',\n'no',\n'N',\n},\n'STerm',\n{\n"..., 4096) = 4096
4613 brk(0) = 0x240b000
4613 brk(0x242c000) = 0x242c000
4613 read(7, "',\n},\n'Hex',\n{\n'yes',\n'Y',\n'no',"..., 4096) = 4096
4613 read(7, "y',\n'Y',\n'n',\n'N',\n},\n'ODI',\n{\n'"..., 4096) = 2441
4613 brk(0) = 0x242c000
4613 brk(0x244d000) = 0x244d000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x244d000
4613 brk(0x246e000) = 0x246e000
4613 stat("/home/sam/live/interchange/unicore/Exact.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Exact.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Exact.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Exact.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Exact.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", {st_mode=S_IFREG|0444, st_size=1680, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Exact.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1210) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 1680
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/unicore/Canonical.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/Canonical.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/Canonical.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/Canonical.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/Canonical.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", {st_mode=S_IFREG|0444, st_size=24610, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/Canonical.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1210) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "eprecated\t\t\t\t => 'Deprecat',\n"..., 4096) = 4096
4613 read(7, " => 'InCjkRad',\n\n # InCjkStro"..., 4096) = 4096
4613 read(7, "'InLatin2',\n\n # InLatinExtendedA"..., 4096) = 4096
4613 read(7, "ugu',\n\n # InThaana\n inthaana\t\t"..., 4096) = 4096
4613 read(7, "ca',\n\n oriya\t\t\t\t => 'Orya',"..., 4096) = 4096
4613 read(7, "ables\t\t\t\t => 'InYiSyll',\n\n);\n"..., 4096) = 34
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/unicore/To/Fold.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/unicore/To/Fold.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/unicore/To/Fold.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/unicore/To/Fold.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/unicore/To/Fold.pl", 0x7fff77fb1430) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/To/Fold.pl", {st_mode=S_IFREG|0444, st_size=15634, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/unicore/To/Fold.pl", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb1210) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# !!!!!!! DO NOT EDIT THIS FIL"..., 4096) = 4096
4613 read(7, "\\xEF\\xAC\\x83\" => \"\\x{0066}\\x{006"..., 4096) = 4096
4613 read(7, "42E\t\t044E\n042F\t\t044F\n0460\t\t0461\n"..., 4096) = 4096
4613 read(7, "\t2172\n2163\t\t2173\n2164\t\t2174\n2165"..., 4096) = 3346
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x246e000
4613 brk(0x2490000) = 0x2490000
4613 brk(0) = 0x2490000
4613 brk(0x24b1000) = 0x24b1000
4613 read(6, "e {\n\t\t# This is default, deny al"..., 4096) = 4096
4613 read(6, " => \\%Routine,\n);\n\nmy @my"..., 4096) = 4096
4613 read(6, " '' if $attr->{'unless'} =~ /^\\s"..., 4096) = 4096
4613 read(6, "Order{$tag}}] = $attr if $addAtt"..., 4096) = 4096
4613 brk(0) = 0x24b1000
4613 brk(0x24d2000) = 0x24d2000
4613 read(6, "'';\n return $out;\n}\n\nsub find"..., 4096) = 2893
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Parser.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Parser.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parser.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Parser.pm", {st_mode=S_IFREG|0444, st_size=7393, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Parser.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Parser - Interchange par"..., 4096) = 4096
4613 read(6, "$eaten .= $1;\n\t\t\t\t\tmy $attr = lc"..., 4096) = 3297
4613 brk(0) = 0x24d2000
4613 brk(0x24f3000) = 0x24f3000
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Cron.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Cron.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cron.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Cron.pm", {st_mode=S_IFREG|0444, st_size=3718, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Cron.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Cron - Determine tasks t"..., 4096) = 3718
4613 stat("/home/sam/live/interchange/Set/Crontab.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Set/Crontab.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Set/Crontab.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Set/Crontab.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Set/Crontab.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Set/Crontab.pm", 0x7fff77fb2340) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Set/Crontab.pmc", 0x7fff77fb23f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Set/Crontab.pm", {st_mode=S_IFREG|0444, st_size=3392, ...}) = 0
4613 open("/home/sam/local/lib/perl5/Set/Crontab.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Copyright 2001 Abhijit Menon-S"..., 4096) = 3392
4613 lseek(7, 1898, SEEK_SET) = 1898
4613 lseek(7, 0, SEEK_CUR) = 1898
4613 close(7) = 0
4613 lseek(6, 3717, SEEK_SET) = 3717
4613 lseek(6, 0, SEEK_CUR) = 3717
4613 close(6) = 0
4613 read(5, " \n\tSessionDB \n\tSessionDatabase \n"..., 4096) = 4096
4613 brk(0) = 0x24f3000
4613 brk(0x2514000) = 0x2514000
4613 read(5, " || ''],\n\t['LockType', u"..., 4096) = 4096
4613 read(5, "g',\t\t\t\t ''],\n\t['CodeDef',\t\t\t 'ma"..., 4096) = 4096
4613 read(5, " 'user'],\n\t['SessionExpire'"..., 4096) = 4096
4613 read(5, "f, \t '.html'],\n\t['Custom"..., 4096) = 4096
4613 brk(0) = 0x2514000
4613 brk(0x2535000) = 0x2535000
4613 read(5, "\t\t\t## No lock, some other proces"..., 4096) = 4096
4613 read(5, "d::Cfg->{DisplayErrors} to 0.\n# "..., 4096) = 4096
4613 brk(0) = 0x2535000
4613 brk(0x2556000) = 0x2556000
4613 read(5, "thing is defined in options to d"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Glob.pmc", 0x7fff77fb27b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Glob.pm", 0x7fff77fb2700) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Glob.pmc", 0x7fff77fb27b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Glob.pm", 0x7fff77fb2700) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Glob.pmc", 0x7fff77fb27b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Glob.pm", 0x7fff77fb2700) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Glob.pmc", 0x7fff77fb27b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Glob.pm", 0x7fff77fb2700) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pmc", 0x7fff77fb27b0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pm", {st_mode=S_IFREG|0444, st_size=15311, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Glob.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb24e0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package File::Glob;\n\nuse strict;"..., 4096) = 4096
4613 brk(0) = 0x2556000
4613 brk(0x2577000) = 0x2577000
4613 lseek(6, 4079, SEEK_SET) = 4079
4613 lseek(6, 0, SEEK_CUR) = 4079
4613 close(6) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.so", {st_mode=S_IFREG|0555, st_size=27623, ...}) = 0
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.bs", {st_mode=S_IFREG|0444, st_size=0, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/auto/File/Glob/Glob.so", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0p\27\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0555, st_size=27623, ...}) = 0
4613 mmap(NULL, 2118032, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e61c5f000
4613 mprotect(0x7f6e61c63000, 2097152, PROT_NONE) = 0
4613 mmap(0x7f6e61e63000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0x4000) = 0x7f6e61e63000
4613 close(6) = 0
4613 mprotect(0x7f6e61e63000, 4096, PROT_READ) = 0
4613 read(5, "if it isn't already there....\n\ti"..., 4096) = 4096
4613 read(5, "\t$::Pragma = $Vend::Cfg->{Prag"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/File/Find.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/File/Find.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/File/Find.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/File/Find.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/File/Find.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pm", {st_mode=S_IFREG|0444, st_size=39155, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/File/Find.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "package File::Find;\nuse 5.006;\nu"..., 4096) = 4096
4613 read(6, " fast file checks involving S<_>"..., 4096) = 4096
4613 read(6, " / /\n "..., 4096) = 4096
4613 read(6, " the volume root level (i.e.\n\"Ma"..., 4096) = 4096
4613 brk(0) = 0x2577000
4613 brk(0x2598000) = 0x2598000
4613 read(6, "newlen == length($Base) || subst"..., 4096) = 4096
4613 read(6, "\n\t\t $abs_dir = contract_name_"..., 4096) = 4096
4613 brk(0) = 0x2598000
4613 brk(0x25b9000) = 0x25b9000
4613 read(6, "Find::dir\n\t $name= $dir_name;"..., 4096) = 4096
4613 read(6, "r always has a trailing ':', exc"..., 4096) = 4096
4613 read(6, "nge to that directory\n\tunless ($"..., 4096) = 4096
4613 brk(0) = 0x25b9000
4613 brk(0x25da000) = 0x25da000
4613 read(6, "hift;\n if ( ref($wanted) eq '"..., 4096) = 2291
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(5, "ainer value\n\t\tif(my $sub = $Cont"..., 4096) = 4096
4613 brk(0) = 0x25da000
4613 brk(0x25fb000) = 0x25fb000
4613 read(5, "ng a GlobalRead for $lvar\") unle"..., 4096) = 4096
4613 read(5, "It};\n\tparse_action('WatchIt', \"$"..., 4096) = 4096
4613 brk(0) = 0x25fb000
4613 brk(0x261c000) = 0x261c000
4613 read(5, "atalogName}};\n\t\t$perlglobal = $G"..., 4096) = 4096
4613 read(5, "gnore) {\n\t\t\t\tunlink \"$initdir/$f"..., 4096) = 4096
4613 brk(0) = 0x261c000
4613 brk(0x263d000) = 0x263d000
4613 read(5, "= @_;\n\n\treturn '' if ! $val;\n\n\tm"..., 4096) = 4096
4613 brk(0) = 0x263d000
4613 brk(0x265e000) = 0x265e000
4613 read(5, "\t\t$testsub = sub {\n\t\t\tmy $name ="..., 4096) = 4096
4613 read(5, "\n\n# Allow a subcatalog value to "..., 4096) = 4096
4613 brk(0) = 0x265e000
4613 brk(0x267f000) = 0x267f000
4613 read(5, "nless $store->{$name};\n\n\treturn "..., 4096) = 4096
4613 read(5, "tory}{$locale};\n }\n "..., 4096) = 4096
4613 brk(0) = 0x267f000
4613 brk(0x26a0000) = 0x26a0000
4613 read(5, " = \"Vend::Ship::${_}::Default\";\n"..., 4096) = 4096
4613 read(5, " => sub {\n\t\t\treturn 1 unless $C-"..., 4096) = 4096
4613 brk(0) = 0x26a0000
4613 brk(0x26c1000) = 0x26c1000
4613 read(5, "it /[\\s,]+/, $settings;\n\t}\n\telse"..., 4096) = 4096
4613 brk(0) = 0x26c1000
4613 brk(0x26e2000) = 0x26e2000
4613 read(5, " 60;\n\t\t}\n\t\telsif (m/^d|day|days$"..., 4096) = 4096
4613 read(5, "->[0]} = $ref->[1];\n\t\t}\n\t}\n\telse"..., 4096) = 4096
4613 brk(0) = 0x26e2000
4613 brk(0x2703000) = 0x2703000
4613 read(5, "} = Vend::Data::import_database("..., 4096) = 4096
4613 brk(0) = 0x2703000
4613 brk(0x2724000) = 0x2724000
4613 read(5, "e {\n\t\t\t\tconfig_warn(\n\t\t\t\t\t'Datab"..., 4096) = 4096
4613 brk(0) = 0x2724000
4613 brk(0x2745000) = 0x2745000
4613 read(5, "nd::Cfg->{$real} !~ /HASH/) {\n\t\t"..., 4096) = 4096
4613 read(5, "\"Global::$type\"}\t||= {};\n\t}\n\n\tmy"..., 4096) = 4096
4613 brk(0) = 0x2745000
4613 brk(0x2766000) = 0x2766000
4613 read(5, "eturn $c;\n\t}\n\n\t# Canonicalize\n\t$"..., 4096) = 4096
4613 read(5, "rict 'refs';\n $c->{$1} = "..., 4096) = 4096
4613 brk(0) = 0x2766000
4613 brk(0x2787000) = 0x2787000
4613 read(5, "ed\n\t\t\t\t\terror\n\t\t\t\t\tflag\n\t\t\t\t\tinp"..., 4096) = 2436
4613 fcntl(5, F_SETFD, FD_CLOEXEC) = 0
4613 fstat(5, {st_mode=S_IFREG|0444, st_size=133508, ...}) = 0
4613 read(5, "", 4096) = 0
4613 stat("/home/sam/live/interchange/Vend/Payment.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Payment.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Payment.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Payment.pm", {st_mode=S_IFREG|0444, st_size=19616, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Payment.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Payment - Interchange pa"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Order.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Order.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Order.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Order.pm", {st_mode=S_IFREG|0444, st_size=63818, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Order.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Order - Interchange orde"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Vend/Error.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Error.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Error.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Error.pm", {st_mode=S_IFREG|0444, st_size=5437, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Error.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb20d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Error - Handle Interchan"..., 4096) = 4096
4613 brk(0) = 0x2787000
4613 brk(0x27a8000) = 0x27a8000
4613 read(8, ".= \"\\n###### END SESSION ####"..., 4096) = 1341
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/autouse.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/autouse.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/autouse.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/autouse.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/autouse.pm", 0x7fff77fb22f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pmc", 0x7fff77fb23a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pm", {st_mode=S_IFREG|0444, st_size=4238, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/autouse.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb20d0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package autouse;\n\n#use strict;\t\t"..., 4096) = 4096
4613 lseek(8, 2026, SEEK_SET) = 2026
4613 lseek(8, 0, SEEK_CUR) = 2026
4613 close(8) = 0
4613 brk(0) = 0x27a8000
4613 brk(0x27c9000) = 0x27c9000
4613 read(7, "routine\"}) {\n\t\t$sub = \\&{\"_$rout"..., 4096) = 4096
4613 read(7, "$expire = $_ if m:/: ;\n\t}\n\tretur"..., 4096) = 4096
4613 brk(0) = 0x27c9000
4613 brk(0x27ea000) = 0x27ea000
4613 read(7, "d number\n# mv_credit_card_exp"..., 4096) = 4096
4613 read(7, "$opt) = @_;\n\tmy $item_text;\n\tif "..., 4096) = 4096
4613 brk(0) = 0x27ea000
4613 brk(0x280b000) = 0x280b000
4613 read(7, "\n\t\tlocal($_) = shift;\n\t\tmy $ref "..., 4096) = 4096
4613 read(7, "\\\\n//g;\n\n\t$And = 1;\n\t$Fatal = $F"..., 4096) = 4096
4613 brk(0) = 0x280b000
4613 brk(0x282c000) = 0x282c000
4613 read(7, "VALID_PROVINCE}\n\t\t\t\t? \" $::Varia"..., 4096) = 4096
4613 brk(0) = 0x282c000
4613 brk(0x284d000) = 0x284d000
4613 read(7, " $val and $val =~ /\\S/);\n\treturn"..., 4096) = 4096
4613 read(7, "ted.\n\tmy $master_transactions;\n\n"..., 4096) = 4096
4613 brk(0) = 0x284d000
4613 brk(0x286e000) = 0x286e000
4613 read(7, "ute->{encrypt_program} || $main-"..., 4096) = 4096
4613 read(7, "f($::Scratch->{mv_route_failed})"..., 4096) = 4096
4613 brk(0) = 0x286e000
4613 brk(0x288f000) = 0x288f000
4613 read(7, "$path =~ s:/(.*)::) {\n\t\t$cart = "..., 4096) = 4096
4613 read(7, "sub) {\n\t\t\t\t\t$sub->($line, $loc);"..., 4096) = 4096
4613 brk(0) = 0x288f000
4613 brk(0x28b0000) = 0x28b0000
4613 read(7, "$Vend::Cfg->{UseModifier};\n\t\tmy "..., 4096) = 4096
4613 read(7, "e a line.\n\t\tif ($found == -1) {\n"..., 4096) = 2378
4613 brk(0) = 0x28b0000
4613 brk(0x28d1000) = 0x28d1000
4613 close(7) = 0
4613 stat("/home/sam/live/interchange/IO/Pipe.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/IO/Pipe.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Pipe.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/IO/Pipe.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Pipe.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/IO/Pipe.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Pipe.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/IO/Pipe.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pm", {st_mode=S_IFREG|0444, st_size=5473, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/IO/Pipe.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# IO::Pipe.pm\n#\n# Copyright (c) "..., 4096) = 4096
4613 lseek(7, 3425, SEEK_SET) = 3425
4613 lseek(7, 0, SEEK_CUR) = 3425
4613 close(7) = 0
4613 read(6, ", $str;\n\t}\n\n\t@billing_set{@billi"..., 4096) = 4096
4613 brk(0) = 0x28d1000
4613 brk(0x28f2000) = 0x28f2000
4613 read(6, "y_opt->{amount} = \"$currency $am"..., 4096) = 4096
4613 read(6, "g(\"Unknown charge type\");\n\t\tmy $"..., 4096) = 4096
4613 brk(0) = 0x28f2000
4613 brk(0x2913000) = 0x2913000
4613 read(6, "\t\t}\n\t\tmy $post = join \"&\", @post"..., 4096) = 3232
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Ship.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Ship.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Ship.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Ship.pm", {st_mode=S_IFREG|0444, st_size=33408, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Ship.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Ship - Interchange shipp"..., 4096) = 4096
4613 brk(0) = 0x2913000
4613 brk(0x2934000) = 0x2934000
4613 read(6, "Vend::Util::catfile($base_dir, $"..., 4096) = 4096
4613 read(6, "->[MODE]\n\t\t\t\t);\n\t\t\t\t$row->[MODE]"..., 4096) = 4096
4613 brk(0) = 0x2934000
4613 brk(0x2955000) = 0x2955000
4613 read(6, "#::logDebug(\"Check BEGIN, must g"..., 4096) = 4096
4613 read(6, "unless ($db and db_column_exists"..., 4096) = 4096
4613 brk(0) = 0x2955000
4613 brk(0x2976000) = 0x2976000
4613 read(6, "=~ s/\\s+(.*)//;\n\t\t\tmy $extra = $"..., 4096) = 4096
4613 brk(0) = 0x2976000
4613 brk(0x2997000) = 0x2997000
4613 read(6, "at} ||= '%M=%D (%F)' if $opt->{o"..., 4096) = 4096
4613 read(6, "ncy($out, $opt->{noformat}, 0, $"..., 4096) = 4096
4613 brk(0) = 0x2997000
4613 brk(0x29b8000) = 0x29b8000
4613 read(6, "v=$v\");\n\t\t\tif( $Values->{$v} ) {"..., 4096) = 640
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/UserDB.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/UserDB.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/UserDB.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/UserDB.pm", {st_mode=S_IFREG|0444, st_size=62714, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/UserDB.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::UserDB - Interchange use"..., 4096) = 4096
4613 read(6, "->{cipher}));\n\n return bseria"..., 4096) = 4096
4613 brk(0) = 0x29b8000
4613 brk(0x29d9000) = 0x29d9000
4613 read(6, "turn to a\nprevious session witho"..., 4096) = 4096
4613 read(6, "\t\tdefault: (none)\n\nKey informati"..., 4096) = 4096
4613 read(6, "\t\t\t\t\tCREATED_DATE_UNIX\t\t=> $opti"..., 4096) = 4096
4613 brk(0) = 0x29d9000
4613 brk(0x29fa000) = 0x29fa000
4613 read(6, ";\n\t\treturn $cmp < time() ? '' : "..., 4096) = 4096
4613 brk(0) = 0x29fa000
4613 brk(0x2a1b000) = 0x2a1b000
4613 read(6, "= split /[\\s=,]+/, $self->{OUTBO"..., 4096) = 4096
4613 brk(0) = 0x2a1b000
4613 brk(0x2a3c000) = 0x2a3c000
4613 read(6, "extra, uneval_it($hash);\n\t}\n\n\tfo"..., 4096) = 4096
4613 read(6, " shift;\n\tmy $ref = $self->get_ha"..., 4096) = 4096
4613 brk(0) = 0x2a3c000
4613 brk(0x2a5d000) = 0x2a5d000
4613 read(6, "ccess to web-connected systems. "..., 4096) = 4096
4613 read(6, "f->{PASSED_USERNAME} ||= $self->"..., 4096) = 4096
4613 brk(0) = 0x2a5d000
4613 brk(0x2a7e000) = 0x2a7e000
4613 read(6, "{MERGED_USER} } ) {\n\t\t\tmy $old ="..., 4096) = 4096
4613 read(6, "\t\t\t\tundef $self;\n\t\t\t\t}\n\t\t\t} else"..., 4096) = 4096
4613 brk(0) = 0x2a7e000
4613 brk(0x2a9f000) = 0x2a9f000
4613 read(6, "e();\n\t\t\t$self->{USERNAME} = lc $"..., 4096) = 4096
4613 read(6, "return;\n}\n\nsub get_cart {\n\tmy($s"..., 4096) = 4096
4613 brk(0) = 0x2a9f000
4613 brk(0x2ac0000) = 0x2ac0000
4613 read(6, "ns);\n\t\tunless (defined $user) {\n"..., 4096) = 1274
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("./Digest/Bcrypt.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("./Digest/Bcrypt.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Page.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Page.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Page.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Page.pm", {st_mode=S_IFREG|0444, st_size=8111, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Page.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Page - Handle Interchang"..., 4096) = 4096
4613 brk(0) = 0x2ac0000
4613 brk(0x2ae1000) = 0x2ae1000
4613 read(6, "ay_page();\n}\n\nsub _check_search_"..., 4096) = 4015
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/home/sam/live/interchange/Vend/Dispatch.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Dispatch.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Dispatch.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Dispatch.pm", {st_mode=S_IFREG|0444, st_size=49104, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Dispatch.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "# Vend::Dispatch - Handle Interc"..., 4096) = 4096
4613 brk(0) = 0x2ae1000
4613 brk(0x2b02000) = 0x2b02000
4613 stat("/home/sam/live/interchange/Vend/Track.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Track.pm", 0x7fff77fb2860) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Track.pmc", 0x7fff77fb2910) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Track.pm", {st_mode=S_IFREG|0444, st_size=5286, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Track.pm", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2640) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 read(7, "# Vend::Track - Interchange User"..., 4096) = 4096
4613 read(7, "rnal server error by Apache, fou"..., 4096) = 1190
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 brk(0) = 0x2b02000
4613 brk(0x2b23000) = 0x2b23000
4613 read(6, " in the mv_check pass, though,\n#"..., 4096) = 4096
4613 read(6, "file,\n\t\t\t\t\t\t\tmode => $mode,\n\t\t\t\t"..., 4096) = 4096
4613 read(6, "nd the order report.\n\t\t\t\t\t# If t"..., 4096) = 4096
4613 brk(0) = 0x2b23000
4613 brk(0x2b44000) = 0x2b44000
4613 read(6, "lsif (defined $CGI::values{'mv_t"..., 4096) = 4096
4613 read(6, "f ($@) {\n\t\t\t# job terminated due"..., 4096) = 4096
4613 brk(0) = 0x2b44000
4613 brk(0x2b65000) = 0x2b65000
4613 read(6, "_global();\n\t\t\t\t\t&do_process(@_);"..., 4096) = 4096
4613 read(6, "\t\t$Vend::Cfg->{SetGroup}, $msg\n\t"..., 4096) = 4096
4613 brk(0) = 0x2b65000
4613 brk(0x2b86000) = 0x2b86000
4613 read(6, "nd $CGI::cookie =~ /\\b$::Instanc"..., 4096) = 4096
4613 read(6, "us: 403 Forbidden\nContent-Type: "..., 4096) = 4096
4613 brk(0) = 0x2b86000
4613 brk(0x2ba7000) = 0x2ba7000
4613 read(6, "ame}, $Vend::Session->{source});"..., 4096) = 4096
4613 read(6, "\t\t\"Results of init at %s: \",\n\t\t\t"..., 4096) = 4048
4613 brk(0) = 0x2ba7000
4613 brk(0x2bc8000) = 0x2bc8000
4613 lseek(6, 49103, SEEK_SET) = 49103
4613 lseek(6, 0, SEEK_CUR) = 49103
4613 close(6) = 0
4613 read(3, "$mod\";\n\t\t\tdie $@ if $@;\n\t\t};\n\t\ti"..., 4096) = 4096
4613 read(3, "ause only catalog C<name> to re-"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Getopt/Long.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Getopt/Long.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Getopt/Long.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Getopt/Long.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Getopt/Long.pm", 0x7fff77fb2dd0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pmc", 0x7fff77fb2e80) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pm", {st_mode=S_IFREG|0444, st_size=82390, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Getopt/Long.pm", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bb0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 read(6, "#! perl\n\n# Getopt::Long.pm -- Un"..., 4096) = 4096
4613 read(6, ";\n\n # Register the callers pa"..., 4096) = 4096
4613 read(6, "= 0;\n\tprint STDERR\n\t (\"Getopt::"..., 4096) = 4096
4613 brk(0) = 0x2bc8000
4613 brk(0x2be9000) = 0x2be9000
4613 read(6, " Make sure a valid perl identifi"..., 4096) = 4096
4613 read(6, "}) eq 'ARRAY' ) {\n\t\t\tprint STDER"..., 4096) = 4096
4613 brk(0) = 0x2be9000
4613 brk(0x2c0a000) = 0x2c0a000
4613 read(6, "\n\t\t $@;\n\t\t};\n\t\tprint STDERR ("..., 4096) = 4096
4613 read(6, " foreach ( @names ) {\n\n\t$_ = "..., 4096) = 4096
4613 brk(0) = 0x2c0a000
4613 brk(0x2c2b000) = 0x2c2b000
4613 read(6, "it{help};\n\t\t}\n\t }\n\t # Now "..., 4096) = 4096
4613 read(6, " eq $argend ||\n\t $arg =~ /^$p"..., 4096) = 4096
4613 brk(0) = 0x2c2b000
4613 brk(0x2c4c000) = 0x2c4c000
4613 read(6, "$opt ( @options ) {\n\tmy $try = l"..., 4096) = 4096
4613 read(6, "equire Pod::Usage;\n\timport Pod::"..., 4096) = 4096
4613 read(6, "rovided support for handling the"..., 4096) = 4096
4613 read(6, "that follows the option and assi"..., 4096) = 4096
4613 read(6, "red. For a hash destination,\nthe"..., 4096) = 4096
4613 read(6, "rary sequence of characters. It "..., 4096) = 4096
4613 read(6, "sFromArray(\\@ARGV, ... );\n\nThis "..., 4096) = 4096
4613 read(6, "an be enabled with:\n\n Getopt:"..., 4096) = 4096
4613 read(6, "f C<permute> is enabled, this me"..., 4096) = 4096
4613 read(6, "essing will terminate at the\nfir"..., 4096) = 4096
4613 read(6, "hese variables must be\npre-decla"..., 4096) = 4096
4613 read(6, "undation; either version 2 of th"..., 4096) = 470
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 read(3, " \"Can't set two modes -$mode and"..., 4096) = 4096
4613 brk(0) = 0x2c4c000
4613 brk(0x2c6d000) = 0x2c6d000
4613 read(3, " a couple of arrays\n\tsetup_escap"..., 4096) = 4096
4613 read(3, " $g->{'script'}.\\n\";\n\t\t\t\twarn \"S"..., 4096) = 4096
4613 read(3, " Jos\351 M\252 Revuelto\n "..., 4096) = 2705
4613 fcntl(3, F_SETFD, FD_CLOEXEC) = 0
4613 stat("/usr/sbin/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
4613 connect(6, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
4613 close(6) = 0
4613 socket(PF_LOCAL, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0) = 6
4613 connect(6, {sa_family=AF_LOCAL, sun_path="/var/run/nscd/socket"}, 110) = -1 ENOENT (No such file or directory)
4613 close(6) = 0
4613 open("/etc/nsswitch.conf", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=1728, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bfa5000
4613 read(6, "#\n# /etc/nsswitch.conf\n#\n# An ex"..., 4096) = 1728
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 munmap(0x7f6e6bfa5000, 4096) = 0
4613 open("/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=29668, ...}) = 0
4613 mmap(NULL, 29668, PROT_READ, MAP_PRIVATE, 6, 0) = 0x7f6e6bf9e000
4613 close(6) = 0
4613 open("/lib64/libnss_files.so.2", O_RDONLY|O_CLOEXEC) = 6
4613 read(6, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0@\"\0\0\0\0\0\0"..., 832) = 832
4613 fstat(6, {st_mode=S_IFREG|0755, st_size=58288, ...}) = 0
4613 mmap(NULL, 2144360, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 6, 0) = 0x7f6e61a53000
4613 mprotect(0x7f6e61a5e000, 2093056, PROT_NONE) = 0
4613 mmap(0x7f6e61c5d000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 6, 0xa000) = 0x7f6e61c5d000
4613 close(6) = 0
4613 mprotect(0x7f6e61c5d000, 4096, PROT_READ) = 0
4613 munmap(0x7f6e6bf9e000, 29668) = 0
4613 open("/etc/passwd", O_RDONLY|O_CLOEXEC) = 6
4613 fstat(6, {st_mode=S_IFREG|0644, st_size=1185, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bfa5000
4613 read(6, "root:x:0:0:root:/root:/bin/bash\n"..., 4096) = 1185
4613 close(6) = 0
4613 munmap(0x7f6e6bfa5000, 4096) = 0
4613 open("/dev/urandom", O_RDONLY) = 6
4613 read(6, "Y\305\345v", 4) = 4
4613 close(6) = 0
4613 brk(0) = 0x2c6d000
4613 brk(0x2c8e000) = 0x2c8e000
4613 brk(0) = 0x2c8e000
4613 brk(0) = 0x2c8e000
4613 brk(0x2c8d000) = 0x2c8d000
4613 brk(0) = 0x2c8d000
4613 chdir("/home/sam/live/interchange") = 0
4613 stat("interchange.cfg", {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 umask(077) = 02
4613 stat("/home/sam/live/interchange/etc/varnames", {st_mode=S_IFREG|0600, st_size=1579, ...}) = 0
4613 stat("/home/sam/live/interchange/etc/varnames", {st_mode=S_IFREG|0600, st_size=1579, ...}) = 0
4613 open("/home/sam/live/interchange/etc/varnames", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0600, st_size=1579, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 fstat(6, {st_mode=S_IFREG|0600, st_size=1579, ...}) = 0
4613 read(6, "mv_all_chars ac\nmv_a"..., 4096) = 1579
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("/usr/sbin/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/bin/gpg", {st_mode=S_IFREG|0755, st_size=749840, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 brk(0) = 0x2c8d000
4613 brk(0x2cae000) = 0x2cae000
4613 stat("interchange.cfg", {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 open("interchange.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "#==============================="..., 4096) = 4096
4613 lseek(6, 397, SEEK_SET) = 397
4613 lseek(6, 0, SEEK_CUR) = 397
4613 close(6) = 0
4613 lstat("interchange_local.cfg", {st_mode=S_IFREG|0664, st_size=162, ...}) = 0
4613 stat("interchange_local.cfg", {st_mode=S_IFREG|0664, st_size=162, ...}) = 0
4613 stat("interchange_local.cfg", {st_mode=S_IFREG|0664, st_size=162, ...}) = 0
4613 open("interchange_local.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=162, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Message Loading interchange_loca"..., 4096) = 162
4613 write(1, "Loading interchange_local.cfg.\n", 31) = 31
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 open("/home/sam/live/interchange/error.log", O_WRONLY|O_CREAT|O_APPEND, 0666) = 7
4613 lseek(7, 0, SEEK_END) = 88607
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 88607
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=88607, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 flock(7, LOCK_EX) = 0
4613 lseek(7, 0, SEEK_END) = 88607
4613 lseek(7, 0, SEEK_CUR) = 88607
4613 write(7, "- - - [11/September/2015:09:58:4"..., 76) = 76
4613 flock(7, LOCK_UN) = 0
4613 close(7) = 0
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("interchange.cfg", {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 open("interchange.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=5008, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 lseek(6, 397, SEEK_SET) = 397
4613 lseek(6, 0, SEEK_CUR) = 397
4613 read(6, "\n# These settings all affect oth"..., 4096) = 4096
4613 write(1, "Low traffic settings.\n", 22) = 22
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 open("/home/sam/live/interchange/error.log", O_WRONLY|O_CREAT|O_APPEND, 0666) = 7
4613 lseek(7, 0, SEEK_END) = 88683
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 88683
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=88683, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 flock(7, LOCK_EX) = 0
4613 lseek(7, 0, SEEK_END) = 88683
4613 lseek(7, 0, SEEK_CUR) = 88683
4613 write(7, "- - - [11/September/2015:09:58:4"..., 67) = 67
4613 flock(7, LOCK_UN) = 0
4613 close(7) = 0
4613 write(1, "Calling UI...", 13) = 13
4613 lseek(6, 3192, SEEK_SET) = 3192
4613 lseek(6, 0, SEEK_CUR) = 3192
4613 close(6) = 0
4613 lstat("lib/UI/ui.cfg", {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 stat("lib/UI/ui.cfg", {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 stat("lib/UI/ui.cfg", {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 open("lib/UI/ui.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "# Set global defaults for UI ima"..., 4096) = 4096
4613 lseek(6, 549, SEEK_SET) = 549
4613 lseek(6, 0, SEEK_CUR) = 549
4613 close(6) = 0
4613 openat(AT_FDCWD, "lib/UI/locales/", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 6
4613 getdents(6, /* 17 entries */, 32768) = 520
4613 lstat("lib/UI/locales/ja_JP.cfg", {st_mode=S_IFREG|0664, st_size=78762, ...}) = 0
4613 lstat("lib/UI/locales/sv_SE.cfg", {st_mode=S_IFREG|0664, st_size=43194, ...}) = 0
4613 lstat("lib/UI/locales/da_DK.cfg", {st_mode=S_IFREG|0664, st_size=46613, ...}) = 0
4613 lstat("lib/UI/locales/it_IT.cfg", {st_mode=S_IFREG|0664, st_size=51366, ...}) = 0
4613 lstat("lib/UI/locales/nl_NL.cfg", {st_mode=S_IFREG|0664, st_size=55090, ...}) = 0
4613 lstat("lib/UI/locales/es_ES.cfg", {st_mode=S_IFREG|0664, st_size=63737, ...}) = 0
4613 lstat("lib/UI/locales/en_GB.cfg", {st_mode=S_IFREG|0664, st_size=1637, ...}) = 0
4613 lstat("lib/UI/locales/pt_BR.cfg", {st_mode=S_IFREG|0664, st_size=53662, ...}) = 0
4613 lstat("lib/UI/locales/en_US.cfg", {st_mode=S_IFREG|0664, st_size=368, ...}) = 0
4613 lstat("lib/UI/locales/de_DE.cfg", {st_mode=S_IFREG|0664, st_size=51938, ...}) = 0
4613 lstat("lib/UI/locales/gr_GR.cfg", {st_mode=S_IFREG|0664, st_size=81622, ...}) = 0
4613 lstat("lib/UI/locales/he_IL.cfg", {st_mode=S_IFREG|0664, st_size=35166, ...}) = 0
4613 getdents(6, /* 0 entries */, 32768) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/da_DK.cfg", {st_mode=S_IFREG|0664, st_size=46613, ...}) = 0
4613 stat("lib/UI/locales/de_DE.cfg", {st_mode=S_IFREG|0664, st_size=51938, ...}) = 0
4613 stat("lib/UI/locales/en_GB.cfg", {st_mode=S_IFREG|0664, st_size=1637, ...}) = 0
4613 stat("lib/UI/locales/en_US.cfg", {st_mode=S_IFREG|0664, st_size=368, ...}) = 0
4613 stat("lib/UI/locales/es_ES.cfg", {st_mode=S_IFREG|0664, st_size=63737, ...}) = 0
4613 stat("lib/UI/locales/gr_GR.cfg", {st_mode=S_IFREG|0664, st_size=81622, ...}) = 0
4613 stat("lib/UI/locales/he_IL.cfg", {st_mode=S_IFREG|0664, st_size=35166, ...}) = 0
4613 stat("lib/UI/locales/it_IT.cfg", {st_mode=S_IFREG|0664, st_size=51366, ...}) = 0
4613 stat("lib/UI/locales/ja_JP.cfg", {st_mode=S_IFREG|0664, st_size=78762, ...}) = 0
4613 stat("lib/UI/locales/nl_NL.cfg", {st_mode=S_IFREG|0664, st_size=55090, ...}) = 0
4613 stat("lib/UI/locales/pt_BR.cfg", {st_mode=S_IFREG|0664, st_size=53662, ...}) = 0
4613 stat("lib/UI/locales/sv_SE.cfg", {st_mode=S_IFREG|0664, st_size=43194, ...}) = 0
4613 stat("lib/UI/locales/da_DK.cfg", {st_mode=S_IFREG|0664, st_size=46613, ...}) = 0
4613 open("lib/UI/locales/da_DK.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=46613, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale da_DK <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "s\",\n\"Arkiv\351r udvalgte ordrer\",\n\n"..., 4096) = 4096
4613 read(6, "dresses\",\n\"Firma E-Mail adresse\""..., 4096) = 4096
4613 read(6, "\"Enable PGP/GPG mode\",\n\"Aktiv\351r "..., 4096) = 4096
4613 read(6, "t\",\n\"H&oslash;jde\",\n\n\"Hidden adm"..., 4096) = 4096
4613 read(6, "\n\"Minor: cannot set watch points"..., 4096) = 4096
4613 read(6, "e navigering og layout\",\n\n\"Overa"..., 4096) = 4096
4613 read(6, "rd protection for your e-commerc"..., 4096) = 4096
4613 read(6, "eral Express forsendelsesm&aring"..., 4096) = 4096
4613 read(6, "cess past orders\",\n\"Ordrebehandl"..., 4096) = 4096
4613 brk(0) = 0x2cae000
4613 brk(0x2cd8000) = 0x2cd8000
4613 brk(0) = 0x2cd8000
4613 brk(0) = 0x2cd8000
4613 brk(0x2ccf000) = 0x2ccf000
4613 brk(0) = 0x2ccf000
4613 read(6, "ed.\n\"WIZARD_STEP_PREVIEW_PAR_3\","..., 4096) = 4096
4613 read(6, "ret\",\n\n\"case-insensitive\",\n\"ikke"..., 4096) = 1557
4613 brk(0) = 0x2ccf000
4613 brk(0x2cf2000) = 0x2cf2000
4613 brk(0) = 0x2cf2000
4613 brk(0x2d14000) = 0x2d14000
4613 brk(0) = 0x2d14000
4613 brk(0x2d37000) = 0x2d37000
4613 brk(0) = 0x2d37000
4613 brk(0x2d59000) = 0x2d59000
4613 brk(0) = 0x2d59000
4613 brk(0x2d7a000) = 0x2d7a000
4613 brk(0) = 0x2d7a000
4613 brk(0) = 0x2d7a000
4613 brk(0x2d71000) = 0x2d71000
4613 brk(0) = 0x2d71000
4613 brk(0) = 0x2d71000
4613 brk(0x2d92000) = 0x2d92000
4613 brk(0) = 0x2d92000
4613 brk(0x2db3000) = 0x2db3000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/de_DE.cfg", {st_mode=S_IFREG|0664, st_size=51938, ...}) = 0
4613 open("lib/UI/locales/de_DE.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=51938, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale de_DE <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "ly changes made to configuration"..., 4096) = 4096
4613 read(6, "l pending\",\n\"Unbearbeite markier"..., 4096) = 4096
4613 read(6, "n entschl\374sseln\",\n\n\"Default:\",\n\""..., 4096) = 4096
4613 read(6, ",\nundef,\n\n\"Export Data\",\n\"Daten "..., 4096) = 4096
4613 read(6, "iple tables:\",\nundef,\n\n\"In conte"..., 4096) = 4096
4613 read(6, "set extra information, for examp"..., 4096) = 4096
4613 read(6, "Keine Optionen\",\n\n\"No active cus"..., 4096) = 4096
4613 read(6, "ngen eines Monats nach Tagen sor"..., 4096) = 4096
4613 read(6, "ndadresse\",\n\n\"Save\",\n\"Speichern\""..., 4096) = 4096
4613 read(6, "for page '%s'.\",\nundef,\n\n\"Sorry,"..., 4096) = 4096
4613 read(6, "istics utility\",\n\"Werkzeug f\374r Z"..., 4096) = 4096
4613 read(6, "Zip/Postal Code\",\n\"Postleitzahl\""..., 4096) = 2786
4613 brk(0) = 0x2db3000
4613 brk(0x2ddc000) = 0x2ddc000
4613 brk(0) = 0x2ddc000
4613 brk(0x2dfd000) = 0x2dfd000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/en_GB.cfg", {st_mode=S_IFREG|0664, st_size=1637, ...}) = 0
4613 open("lib/UI/locales/en_GB.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=1637, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale en_GB <<EOF\n{\n# language "..., 4096) = 1637
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/en_US.cfg", {st_mode=S_IFREG|0664, st_size=368, ...}) = 0
4613 open("lib/UI/locales/en_US.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=368, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "# These file adds strings to be "..., 4096) = 368
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/es_ES.cfg", {st_mode=S_IFREG|0664, st_size=63737, ...}) = 0
4613 open("lib/UI/locales/es_ES.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=63737, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale es_ES <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "es\",\n\n\"Administrator Edit\",\n\"Con"..., 4096) = 4096
4613 read(6, "campos en <B>negrita</B> son obl"..., 4096) = 4096
4613 read(6, "egory\",\n\"Categor&iacute;a Venta "..., 4096) = 4096
4613 read(6, "rreo-e\",\n\n\"email_copy\",\n\"Copia d"..., 4096) = 4096
4613 read(6, "n de:\",\n\n\"From what ZIP code wil"..., 4096) = 4096
4613 read(6, "r\",\n\n\"Individual orders this mon"..., 4096) = 4096
4613 read(6, ": El servidor interno HTTP no fu"..., 4096) = 4096
4613 read(6, "o de pedidos\",\n\n\"October\",\n\"Octu"..., 4096) = 4096
4613 read(6, "issions\",\n\"Permisos\",\n\n\"Personal"..., 4096) = 4096
4613 read(6, "s opciones de Fedex que desea of"..., 4096) = 4096
4613 read(6, "iciando numeraci&oacute;n de ped"..., 4096) = 4096
4613 read(6, "cute; creado.\",\n\n\"Thumb\",\n\"Icono"..., 4096) = 4096
4613 read(6, " was successful. Now log in for "..., 4096) = 4096
4613 read(6, " something at the opposite end o"..., 4096) = 4096
4613 read(6, ",\n\"Aplicar ahora\",\n\n\"archived\",\n"..., 4096) = 2297
4613 brk(0) = 0x2dfd000
4613 brk(0x2e21000) = 0x2e21000
4613 brk(0) = 0x2e21000
4613 brk(0x2e50000) = 0x2e50000
4613 brk(0) = 0x2e50000
4613 brk(0) = 0x2e50000
4613 brk(0x2e31000) = 0x2e31000
4613 brk(0) = 0x2e31000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/gr_GR.cfg", {st_mode=S_IFREG|0664, st_size=81622, ...}) = 0
4613 open("lib/UI/locales/gr_GR.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=81622, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale gr_GR <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "\214\317\202 GPG \316\256 PGP \316\272\316\273\316\265\316\271\316\264\316\271\316\277\317\215 "..., 4096) = 4096
4613 read(6, "\277\317\205\317\201\316\277\316\271 \317\214\317\204\316\271 \316\270\316\255\316\273\316\265\317\204\316\265 \316\275"..., 4096) = 4096
4613 read(6, "\317\207\316\265\316\257\317\211\316\275\",\n\n\"Change template\","..., 4096) = 4096
4613 read(6, " \316\265\316\257\316\275\316\261\316\271 \316\264\317\205\316\275\316\261\317\204\316\256 \316\267 \316\274\316\265"..., 4096) = 4096
4613 read(6, "\263\316\274\316\255\316\275\317\211\316\275 \317\200\316\265\316\273\316\261\317\204\317\216\316\275\",\n\n\"D"..., 4096) = 4096
4613 read(6, "\205\317\204\316\277\317\215 \317\204\316\277\317\205 \316\274\316\265\316\275\316\277\317\215\",\n\n\"Ed"..., 4096) = 4096
4613 read(6, "\316\263\316\277 \317\204\317\211\316\275 \316\265\316\271\316\272\317\214\316\275\317\211\316\275\",\n\n\"F"..., 4096) = 4096
4613 read(6, "\263\317\211\316\263\316\256 \316\261\317\200\317\214 \316\261\317\201\317\207\316\265\316\257\316\277\",\n\n\""..., 4096) = 4096
4613 read(6, "\317\203\316\257\316\261 \316\227\316\274\316\265\317\201\316\277\316\273\316\277\316\263\316\257\317\211\316\275 \316\233"..., 4096) = 4096
4613 read(6, "\317\200\316\277\317\205 \317\200\316\265\317\201\316\271\316\255\317\207\316\265\316\271 \317\204\316\277\316\275 \316"..., 4096) = 4096
4613 read(6, "ndef,\n\n\"NO backup\",\n\"\316\224\316\265\316\275 \317\205\317\200"..., 4096) = 4096
4613 read(6, "\265\317\204\316\265 \316\264\316\271\317\200\316\273\316\254 \316\261\317\200\316\277\317\204\316\265\316\273\316\255\317"..., 4096) = 4096
4613 read(6, " categories with area and cat ta"..., 4096) = 4096
4613 read(6, "\265 \316\273\316\257\317\203\317\204\316\261 email\",\n\n\"Qty\",\n\"\316\240"..., 4096) = 4096
4613 read(6, "\263\316\271\316\261 \316\275\316\261 \316\265\316\274\317\206\316\254\316\275\316\271\317\203\316\265\316\271 \316\265"..., 4096) = 4096
4613 read(6, "eruser \316\263\316\271\316\261 \317\203\316\265\316\273\316\257\316\264\316\261 '%s'."..., 4096) = 4096
4613 read(6, " \317\203\317\205\316\275\316\255\316\262\316\267:\",\n\n\"The search mu"..., 4096) = 4096
4613 read(6, "%s</B>\",\n\"\316\221\317\201\317\207\316\265\316\257\316\277 \316\261\316\275\316\265\316\262\316"..., 4096) = 4096
4613 read(6, "\263\316\255\317\202%s.\",\n\n\"Zero the values\",\n\""..., 4096) = 3798
4613 brk(0) = 0x2e31000
4613 brk(0x2e59000) = 0x2e59000
4613 brk(0) = 0x2e59000
4613 brk(0x2e81000) = 0x2e81000
4613 open("/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 7
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=2502, ...}) = 0
4613 mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0x7f6e6bfa5000
4613 read(7, "# Locale name alias data base.\n#"..., 4096) = 2502
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 munmap(0x7f6e6bfa5000, 4096) = 0
4613 open("/usr/lib/locale/gr_GR/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 open("/usr/lib/locale/gr/LC_IDENTIFICATION", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
4613 brk(0) = 0x2e81000
4613 brk(0x2ea8000) = 0x2ea8000
4613 brk(0) = 0x2ea8000
4613 brk(0x2ed0000) = 0x2ed0000
4613 brk(0) = 0x2ed0000
4613 brk(0) = 0x2ed0000
4613 brk(0x2ebc000) = 0x2ebc000
4613 brk(0) = 0x2ebc000
4613 brk(0) = 0x2ebc000
4613 brk(0) = 0x2ebc000
4613 brk(0x2ea8000) = 0x2ea8000
4613 brk(0) = 0x2ea8000
4613 brk(0) = 0x2ea8000
4613 brk(0) = 0x2ea8000
4613 brk(0x2e94000) = 0x2e94000
4613 brk(0) = 0x2e94000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/he_IL.cfg", {st_mode=S_IFREG|0664, st_size=35166, ...}) = 0
4613 open("lib/UI/locales/he_IL.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=35166, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale he_IL <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "rdered\",\n\"\344\346\356\360\345\372 \341\344\356\372\360\344\",\n\n\"Back"..., 4096) = 4096
4613 read(6, "\"\344\360\347\344\",\n\n\"Domestic Flat/Per item"..., 4096) = 4096
4613 read(6, "\"If this is the first time you h"..., 4096) = 4096
4613 read(6, "ind that some things you enter m"..., 4096) = 4096
4613 read(6, "rapped\",\n\n\"Sample customers and "..., 4096) = 4096
4613 read(6, "d do\",\nundef,\n\n\"The following er"..., 4096) = 4096
4613 read(6, "t information will be displayed\n"..., 4096) = 4096
4613 read(6, "\351\",\n\n\"XLS Spreadsheet\",\nundef,\n\n"..., 4096) = 2398
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/it_IT.cfg", {st_mode=S_IFREG|0664, st_size=51366, ...}) = 0
4613 open("lib/UI/locales/it_IT.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=51366, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale it_IT <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "o\",\n\n\"Archive checked\",\n\"Archivi"..., 4096) = 4096
4613 read(6, "plate\",\n\n\"Choose which shipping "..., 4096) = 4096
4613 read(6, "user\",\n\"Elimina utente\",\n\n\"Delet"..., 4096) = 4096
4613 read(6, "hip mode\",\nundef,\n\n\"Flat-rate in"..., 4096) = 4096
4613 read(6, " applied\",\n\"Applicati gli ultimi"..., 4096) = 4096
4613 read(6, "ur matching criteria, select <B>"..., 4096) = 4096
4613 read(6, "ent gateway\",\n\"Gateway pagamenti"..., 4096) = 4096
4613 read(6, "o catalogo\",\n\n\"Set label to name"..., 4096) = 4096
4613 read(6, "hipping?\",\nundef,\n\n\"Technical Ad"..., 4096) = 4096
4613 read(6, " sulle tasse di categoria\",\n\n\"Va"..., 4096) = 4096
4613 read(6, "nte.\",\n\n# NOTE: Signio became Ve"..., 4096) = 4096
4613 read(6, "a tua ditta\",\n\n\"Your content pag"..., 4096) = 2214
4613 brk(0) = 0x2e94000
4613 brk(0x2eba000) = 0x2eba000
4613 brk(0) = 0x2eba000
4613 brk(0) = 0x2eba000
4613 brk(0x2eae000) = 0x2eae000
4613 brk(0) = 0x2eae000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/ja_JP.cfg", {st_mode=S_IFREG|0664, st_size=78762, ...}) = 0
4613 open("lib/UI/locales/ja_JP.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=78762, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale ja_JP <<EOF\n{\nMV_LANG_NAM"..., 4096) = 4096
4613 read(6, "product information requests be "..., 4096) = 4096
4613 read(6, ",\n\"\220\277\213\201\220\346\220\251\",\n\n\"Binary\",\n\"\203o\203C\203i"..., 4096) = 4096
4613 read(6, "\244\202\262\202\264\202\242\202\334\202\267\201B\213M\225\373\202\314\203T\203C\203g\202\252\227\247\202\277\217"..., 4096) = 4096
4613 read(6, "lete method\",\n\"\224z\221\227\225\373\226@\202\314\215\355\217\234\",\n"..., 4096) = 4096
4613 read(6, "X\203|\201[\203g\",\n\n\"Export an ASCII-armo"..., 4096) = 4096
4613 read(6, "s should be sent to your order d"..., 4096) = 4096
4613 read(6, "\201\201[\203W\",\n\n\"Logout\",\n\"\203\215\203O\203A\203E\203g\","..., 4096) = 4096
4613 read(6, "\n\n\"No suitable message to send.\""..., 4096) = 4096
4613 read(6, "GP/GPG key selection\",\n\"PGP/GPG\203"..., 4096) = 4096
4613 read(6, "\202\360\222T\202\267\",\n\n\"Reset to default.\",\n\""..., 4096) = 4096
4613 read(6, "ing\",\n\"\224z\221\227\",\n\n\"Shipping Address"..., 4096) = 4096
4613 read(6, ",\n\"\203e\201[\203u\203\213\",\n\n\"Table Manager: E"..., 4096) = 4096
4613 read(6, "\334\202\267\",\n\n\"UPS Options\",\n\"UPS\203I\203v\203V"..., 4096) = 4096
4613 read(6, " text or enter all new text.\n\"WI"..., 4096) = 4096
4613 read(6, "r.\n\"WIZARD_STEP_SHIP_COUNTRY_PAR"..., 4096) = 4096
4613 read(6, "\202\265\202\255\202\315...\",\n\n\"order\",\n\"\222\215\225\266\",\n\n\""..., 4096) = 4096
4613 read(6, "L\211v\202\310\203\212\203\223\203N\217W\",\n\n\"Log In\",\n\"\203\215\203O"..., 4096) = 4096
4613 read(6, "\221\227\227\277<br>\216\350\220\224\227\277\",\n\n\"Shipping Coun"..., 4096) = 4096
4613 read(6, "\215\203O\203A\203E\203g\202\263\202\352\202\334\202\265\202\275\",\n\n\"You may "..., 4096) = 938
4613 brk(0) = 0x2eae000
4613 brk(0x2ee2000) = 0x2ee2000
4613 brk(0) = 0x2ee2000
4613 brk(0x2f08000) = 0x2f08000
4613 brk(0) = 0x2f08000
4613 brk(0) = 0x2f08000
4613 brk(0x2ef5000) = 0x2ef5000
4613 brk(0) = 0x2ef5000
4613 brk(0) = 0x2ef5000
4613 brk(0x2f16000) = 0x2f16000
4613 brk(0) = 0x2f16000
4613 brk(0) = 0x2f16000
4613 brk(0x2f15000) = 0x2f15000
4613 brk(0) = 0x2f15000
4613 brk(0) = 0x2f15000
4613 brk(0x2f36000) = 0x2f36000
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/nl_NL.cfg", {st_mode=S_IFREG|0664, st_size=55090, ...}) = 0
4613 open("lib/UI/locales/nl_NL.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=55090, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale nl_NL <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "\n\n\"Append menu item\",\n\"Menuregel"..., 4096) = 4096
4613 read(6, "d\",\n\n\"Change saved\",\n\"Wijziging "..., 4096) = 4096
4613 read(6, "ing\",\n\n\"Customer mailing\",\n\"Klan"..., 4096) = 4096
4613 read(6, "Orders Invoeren\",\n\n\"Enter the va"..., 4096) = 4096
4613 read(6, "nd Category Fields\",\n\"Groep- en "..., 4096) = 4096
4613 read(6, "n sessie- en tijdelijke bestande"..., 4096) = 4096
4613 read(6, "itor\",\n\n\"Merge\",\n\"Samenvoegen\",\n"..., 4096) = 4096
4613 read(6, "ressies.\",\n\n\"Normally one search"..., 4096) = 4096
4613 read(6, "\n\"Page type editor\",\n\"Pagina typ"..., 4096) = 4096
4613 read(6, "teer voor bewerken tabel\",\n\n\"Sel"..., 4096) = 4096
4613 read(6, "\n\"State/Province\",\nundef,\n\n\"Stat"..., 4096) = 4096
4613 read(6, "tus only, no ship function\",\n\"Al"..., 4096) = 4096
4613 read(6, ",\n\"omlaag\",\n\n\"download\",\n\"downlo"..., 4096) = 1842
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/pt_BR.cfg", {st_mode=S_IFREG|0664, st_size=53662, ...}) = 0
4613 open("lib/UI/locales/pt_BR.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=53662, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale pt_BR <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "eiro\",\n\n\"Affiliates\",\n\"Parceiros"..., 4096) = 4096
4613 read(6, "Telefonar ao cliente para obter "..., 4096) = 4096
4613 read(6, "ase tables\",\n\"Tabelas do Banco d"..., 4096) = 4096
4613 read(6, "Ocorr\352ncias contendo \\\"%s\\\"\",\n\n\""..., 4096) = 4096
4613 read(6, "sca n\343o funcionar\343o.\",\n\n\"If diff"..., 4096) = 4096
4613 read(6, "onnect.signio.com)\",\n\"Servidor o"..., 4096) = 4096
4613 read(6, "duplicate result returns, you ca"..., 4096) = 4096
4613 read(6, "t Preferences - PGP\",\n\"Prefer\352nc"..., 4096) = 4096
4613 read(6, "hold estiver configurado\",\n\n\"Sel"..., 4096) = 4096
4613 read(6, "\n\"Status\",\n\n\"Status last updated"..., 4096) = 4096
4613 read(6, "raffic stats\",\n\"Estat\355sticas de "..., 4096) = 4096
4613 read(6, "fornecedores na Internet de ...\""..., 4096) = 4096
4613 read(6, "sp;No&nbsp;&nbsp;\",\n\"&nbsp;N\343o&n"..., 4096) = 414
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/locales/sv_SE.cfg", {st_mode=S_IFREG|0664, st_size=43194, ...}) = 0
4613 open("lib/UI/locales/sv_SE.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=43194, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 read(6, "Locale sv_SE <<EOF\n{\n\" (called w"..., 4096) = 4096
4613 read(6, "ill ta bort markerade poster?\",\n"..., 4096) = 4096
4613 read(6, "anager\",\n\"Kund hanterare\",\n\n\"Cus"..., 4096) = 4096
4613 read(6, "\n\n\"External UPS lookup and other"..., 4096) = 4096
4613 read(6, ",\n\"Varulager\",\n\n\"Item editor\",\n\""..., 4096) = 4096
4613 read(6, "rl regular expressions are.\",\nun"..., 4096) = 4096
4613 read(6, "rsonlig CSS\",\n\n\"Phone\",\nundef,\n\n"..., 4096) = 4096
4613 read(6, " password\",\nundef,\n\n\"Simple\",\nun"..., 4096) = 4096
4613 read(6, "PS Options\",\nundef,\n\n\"Un-archive"..., 4096) = 4096
4613 read(6, "his foundation site is intended "..., 4096) = 4096
4613 read(6, " received this when you signed u"..., 4096) = 2234
4613 read(6, "", 4096) = 0
4613 close(6) = 0
4613 stat("lib/UI/ui.cfg", {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 open("lib/UI/ui.cfg", O_RDONLY) = 6
4613 ioctl(6, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(6, 0, SEEK_CUR) = 0
4613 fstat(6, {st_mode=S_IFREG|0664, st_size=12051, ...}) = 0
4613 fcntl(6, F_SETFD, FD_CLOEXEC) = 0
4613 lseek(6, 549, SEEK_SET) = 549
4613 lseek(6, 0, SEEK_CUR) = 549
4613 read(6, "\n# Set up for default locale\nLoc"..., 4096) = 4096
4613 getcwd("/home/sam/live/interchange", 4095) = 27
4613 stat("/home/sam/live/interchange/code", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat(".", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 10 entries */, 32768) = 312
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/Filter", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/JavaScriptCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("Widget", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("Widget", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/Widget") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 31 entries */, 32768) = 1128
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/country_select.widget", {st_mode=S_IFREG|0664, st_size=9620, ...}) = 0
4613 stat("country_select.widget", {st_mode=S_IFREG|0664, st_size=9620, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/checkbox.widget", {st_mode=S_IFREG|0664, st_size=792, ...}) = 0
4613 stat("checkbox.widget", {st_mode=S_IFREG|0664, st_size=792, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/display.widget", {st_mode=S_IFREG|0664, st_size=537, ...}) = 0
4613 stat("display.widget", {st_mode=S_IFREG|0664, st_size=537, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/imagedir.widget", {st_mode=S_IFREG|0664, st_size=1632, ...}) = 0
4613 stat("imagedir.widget", {st_mode=S_IFREG|0664, st_size=1632, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/multiple.widget", {st_mode=S_IFREG|0664, st_size=625, ...}) = 0
4613 stat("multiple.widget", {st_mode=S_IFREG|0664, st_size=625, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/radio.widget", {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 stat("radio.widget", {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/options.widget", {st_mode=S_IFREG|0664, st_size=538, ...}) = 0
4613 stat("options.widget", {st_mode=S_IFREG|0664, st_size=538, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/date.widget", {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 stat("date.widget", {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/text.widget", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 stat("text.widget", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/yesno.widget", {st_mode=S_IFREG|0664, st_size=521, ...}) = 0
4613 stat("yesno.widget", {st_mode=S_IFREG|0664, st_size=521, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/imagehelper.widget", {st_mode=S_IFREG|0664, st_size=2549, ...}) = 0
4613 stat("imagehelper.widget", {st_mode=S_IFREG|0664, st_size=2549, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/value.widget", {st_mode=S_IFREG|0664, st_size=599, ...}) = 0
4613 stat("value.widget", {st_mode=S_IFREG|0664, st_size=599, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/links.widget", {st_mode=S_IFREG|0664, st_size=518, ...}) = 0
4613 stat("links.widget", {st_mode=S_IFREG|0664, st_size=518, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/ynzero.widget", {st_mode=S_IFREG|0664, st_size=581, ...}) = 0
4613 stat("ynzero.widget", {st_mode=S_IFREG|0664, st_size=581, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/select.widget", {st_mode=S_IFREG|0664, st_size=562, ...}) = 0
4613 stat("select.widget", {st_mode=S_IFREG|0664, st_size=562, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/default.widget", {st_mode=S_IFREG|0664, st_size=588, ...}) = 0
4613 stat("default.widget", {st_mode=S_IFREG|0664, st_size=588, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/uploadblob.widget", {st_mode=S_IFREG|0664, st_size=1721, ...}) = 0
4613 stat("uploadblob.widget", {st_mode=S_IFREG|0664, st_size=1721, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/option_format.widget", {st_mode=S_IFREG|0664, st_size=563, ...}) = 0
4613 stat("option_format.widget", {st_mode=S_IFREG|0664, st_size=563, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/time.widget", {st_mode=S_IFREG|0664, st_size=3271, ...}) = 0
4613 stat("time.widget", {st_mode=S_IFREG|0664, st_size=3271, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/realvalue.widget", {st_mode=S_IFREG|0664, st_size=622, ...}) = 0
4613 stat("realvalue.widget", {st_mode=S_IFREG|0664, st_size=622, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/gpg_keys.widget", {st_mode=S_IFREG|0664, st_size=734, ...}) = 0
4613 stat("gpg_keys.widget", {st_mode=S_IFREG|0664, st_size=734, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/movecombo.widget", {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 stat("movecombo.widget", {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/htmlarea.widget", {st_mode=S_IFREG|0664, st_size=7359, ...}) = 0
4613 stat("htmlarea.widget", {st_mode=S_IFREG|0664, st_size=7359, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/labels.widget", {st_mode=S_IFREG|0664, st_size=528, ...}) = 0
4613 stat("labels.widget", {st_mode=S_IFREG|0664, st_size=528, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/combo.widget", {st_mode=S_IFREG|0664, st_size=519, ...}) = 0
4613 stat("combo.widget", {st_mode=S_IFREG|0664, st_size=519, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/show.widget", {st_mode=S_IFREG|0664, st_size=533, ...}) = 0
4613 stat("show.widget", {st_mode=S_IFREG|0664, st_size=533, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/acl.widget", {st_mode=S_IFREG|0664, st_size=2809, ...}) = 0
4613 stat("acl.widget", {st_mode=S_IFREG|0664, st_size=2809, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/noyes.widget", {st_mode=S_IFREG|0664, st_size=559, ...}) = 0
4613 stat("noyes.widget", {st_mode=S_IFREG|0664, st_size=559, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Widget/uploadhelper.widget", {st_mode=S_IFREG|0664, st_size=1729, ...}) = 0
4613 stat("uploadhelper.widget", {st_mode=S_IFREG|0664, st_size=1729, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("template_tag", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("template_tag", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/template_tag") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 3 entries */, 32768) = 80
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/template_tag") = 0
4613 lstat("strap", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 stat("strap", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/template_tag/strap") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 9 entries */, 32768) = 296
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/div_organize.tag", {st_mode=S_IFREG|0644, st_size=8433, ...}) = 0
4613 stat("div_organize.tag", {st_mode=S_IFREG|0644, st_size=8433, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/hmac_sha1_hex.filter", {st_mode=S_IFREG|0644, st_size=228, ...}) = 0
4613 stat("hmac_sha1_hex.filter", {st_mode=S_IFREG|0644, st_size=228, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/pay_cert_redeem.tag", {st_mode=S_IFREG|0644, st_size=2295, ...}) = 0
4613 stat("pay_cert_redeem.tag", {st_mode=S_IFREG|0644, st_size=2295, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/bootmenu.tag", {st_mode=S_IFREG|0644, st_size=14672, ...}) = 0
4613 stat("bootmenu.tag", {st_mode=S_IFREG|0644, st_size=14672, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/cert.am", {st_mode=S_IFREG|0644, st_size=249, ...}) = 0
4613 stat("cert.am", {st_mode=S_IFREG|0644, st_size=249, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/logger.tag", {st_mode=S_IFREG|0644, st_size=649, ...}) = 0
4613 stat("logger.tag", {st_mode=S_IFREG|0644, st_size=649, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/template_tag/strap/pay_cert.tag", {st_mode=S_IFREG|0644, st_size=11107, ...}) = 0
4613 stat("pay_cert.tag", {st_mode=S_IFREG|0644, st_size=11107, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("OrderCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("OrderCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/OrderCheck") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 17 entries */, 32768) = 568
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/numeric.oc", {st_mode=S_IFREG|0664, st_size=691, ...}) = 0
4613 stat("numeric.oc", {st_mode=S_IFREG|0664, st_size=691, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/future.oc", {st_mode=S_IFREG|0664, st_size=1321, ...}) = 0
4613 stat("future.oc", {st_mode=S_IFREG|0664, st_size=1321, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/regex.oc", {st_mode=S_IFREG|0664, st_size=1130, ...}) = 0
4613 stat("regex.oc", {st_mode=S_IFREG|0664, st_size=1130, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/natural.oc", {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 stat("natural.oc", {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/filter.oc", {st_mode=S_IFREG|0664, st_size=1036, ...}) = 0
4613 stat("filter.oc", {st_mode=S_IFREG|0664, st_size=1036, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/match.oc", {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 stat("match.oc", {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/always_fail.oc", {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 stat("always_fail.oc", {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/isbn.oc", {st_mode=S_IFREG|0664, st_size=1712, ...}) = 0
4613 stat("isbn.oc", {st_mode=S_IFREG|0664, st_size=1712, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/numeric_strict.oc", {st_mode=S_IFREG|0664, st_size=709, ...}) = 0
4613 stat("numeric_strict.oc", {st_mode=S_IFREG|0664, st_size=709, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/exists.oc", {st_mode=S_IFREG|0664, st_size=1302, ...}) = 0
4613 stat("exists.oc", {st_mode=S_IFREG|0664, st_size=1302, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/relative_filename.oc", {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 stat("relative_filename.oc", {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/unique.oc", {st_mode=S_IFREG|0664, st_size=1301, ...}) = 0
4613 stat("unique.oc", {st_mode=S_IFREG|0664, st_size=1301, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/email_only.oc", {st_mode=S_IFREG|0664, st_size=765, ...}) = 0
4613 stat("email_only.oc", {st_mode=S_IFREG|0664, st_size=765, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/length.oc", {st_mode=S_IFREG|0664, st_size=1044, ...}) = 0
4613 stat("length.oc", {st_mode=S_IFREG|0664, st_size=1044, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/OrderCheck/always_pass.oc", {st_mode=S_IFREG|0664, st_size=567, ...}) = 0
4613 stat("always_pass.oc", {st_mode=S_IFREG|0664, st_size=567, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("UserTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("UserTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/UserTag") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 37 entries */, 32768) = 1336
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/capture_page.tag", {st_mode=S_IFREG|0664, st_size=2188, ...}) = 0
4613 stat("capture_page.tag", {st_mode=S_IFREG|0664, st_size=2188, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/if_not_volatile.tag", {st_mode=S_IFREG|0664, st_size=246, ...}) = 0
4613 stat("if_not_volatile.tag", {st_mode=S_IFREG|0664, st_size=246, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/convert_date.tag", {st_mode=S_IFREG|0664, st_size=2465, ...}) = 0
4613 stat("convert_date.tag", {st_mode=S_IFREG|0664, st_size=2465, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/usps_query.tag", {st_mode=S_IFREG|0664, st_size=12323, ...}) = 0
4613 stat("usps_query.tag", {st_mode=S_IFREG|0664, st_size=12323, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/css.tag", {st_mode=S_IFREG|0664, st_size=2743, ...}) = 0
4613 stat("css.tag", {st_mode=S_IFREG|0664, st_size=2743, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/delete_cart.tag", {st_mode=S_IFREG|0664, st_size=697, ...}) = 0
4613 stat("delete_cart.tag", {st_mode=S_IFREG|0664, st_size=697, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/email.tag", {st_mode=S_IFREG|0664, st_size=7372, ...}) = 0
4613 stat("email.tag", {st_mode=S_IFREG|0664, st_size=7372, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/env.tag", {st_mode=S_IFREG|0664, st_size=953, ...}) = 0
4613 stat("env.tag", {st_mode=S_IFREG|0664, st_size=953, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/page_meta.tag", {st_mode=S_IFREG|0664, st_size=908, ...}) = 0
4613 stat("page_meta.tag", {st_mode=S_IFREG|0664, st_size=908, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/button.tag", {st_mode=S_IFREG|0664, st_size=6418, ...}) = 0
4613 stat("button.tag", {st_mode=S_IFREG|0664, st_size=6418, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/title_bar.tag", {st_mode=S_IFREG|0664, st_size=1143, ...}) = 0
4613 stat("title_bar.tag", {st_mode=S_IFREG|0664, st_size=1143, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/component.tag", {st_mode=S_IFREG|0664, st_size=3213, ...}) = 0
4613 stat("component.tag", {st_mode=S_IFREG|0664, st_size=3213, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/save_cart.tag", {st_mode=S_IFREG|0664, st_size=1260, ...}) = 0
4613 stat("save_cart.tag", {st_mode=S_IFREG|0664, st_size=1260, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/table_organize.tag", {st_mode=S_IFREG|0664, st_size=4447, ...}) = 0
4613 stat("table_organize.tag", {st_mode=S_IFREG|0664, st_size=4447, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/usertrack.tag", {st_mode=S_IFREG|0664, st_size=568, ...}) = 0
4613 stat("usertrack.tag", {st_mode=S_IFREG|0664, st_size=568, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/forum.tag", {st_mode=S_IFREG|0664, st_size=6228, ...}) = 0
4613 stat("forum.tag", {st_mode=S_IFREG|0664, st_size=6228, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/formel.tag", {st_mode=S_IFREG|0664, st_size=5109, ...}) = 0
4613 stat("formel.tag", {st_mode=S_IFREG|0664, st_size=5109, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/report_table.tag", {st_mode=S_IFREG|0664, st_size=20684, ...}) = 0
4613 stat("report_table.tag", {st_mode=S_IFREG|0664, st_size=20684, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/make_password.tag", {st_mode=S_IFREG|0664, st_size=1086, ...}) = 0
4613 stat("make_password.tag", {st_mode=S_IFREG|0664, st_size=1086, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/load_cart.tag", {st_mode=S_IFREG|0664, st_size=881, ...}) = 0
4613 stat("load_cart.tag", {st_mode=S_IFREG|0664, st_size=881, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/values_space.tag", {st_mode=S_IFREG|0664, st_size=1367, ...}) = 0
4613 stat("values_space.tag", {st_mode=S_IFREG|0664, st_size=1367, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/get_url.tag", {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 stat("get_url.tag", {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/summary.tag", {st_mode=S_IFREG|0664, st_size=1399, ...}) = 0
4613 stat("summary.tag", {st_mode=S_IFREG|0664, st_size=1399, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/timed_display.tag", {st_mode=S_IFREG|0664, st_size=1914, ...}) = 0
4613 stat("timed_display.tag", {st_mode=S_IFREG|0664, st_size=1914, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/bar_button.tag", {st_mode=S_IFREG|0664, st_size=834, ...}) = 0
4613 stat("bar_button.tag", {st_mode=S_IFREG|0664, st_size=834, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/var.tag", {st_mode=S_IFREG|0664, st_size=1067, ...}) = 0
4613 stat("var.tag", {st_mode=S_IFREG|0664, st_size=1067, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/child-process.tag", {st_mode=S_IFREG|0664, st_size=3444, ...}) = 0
4613 stat("child-process.tag", {st_mode=S_IFREG|0664, st_size=3444, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/rand.tag", {st_mode=S_IFREG|0664, st_size=787, ...}) = 0
4613 stat("rand.tag", {st_mode=S_IFREG|0664, st_size=787, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/ups_query.tag", {st_mode=S_IFREG|0664, st_size=5807, ...}) = 0
4613 stat("ups_query.tag", {st_mode=S_IFREG|0664, st_size=5807, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/db_date.tag", {st_mode=S_IFREG|0664, st_size=1236, ...}) = 0
4613 stat("db_date.tag", {st_mode=S_IFREG|0664, st_size=1236, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/email_raw.tag", {st_mode=S_IFREG|0664, st_size=2051, ...}) = 0
4613 stat("email_raw.tag", {st_mode=S_IFREG|0664, st_size=2051, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/weight.tag", {st_mode=S_IFREG|0664, st_size=9193, ...}) = 0
4613 stat("weight.tag", {st_mode=S_IFREG|0664, st_size=9193, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/fortune.tag", {st_mode=S_IFREG|0664, st_size=1285, ...}) = 0
4613 stat("fortune.tag", {st_mode=S_IFREG|0664, st_size=1285, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/loc.tag", {st_mode=S_IFREG|0664, st_size=1380, ...}) = 0
4613 stat("loc.tag", {st_mode=S_IFREG|0664, st_size=1380, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UserTag/history_scan.tag", {st_mode=S_IFREG|0664, st_size=2464, ...}) = 0
4613 stat("history_scan.tag", {st_mode=S_IFREG|0664, st_size=2464, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("SystemTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("SystemTag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/SystemTag") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 105 entries */, 32768) = 3992
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/calc.coretag", {st_mode=S_IFREG|0664, st_size=619, ...}) = 0
4613 stat("calc.coretag", {st_mode=S_IFREG|0664, st_size=619, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/image.tag", {st_mode=S_IFREG|0664, st_size=7545, ...}) = 0
4613 stat("image.tag", {st_mode=S_IFREG|0664, st_size=7545, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/attr_list.coretag", {st_mode=S_IFREG|0664, st_size=823, ...}) = 0
4613 stat("attr_list.coretag", {st_mode=S_IFREG|0664, st_size=823, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/loop.coretag", {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 stat("loop.coretag", {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/levies.coretag", {st_mode=S_IFREG|0664, st_size=800, ...}) = 0
4613 stat("levies.coretag", {st_mode=S_IFREG|0664, st_size=800, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/onfly.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 stat("onfly.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/read_cookie.coretag", {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 stat("read_cookie.coretag", {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/nitems.coretag", {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 stat("nitems.coretag", {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/input_filter.coretag", {st_mode=S_IFREG|0664, st_size=869, ...}) = 0
4613 stat("input_filter.coretag", {st_mode=S_IFREG|0664, st_size=869, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/item_list.coretag", {st_mode=S_IFREG|0664, st_size=1444, ...}) = 0
4613 stat("item_list.coretag", {st_mode=S_IFREG|0664, st_size=1444, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/mvasp.coretag", {st_mode=S_IFREG|0664, st_size=831, ...}) = 0
4613 stat("mvasp.coretag", {st_mode=S_IFREG|0664, st_size=831, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/unpack.coretag", {st_mode=S_IFREG|0664, st_size=1314, ...}) = 0
4613 stat("unpack.coretag", {st_mode=S_IFREG|0664, st_size=1314, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/html_table.coretag", {st_mode=S_IFREG|0664, st_size=666, ...}) = 0
4613 stat("html_table.coretag", {st_mode=S_IFREG|0664, st_size=666, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/either.coretag", {st_mode=S_IFREG|0664, st_size=852, ...}) = 0
4613 stat("either.coretag", {st_mode=S_IFREG|0664, st_size=852, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/output_to.tag", {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 stat("output_to.tag", {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/import.coretag", {st_mode=S_IFREG|0664, st_size=856, ...}) = 0
4613 stat("import.coretag", {st_mode=S_IFREG|0664, st_size=856, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/set_cookie.coretag", {st_mode=S_IFREG|0664, st_size=615, ...}) = 0
4613 stat("set_cookie.coretag", {st_mode=S_IFREG|0664, st_size=615, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/comment.coretag", {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 stat("comment.coretag", {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/form_session_id.coretag", {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 stat("form_session_id.coretag", {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/catch.coretag", {st_mode=S_IFREG|0664, st_size=1903, ...}) = 0
4613 stat("catch.coretag", {st_mode=S_IFREG|0664, st_size=1903, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/scratch.coretag", {st_mode=S_IFREG|0664, st_size=865, ...}) = 0
4613 stat("scratch.coretag", {st_mode=S_IFREG|0664, st_size=865, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/control_set.coretag", {st_mode=S_IFREG|0664, st_size=1126, ...}) = 0
4613 stat("control_set.coretag", {st_mode=S_IFREG|0664, st_size=1126, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/value_extended.coretag", {st_mode=S_IFREG|0664, st_size=686, ...}) = 0
4613 stat("value_extended.coretag", {st_mode=S_IFREG|0664, st_size=686, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/area.coretag", {st_mode=S_IFREG|0664, st_size=665, ...}) = 0
4613 stat("area.coretag", {st_mode=S_IFREG|0664, st_size=665, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/control.coretag", {st_mode=S_IFREG|0664, st_size=1507, ...}) = 0
4613 stat("control.coretag", {st_mode=S_IFREG|0664, st_size=1507, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/selected.coretag", {st_mode=S_IFREG|0664, st_size=1614, ...}) = 0
4613 stat("selected.coretag", {st_mode=S_IFREG|0664, st_size=1614, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/try.coretag", {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 stat("try.coretag", {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/page.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 stat("page.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/userdb.coretag", {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 stat("userdb.coretag", {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/price.coretag", {st_mode=S_IFREG|0664, st_size=1217, ...}) = 0
4613 stat("price.coretag", {st_mode=S_IFREG|0664, st_size=1217, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/fly_list.coretag", {st_mode=S_IFREG|0664, st_size=708, ...}) = 0
4613 stat("fly_list.coretag", {st_mode=S_IFREG|0664, st_size=708, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/charge.coretag", {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 stat("charge.coretag", {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/seti.coretag", {st_mode=S_IFREG|0664, st_size=711, ...}) = 0
4613 stat("seti.coretag", {st_mode=S_IFREG|0664, st_size=711, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/msg.coretag", {st_mode=S_IFREG|0664, st_size=1906, ...}) = 0
4613 stat("msg.coretag", {st_mode=S_IFREG|0664, st_size=1906, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/calcn.coretag", {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 stat("calcn.coretag", {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/cart.coretag", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 stat("cart.coretag", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/subtotal.coretag", {st_mode=S_IFREG|0664, st_size=922, ...}) = 0
4613 stat("subtotal.coretag", {st_mode=S_IFREG|0664, st_size=922, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/data.coretag", {st_mode=S_IFREG|0664, st_size=1102, ...}) = 0
4613 stat("data.coretag", {st_mode=S_IFREG|0664, st_size=1102, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/discount.coretag", {st_mode=S_IFREG|0664, st_size=1755, ...}) = 0
4613 stat("discount.coretag", {st_mode=S_IFREG|0664, st_size=1755, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/description.coretag", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 stat("description.coretag", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/warnings.coretag", {st_mode=S_IFREG|0664, st_size=1610, ...}) = 0
4613 stat("warnings.coretag", {st_mode=S_IFREG|0664, st_size=1610, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/search_region.coretag", {st_mode=S_IFREG|0664, st_size=875, ...}) = 0
4613 stat("search_region.coretag", {st_mode=S_IFREG|0664, st_size=875, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/record.coretag", {st_mode=S_IFREG|0664, st_size=1652, ...}) = 0
4613 stat("record.coretag", {st_mode=S_IFREG|0664, st_size=1652, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/tv.coretag", {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 stat("tv.coretag", {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/tmpn.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 stat("tmpn.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/harness.coretag", {st_mode=S_IFREG|0664, st_size=1358, ...}) = 0
4613 stat("harness.coretag", {st_mode=S_IFREG|0664, st_size=1358, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/accounting.coretag", {st_mode=S_IFREG|0664, st_size=1838, ...}) = 0
4613 stat("accounting.coretag", {st_mode=S_IFREG|0664, st_size=1838, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/search.coretag", {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 stat("search.coretag", {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/error.coretag", {st_mode=S_IFREG|0664, st_size=4845, ...}) = 0
4613 stat("error.coretag", {st_mode=S_IFREG|0664, st_size=4845, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/index.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 stat("index.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/mail.coretag", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 stat("mail.coretag", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/captcha.coretag", {st_mode=S_IFREG|0664, st_size=6778, ...}) = 0
4613 stat("captcha.coretag", {st_mode=S_IFREG|0664, st_size=6778, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/tmp.coretag", {st_mode=S_IFREG|0664, st_size=706, ...}) = 0
4613 stat("tmp.coretag", {st_mode=S_IFREG|0664, st_size=706, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/counter.coretag", {st_mode=S_IFREG|0664, st_size=773, ...}) = 0
4613 stat("counter.coretag", {st_mode=S_IFREG|0664, st_size=773, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/uc_attr_list.coretag", {st_mode=S_IFREG|0664, st_size=848, ...}) = 0
4613 stat("uc_attr_list.coretag", {st_mode=S_IFREG|0664, st_size=848, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/field.coretag", {st_mode=S_IFREG|0664, st_size=889, ...}) = 0
4613 stat("field.coretag", {st_mode=S_IFREG|0664, st_size=889, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/parse_locale.coretag", {st_mode=S_IFREG|0664, st_size=594, ...}) = 0
4613 stat("parse_locale.coretag", {st_mode=S_IFREG|0664, st_size=594, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/shipping.coretag", {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 stat("shipping.coretag", {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/shipping_desc.coretag", {st_mode=S_IFREG|0664, st_size=656, ...}) = 0
4613 stat("shipping_desc.coretag", {st_mode=S_IFREG|0664, st_size=656, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/include.coretag", {st_mode=S_IFREG|0664, st_size=1151, ...}) = 0
4613 stat("include.coretag", {st_mode=S_IFREG|0664, st_size=1151, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/timed_build.coretag", {st_mode=S_IFREG|0664, st_size=749, ...}) = 0
4613 stat("timed_build.coretag", {st_mode=S_IFREG|0664, st_size=749, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/discount_space.coretag", {st_mode=S_IFREG|0664, st_size=3140, ...}) = 0
4613 stat("discount_space.coretag", {st_mode=S_IFREG|0664, st_size=3140, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/order.coretag", {st_mode=S_IFREG|0664, st_size=1982, ...}) = 0
4613 stat("order.coretag", {st_mode=S_IFREG|0664, st_size=1982, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/process.coretag", {st_mode=S_IFREG|0664, st_size=1841, ...}) = 0
4613 stat("process.coretag", {st_mode=S_IFREG|0664, st_size=1841, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/flag.coretag", {st_mode=S_IFREG|0664, st_size=818, ...}) = 0
4613 stat("flag.coretag", {st_mode=S_IFREG|0664, st_size=818, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/tag.coretag", {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 stat("tag.coretag", {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/deliver.coretag", {st_mode=S_IFREG|0664, st_size=2665, ...}) = 0
4613 stat("deliver.coretag", {st_mode=S_IFREG|0664, st_size=2665, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/scratchd.coretag", {st_mode=S_IFREG|0664, st_size=820, ...}) = 0
4613 stat("scratchd.coretag", {st_mode=S_IFREG|0664, st_size=820, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/local.coretag", {st_mode=S_IFREG|0664, st_size=3108, ...}) = 0
4613 stat("local.coretag", {st_mode=S_IFREG|0664, st_size=3108, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/debug.coretag", {st_mode=S_IFREG|0664, st_size=561, ...}) = 0
4613 stat("debug.coretag", {st_mode=S_IFREG|0664, st_size=561, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/flag_job.coretag", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 stat("flag_job.coretag", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/query.coretag", {st_mode=S_IFREG|0664, st_size=753, ...}) = 0
4613 stat("query.coretag", {st_mode=S_IFREG|0664, st_size=753, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/region.coretag", {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 stat("region.coretag", {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/perl.coretag", {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 stat("perl.coretag", {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/default.coretag", {st_mode=S_IFREG|0664, st_size=943, ...}) = 0
4613 stat("default.coretag", {st_mode=S_IFREG|0664, st_size=943, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/strip.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 stat("strip.coretag", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/levy_list.coretag", {st_mode=S_IFREG|0664, st_size=1032, ...}) = 0
4613 stat("levy_list.coretag", {st_mode=S_IFREG|0664, st_size=1032, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/fly_tax.coretag", {st_mode=S_IFREG|0664, st_size=730, ...}) = 0
4613 stat("fly_tax.coretag", {st_mode=S_IFREG|0664, st_size=730, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/time.coretag", {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 stat("time.coretag", {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/banner.coretag", {st_mode=S_IFREG|0664, st_size=3400, ...}) = 0
4613 stat("banner.coretag", {st_mode=S_IFREG|0664, st_size=3400, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/set.coretag", {st_mode=S_IFREG|0664, st_size=670, ...}) = 0
4613 stat("set.coretag", {st_mode=S_IFREG|0664, st_size=670, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/log.coretag", {st_mode=S_IFREG|0664, st_size=748, ...}) = 0
4613 stat("log.coretag", {st_mode=S_IFREG|0664, st_size=748, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/assign.coretag", {st_mode=S_IFREG|0664, st_size=1271, ...}) = 0
4613 stat("assign.coretag", {st_mode=S_IFREG|0664, st_size=1271, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/dump.coretag", {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 stat("dump.coretag", {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/export.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 stat("export.coretag", {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/filter.coretag", {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 stat("filter.coretag", {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/row.coretag", {st_mode=S_IFREG|0664, st_size=4357, ...}) = 0
4613 stat("row.coretag", {st_mode=S_IFREG|0664, st_size=4357, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/checked.coretag", {st_mode=S_IFREG|0664, st_size=1609, ...}) = 0
4613 stat("checked.coretag", {st_mode=S_IFREG|0664, st_size=1609, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/value.coretag", {st_mode=S_IFREG|0664, st_size=751, ...}) = 0
4613 stat("value.coretag", {st_mode=S_IFREG|0664, st_size=751, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/setlocale.coretag", {st_mode=S_IFREG|0664, st_size=676, ...}) = 0
4613 stat("setlocale.coretag", {st_mode=S_IFREG|0664, st_size=676, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/menu.coretag", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 stat("menu.coretag", {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/handling.coretag", {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 stat("handling.coretag", {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/soap.coretag", {st_mode=S_IFREG|0664, st_size=815, ...}) = 0
4613 stat("soap.coretag", {st_mode=S_IFREG|0664, st_size=815, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/options.coretag", {st_mode=S_IFREG|0664, st_size=668, ...}) = 0
4613 stat("options.coretag", {st_mode=S_IFREG|0664, st_size=668, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/cgi.coretag", {st_mode=S_IFREG|0664, st_size=1198, ...}) = 0
4613 stat("cgi.coretag", {st_mode=S_IFREG|0664, st_size=1198, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/total_cost.coretag", {st_mode=S_IFREG|0664, st_size=899, ...}) = 0
4613 stat("total_cost.coretag", {st_mode=S_IFREG|0664, st_size=899, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/file.coretag", {st_mode=S_IFREG|0664, st_size=1016, ...}) = 0
4613 stat("file.coretag", {st_mode=S_IFREG|0664, st_size=1016, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/tree.coretag", {st_mode=S_IFREG|0664, st_size=7639, ...}) = 0
4613 stat("tree.coretag", {st_mode=S_IFREG|0664, st_size=7639, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/currency.coretag", {st_mode=S_IFREG|0664, st_size=859, ...}) = 0
4613 stat("currency.coretag", {st_mode=S_IFREG|0664, st_size=859, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/accessories.coretag", {st_mode=S_IFREG|0664, st_size=1048, ...}) = 0
4613 stat("accessories.coretag", {st_mode=S_IFREG|0664, st_size=1048, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/update.coretag", {st_mode=S_IFREG|0664, st_size=627, ...}) = 0
4613 stat("update.coretag", {st_mode=S_IFREG|0664, st_size=627, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/salestax.coretag", {st_mode=S_IFREG|0664, st_size=882, ...}) = 0
4613 stat("salestax.coretag", {st_mode=S_IFREG|0664, st_size=882, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/SystemTag/profile.coretag", {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 stat("profile.coretag", {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("JavaScriptCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("JavaScriptCheck", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/JavaScriptCheck") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 3 entries */, 32768) = 80
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/JavaScriptCheck/required.jsc", {st_mode=S_IFREG|0664, st_size=2160, ...}) = 0
4613 stat("required.jsc", {st_mode=S_IFREG|0664, st_size=2160, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("UI_Tag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("UI_Tag", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/UI_Tag") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 69 entries */, 32768) = 2856
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/uninstall_feature.tag", {st_mode=S_IFREG|0664, st_size=703, ...}) = 0
4613 stat("uninstall_feature.tag", {st_mode=S_IFREG|0664, st_size=703, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/available_ups_internal.coretag", {st_mode=S_IFREG|0664, st_size=718, ...}) = 0
4613 stat("available_ups_internal.coretag", {st_mode=S_IFREG|0664, st_size=718, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/mm_value.coretag", {st_mode=S_IFREG|0664, st_size=1427, ...}) = 0
4613 stat("mm_value.coretag", {st_mode=S_IFREG|0664, st_size=1427, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/user_merge.tag", {st_mode=S_IFREG|0664, st_size=5268, ...}) = 0
4613 stat("user_merge.tag", {st_mode=S_IFREG|0664, st_size=5268, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/get_gpg_keys.coretag", {st_mode=S_IFREG|0664, st_size=1333, ...}) = 0
4613 stat("get_gpg_keys.coretag", {st_mode=S_IFREG|0664, st_size=1333, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/content_info.coretag", {st_mode=S_IFREG|0664, st_size=644, ...}) = 0
4613 stat("content_info.coretag", {st_mode=S_IFREG|0664, st_size=644, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/assume_identity.tag", {st_mode=S_IFREG|0664, st_size=994, ...}) = 0
4613 stat("assume_identity.tag", {st_mode=S_IFREG|0664, st_size=994, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/file_navigator.coretag", {st_mode=S_IFREG|0664, st_size=9804, ...}) = 0
4613 stat("file_navigator.coretag", {st_mode=S_IFREG|0664, st_size=9804, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/flex_select.coretag", {st_mode=S_IFREG|0664, st_size=37094, ...}) = 0
4613 stat("flex_select.coretag", {st_mode=S_IFREG|0664, st_size=37094, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/backup_file.coretag", {st_mode=S_IFREG|0664, st_size=1441, ...}) = 0
4613 stat("backup_file.coretag", {st_mode=S_IFREG|0664, st_size=1441, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/import_fields.coretag", {st_mode=S_IFREG|0664, st_size=11264, ...}) = 0
4613 stat("import_fields.coretag", {st_mode=S_IFREG|0664, st_size=11264, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/quick_table.coretag", {st_mode=S_IFREG|0664, st_size=1097, ...}) = 0
4613 stat("quick_table.coretag", {st_mode=S_IFREG|0664, st_size=1097, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/run_profile.coretag", {st_mode=S_IFREG|0664, st_size=1776, ...}) = 0
4613 stat("run_profile.coretag", {st_mode=S_IFREG|0664, st_size=1776, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/display.coretag", {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 stat("display.coretag", {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/traffic_report.coretag", {st_mode=S_IFREG|0664, st_size=7015, ...}) = 0
4613 stat("traffic_report.coretag", {st_mode=S_IFREG|0664, st_size=7015, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/meta_info.coretag", {st_mode=S_IFREG|0664, st_size=1306, ...}) = 0
4613 stat("meta_info.coretag", {st_mode=S_IFREG|0664, st_size=1306, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/check_upload.coretag", {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 stat("check_upload.coretag", {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/db_hash.coretag", {st_mode=S_IFREG|0664, st_size=1536, ...}) = 0
4613 stat("db_hash.coretag", {st_mode=S_IFREG|0664, st_size=1536, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/return_to.coretag", {st_mode=S_IFREG|0664, st_size=2671, ...}) = 0
4613 stat("return_to.coretag", {st_mode=S_IFREG|0664, st_size=2671, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/diff.coretag", {st_mode=S_IFREG|0664, st_size=1946, ...}) = 0
4613 stat("diff.coretag", {st_mode=S_IFREG|0664, st_size=1946, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/content_editor.coretag", {st_mode=S_IFREG|0664, st_size=692, ...}) = 0
4613 stat("content_editor.coretag", {st_mode=S_IFREG|0664, st_size=692, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/list_databases.coretag", {st_mode=S_IFREG|0664, st_size=1354, ...}) = 0
4613 stat("list_databases.coretag", {st_mode=S_IFREG|0664, st_size=1354, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/read_shipping.coretag", {st_mode=S_IFREG|0664, st_size=923, ...}) = 0
4613 stat("read_shipping.coretag", {st_mode=S_IFREG|0664, st_size=923, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/list_glob.coretag", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 stat("list_glob.coretag", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/global_value.coretag", {st_mode=S_IFREG|0664, st_size=650, ...}) = 0
4613 stat("global_value.coretag", {st_mode=S_IFREG|0664, st_size=650, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/dump_session.coretag", {st_mode=S_IFREG|0664, st_size=3602, ...}) = 0
4613 stat("dump_session.coretag", {st_mode=S_IFREG|0664, st_size=3602, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/available_www_shipping.coretag", {st_mode=S_IFREG|0664, st_size=2245, ...}) = 0
4613 stat("available_www_shipping.coretag", {st_mode=S_IFREG|0664, st_size=2245, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/if_mm.coretag", {st_mode=S_IFREG|0664, st_size=5005, ...}) = 0
4613 stat("if_mm.coretag", {st_mode=S_IFREG|0664, st_size=5005, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/update_order_status.tag", {st_mode=S_IFREG|0664, st_size=9605, ...}) = 0
4613 stat("update_order_status.tag", {st_mode=S_IFREG|0664, st_size=9605, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/list_keys.coretag", {st_mode=S_IFREG|0664, st_size=2151, ...}) = 0
4613 stat("list_keys.coretag", {st_mode=S_IFREG|0664, st_size=2151, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/meta_record.coretag", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 stat("meta_record.coretag", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/row_edit.coretag", {st_mode=S_IFREG|0664, st_size=4225, ...}) = 0
4613 stat("row_edit.coretag", {st_mode=S_IFREG|0664, st_size=4225, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/widget_meta.coretag", {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 stat("widget_meta.coretag", {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/jsqn.coretag", {st_mode=S_IFREG|0664, st_size=879, ...}) = 0
4613 stat("jsqn.coretag", {st_mode=S_IFREG|0664, st_size=879, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/base_url.coretag", {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 stat("base_url.coretag", {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/unlink_file.coretag", {st_mode=S_IFREG|0664, st_size=862, ...}) = 0
4613 stat("unlink_file.coretag", {st_mode=S_IFREG|0664, st_size=862, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/reconfig_time.coretag", {st_mode=S_IFREG|0664, st_size=772, ...}) = 0
4613 stat("reconfig_time.coretag", {st_mode=S_IFREG|0664, st_size=772, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/jsq.coretag", {st_mode=S_IFREG|0664, st_size=1022, ...}) = 0
4613 stat("jsq.coretag", {st_mode=S_IFREG|0664, st_size=1022, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/directive_value.coretag", {st_mode=S_IFREG|0664, st_size=874, ...}) = 0
4613 stat("directive_value.coretag", {st_mode=S_IFREG|0664, st_size=874, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/write_relative_file.coretag", {st_mode=S_IFREG|0664, st_size=962, ...}) = 0
4613 stat("write_relative_file.coretag", {st_mode=S_IFREG|0664, st_size=962, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/reconfig.coretag", {st_mode=S_IFREG|0664, st_size=1267, ...}) = 0
4613 stat("reconfig.coretag", {st_mode=S_IFREG|0664, st_size=1267, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/mm_locale.coretag", {st_mode=S_IFREG|0664, st_size=1119, ...}) = 0
4613 stat("mm_locale.coretag", {st_mode=S_IFREG|0664, st_size=1119, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/content_modify.coretag", {st_mode=S_IFREG|0664, st_size=669, ...}) = 0
4613 stat("content_modify.coretag", {st_mode=S_IFREG|0664, st_size=669, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/export_database.coretag", {st_mode=S_IFREG|0664, st_size=1461, ...}) = 0
4613 stat("export_database.coretag", {st_mode=S_IFREG|0664, st_size=1461, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/diffmerge.coretag", {st_mode=S_IFREG|0664, st_size=3834, ...}) = 0
4613 stat("diffmerge.coretag", {st_mode=S_IFREG|0664, st_size=3834, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/cp.coretag", {st_mode=S_IFREG|0664, st_size=1080, ...}) = 0
4613 stat("cp.coretag", {st_mode=S_IFREG|0664, st_size=1080, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/db_columns.coretag", {st_mode=S_IFREG|0664, st_size=1689, ...}) = 0
4613 stat("db_columns.coretag", {st_mode=S_IFREG|0664, st_size=1689, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/rotate_table.coretag", {st_mode=S_IFREG|0664, st_size=1667, ...}) = 0
4613 stat("rotate_table.coretag", {st_mode=S_IFREG|0664, st_size=1667, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/widget.coretag", {st_mode=S_IFREG|0664, st_size=1741, ...}) = 0
4613 stat("widget.coretag", {st_mode=S_IFREG|0664, st_size=1741, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/add_gpg_key.coretag", {st_mode=S_IFREG|0664, st_size=1784, ...}) = 0
4613 stat("add_gpg_key.coretag", {st_mode=S_IFREG|0664, st_size=1784, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/write_shipping.coretag", {st_mode=S_IFREG|0664, st_size=1513, ...}) = 0
4613 stat("write_shipping.coretag", {st_mode=S_IFREG|0664, st_size=1513, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/backup_database.coretag", {st_mode=S_IFREG|0664, st_size=5553, ...}) = 0
4613 stat("backup_database.coretag", {st_mode=S_IFREG|0664, st_size=5553, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/newer.coretag", {st_mode=S_IFREG|0664, st_size=1100, ...}) = 0
4613 stat("newer.coretag", {st_mode=S_IFREG|0664, st_size=1100, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/substitute_file.coretag", {st_mode=S_IFREG|0664, st_size=3202, ...}) = 0
4613 stat("substitute_file.coretag", {st_mode=S_IFREG|0664, st_size=3202, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/widget_info.coretag", {st_mode=S_IFREG|0664, st_size=1655, ...}) = 0
4613 stat("widget_info.coretag", {st_mode=S_IFREG|0664, st_size=1655, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/file_info.coretag", {st_mode=S_IFREG|0664, st_size=1585, ...}) = 0
4613 stat("file_info.coretag", {st_mode=S_IFREG|0664, st_size=1585, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/auto_wizard.coretag", {st_mode=S_IFREG|0664, st_size=22754, ...}) = 0
4613 stat("auto_wizard.coretag", {st_mode=S_IFREG|0664, st_size=22754, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/list_pages.coretag", {st_mode=S_IFREG|0664, st_size=858, ...}) = 0
4613 stat("list_pages.coretag", {st_mode=S_IFREG|0664, st_size=858, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/tabbed_display.coretag", {st_mode=S_IFREG|0664, st_size=5267, ...}) = 0
4613 stat("tabbed_display.coretag", {st_mode=S_IFREG|0664, st_size=5267, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/grep_mm.coretag", {st_mode=S_IFREG|0664, st_size=984, ...}) = 0
4613 stat("grep_mm.coretag", {st_mode=S_IFREG|0664, st_size=984, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/uneval.coretag", {st_mode=S_IFREG|0664, st_size=732, ...}) = 0
4613 stat("uneval.coretag", {st_mode=S_IFREG|0664, st_size=732, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/version.coretag", {st_mode=S_IFREG|0664, st_size=7023, ...}) = 0
4613 stat("version.coretag", {st_mode=S_IFREG|0664, st_size=7023, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/xfer_catalog.coretag", {st_mode=S_IFREG|0664, st_size=12775, ...}) = 0
4613 stat("xfer_catalog.coretag", {st_mode=S_IFREG|0664, st_size=12775, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/su.coretag", {st_mode=S_IFREG|0664, st_size=4996, ...}) = 0
4613 stat("su.coretag", {st_mode=S_IFREG|0664, st_size=4996, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/crypt.coretag", {st_mode=S_IFREG|0664, st_size=705, ...}) = 0
4613 stat("crypt.coretag", {st_mode=S_IFREG|0664, st_size=705, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/menu_load.coretag", {st_mode=S_IFREG|0664, st_size=13907, ...}) = 0
4613 stat("menu_load.coretag", {st_mode=S_IFREG|0664, st_size=13907, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/UI_Tag/table_editor.coretag", {st_mode=S_IFREG|0664, st_size=1370, ...}) = 0
4613 stat("table_editor.coretag", {st_mode=S_IFREG|0664, st_size=1370, ...}) = 0
4613 chdir("/home/sam/live/interchange/code") = 0
4613 lstat("Filter", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 stat("Filter", {st_mode=S_IFDIR|0775, st_size=4096, ...}) = 0
4613 chdir("/home/sam/live/interchange/code/Filter") = 0
4613 openat(AT_FDCWD, ".", O_RDONLY|O_NONBLOCK|O_DIRECTORY|O_CLOEXEC) = 7
4613 getdents(7, /* 96 entries */, 32768) = 3688
4613 getdents(7, /* 0 entries */, 32768) = 0
4613 close(7) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/strip.filter", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 stat("strip.filter", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/value.filter", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 stat("value.filter", {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/word.filter", {st_mode=S_IFREG|0664, st_size=595, ...}) = 0
4613 stat("word.filter", {st_mode=S_IFREG|0664, st_size=595, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/null_to_colons.filter", {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 stat("null_to_colons.filter", {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/upload.filter", {st_mode=S_IFREG|0664, st_size=724, ...}) = 0
4613 stat("upload.filter", {st_mode=S_IFREG|0664, st_size=724, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/line2options.filter", {st_mode=S_IFREG|0664, st_size=811, ...}) = 0
4613 stat("line2options.filter", {st_mode=S_IFREG|0664, st_size=811, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/backslash.filter", {st_mode=S_IFREG|0664, st_size=620, ...}) = 0
4613 stat("backslash.filter", {st_mode=S_IFREG|0664, st_size=620, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/no_white.filter", {st_mode=S_IFREG|0664, st_size=614, ...}) = 0
4613 stat("no_white.filter", {st_mode=S_IFREG|0664, st_size=614, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/integer.filter", {st_mode=S_IFREG|0664, st_size=573, ...}) = 0
4613 stat("integer.filter", {st_mode=S_IFREG|0664, st_size=573, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/urlencode.filter", {st_mode=S_IFREG|0664, st_size=645, ...}) = 0
4613 stat("urlencode.filter", {st_mode=S_IFREG|0664, st_size=645, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/compress_space.filter", {st_mode=S_IFREG|0664, st_size=685, ...}) = 0
4613 stat("compress_space.filter", {st_mode=S_IFREG|0664, st_size=685, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/space_to_null.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 stat("space_to_null.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/lspace_to_nbsp.filter", {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 stat("lspace_to_nbsp.filter", {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/nullselect.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 stat("nullselect.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/round.filter", {st_mode=S_IFREG|0664, st_size=684, ...}) = 0
4613 stat("round.filter", {st_mode=S_IFREG|0664, st_size=684, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/pgbool.filter", {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 stat("pgbool.filter", {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/duration.filter", {st_mode=S_IFREG|0664, st_size=2141, ...}) = 0
4613 stat("duration.filter", {st_mode=S_IFREG|0664, st_size=2141, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/lc.filter", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 stat("lc.filter", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/lookup.filter", {st_mode=S_IFREG|0664, st_size=640, ...}) = 0
4613 stat("lookup.filter", {st_mode=S_IFREG|0664, st_size=640, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/currency.filter", {st_mode=S_IFREG|0664, st_size=694, ...}) = 0
4613 stat("currency.filter", {st_mode=S_IFREG|0664, st_size=694, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/digits.filter", {st_mode=S_IFREG|0664, st_size=604, ...}) = 0
4613 stat("digits.filter", {st_mode=S_IFREG|0664, st_size=604, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/hash2acl.filter", {st_mode=S_IFREG|0664, st_size=981, ...}) = 0
4613 stat("hash2acl.filter", {st_mode=S_IFREG|0664, st_size=981, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/zerofix.filter", {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 stat("zerofix.filter", {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/urldecode.filter", {st_mode=S_IFREG|0664, st_size=769, ...}) = 0
4613 stat("urldecode.filter", {st_mode=S_IFREG|0664, st_size=769, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/commify.filter", {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 stat("commify.filter", {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/pgbooln.filter", {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 stat("pgbooln.filter", {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/mac.filter", {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 stat("mac.filter", {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/encode_special_entities.filter", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 stat("encode_special_entities.filter", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/convert_date.filter", {st_mode=S_IFREG|0664, st_size=850, ...}) = 0
4613 stat("convert_date.filter", {st_mode=S_IFREG|0664, st_size=850, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/uc.filter", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 stat("uc.filter", {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/digits_dash.filter", {st_mode=S_IFREG|0664, st_size=607, ...}) = 0
4613 stat("digits_dash.filter", {st_mode=S_IFREG|0664, st_size=607, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/vars_and_comments.filter", {st_mode=S_IFREG|0664, st_size=764, ...}) = 0
4613 stat("vars_and_comments.filter", {st_mode=S_IFREG|0664, st_size=764, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/lcfirst.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 stat("lcfirst.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/filter_select.filter", {st_mode=S_IFREG|0664, st_size=1038, ...}) = 0
4613 stat("filter_select.filter", {st_mode=S_IFREG|0664, st_size=1038, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/digits_dot.filter", {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 stat("digits_dot.filter", {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/name.filter", {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 stat("name.filter", {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/oneline.filter", {st_mode=S_IFREG|0664, st_size=652, ...}) = 0
4613 stat("oneline.filter", {st_mode=S_IFREG|0664, st_size=652, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/null_to_comma.filter", {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 stat("null_to_comma.filter", {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/filesafe.filter", {st_mode=S_IFREG|0664, st_size=608, ...}) = 0
4613 stat("filesafe.filter", {st_mode=S_IFREG|0664, st_size=608, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/roman.filter", {st_mode=S_IFREG|0664, st_size=1183, ...}) = 0
4613 stat("roman.filter", {st_mode=S_IFREG|0664, st_size=1183, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/qb_safe.filter", {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 stat("qb_safe.filter", {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/space_to_nbsp.filter", {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 stat("space_to_nbsp.filter", {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/mime_type.filter", {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 stat("mime_type.filter", {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/alphanumeric.filter", {st_mode=S_IFREG|0664, st_size=641, ...}) = 0
4613 stat("alphanumeric.filter", {st_mode=S_IFREG|0664, st_size=641, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/pre.filter", {st_mode=S_IFREG|0664, st_size=545, ...}) = 0
4613 stat("pre.filter", {st_mode=S_IFREG|0664, st_size=545, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/ucfirst.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 stat("ucfirst.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/datetime2epoch.filter", {st_mode=S_IFREG|0664, st_size=1491, ...}) = 0
4613 stat("datetime2epoch.filter", {st_mode=S_IFREG|0664, st_size=1491, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/null_to_space.filter", {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 stat("null_to_space.filter", {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/gate.filter", {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 stat("gate.filter", {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/strikeout.filter", {st_mode=S_IFREG|0664, st_size=569, ...}) = 0
4613 stat("strikeout.filter", {st_mode=S_IFREG|0664, st_size=569, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/pagefile.filter", {st_mode=S_IFREG|0664, st_size=557, ...}) = 0
4613 stat("pagefile.filter", {st_mode=S_IFREG|0664, st_size=557, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/text2html.filter", {st_mode=S_IFREG|0664, st_size=796, ...}) = 0
4613 stat("text2html.filter", {st_mode=S_IFREG|0664, st_size=796, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/option_format.filter", {st_mode=S_IFREG|0664, st_size=1214, ...}) = 0
4613 stat("option_format.filter", {st_mode=S_IFREG|0664, st_size=1214, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/linkdecode.filter", {st_mode=S_IFREG|0664, st_size=947, ...}) = 0
4613 stat("linkdecode.filter", {st_mode=S_IFREG|0664, st_size=947, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/checkbox.filter", {st_mode=S_IFREG|0664, st_size=572, ...}) = 0
4613 stat("checkbox.filter", {st_mode=S_IFREG|0664, st_size=572, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/date_change.filter", {st_mode=S_IFREG|0664, st_size=2331, ...}) = 0
4613 stat("date_change.filter", {st_mode=S_IFREG|0664, st_size=2331, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/strip_path.filter", {st_mode=S_IFREG|0664, st_size=587, ...}) = 0
4613 stat("strip_path.filter", {st_mode=S_IFREG|0664, st_size=587, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/liven_urls.filter", {st_mode=S_IFREG|0664, st_size=8845, ...}) = 0
4613 stat("liven_urls.filter", {st_mode=S_IFREG|0664, st_size=8845, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/next_sequential.filter", {st_mode=S_IFREG|0664, st_size=1660, ...}) = 0
4613 stat("next_sequential.filter", {st_mode=S_IFREG|0664, st_size=1660, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/colons_to_null.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 stat("colons_to_null.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/show_null.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 stat("show_null.filter", {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/restrict_html.filter", {st_mode=S_IFREG|0664, st_size=785, ...}) = 0
4613 stat("restrict_html.filter", {st_mode=S_IFREG|0664, st_size=785, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/large.filter", {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 stat("large.filter", {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/encode_entities.filter", {st_mode=S_IFREG|0664, st_size=771, ...}) = 0
4613 stat("encode_entities.filter", {st_mode=S_IFREG|0664, st_size=771, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/strftime.filter", {st_mode=S_IFREG|0664, st_size=788, ...}) = 0
4613 stat("strftime.filter", {st_mode=S_IFREG|0664, st_size=788, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/options2line.filter", {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 stat("options2line.filter", {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/strip_html.filter", {st_mode=S_IFREG|0664, st_size=1118, ...}) = 0
4613 stat("strip_html.filter", {st_mode=S_IFREG|0664, st_size=1118, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/namecase.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 stat("namecase.filter", {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/mailto.filter", {st_mode=S_IFREG|0664, st_size=707, ...}) = 0
4613 stat("mailto.filter", {st_mode=S_IFREG|0664, st_size=707, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/last_non_null.filter", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 stat("last_non_null.filter", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/dbi_quote.filter", {st_mode=S_IFREG|0664, st_size=781, ...}) = 0
4613 stat("dbi_quote.filter", {st_mode=S_IFREG|0664, st_size=781, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/bold.filter", {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 stat("bold.filter", {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/yesno.filter", {st_mode=S_IFREG|0664, st_size=722, ...}) = 0
4613 stat("yesno.filter", {st_mode=S_IFREG|0664, st_size=722, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/decode_entities.filter", {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 stat("decode_entities.filter", {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/date2time.filter", {st_mode=S_IFREG|0664, st_size=1397, ...}) = 0
4613 stat("date2time.filter", {st_mode=S_IFREG|0664, st_size=1397, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/sha1.filter", {st_mode=S_IFREG|0664, st_size=480, ...}) = 0
4613 stat("sha1.filter", {st_mode=S_IFREG|0664, st_size=480, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/sql.filter", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 stat("sql.filter", {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/html2text.filter", {st_mode=S_IFREG|0664, st_size=613, ...}) = 0
4613 stat("html2text.filter", {st_mode=S_IFREG|0664, st_size=613, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/small.filter", {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 stat("small.filter", {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/encrypt.filter", {st_mode=S_IFREG|0664, st_size=632, ...}) = 0
4613 stat("encrypt.filter", {st_mode=S_IFREG|0664, st_size=632, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/tt.filter", {st_mode=S_IFREG|0664, st_size=540, ...}) = 0
4613 stat("tt.filter", {st_mode=S_IFREG|0664, st_size=540, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/line.filter", {st_mode=S_IFREG|0664, st_size=609, ...}) = 0
4613 stat("line.filter", {st_mode=S_IFREG|0664, st_size=609, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/alpha.filter", {st_mode=S_IFREG|0664, st_size=677, ...}) = 0
4613 stat("alpha.filter", {st_mode=S_IFREG|0664, st_size=677, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/textarea_put.filter", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 stat("textarea_put.filter", {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/italics.filter", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 stat("italics.filter", {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/tabbed.filter", {st_mode=S_IFREG|0664, st_size=612, ...}) = 0
4613 stat("tabbed.filter", {st_mode=S_IFREG|0664, st_size=612, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/md5.filter", {st_mode=S_IFREG|0664, st_size=593, ...}) = 0
4613 stat("md5.filter", {st_mode=S_IFREG|0664, st_size=593, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/textarea_get.filter", {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 stat("textarea_get.filter", {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/unix.filter", {st_mode=S_IFREG|0664, st_size=611, ...}) = 0
4613 stat("unix.filter", {st_mode=S_IFREG|0664, st_size=611, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/acl2hash.filter", {st_mode=S_IFREG|0664, st_size=1002, ...}) = 0
4613 stat("acl2hash.filter", {st_mode=S_IFREG|0664, st_size=1002, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/crypt.filter", {st_mode=S_IFREG|0664, st_size=628, ...}) = 0
4613 stat("crypt.filter", {st_mode=S_IFREG|0664, st_size=628, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/cgi.filter", {st_mode=S_IFREG|0664, st_size=584, ...}) = 0
4613 stat("cgi.filter", {st_mode=S_IFREG|0664, st_size=584, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/loc.filter", {st_mode=S_IFREG|0664, st_size=578, ...}) = 0
4613 stat("loc.filter", {st_mode=S_IFREG|0664, st_size=578, ...}) = 0
4613 lstat("/home/sam/live/interchange/code/Filter/dos.filter", {st_mode=S_IFREG|0664, st_size=607, ...}) = 0
4613 stat("dos.filter", {st_mode=S_IFREG|0664, st_size=607, ...}) = 0
4613 chdir("/home/sam/live/interchange") = 0
4613 open("/home/sam/live/interchange/code/Widget/country_select.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=9620, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2009 Interchang"..., 4096) = 4096
4613 read(7, "<<EOF;\n\tvar $v_state_vary = new "..., 4096) = 4096
4613 read(7, "text',\n\t\twidget => 'text_20',\n\t}"..., 4096) = 1428
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/checkbox.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=792, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 792
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/display.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=537, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 537
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/imagedir.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1632, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1632
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/multiple.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=625, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 625
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/radio.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 590
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/options.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=538, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 538
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/date.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 522
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/text.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 646
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/yesno.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=521, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 521
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/imagehelper.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2549, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 2549
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/value.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=599, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 599
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/links.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=518, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 518
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/ynzero.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=581, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 581
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/select.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=562, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 562
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/default.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=588, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 588
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/uploadblob.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1721, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1721
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/option_format.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=563, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 563
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/time.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3271, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 3271
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/realvalue.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=622, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 622
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/gpg_keys.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=734, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 734
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/movecombo.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 812
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/htmlarea.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7359, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 4096
4613 read(7, "/fckeditor/',\n\t\t\t\t\theader => qq|"..., 4096) = 3263
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/labels.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=528, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 528
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/combo.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=519, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 519
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/show.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=533, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 533
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/acl.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2809, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 2809
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/noyes.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=559, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 559
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Widget/uploadhelper.widget", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1729, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1729
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/div_organize.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=8433, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag div-organize Order "..., 4096) = 4096
4613 read(7, "\"col-md-4\">&nbsp;</div>\n "..., 4096) = 4096
4613 read(7, "$opt->{table}) {\n\t\t\t$out .= \"</d"..., 4096) = 241
4613 brk(0) = 0x2f36000
4613 brk(0x2f57000) = 0x2f57000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/hmac_sha1_hex.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=228, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "CodeDef hmac_sha1_hex Filter\nCod"..., 4096) = 228
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/pay_cert_redeem.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=2295, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag pay-cert-redeem Order ce"..., 4096) = 2295
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/bootmenu.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=14672, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag bootmenu Order na"..., 4096) = 4096
4613 read(7, "$c) = split /[=~]+/, $_;\n\t\t\t$c |"..., 4096) = 4096
4613 read(7, "';\n\t\t\t}\n\t\t\tlast if $last;\n\t\t}\n\t\t"..., 4096) = 4096
4613 read(7, "ebug(\"rows = \" . ::uneval({ ref "..., 4096) = 2384
4613 brk(0) = 0x2f57000
4613 brk(0x2f79000) = 0x2f79000
4613 brk(0) = 0x2f79000
4613 brk(0x2f9a000) = 0x2f9a000
4613 brk(0) = 0x2f9a000
4613 brk(0x2fbb000) = 0x2fbb000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/cert.am", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=249, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "ActionMap cert <<EOA\nsub {\n\tmy "..., 4096) = 249
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/logger.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=649, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag logger Order name file\nU"..., 4096) = 649
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/template_tag/strap/pay_cert.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0644, st_size=11107, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag pay-cert Order code\nUser"..., 4096) = 4096
4613 read(7, "okie, $cvalue;\n\t\t\t\t}\n\t\t\t\t$Tag->s"..., 4096) = 4096
4613 read(7, "\n\t\t\treturn $die->(\"Cannot void c"..., 4096) = 2915
4613 brk(0) = 0x2fbb000
4613 brk(0x2fdc000) = 0x2fdc000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/numeric.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=691, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2010 Interchange Dev"..., 4096) = 691
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/future.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1321, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1321
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/regex.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1130, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1130
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/natural.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 817
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/filter.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1036, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1036
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/match.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2007 Interchange Dev"..., 4096) = 634
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/always_fail.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2006-2007 Interchang"..., 4096) = 624
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/isbn.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1712, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2008,2009 Interchang"..., 4096) = 1712
4613 brk(0) = 0x2fdc000
4613 brk(0x2ffd000) = 0x2ffd000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/numeric_strict.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=709, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2010 Interchange Dev"..., 4096) = 709
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/exists.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1302, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1302
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/relative_filename.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=817, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 817
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/unique.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1301, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1301
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/email_only.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=765, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2009 Interchang"..., 4096) = 765
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/length.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1044, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1044
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/OrderCheck/always_pass.oc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=567, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2006-2007 Interchang"..., 4096) = 567
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/capture_page.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2188, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2003-2008 Interchang"..., 4096) = 2188
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/if_not_volatile.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=246, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag if_not_volatile HasEndTa"..., 4096) = 246
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/convert_date.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2465, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2465
4613 brk(0) = 0x2ffd000
4613 brk(0x301e000) = 0x301e000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/usps_query.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=12323, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2009 Interchang"..., 4096) = 4096
4613 read(7, " q{Samoa} => q{Western"..., 4096) = 4096
4613 read(7, "ice you wish to get a rate quote"..., 4096) = 4096
4613 read(7, "es <mat@bibliopolis.com>\n\n=cut\nE"..., 4096) = 35
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/css.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2743, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2003-2009 Interchang"..., 4096) = 2743
4613 brk(0) = 0x301e000
4613 brk(0x303f000) = 0x303f000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/delete_cart.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=697, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 697
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/email.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7372, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2012 Interchang"..., 4096) = 4096
4613 read(7, "=UTF-8' : '');\n $opt-"..., 4096) = 3276
4613 stat("/home/sam/live/interchange/MIME/Lite.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/Lite.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Lite.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Lite.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Lite.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Lite.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Lite.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Lite.pm", {st_mode=S_IFREG|0444, st_size=105117, ...}) = 0
4613 open("/home/sam/local/lib/perl5/MIME/Lite.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package MIME::Lite;\nuse strict;\n"..., 4096) = 4096
4613 read(8, " Type =>'multipart/mixed'\n "..., 4096) = 4096
4613 read(8, "_TYPE\n\nIf true, try to automatic"..., 4096) = 4096
4613 read(8, "DNAME\n#\n# Is this a field I mana"..., 4096) = 4096
4613 brk(0) = 0x303f000
4613 brk(0x3060000) = 0x3060000
4613 read(8, " = shift;\n local($_);"..., 4096) = 4096
4613 read(8, "_boundary();\n $attrs->{'c"..., 4096) = 4096
4613 read(8, "<\"Benign limitations\">).\n\n=item "..., 4096) = 4096
4613 read(8, "ttrs->{'content-type'}{'boundary"..., 4096) = 4096
4613 read(8, "self->delete('X-Mailer');\n }\n"..., 4096) = 4096
4613 brk(0) = 0x3060000
4613 brk(0x3081000) = 0x3081000
4613 read(8, "lds are output for this object:\n"..., 4096) = 4096
4613 read(8, " my $sub_attrs = $self->{SubA"..., 4096) = 4096
4613 read(8, "mble [TEXT]\n\nI<Instance method.>"..., 4096) = 4096
4613 read(8, "( $self->{Attrs}{\"content-type\"}"..., 4096) = 4096
4613 read(8, "he signature is appended to it.\n"..., 4096) = 4096
4613 brk(0) = 0x3081000
4613 brk(0x30a2000) = 0x30a2000
4613 read(8, "ot readable.\n\n=cut\n\n\nsub verify_"..., 4096) = 4096
4613 read(8, "le if none\n# was given.\n#\n# Note"..., 4096) = 4096
4613 read(8, " /^BASE64$/ and do {\n "..., 4096) = 4096
4613 brk(0) = 0x30a2000
4613 brk(0x30c3000) = 0x30c3000
4613 read(8, "..);\n $msg->send || die \"you "..., 4096) = 4096
4613 read(8, "Unless this is I<explicitly> giv"..., 4096) = 4096
4613 read(8, "TP|Net::SMTP> commands and you s"..., 4096) = 4096
4613 read(8, " . $smtp->message . \"\\n\";\n\n "..., 4096) = 4096
4613 brk(0) = 0x30c3000
4613 brk(0x30e4000) = 0x30e4000
4613 read(8, "_ ) );\n}\n\n=back\n\n=cut\n\n\n#======="..., 4096) = 4096
4613 lseek(8, 89483, SEEK_SET) = 89483
4613 lseek(8, 0, SEEK_CUR) = 89483
4613 close(8) = 0
4613 stat("/usr/lib/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/usr/lib/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/usr/lib/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/usr/lib/sendmail", {st_mode=S_IFREG|0755, st_size=247848, ...}) = 0
4613 getgroups(0, NULL) = 1
4613 getgroups(1, [1000]) = 1
4613 stat("/home/sam/live/interchange/MIME/Types.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/Types.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Types.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Types.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Types.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Types.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Types.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Types.pm", {st_mode=S_IFREG|0444, st_size=6936, ...}) = 0
4613 open("/home/sam/local/lib/perl5/MIME/Types.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Copyrights 1999,2001-2015 by ["..., 4096) = 4096
4613 stat("/home/sam/live/interchange/MIME/Type.pmc", 0x7fff77fb2950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/Type.pm", 0x7fff77fb28a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Type.pmc", 0x7fff77fb2950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/Type.pm", 0x7fff77fb28a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Type.pmc", 0x7fff77fb2950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/Type.pm", 0x7fff77fb28a0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Type.pmc", 0x7fff77fb2950) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/Type.pm", {st_mode=S_IFREG|0444, st_size=2694, ...}) = 0
4613 open("/home/sam/local/lib/perl5/MIME/Type.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2680) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "# Copyrights 1999,2001-2015 by ["..., 4096) = 2694
4613 brk(0) = 0x30e4000
4613 brk(0x3105000) = 0x3105000
4613 read(9, "", 4096) = 0
4613 close(9) = 0
4613 read(8, "]*)?) \\s* )?\n (\\;.*"..., 4096) = 2840
4613 lseek(8, 6835, SEEK_SET) = 6835
4613 lseek(8, 0, SEEK_CUR) = 6835
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/Mail/Address.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Mail/Address.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Mail/Address.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Mail/Address.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Mail/Address.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Mail/Address.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Mail/Address.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Mail/Address.pm", {st_mode=S_IFREG|0444, st_size=6779, ...}) = 0
4613 open("/home/sam/local/lib/perl5/Mail/Address.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Copyrights 1995-2014 by [Mark "..., 4096) = 4096
4613 brk(0) = 0x3105000
4613 brk(0x3126000) = 0x3126000
4613 read(8, "ent);\n push @objs, $o"..., 4096) = 2683
4613 brk(0) = 0x3126000
4613 brk(0x3147000) = 0x3147000
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 stat("/home/sam/live/interchange/MIME/QuotedPrint.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/MIME/QuotedPrint.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/QuotedPrint.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/MIME/QuotedPrint.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/QuotedPrint.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/MIME/QuotedPrint.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/QuotedPrint.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/MIME/QuotedPrint.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/QuotedPrint.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/QuotedPrint.pm", {st_mode=S_IFREG|0444, st_size=3285, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/MIME/QuotedPrint.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2bf0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package MIME::QuotedPrint;\n\nuse "..., 4096) = 3285
4613 lseek(8, 294, SEEK_SET) = 294
4613 lseek(8, 0, SEEK_CUR) = 294
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/env.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=953, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2004-2007 Interchang"..., 4096) = 953
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/page_meta.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=908, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 908
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/button.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=6418, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2008 Interchang"..., 4096) = 4096
4613 read(7, "r =~ s/\\W/_/g;\n\t\t$clickname = \"m"..., 4096) = 2322
4613 brk(0) = 0x3147000
4613 brk(0x3168000) = 0x3168000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/title_bar.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1143, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1143
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/component.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3213, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3213
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/save_cart.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1260, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1260
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/table_organize.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=4447, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "r, @op);\n\t\t\t$out .= \"\\n\\t\" if $p"..., 4096) = 351
4613 brk(0) = 0x3168000
4613 brk(0x3189000) = 0x3189000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/usertrack.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=568, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 568
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/forum.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=6228, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2010 Interchang"..., 4096) = 4096
4613 read(7, "v) {\n\t\t $pre .= join \"\", splice"..., 4096) = 2132
4613 brk(0) = 0x3189000
4613 brk(0x31aa000) = 0x31aa000
4613 brk(0) = 0x31aa000
4613 brk(0) = 0x31aa000
4613 brk(0x31a9000) = 0x31a9000
4613 brk(0) = 0x31a9000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/formel.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5109, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "me=\"${name}\"$sizestr></textarea>"..., 4096) = 1013
4613 brk(0) = 0x31a9000
4613 brk(0x31ca000) = 0x31ca000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/report_table.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=20684, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, " sufficient.\n\nAdvanced column de"..., 4096) = 4096
4613 read(7, "assing row_toggle=\"1,1,0,1,1,1\" "..., 4096) = 4096
4613 read(7, "k}, };\n\t\tif ($def->{link_parm}) "..., 4096) = 4096
4613 read(7, "ults) and (@{$results}))) {\n\t\tre"..., 4096) = 4096
4613 read(7, "; }\n\t$Tag->tmp('report_table_row"..., 4096) = 204
4613 brk(0) = 0x31ca000
4613 brk(0x31eb000) = 0x31eb000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/make_password.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1086, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2003-2013 Jon Jensen"..., 4096) = 1086
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/load_cart.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=881, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 881
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/values_space.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1367, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2004-2007 Interchang"..., 4096) = 1367
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/get_url.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1902
4613 stat("/home/sam/live/interchange/LWP/UserAgent.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/LWP/UserAgent.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/UserAgent.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/UserAgent.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/UserAgent.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/UserAgent.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/UserAgent.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/UserAgent.pm", {st_mode=S_IFREG|0444, st_size=54147, ...}) = 0
4613 open("/home/sam/local/lib/perl5/LWP/UserAgent.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3100) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "package LWP::UserAgent;\n\nuse str"..., 4096) = 4096
4613 brk(0) = 0x31eb000
4613 brk(0x320c000) = 0x320c000
4613 stat("/home/sam/live/interchange/HTTP/Request.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Request.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Request.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Request.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Request.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Request.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Request.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Request.pm", {st_mode=S_IFREG|0444, st_size=5561, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Request.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package HTTP::Request;\n\nrequire "..., 4096) = 4096
4613 lseek(9, 2540, SEEK_SET) = 2540
4613 lseek(9, 0, SEEK_CUR) = 2540
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/HTTP/Message.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Message.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Message.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Message.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Message.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Message.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Message.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Message.pm", {st_mode=S_IFREG|0444, st_size=29948, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Message.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package HTTP::Message;\n\nuse stri"..., 4096) = 4096
4613 brk(0) = 0x320c000
4613 brk(0x322d000) = 0x322d000
4613 read(9, "-32-LE\" if /^\\xFF\\xFE\\x00\\x00/;\n"..., 4096) = 4096
4613 read(9, "'t uncompress content\";\n\t\t}\n\t\tel"..., 4096) = 4096
4613 brk(0) = 0x322d000
4613 brk(0x324e000) = 0x324e000
4613 read(9, "::deflate(\\$content, \\$output)\n\t"..., 4096) = 4096
4613 read(9, "unction here so that it will not"..., 4096) = 4096
4613 brk(0) = 0x324e000
4613 brk(0x326f000) = 0x326f000
4613 lseek(9, 19359, SEEK_SET) = 19359
4613 lseek(9, 0, SEEK_CUR) = 19359
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/HTTP/Headers.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Headers.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Headers.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Headers.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Headers.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Headers.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Headers.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Headers.pm", {st_mode=S_IFREG|0444, st_size=24244, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Headers.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package HTTP::Headers;\n\nuse stri"..., 4096) = 4096
4613 brk(0) = 0x326f000
4613 brk(0x3290000) = 0x3290000
4613 read(9, "ew, $val);\n\t }\n\t else {\n\t\t"..., 4096) = 4096
4613 read(9, "v[0]};\n\tmy $charset = $ct_param{"..., 4096) = 4096
4613 brk(0) = 0x3290000
4613 brk(0x32b1000) = 0x32b1000
4613 lseek(9, 11044, SEEK_SET) = 11044
4613 lseek(9, 0, SEEK_CUR) = 11044
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/HTTP/Response.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Response.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Response.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Response.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Response.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Response.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Response.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Response.pm", {st_mode=S_IFREG|0444, st_size=16492, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Response.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package HTTP::Response;\n\nrequire"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/HTTP/Status.pmc", 0x7fff77fb28f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Status.pm", 0x7fff77fb2840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Status.pmc", 0x7fff77fb28f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Status.pm", 0x7fff77fb2840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Status.pmc", 0x7fff77fb28f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Status.pm", 0x7fff77fb2840) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Status.pmc", 0x7fff77fb28f0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Status.pm", {st_mode=S_IFREG|0444, st_size=8528, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Status.pm", O_RDONLY) = 10
4613 ioctl(10, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2620) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(10, 0, SEEK_CUR) = 0
4613 read(10, "package HTTP::Status;\n\nuse stric"..., 4096) = 4096
4613 lseek(10, 3587, SEEK_SET) = 3587
4613 lseek(10, 0, SEEK_CUR) = 3587
4613 close(10) = 0
4613 brk(0) = 0x32b1000
4613 brk(0x32d2000) = 0x32d2000
4613 read(9, "\"\\n\" unless defined $eol;\n\n m"..., 4096) = 4096
4613 lseek(9, 7661, SEEK_SET) = 7661
4613 lseek(9, 0, SEEK_CUR) = 7661
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/HTTP/Date.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/HTTP/Date.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Date.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/HTTP/Date.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Date.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/HTTP/Date.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Date.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/HTTP/Date.pm", {st_mode=S_IFREG|0444, st_size=10766, ...}) = 0
4613 open("/home/sam/local/lib/perl5/HTTP/Date.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package HTTP::Date;\n\n$VERSION = "..., 4096) = 4096
4613 brk(0) = 0x32d2000
4613 brk(0x32f3000) = 0x32f3000
4613 read(9, "-12-96 03:52PM\n (($mon, $day"..., 4096) = 4096
4613 lseek(9, 6261, SEEK_SET) = 6261
4613 lseek(9, 0, SEEK_CUR) = 6261
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Time/Local.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Time/Local.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Time/Local.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Time/Local.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Time/Local.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Time/Local.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Time/Local.pm", {st_mode=S_IFREG|0444, st_size=11570, ...}) = 0
4613 open("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Time/Local.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package Time::Local;\n\nrequire Ex"..., 4096) = 4096
4613 read(9, " $loc_t = $ref_t - $zone_off;\n\n "..., 4096) = 4096
4613 brk(0) = 0x32f3000
4613 brk(0x3314000) = 0x3314000
4613 lseek(9, 5029, SEEK_SET) = 5029
4613 lseek(9, 0, SEEK_CUR) = 5029
4613 close(9) = 0
4613 stat("/etc/localtime", {st_mode=S_IFREG|0644, st_size=3519, ...}) = 0
4613 stat("/home/sam/live/interchange/LWP.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/LWP.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP.pm", {st_mode=S_IFREG|0444, st_size=21343, ...}) = 0
4613 open("/home/sam/local/lib/perl5/LWP.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package LWP;\n\n$VERSION = \"5.837\""..., 4096) = 4096
4613 lseek(9, 153, SEEK_SET) = 153
4613 lseek(9, 0, SEEK_CUR) = 153
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/LWP/Protocol.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/LWP/Protocol.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/Protocol.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/Protocol.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/Protocol.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/Protocol.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/Protocol.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/Protocol.pm", {st_mode=S_IFREG|0444, st_size=7915, ...}) = 0
4613 open("/home/sam/local/lib/perl5/LWP/Protocol.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package LWP::Protocol;\n\nrequire "..., 4096) = 4096
4613 read(9, "\n delete $response->{handlers"..., 4096) = 3819
4613 lseek(9, 4627, SEEK_SET) = 4627
4613 lseek(9, 0, SEEK_CUR) = 4627
4613 close(9) = 0
4613 stat("/home/sam/live/interchange/LWP/MemberMixin.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/LWP/MemberMixin.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/MemberMixin.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/LWP/MemberMixin.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/MemberMixin.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/LWP/MemberMixin.pm", 0x7fff77fb2db0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/MemberMixin.pmc", 0x7fff77fb2e60) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/LWP/MemberMixin.pm", {st_mode=S_IFREG|0444, st_size=846, ...}) = 0
4613 open("/home/sam/local/lib/perl5/LWP/MemberMixin.pm", O_RDONLY) = 9
4613 ioctl(9, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2b90) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(9, 0, SEEK_CUR) = 0
4613 read(9, "package LWP::MemberMixin;\n\nsub _"..., 4096) = 846
4613 lseek(9, 179, SEEK_SET) = 179
4613 lseek(9, 0, SEEK_CUR) = 179
4613 close(9) = 0
4613 read(8, "ponse = $self->run_handlers(\"req"..., 4096) = 4096
4613 brk(0) = 0x3314000
4613 brk(0x3335000) = 0x3335000
4613 read(8, "\n }\n return $self->send_re"..., 4096) = 4096
4613 read(8, "on::GET( @parameters ), @suff );"..., 4096) = 4096
4613 read(8, " # change the conditions unde"..., 4096) = 4096
4613 brk(0) = 0x3335000
4613 brk(0x3356000) = 0x3356000
4613 read(8, "}{$phase} ||= do {\n requi"..., 4096) = 4096
4613 brk(0) = 0x3356000
4613 brk(0x3377000) = 0x3377000
4613 read(8, "ontent_length) = $response->head"..., 4096) = 4096
4613 lseek(8, 28259, SEEK_SET) = 28259
4613 lseek(8, 0, SEEK_CUR) = 28259
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/summary.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1399, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1399
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/timed_display.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1914, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag timed-display Order star"..., 4096) = 1914
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/bar_button.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=834, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2003-2007 Interchang"..., 4096) = 834
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/var.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1067, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1067
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/child-process.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3444, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2008 Interchange Dev"..., 4096) = 3444
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/rand.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=787, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 787
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/ups_query.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5807, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 brk(0) = 0x3377000
4613 brk(0x3398000) = 0x3398000
4613 stat("/home/sam/live/interchange/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 stat("./Business/UPS.pmc", 0x7fff77fb2ec0) = -1 ENOENT (No such file or directory)
4613 stat("./Business/UPS.pm", 0x7fff77fb2e10) = -1 ENOENT (No such file or directory)
4613 read(7, "de. Default is $Variable->{UPS_O"..., 4096) = 1711
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/db_date.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1236, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1236
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/email_raw.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2051, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2051
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/weight.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=9193, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "SH') {\n\t\t\t\tfor(keys %$adder_thin"..., 4096) = 4096
4613 brk(0) = 0x3398000
4613 brk(0x33b9000) = 0x33b9000
4613 read(7, " lbs per cart\n\n[weight tot_adder"..., 4096) = 1001
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/fortune.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1285, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1285
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/loc.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1380, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1380
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UserTag/history_scan.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2464, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2464
4613 brk(0) = 0x33b9000
4613 brk(0x33da000) = 0x33da000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/calc.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=619, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 619
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/image.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7545, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2011 Interchang"..., 4096) = 4096
4613 read(7, "m{^[^/]}) {\n\t\t\t\t\tif ($opt->{forc"..., 4096) = 3449
4613 brk(0) = 0x33da000
4613 brk(0x33fb000) = 0x33fb000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/attr_list.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=823, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 823
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/loop.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 810
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/levies.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=800, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 800
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/onfly.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 667
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/read_cookie.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=590, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 590
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/nitems.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 663
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/input_filter.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=869, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 869
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/item_list.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1444, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1444
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/mvasp.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=831, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 831
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/unpack.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1314, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1314
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/html_table.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=666, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 666
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/either.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=852, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 852
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/output_to.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 770
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/import.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=856, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 856
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/set_cookie.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=615, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2008 Interchang"..., 4096) = 615
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/comment.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 704
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/form_session_id.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 681
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/catch.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1903, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1903
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/scratch.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=865, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 865
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/control_set.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1126, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1126
4613 brk(0) = 0x33fb000
4613 brk(0x341c000) = 0x341c000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/value_extended.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=686, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 686
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/area.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=665, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 665
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/control.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1507, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1507
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/selected.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1614, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1614
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/try.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 699
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/page.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 775
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/userdb.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=770, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 770
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/price.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1217, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1217
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/fly_list.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=708, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 708
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/charge.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=663, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 663
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/seti.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=711, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 711
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/msg.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1906, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1906
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/calcn.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 580
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/cart.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 630
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/subtotal.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=922, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 922
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/data.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1102, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1102
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/discount.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1755, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1755
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/description.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 646
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/warnings.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1610, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1610
4613 brk(0) = 0x341c000
4613 brk(0x343d000) = 0x343d000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/search_region.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=875, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 875
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/record.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1652, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1652
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/tv.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1902, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag tv Order name\nUserTag t"..., 4096) = 1902
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/tmpn.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 667
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/harness.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1358, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1358
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/accounting.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1838, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1838
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/search.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2009 Interchang"..., 4096) = 555
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/error.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=4845, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "\tif($text) {\n\t\t\t# do nothing\n\t\t}"..., 4096) = 749
4613 brk(0) = 0x343d000
4613 brk(0x345e000) = 0x345e000
4613 brk(0) = 0x345e000
4613 brk(0) = 0x345e000
4613 brk(0x345d000) = 0x345d000
4613 brk(0) = 0x345d000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/index.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 775
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/mail.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 702
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/captcha.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=6778, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2006-2007 Interchang"..., 4096) = 4096
4613 stat("/home/sam/live/interchange/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/x86_64-linux/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/local/lib/perl5/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/x86_64-linux/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/5.10.1/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/x86_64-linux/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/.plenv/versions/5.10.1/lib/perl5/site_perl/5.10.1/Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("./Authen/Captcha.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("./Authen/Captcha.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 read(7, "e=\"[cgi mv_captcha_source]\"\n "..., 4096) = 2682
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/tmp.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=706, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 706
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/counter.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=773, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 773
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/uc_attr_list.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=848, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 848
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/field.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=889, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 889
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/parse_locale.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=594, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 594
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/shipping.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 876
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/shipping_desc.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=656, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 656
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/include.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1151, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1151
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/timed_build.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=749, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 749
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/discount_space.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3140, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3140
4613 brk(0) = 0x345d000
4613 brk(0x347e000) = 0x347e000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/order.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1982, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1982
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/process.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1841, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1841
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/flag.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=818, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 818
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/tag.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 760
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/deliver.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2665, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2665
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/scratchd.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=820, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 820
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/local.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3108, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2007 Interchange Dev"..., 4096) = 3108
4613 brk(0) = 0x347e000
4613 brk(0x349f000) = 0x349f000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/debug.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=561, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 561
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/flag_job.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2006-2007 Interchang"..., 4096) = 636
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/query.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=753, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 753
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/region.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=812, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 812
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/perl.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=760, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 760
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/default.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=943, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 943
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/strip.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 667
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/levy_list.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1032, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1032
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/fly_tax.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=730, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 730
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/time.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=704, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 704
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/banner.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3400, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3400
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/set.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=670, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 670
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/log.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=748, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 748
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/assign.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1271, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1271
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/dump.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 649
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/export.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=775, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 775
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/filter.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 672
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/row.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=4357, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "ned ${$lines[$x]}[$y]) {\n\t\t\t\t$li"..., 4096) = 261
4613 brk(0) = 0x349f000
4613 brk(0x34c0000) = 0x34c0000
4613 brk(0) = 0x34c0000
4613 brk(0) = 0x34c0000
4613 brk(0x34bf000) = 0x34bf000
4613 brk(0) = 0x34bf000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/checked.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1609, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1609
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/value.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=751, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 751
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/setlocale.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=676, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 676
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/menu.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=646, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 646
4613 stat("/home/sam/live/interchange/Vend/Menu.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Menu.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Menu.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Menu.pm", {st_mode=S_IFREG|0444, st_size=59500, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Menu.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3100) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# Vend::Menu - Interchange menu "..., 4096) = 4096
4613 brk(0) = 0x34bf000
4613 brk(0x34e0000) = 0x34e0000
4613 read(8, "c}\");\n\t\t\t$::Scratch->{$f} = $row"..., 4096) = 4096
4613 brk(0) = 0x34e0000
4613 brk(0x3501000) = 0x3501000
4613 read(8, "\t\tmy @out;\n\t\t\tfor my $p (@parms)"..., 4096) = 4096
4613 brk(0) = 0x3501000
4613 brk(0x3522000) = 0x3522000
4613 read(8, "te};\n\tif($header =~ /\\S/) {\n\t\tpu"..., 4096) = 4096
4613 read(8, "= '</td><td><div';\n\t\t\n\t\tif(l[${v"..., 4096) = 4096
4613 read(8, "pf}menuBusy()\n\t{\n\t\tif( ${vpf}bro"..., 4096) = 4096
4613 brk(0) = 0x3522000
4613 brk(0x3543000) = 0x3543000
4613 read(8, " ? 1 : 0);\n\t}\n\t$out .= join \",\","..., 4096) = 4096
4613 read(8, "undefined)\n\t\treturn;\n\tvar out;\n\t"..., 4096) = 4096
4613 brk(0) = 0x3543000
4613 brk(0x3564000) = 0x3564000
4613 read(8, "\t\tout += ${vpf}image_link(l);\n\t\t"..., 4096) = 4096
4613 read(8, "for(@{$o{object}{mv_results}}) {"..., 4096) = 4096
4613 brk(0) = 0x3564000
4613 brk(0x3585000) = 0x3585000
4613 brk(0) = 0x3585000
4613 brk(0) = 0x3585000
4613 brk(0x3584000) = 0x3584000
4613 brk(0) = 0x3584000
4613 read(8, "shown = 2;\n// }\n\t\t\t}\n\t\t\telse {\n\t"..., 4096) = 4096
4613 read(8, "row->{page};\n\t}\n\telse {\n\t\tunless"..., 4096) = 4096
4613 brk(0) = 0x3584000
4613 brk(0x35a5000) = 0x35a5000
4613 read(8, "mplate =~ /\\S/;\n{PAGE:}\n\t<b>{NAM"..., 4096) = 4096
4613 read(8, "$page, 2\n\t\t\t\t\tif $page;\n\t\t\t\ts{<a"..., 4096) = 4096
4613 brk(0) = 0x35a5000
4613 brk(0x35c6000) = 0x35c6000
4613 read(8, "ee($name,$opt,$template);\n\t}\n\tel"..., 4096) = 2156
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/handling.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 883
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/soap.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=815, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 815
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/options.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=668, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 668
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/cgi.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1198, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1198
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/total_cost.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=899, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 899
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/file.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1016, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1016
4613 brk(0) = 0x35c6000
4613 brk(0x35e7000) = 0x35e7000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/tree.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7639, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, " ; $i++ ) {\n\t\t\t\tpush @out, $pass"..., 4096) = 3543
4613 brk(0) = 0x35e7000
4613 brk(0x3608000) = 0x3608000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/currency.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=859, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 859
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/accessories.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1048, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1048
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/update.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=627, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 627
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/salestax.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=882, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 882
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/SystemTag/profile.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=672, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 672
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/JavaScriptCheck/required.jsc", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2160, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 2160
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/uninstall_feature.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=703, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 703
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/available_ups_internal.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=718, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 718
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/mm_value.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1427, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1427
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/user_merge.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5268, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2009 Interchang"..., 4096) = 4096
4613 read(7, "errstr);\n\t\t\tmy $o = $query{$_};\n"..., 4096) = 1172
4613 brk(0) = 0x3608000
4613 brk(0x3629000) = 0x3629000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/get_gpg_keys.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1333, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1333
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/content_info.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=644, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 644
4613 stat("/home/sam/live/interchange/UI/ContentEditor.pmc", 0x7fff77fb2e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/UI/ContentEditor.pm", 0x7fff77fb2dc0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/UI/ContentEditor.pmc", 0x7fff77fb2e70) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/UI/ContentEditor.pm", {st_mode=S_IFREG|0664, st_size=77015, ...}) = 0
4613 open("/home/sam/live/interchange/lib/UI/ContentEditor.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb2ba0) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 read(8, "# UI::ContentEditor - Interchang"..., 4096) = 4096
4613 brk(0) = 0x3629000
4613 brk(0x364a000) = 0x364a000
4613 read(8, "e} unless $name;\n\treturn $store-"..., 4096) = 4096
4613 read(8, " =~ m{(?:comp[-_]name|default|co"..., 4096) = 4096
4613 brk(0) = 0x364a000
4613 brk(0x366b000) = 0x366b000
4613 read(8, "| $tref->{ui_slots} || [] };\n\n\t#"..., 4096) = 4096
4613 read(8, "template';\n\n\tmy $class = $opt->{"..., 4096) = 4096
4613 brk(0) = 0x366b000
4613 brk(0x368c000) = 0x368c000
4613 read(8, " ui_class => '',\n"..., 4096) = 4096
4613 read(8, "\tif(my $class = $opt->{class}) {"..., 4096) = 4096
4613 brk(0) = 0x368c000
4613 brk(0x36ad000) = 0x36ad000
4613 read(8, "$el_item, $el_data) = split /\\s*"..., 4096) = 4096
4613 brk(0) = 0x36ad000
4613 brk(0x36ce000) = 0x36ce000
4613 read(8, "$opt };\n\tdelete $topt->{dir};\n\td"..., 4096) = 4096
4613 read(8, "'ui_control', $name);\n\t\tmy $ef ="..., 4096) = 4096
4613 brk(0) = 0x36ce000
4613 brk(0x36ef000) = 0x36ef000
4613 read(8, "ui_scratches};\n\twhile ( my($k,$v"..., 4096) = 4096
4613 brk(0) = 0x36ef000
4613 brk(0x3710000) = 0x3710000
4613 read(8, "b\n\tname\n\toutboard\n\toptions\n\tattr"..., 4096) = 4096
4613 read(8, "ype} eq $type\n\t\tor death(\"publis"..., 4096) = 4096
4613 brk(0) = 0x3710000
4613 brk(0x3731000) = 0x3731000
4613 read(8, "= \"\\n\\n\";\n\t$out .= join \"\\n\", @c"..., 4096) = 4096
4613 brk(0) = 0x3731000
4613 brk(0x3752000) = 0x3752000
4613 read(8, "r return death(\"publish_componen"..., 4096) = 4096
4613 read(8, "al{$_};\n\t\tmy $f = $_;\n\t\tif(s/^_s"..., 4096) = 4096
4613 brk(0) = 0x3752000
4613 brk(0x3773000) = 0x3773000
4613 read(8, "blish\t\t\t\t=> \\&publish_template,\n"..., 4096) = 4096
4613 read(8, "ave_store('component', $name,$cr"..., 4096) = 4096
4613 brk(0) = 0x3773000
4613 brk(0x3794000) = 0x3794000
4613 read(8, "div>\n[/component-menus]\n\t</td>\n\n"..., 4096) = 3287
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/assume_identity.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=994, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 994
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/file_navigator.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=9804, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "q '.') {\n\t\tif($dir_mask eq '*') "..., 4096) = 4096
4613 read(7, "T>\", $perm, $user, $grp, $time);"..., 4096) = 1612
4613 brk(0) = 0x3794000
4613 brk(0x37b5000) = 0x37b5000
4613 brk(0) = 0x37b5000
4613 brk(0) = 0x37b5000
4613 brk(0x37b3000) = 0x37b3000
4613 brk(0) = 0x37b3000
4613 brk(0) = 0x37b3000
4613 brk(0x37d4000) = 0x37d4000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/flex_select.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=37094, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, " .= \"<b>$tm->{name}</br>\";\n\t}\n\ti"..., 4096) = 4096
4613 read(7, "\t\t\t\t}\n\t\t\t\telsif(/^(\\w+)(?:-([^=]"..., 4096) = 4096
4613 read(7, "qualification);\n\t\tif($ts->{owner"..., 4096) = 4096
4613 read(7, "licit_edit_anchor => '',\n\t\tno_co"..., 4096) = 4096
4613 read(7, "ag} || $opt->{\"all_$tag\"}\n\t\t\t\t\t\t"..., 4096) = 4096
4613 read(7, "ink_parm_extra[$idx]\t= \\@p;\n\t\t\t}"..., 4096) = 4096
4613 read(7, "class_odd};\n\t\t\tmy $out = qq{<tr "..., 4096) = 4096
4613 read(7, "->{more_border_selected},\n\t\t\t\t\t\t"..., 4096) = 4096
4613 read(7, "(@areas) {\n\t\tnext unless $output"..., 4096) = 230
4613 brk(0) = 0x37d4000
4613 brk(0x37fd000) = 0x37fd000
4613 brk(0) = 0x37fd000
4613 brk(0x3821000) = 0x3821000
4613 brk(0) = 0x3821000
4613 brk(0) = 0x3821000
4613 brk(0x3818000) = 0x3818000
4613 brk(0) = 0x3818000
4613 brk(0) = 0x3818000
4613 brk(0x3839000) = 0x3839000
4613 brk(0) = 0x3839000
4613 brk(0x385a000) = 0x385a000
4613 brk(0) = 0x385a000
4613 brk(0x387b000) = 0x387b000
4613 brk(0) = 0x387b000
4613 brk(0x389c000) = 0x389c000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/backup_file.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1441, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1441
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/import_fields.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=11264, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "\t}\n\n\t} # end CONVERT\n\n\tmy $chang"..., 4096) = 4096
4613 read(7, "ey) {\n\t\t\t$recs = $db->query(\"sel"..., 4096) = 3072
4613 brk(0) = 0x389c000
4613 brk(0x38bd000) = 0x38bd000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/quick_table.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1097, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1097
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/run_profile.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1776, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2009 Interchang"..., 4096) = 1776
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/display.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=883, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 883
4613 stat("/home/sam/live/interchange/Vend/Table/Editor.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/Vend/Table/Editor.pm", 0x7fff77fb3320) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Editor.pmc", 0x7fff77fb33d0) = -1 ENOENT (No such file or directory)
4613 stat("/home/sam/live/interchange/lib/Vend/Table/Editor.pm", {st_mode=S_IFREG|0444, st_size=120762, ...}) = 0
4613 open("/home/sam/live/interchange/lib/Vend/Table/Editor.pm", O_RDONLY) = 8
4613 ioctl(8, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3100) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(8, 0, SEEK_CUR) = 0
4613 brk(0) = 0x38bd000
4613 brk(0x38de000) = 0x38de000
4613 read(8, "# Vend::Table::Editor - Swiss-ar"..., 4096) = 4096
4613 read(8, "P_URL}\">$opt->{help_anchor}</a>{"..., 4096) = 4096
4613 read(8, "l_extra}>{TKEY}{HELP?}{HELP}{/HE"..., 4096) = 4096
4613 read(8, "\tfont-family: Arial, Helvetica, "..., 4096) = 4096
4613 brk(0) = 0x38de000
4613 brk(0x38ff000) = 0x38ff000
4613 read(8, "o be placed in the extended area"..., 4096) = 4096
4613 read(8, "options($tag, $mod);\n\t\t\t\t}\n\t\t\t\te"..., 4096) = 4096
4613 brk(0) = 0x38ff000
4613 brk(0x3920000) = 0x3920000
4613 read(8, "/\\s/) {\n\t\t$template = <<EOF;\n<tr"..., 4096) = 4096
4613 read(8, "t.all[${vpf}panelID+s+i]\n\t} else"..., 4096) = 4096
4613 brk(0) = 0x3920000
4613 brk(0x3941000) = 0x3941000
4613 read(8, "t->{tab_height} * (int($i / $tab"..., 4096) = 4096
4613 read(8, "ias{$tag} ||= [];\n\t\tpush @{$alia"..., 4096) = 4096
4613 brk(0) = 0x3941000
4613 brk(0x3962000) = 0x3962000
4613 read(8, "$opt->{all_opts}));\n\t\tif(ref($op"..., 4096) = 4096
4613 read(8, "meta_view}) || {};\n\t}\n\n\t# This s"..., 4096) = 4096
4613 brk(0) = 0x3962000
4613 brk(0x3983000) = 0x3983000
4613 read(8, "->{$mainp};\n\t\tif($opt->{$mainp})"..., 4096) = 4096
4613 read(8, "UserTag table-editor AttrAlias f"..., 4096) = 4096
4613 brk(0) = 0x3983000
4613 brk(0x39a4000) = 0x39a4000
4613 read(8, "\n\tmy $help = $opt->{help"..., 4096) = 4096
4613 read(8, "\t\t\t\t$v =~ s/^/$k=/mg;\n\t\t\t\t\t$v =~"..., 4096) = 4096
4613 brk(0) = 0x39a4000
4613 brk(0x39c5000) = 0x39c5000
4613 read(8, "die->('table-editor: row_hash fu"..., 4096) = 4096
4613 read(8, ",\", @wid_data{ sort keys %wid_da"..., 4096) = 4096
4613 brk(0) = 0x39c5000
4613 brk(0x39e6000) = 0x39e6000
4613 read(8, "%$hidden ) {\n\n##if new item, get"..., 4096) = 4096
4613 read(8, "b_widget; # unless $wo;\n\n\t ####"..., 4096) = 4096
4613 brk(0) = 0x39e6000
4613 brk(0x3a07000) = 0x3a07000
4613 read(8, "cols = split /\\s+/, $Tag->db_co"..., 4096) = 4096
4613 brk(0) = 0x3a07000
4613 brk(0x3a28000) = 0x3a28000
4613 read(8, "l =~ s/\"\\s*$/;/;\n\t\t\t\t$extra->{$c"..., 4096) = 4096
4613 read(8, "td>};\n\t\t\t\t}\n\t\t\t\tmy %o = (\n\t\t\t\t\tt"..., 4096) = 4096
4613 brk(0) = 0x3a28000
4613 brk(0x3a49000) = 0x3a49000
4613 read(8, "yle_sheet{$sheet};\n\t\t}\n\t\telsif($"..., 4096) = 4096
4613 read(8, "D <b>}{LABEL}{REQUIRED </b>}[/el"..., 4096) = 4096
4613 brk(0) = 0x3a49000
4613 brk(0x3a6a000) = 0x3a6a000
4613 read(8, " $update_ctl;\n\n\t\tif ($display->{"..., 4096) = 4096
4613 read(8, "v_data_fields\" value=\"$passed_fi"..., 4096) = 4096
4613 brk(0) = 0x3a6a000
4613 brk(0x3a91000) = 0x3a91000
4613 read(8, " .= '<p>Errors:';\n\t\t$message .= "..., 4096) = 4096
4613 read(8, "= HTML::Entities::encode($opt->{"..., 4096) = 4096
4613 brk(0) = 0x3a91000
4613 brk(0x3ab2000) = 0x3ab2000
4613 read(8, "$i = $firstout; $i < @out; $i++)"..., 4096) = 1978
4613 read(8, "", 4096) = 0
4613 close(8) = 0
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/traffic_report.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7015, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, " = $_;\n\t\t\t\tlast COUNT;\n\t\t\t};\n\t\tn"..., 4096) = 2919
4613 brk(0) = 0x3ab2000
4613 brk(0x3ad3000) = 0x3ad3000
4613 brk(0) = 0x3ad3000
4613 brk(0) = 0x3ad3000
4613 brk(0x3ad1000) = 0x3ad1000
4613 brk(0) = 0x3ad1000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/meta_info.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1306, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1306
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/check_upload.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=876, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 876
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/db_hash.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1536, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1536
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/return_to.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2671, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2671
4613 brk(0) = 0x3ad1000
4613 brk(0x3af2000) = 0x3af2000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/diff.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1946, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1946
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/content_editor.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=692, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 692
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/list_databases.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1354, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1354
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/read_shipping.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=923, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 923
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/list_glob.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 678
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/global_value.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=650, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 650
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/dump_session.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3602, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3602
4613 brk(0) = 0x3af2000
4613 brk(0x3b13000) = 0x3b13000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/available_www_shipping.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2245, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2245
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/if_mm.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5005, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "tatus = ui_check_acl(\"$table$ext"..., 4096) = 909
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/update_order_status.tag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=9605, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2008 Interchang"..., 4096) = 4096
4613 read(7, "\t\t}\n\t\t\telse {\n#::logDebug(\"auth-"..., 4096) = 4096
4613 read(7, "total_shipped_now = scalar keys "..., 4096) = 1413
4613 brk(0) = 0x3b13000
4613 brk(0x3b35000) = 0x3b35000
4613 brk(0) = 0x3b35000
4613 brk(0) = 0x3b35000
4613 brk(0x3b33000) = 0x3b33000
4613 brk(0) = 0x3b33000
4613 brk(0) = 0x3b33000
4613 brk(0x3b54000) = 0x3b54000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/list_keys.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2151, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2151
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/meta_record.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 623
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/row_edit.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=4225, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "text\">$msg</TD>\nEOF\n\t\t\t}\n\t\t}\n\t}\n"..., 4096) = 129
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/widget_meta.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 597
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/jsqn.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=879, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 879
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/base_url.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=522, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 522
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/unlink_file.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=862, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 862
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/reconfig_time.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=772, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 772
4613 brk(0) = 0x3b54000
4613 brk(0x3b75000) = 0x3b75000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/jsq.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1022, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1022
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/directive_value.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=874, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 874
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/write_relative_file.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=962, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 962
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/reconfig.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1267, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1267
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/mm_locale.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1119, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1119
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/content_modify.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=669, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 669
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/export_database.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1461, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1461
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/diffmerge.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3834, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3834
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/cp.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1080, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1080
4613 brk(0) = 0x3b75000
4613 brk(0x3b96000) = 0x3b96000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/db_columns.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1689, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1689
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/rotate_table.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1667, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1667
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/widget.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1741, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1741
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/add_gpg_key.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1784, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1784
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/write_shipping.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1513, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1513
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/backup_database.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5553, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2009 Interchang"..., 4096) = 4096
4613 read(7, " 0, $ptr;\n\t\t\t\t\t\t\t$overflow[$j] ="..., 4096) = 1457
4613 brk(0) = 0x3b96000
4613 brk(0x3bb7000) = 0x3bb7000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/newer.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1100, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1100
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/substitute_file.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=3202, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 3202
4613 brk(0) = 0x3bb7000
4613 brk(0x3bd8000) = 0x3bd8000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/widget_info.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1655, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "UserTag widget-info\tOrder\tname a"..., 4096) = 1655
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/file_info.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1585, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1585
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/auto_wizard.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=22754, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "-------------------------------\n"..., 4096) = 4096
4613 read(7, ";\n\t$attr{ANCHOR} = $ref->{anchor"..., 4096) = 4096
4613 read(7, "/) {\n\t\t\t$mark = $1;\n\t\t\t$sip = $_"..., 4096) = 4096
4613 read(7, " = 1 unless defined $opt->{show}"..., 4096) = 4096
4613 read(7, "ef->{_breaks}};\n\t\t$opts{ui_break"..., 4096) = 2274
4613 brk(0) = 0x3bd8000
4613 brk(0x3bfa000) = 0x3bfa000
4613 brk(0) = 0x3bfa000
4613 brk(0) = 0x3bfa000
4613 brk(0x3bf5000) = 0x3bf5000
4613 brk(0) = 0x3bf5000
4613 brk(0) = 0x3bf5000
4613 brk(0x3c16000) = 0x3c16000
4613 brk(0) = 0x3c16000
4613 brk(0x3c37000) = 0x3c37000
4613 brk(0) = 0x3c37000
4613 brk(0x3c58000) = 0x3c58000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/list_pages.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=858, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 858
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/tabbed_display.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=5267, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, " panel_width => 600,\n "..., 4096) = 1171
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/grep_mm.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=984, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 984
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/uneval.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=732, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 732
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/version.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=7023, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "\n\t\t\t'Bundle::LWP' => q{Certain p"..., 4096) = 2927
4613 brk(0) = 0x3c58000
4613 brk(0x3c79000) = 0x3c79000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/xfer_catalog.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=12775, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "ame) {\n\t\t\tmy $msg = \"Unable to f"..., 4096) = 4096
4613 read(7, " s/\\%s/$restore{dbname}/g;\n\t\t\t\t$"..., 4096) = 4096
4613 read(7, "ystem $cmdstring;\n\t};\n\n\t## Don't"..., 4096) = 487
4613 brk(0) = 0x3c79000
4613 brk(0x3c9a000) = 0x3c9a000
4613 brk(0) = 0x3c9a000
4613 brk(0x3cbb000) = 0x3cbb000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/su.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=4996, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "elete @{$newopt}{qw( admin exit "..., 4096) = 900
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/crypt.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=705, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2003-2007 Interchang"..., 4096) = 705
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/menu_load.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=13907, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 4096
4613 read(7, "CT $sfields FROM $tname ORDER BY"..., 4096) = 4096
4613 read(7, "\t\t\t\t\t\t$base_search,\n\t\t\t\t\t\t\t\t\"sf="..., 4096) = 4096
4613 read(7, "\t\t\tmsort => 0,\n\t\t\t\t\tmgroup => $r"..., 4096) = 1619
4613 brk(0) = 0x3cbb000
4613 brk(0x3cdc000) = 0x3cdc000
4613 brk(0) = 0x3cdc000
4613 brk(0) = 0x3cdc000
4613 brk(0x3cd9000) = 0x3cd9000
4613 brk(0) = 0x3cd9000
4613 brk(0) = 0x3cd9000
4613 brk(0x3cfa000) = 0x3cfa000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/UI_Tag/table_editor.coretag", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1370, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1370
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/strip.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 623
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/value.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=623, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 623
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/word.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=595, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 595
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/null_to_colons.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 637
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/upload.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=724, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 724
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/line2options.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=811, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 811
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/backslash.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=620, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 620
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/no_white.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=614, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 614
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/integer.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=573, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 573
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/urlencode.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=645, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 645
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/compress_space.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=685, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 685
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/space_to_null.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 636
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/lspace_to_nbsp.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 657
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/nullselect.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 654
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/round.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=684, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 684
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/pgbool.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 741
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/duration.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2141, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2141
4613 brk(0) = 0x3cfa000
4613 brk(0x3d1b000) = 0x3d1b000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/lc.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 702
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/lookup.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=640, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 640
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/currency.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=694, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 694
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/digits.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=604, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 604
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/hash2acl.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=981, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 981
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/zerofix.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=597, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 597
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/urldecode.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=769, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 769
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/commify.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=649, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 649
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/pgbooln.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=741, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 741
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/mac.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 618
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/encode_special_entities.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2010 Interchange Dev"..., 4096) = 630
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/convert_date.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=850, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 850
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/uc.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=702, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 702
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/digits_dash.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=607, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2008 Interchange Dev"..., 4096) = 607
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/vars_and_comments.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=764, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2004-2007 Interchang"..., 4096) = 764
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/lcfirst.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2007 Interchange Dev"..., 4096) = 654
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/filter_select.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1038, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 1038
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/digits_dot.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=624, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 624
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/name.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=681, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 681
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/oneline.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=652, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 652
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/null_to_comma.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 635
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/filesafe.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=608, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 608
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/roman.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1183, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005 Cursor Software"..., 4096) = 1183
4613 brk(0) = 0x3d1b000
4613 brk(0x3d3c000) = 0x3d3c000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/qb_safe.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=657, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 657
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/space_to_nbsp.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=699, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 699
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/mime_type.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=618, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 618
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/alphanumeric.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=641, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 641
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/pre.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=545, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 545
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/ucfirst.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2007 Interchange Dev"..., 4096) = 654
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/datetime2epoch.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1491, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1491
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/null_to_space.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=635, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 635
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/gate.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 626
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/strikeout.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=569, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 569
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/pagefile.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=557, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 557
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/text2html.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=796, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 796
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/option_format.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1214, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1214
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/linkdecode.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=947, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 947
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/checkbox.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=572, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 572
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/date_change.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=2331, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 2331
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/strip_path.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=587, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2014 Interchang"..., 4096) = 587
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/liven_urls.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=8845, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005 Davor Ocelic (d"..., 4096) = 4096
4613 read(7, "',\n#(?:ldap://(?:(?:(?:(?:(?:(?:"..., 4096) = 4096
4613 read(7, "-Z\\d\\$\\-_.!~*'(),])|(?:%[a-fA-F\\"..., 4096) = 653
4613 brk(0) = 0x3d3c000
4613 brk(0x3d5d000) = 0x3d5d000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/next_sequential.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1660, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1660
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/colons_to_null.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 636
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/show_null.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=654, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 654
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/restrict_html.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=785, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 785
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/large.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=626, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 626
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/encode_entities.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=771, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 771
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/strftime.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=788, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 788
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/options2line.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=810, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 810
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/strip_html.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1118, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2009 Interchange Dev"..., 4096) = 1118
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/namecase.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=636, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 636
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/mailto.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=707, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 707
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/last_non_null.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 678
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/dbi_quote.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=781, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2005-2007 Interchang"..., 4096) = 781
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/bold.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=580, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 580
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/yesno.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=722, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 722
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/decode_entities.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=637, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 637
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/date2time.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=1397, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 1397
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/sha1.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=480, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2007-2009 Interchang"..., 4096) = 480
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/sql.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=667, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 667
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/html2text.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=613, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2009 Interchang"..., 4096) = 613
4613 brk(0) = 0x3d5d000
4613 brk(0x3d7e000) = 0x3d7e000
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/small.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=555, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 555
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/encrypt.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=632, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 632
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/tt.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=540, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 540
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/line.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=609, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 609
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/alpha.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=677, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 677
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/textarea_put.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=678, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 678
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/italics.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=630, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 630
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/tabbed.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=612, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 612
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/md5.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=593, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 593
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/textarea_get.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=634, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 634
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/unix.filter", O_RDONLY) = 7
4613 ioctl(7, SNDCTL_TMR_TIMEBASE or SNDRV_TIMER_IOCTL_NEXT_DEVICE or TCGETS, 0x7fff77fb3120) = -1 ENOTTY (Inappropriate ioctl for device)
4613 lseek(7, 0, SEEK_CUR) = 0
4613 fstat(7, {st_mode=S_IFREG|0664, st_size=611, ...}) = 0
4613 fcntl(7, F_SETFD, FD_CLOEXEC) = 0
4613 read(7, "# Copyright 2002-2007 Interchang"..., 4096) = 611
4613 read(7, "", 4096) = 0
4613 close(7) = 0
4613 open("/home/sam/live/interchange/code/Filter/acl2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment