Skip to content

Instantly share code, notes, and snippets.

@t-mat
Last active November 12, 2016 15:00
Show Gist options
  • Save t-mat/3f6be82a408b60c00312 to your computer and use it in GitHub Desktop.
Save t-mat/3f6be82a408b60c00312 to your computer and use it in GitHub Desktop.
LZ4 dictionary (de)compression example

Compile

cd
mkdir lz4dict && cd lz4dict
git clone https://github.com/Cyan4973/zstd.git
git clone https://github.com/Cyan4973/lz4.git
(cd zstd && make)
(cd lz4 && make)

wget https://gist.githubusercontent.com/t-mat/3f6be82a408b60c00312/raw/main.cpp
g++ main.cpp lz4/lib/lz4.c lz4/lib/lz4hc.c -std=c++0x -Ilz4/lib

wget https://gist.githubusercontent.com/t-mat/3f6be82a408b60c00312/raw/testfile
split --lines=1 --suffix-length=10 testfile splittemp-testfile
./zstd/programs/zstd --train splittemp-* -o testfile.dict --maxdict 65536
rm splittemp-*
./a.out testfile
diff testfile testfile.lz4d.dec

#   -> testfile.lz4d : dictionary based compressed file
#   -> testfile.lz4d.dec : decompressed file for verify

testfile is fist 1000 lines of NASA_access_log_Jul95

// LZ4 dictionary (de)compression example
//
// Do not use this code for real production software.
//
/*
Compile:
cd
mkdir lz4dict && cd lz4dict
git clone https://github.com/Cyan4973/zstd.git
git clone https://github.com/Cyan4973/lz4.git
(cd zstd && make)
(cd lz4 && make)
wget https://gist.githubusercontent.com/t-mat/3f6be82a408b60c00312/raw/main.cpp
g++ main.cpp lz4/lib/lz4.c lz4/lib/lz4hc.c -std=c++0x -Ilz4/lib
wget https://gist.githubusercontent.com/t-mat/3f6be82a408b60c00312/raw/testfile
split --lines=1 --suffix-length=10 testfile splittemp-testfile
./zstd/programs/zstd --train splittemp-* -o testfile.dict --maxdict 65536
rm splittemp-*
./a.out testfile
diff testfile testfile.lz4d.dec
# -> testfile.lz4d : dictionary based compressed file
# -> testfile.lz4d.dec : decompressed file for verify
*/
#define _CRT_SECURE_NO_WARNINGS // MSVC
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <vector>
#include <string>
#include "lz4.h"
#include "lz4hc.h"
const size_t MSG_BYTES_MAX = 8 * 1024;
const size_t DICT_SIZE = 64 * 1024;
//
struct Header {
uint32_t numEntry;
};
struct Entry {
uint32_t offsetOfCompressedData;
uint16_t rawSize;
uint16_t compressedSize;
};
//
typedef std::vector<uint8_t> Buf;
Buf concat(const Buf& x, const Buf& y) {
Buf buf(x.size() + y.size());
memcpy(buf.data(), x.data(), x.size());
memcpy(buf.data() + x.size(), y.data(), y.size());
return buf;
}
template<class T>
Buf makeBuf(const T* array, size_t size) {
Buf buf(sizeof(T) * size);
memcpy(buf.data(), array, buf.size());
return buf;
}
Buf readFile(const char* filename) {
Buf buf;
FILE* fp = fopen(filename, "rb");
if(fp) {
fseek(fp, 0, SEEK_END);
buf.resize(ftell(fp));
rewind(fp);
fread(buf.data(), 1, buf.size(), fp);
fclose(fp);
}
return buf;
}
void writeFile(const char* filename, const Buf& buf) {
FILE* fp = fopen(filename, "wb");
if(fp) {
fwrite(buf.data(), 1, buf.size(), fp);
fclose(fp);
}
}
//
class Lz4StreamBase {
public:
Lz4StreamBase() {};
virtual ~Lz4StreamBase() {};
virtual int loadDict(const void* dictPtr, size_t dictBytes) = 0;
virtual int compressContinue(const void* src, size_t srcBytes, void* dst, size_t dstBytes) = 0;
};
class Lz4Stream : public Lz4StreamBase {
public:
Lz4Stream() {
lz4s = LZ4_createStream();
}
~Lz4Stream() {
LZ4_freeStream(lz4s);
}
int loadDict(const void* dictPtr, size_t dictBytes) {
return LZ4_loadDict(lz4s, (const char*) dictPtr, (int) dictBytes);
}
int compressContinue(const void* src, size_t srcBytes, void* dst, size_t dstBytes) {
return LZ4_compress_limitedOutput_continue(lz4s, (const char*) src, (char*) dst, (int) srcBytes, (int) dstBytes);
}
LZ4_stream_t* lz4s;
};
class Lz4StreamHc : public Lz4StreamBase {
public:
Lz4StreamHc() {
lz4s = LZ4_createStreamHC();
}
~Lz4StreamHc() {
LZ4_freeStreamHC(lz4s);
}
int loadDict(const void* dictPtr, size_t dictBytes) {
return LZ4_loadDictHC(lz4s, (const char*) dictPtr, (int) dictBytes);
}
int compressContinue(const void* src, size_t srcBytes, void* dst, size_t dstBytes) {
return LZ4_compressHC_limitedOutput_continue(lz4s, (const char*) src, (char*) dst, (int) srcBytes, (int) dstBytes);
}
LZ4_streamHC_t* lz4s;
};
//
Buf compressWithDict(Lz4StreamBase* ls, const Buf& src, const Buf& dict) {
std::vector<Entry> entries;
Buf compressedData(src.size() * 2);
{
Buf cmpBuf(LZ4_compressBound(MSG_BYTES_MAX));
size_t offset = 0;
const auto* p = src.data();
const auto* e = p + src.size();
while(p < e) {
printf("%5.2f%%\r", (p-src.data()) * 100.0 / (e-src.data()));
size_t len;
{
const auto* tmp = p;
while(*tmp++ != '\n') ;
len = (size_t) (tmp - p);
}
if(len > MSG_BYTES_MAX) {
len = MSG_BYTES_MAX;
}
ls->loadDict((const char*) dict.data(), dict.size());
const auto cmpBytes = ls->compressContinue(p, len, cmpBuf.data(), cmpBuf.size());
memcpy(compressedData.data() + offset, cmpBuf.data(), cmpBytes);
entries.emplace_back(Entry { (uint32_t) offset, (uint16_t) len, (uint16_t) cmpBytes });
offset += cmpBytes;
p += len;
}
compressedData.resize(offset);
}
Buf result;
Header header;
header.numEntry = (uint32_t) entries.size();
result = makeBuf(&header, 1);
result = concat(result, makeBuf(entries.data(), entries.size()));
result = concat(result, compressedData);
return result;
}
Buf decompressWithDict(Lz4StreamBase* ls, const Buf& src, const Buf& dict) {
const Header* header;
const Entry* entries;
const uint8_t* compressedDataTop;
{
const auto* p = (const uint8_t*) src.data();
header = (const Header*) p;
p += sizeof(*header);
entries = (const Entry*) p;
p += sizeof(*entries) * header->numEntry;
compressedDataTop = (const uint8_t*) p;
}
std::vector<char> tempBuf(65536);
std::vector<std::string> lines(header->numEntry);
// Decompress all lines in reverse order for testing.
for(int iEntry = (int) header->numEntry-1; iEntry >= 0; --iEntry) {
const auto* e = &entries[iEntry];
const auto* compressedData = compressedDataTop + e->offsetOfCompressedData;
const auto decompressedSize = LZ4_decompress_safe_usingDict(
(const char*) compressedData
, tempBuf.data()
, e->compressedSize
, (int) tempBuf.size()
, (const char*) dict.data()
, (int) dict.size());
lines[iEntry] = std::string(tempBuf.data(), decompressedSize);
}
// Concat all lines
Buf output;
for(const auto& line: lines) {
const auto lineLen = line.size();
const auto oldSize = output.size();
const auto newSize = oldSize + lineLen;
output.resize(newSize);
memcpy(output.data() + oldSize, line.c_str(), lineLen);
}
return output;
}
int main(int argc, const char* argv[]) {
typedef Lz4StreamHc Lz4S;
for(int iarg = 1; iarg < argc; ++iarg) {
const std::string srcFilename = argv[iarg];
const auto dicFilename = srcFilename + ".dict";
const auto cmpFilename = srcFilename + ".lz4d";
const auto decFilename = srcFilename + ".lz4d.dec";
const auto dict = readFile(dicFilename.c_str());
{
const auto srcFile = readFile(srcFilename.c_str());
Lz4S ls{};
const auto cmpFile = compressWithDict(&ls, srcFile, dict);
writeFile(cmpFilename.c_str(), cmpFile);
}
{
const auto cmpFile = readFile(cmpFilename.c_str());
Lz4S ls{};
const auto decFile = decompressWithDict(&ls, cmpFile, dict);
writeFile(decFilename.c_str(), decFile);
}
}
}
199.72.81.55 - - [01/Jul/1995:00:00:01 -0400] "GET /history/apollo/ HTTP/1.0" 200 6245
unicomp6.unicomp.net - - [01/Jul/1995:00:00:06 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
199.120.110.21 - - [01/Jul/1995:00:00:09 -0400] "GET /shuttle/missions/sts-73/mission-sts-73.html HTTP/1.0" 200 4085
burger.letters.com - - [01/Jul/1995:00:00:11 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
199.120.110.21 - - [01/Jul/1995:00:00:11 -0400] "GET /shuttle/missions/sts-73/sts-73-patch-small.gif HTTP/1.0" 200 4179
burger.letters.com - - [01/Jul/1995:00:00:12 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
burger.letters.com - - [01/Jul/1995:00:00:12 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 0
205.212.115.106 - - [01/Jul/1995:00:00:12 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
d104.aa.net - - [01/Jul/1995:00:00:13 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
129.94.144.152 - - [01/Jul/1995:00:00:13 -0400] "GET / HTTP/1.0" 200 7074
unicomp6.unicomp.net - - [01/Jul/1995:00:00:14 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
unicomp6.unicomp.net - - [01/Jul/1995:00:00:14 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
unicomp6.unicomp.net - - [01/Jul/1995:00:00:14 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
d104.aa.net - - [01/Jul/1995:00:00:15 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
d104.aa.net - - [01/Jul/1995:00:00:15 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
d104.aa.net - - [01/Jul/1995:00:00:15 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
129.94.144.152 - - [01/Jul/1995:00:00:17 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 304 0
199.120.110.21 - - [01/Jul/1995:00:00:17 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
ppptky391.asahi-net.or.jp - - [01/Jul/1995:00:00:18 -0400] "GET /facts/about_ksc.html HTTP/1.0" 200 3977
net-1-141.eden.com - - [01/Jul/1995:00:00:19 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0916.jpg HTTP/1.0" 200 34029
ppptky391.asahi-net.or.jp - - [01/Jul/1995:00:00:19 -0400] "GET /images/launchpalms-small.gif HTTP/1.0" 200 11473
205.189.154.54 - - [01/Jul/1995:00:00:24 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
waters-gw.starway.net.au - - [01/Jul/1995:00:00:25 -0400] "GET /shuttle/missions/51-l/mission-51-l.html HTTP/1.0" 200 6723
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:27 -0400] "GET / HTTP/1.0" 200 7074
205.189.154.54 - - [01/Jul/1995:00:00:29 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
alyssa.prodigy.com - - [01/Jul/1995:00:00:33 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:35 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
dial22.lloyd.com - - [01/Jul/1995:00:00:37 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0613.jpg HTTP/1.0" 200 61716
smyth-pc.moorecap.com - - [01/Jul/1995:00:00:38 -0400] "GET /history/apollo/apollo-13/images/70HC314.GIF HTTP/1.0" 200 101267
205.189.154.54 - - [01/Jul/1995:00:00:40 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-orl2-01.ix.netcom.com - - [01/Jul/1995:00:00:41 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:41 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:41 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
205.189.154.54 - - [01/Jul/1995:00:00:41 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:41 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
ppp-mia-30.shadow.net - - [01/Jul/1995:00:00:43 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ix-orl2-01.ix.netcom.com - - [01/Jul/1995:00:00:44 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
gayle-gaston.tenet.edu - - [01/Jul/1995:00:00:50 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
piweba3y.prodigy.com - - [01/Jul/1995:00:00:54 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
scheyer.clark.net - - [01/Jul/1995:00:00:58 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-mir-dock-2.mpg HTTP/1.0" 200 49152
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:00:59 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0882.jpg HTTP/1.0" 200 77163
199.72.81.55 - - [01/Jul/1995:00:00:59 -0400] "GET /history/ HTTP/1.0" 200 1382
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:02 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:04 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:04 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:04 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
dd14-012.compuserve.com - - [01/Jul/1995:00:01:05 -0400] "GET /shuttle/technology/images/srb_16-small.gif HTTP/1.0" 200 42732
205.189.154.54 - - [01/Jul/1995:00:01:06 -0400] "GET /cgi-bin/imagemap/countdown?99,176 HTTP/1.0" 302 110
205.189.154.54 - - [01/Jul/1995:00:01:08 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
www-a1.proxy.aol.com - - [01/Jul/1995:00:01:09 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
dd15-062.compuserve.com - - [01/Jul/1995:00:01:12 -0400] "GET /news/sci.space.shuttle/archive/sci-space-shuttle-22-apr-1995-40.txt HTTP/1.0" 404 -
205.212.115.106 - - [01/Jul/1995:00:01:13 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
piweba3y.prodigy.com - - [01/Jul/1995:00:01:14 -0400] "GET /shuttle/technology/images/srb_mod_compare_3-small.gif HTTP/1.0" 200 55666
remote27.compusmart.ab.ca - - [01/Jul/1995:00:01:14 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:17 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
ix-orl2-01.ix.netcom.com - - [01/Jul/1995:00:01:18 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
smyth-pc.moorecap.com - - [01/Jul/1995:00:01:19 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
205.189.154.54 - - [01/Jul/1995:00:01:19 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0423.txt HTTP/1.0" 200 1224
www-b4.proxy.aol.com - - [01/Jul/1995:00:01:21 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 70712
smyth-pc.moorecap.com - - [01/Jul/1995:00:01:24 -0400] "GET /history/apollo/apollo-spacecraft.txt HTTP/1.0" 200 2261
slip1.yab.com - - [01/Jul/1995:00:01:26 -0400] "GET /shuttle/resources/orbiters/endeavour.html HTTP/1.0" 200 6168
link097.txdirect.net - - [01/Jul/1995:00:01:26 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:27 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:27 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
remote27.compusmart.ab.ca - - [01/Jul/1995:00:01:27 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
link097.txdirect.net - - [01/Jul/1995:00:01:27 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
slip1.yab.com - - [01/Jul/1995:00:01:29 -0400] "GET /shuttle/resources/orbiters/endeavour.gif HTTP/1.0" 200 16991
link097.txdirect.net - - [01/Jul/1995:00:01:31 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
link097.txdirect.net - - [01/Jul/1995:00:01:31 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:32 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
port26.annex2.nwlink.com - - [01/Jul/1995:00:01:32 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
onyx.southwind.net - - [01/Jul/1995:00:01:34 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
onyx.southwind.net - - [01/Jul/1995:00:01:35 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
onyx.southwind.net - - [01/Jul/1995:00:01:39 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
unicomp6.unicomp.net - - [01/Jul/1995:00:01:41 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
199.72.81.55 - - [01/Jul/1995:00:01:43 -0400] "GET / HTTP/1.0" 200 7074
link097.txdirect.net - - [01/Jul/1995:00:01:44 -0400] "GET /shuttle/missions/sts-78/mission-sts-78.html HTTP/1.0" 200 4377
link097.txdirect.net - - [01/Jul/1995:00:01:45 -0400] "GET /shuttle/missions/sts-78/sts-78-patch-small.gif HTTP/1.0" 200 4179
199.72.81.55 - - [01/Jul/1995:00:01:46 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
gater4.sematech.org - - [01/Jul/1995:00:01:46 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
link097.txdirect.net - - [01/Jul/1995:00:01:47 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:01:49 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.jpg HTTP/1.0" 200 52491
gater3.sematech.org - - [01/Jul/1995:00:01:50 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
199.72.81.55 - - [01/Jul/1995:00:01:50 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
199.72.81.55 - - [01/Jul/1995:00:01:51 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
gater4.sematech.org - - [01/Jul/1995:00:01:52 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
199.72.81.55 - - [01/Jul/1995:00:01:52 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:01:52 -0400] "GET /software/winvn/userguide/wvnguide.html HTTP/1.0" 200 5998
gater3.sematech.org - - [01/Jul/1995:00:01:52 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
remote27.compusmart.ab.ca - - [01/Jul/1995:00:01:53 -0400] "GET /cgi-bin/imagemap/countdown?102,174 HTTP/1.0" 302 110
remote27.compusmart.ab.ca - - [01/Jul/1995:00:01:55 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
link097.txdirect.net - - [01/Jul/1995:00:01:55 -0400] "GET /shuttle/resources/orbiters/columbia.html HTTP/1.0" 200 6922
dave.dev1.ihub.com - - [01/Jul/1995:00:01:55 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
link097.txdirect.net - - [01/Jul/1995:00:01:56 -0400] "GET /shuttle/resources/orbiters/columbia-logo.gif HTTP/1.0" 200 11417
netport-27.iu.net - - [01/Jul/1995:00:01:57 -0400] "GET / HTTP/1.0" 200 7074
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:01:57 -0400] "GET /software/winvn/userguide/wvnguide.gif HTTP/1.0" 200 4151
dave.dev1.ihub.com - - [01/Jul/1995:00:01:58 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dave.dev1.ihub.com - - [01/Jul/1995:00:01:58 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
dave.dev1.ihub.com - - [01/Jul/1995:00:01:58 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
pm13.j51.com - - [01/Jul/1995:00:01:58 -0400] "GET /shuttle/missions/sts-71/movies/crew-arrival-t38.mpg HTTP/1.0" 200 305722
bart-slip1.llnl.gov - - [01/Jul/1995:00:01:59 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
link097.txdirect.net - - [01/Jul/1995:00:01:59 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
link097.txdirect.net - - [01/Jul/1995:00:01:59 -0400] "GET /shuttle/resources/orbiters/orbiters-logo.gif HTTP/1.0" 200 1932
netport-27.iu.net - - [01/Jul/1995:00:02:00 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 304 0
netport-27.iu.net - - [01/Jul/1995:00:02:01 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
netport-27.iu.net - - [01/Jul/1995:00:02:01 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 304 0
netport-27.iu.net - - [01/Jul/1995:00:02:01 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 304 0
smyth-pc.moorecap.com - - [01/Jul/1995:00:02:02 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
netport-27.iu.net - - [01/Jul/1995:00:02:04 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 304 0
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:04 -0400] "GET /software/winvn/userguide/winvnsm.gif HTTP/1.0" 200 3293
dd14-046.compuserve.com - - [01/Jul/1995:00:02:05 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
205.189.154.54 - - [01/Jul/1995:00:02:11 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0869.gif HTTP/1.0" 200 45798
port2.electrotex.com - - [01/Jul/1995:00:02:12 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 70712
199.33.32.50 - - [01/Jul/1995:00:02:12 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
scheyer.clark.net - - [01/Jul/1995:00:02:13 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-launch-3.mpg HTTP/1.0" 200 130724
199.33.32.50 - - [01/Jul/1995:00:02:14 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dynip42.efn.org - - [01/Jul/1995:00:02:14 -0400] "GET /software HTTP/1.0" 302 -
remote27.compusmart.ab.ca - - [01/Jul/1995:00:02:14 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0868.gif HTTP/1.0" 200 47122
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:02:15 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.gif HTTP/1.0" 200 31631
smyth-pc.moorecap.com - - [01/Jul/1995:00:02:15 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
dynip42.efn.org - - [01/Jul/1995:00:02:15 -0400] "GET /software/ HTTP/1.0" 200 689
waters-gw.starway.net.au - - [01/Jul/1995:00:02:16 -0400] "GET /shuttle/missions/51-l/51-l-info.html HTTP/1.0" 200 1387
199.33.32.50 - - [01/Jul/1995:00:02:16 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 62761
lmsmith.tezcat.com - - [01/Jul/1995:00:02:16 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
dynip42.efn.org - - [01/Jul/1995:00:02:17 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
dynip42.efn.org - - [01/Jul/1995:00:02:17 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
unicomp6.unicomp.net - - [01/Jul/1995:00:02:17 -0400] "GET /facilities/lcc.html HTTP/1.0" 200 2489
lmsmith.tezcat.com - - [01/Jul/1995:00:02:19 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
lmsmith.tezcat.com - - [01/Jul/1995:00:02:20 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
unicomp6.unicomp.net - - [01/Jul/1995:00:02:20 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
unicomp6.unicomp.net - - [01/Jul/1995:00:02:21 -0400] "GET /images/kscmap-tiny.gif HTTP/1.0" 200 2537
lmsmith.tezcat.com - - [01/Jul/1995:00:02:21 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:02:25 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.txt HTTP/1.0" 200 1391
link097.txdirect.net - - [01/Jul/1995:00:02:25 -0400] "GET /shuttle/missions/sts-65/sts-65-patch-small.gif HTTP/1.0" 200 11757
gayle-gaston.tenet.edu - - [01/Jul/1995:00:02:25 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
pme607.onramp.awinc.com - - [01/Jul/1995:00:02:25 -0400] "GET /shuttle/missions/sts-71/sts-71-day-04-highlights.html HTTP/1.0" 200 5544
dynip42.efn.org - - [01/Jul/1995:00:02:26 -0400] "GET /software/winvn/ HTTP/1.0" 200 2244
onyx.southwind.net - - [01/Jul/1995:00:02:27 -0400] "GET /cgi-bin/imagemap/countdown?103,146 HTTP/1.0" 302 96
dynip42.efn.org - - [01/Jul/1995:00:02:28 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
dynip42.efn.org - - [01/Jul/1995:00:02:28 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
smyth-pc.moorecap.com - - [01/Jul/1995:00:02:30 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
usr7-dialup46.chicago.mci.net - - [01/Jul/1995:00:02:35 -0400] "GET /shuttle/missions/ HTTP/1.0" 200 12283
smyth-pc.moorecap.com - - [01/Jul/1995:00:02:38 -0400] "GET /history/apollo/images/apollo-small.gif HTTP/1.0" 200 9630
dynip42.efn.org - - [01/Jul/1995:00:02:39 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:40 -0400] "GET /software/winvn HTTP/1.0" 302 -
gater3.sematech.org - - [01/Jul/1995:00:02:41 -0400] "GET /cgi-bin/imagemap/countdown?99,173 HTTP/1.0" 302 110
dynip42.efn.org - - [01/Jul/1995:00:02:41 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
dynip42.efn.org - - [01/Jul/1995:00:02:41 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
dynip42.efn.org - - [01/Jul/1995:00:02:42 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:42 -0400] "GET /software/winvn/ HTTP/1.0" 200 2244
gater4.sematech.org - - [01/Jul/1995:00:02:43 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:45 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:47 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:49 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:02:52 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
remote27.compusmart.ab.ca - - [01/Jul/1995:00:02:55 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0868.txt HTTP/1.0" 200 657
waters-gw.starway.net.au - - [01/Jul/1995:00:02:57 -0400] "GET /shuttle/missions/51-l/images/ HTTP/1.0" 200 1038
brandt.xensei.com - - [01/Jul/1995:00:02:57 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
sneaker.oregoncoast.com - - [01/Jul/1995:00:02:57 -0400] "GET /shuttle/countdown/ HTTP/1.0" 304 0
teleman.pr.mcs.net - - [01/Jul/1995:00:02:58 -0400] "GET /msfc/astro_home.html HTTP/1.0" 304 0
slip1.yab.com - - [01/Jul/1995:00:03:00 -0400] "GET /shuttle/missions/sts-49/mission-sts-49.html HTTP/1.0" 200 9379
onyx.southwind.net - - [01/Jul/1995:00:03:00 -0400] "GET /cgi-bin/imagemap/countdown?102,210 HTTP/1.0" 302 95
dd11-054.compuserve.com - - [01/Jul/1995:00:03:01 -0400] "GET / HTTP/1.0" 200 7074
onyx.southwind.net - - [01/Jul/1995:00:03:02 -0400] "GET /shuttle/countdown/tour.html HTTP/1.0" 200 4347
sneaker.oregoncoast.com - - [01/Jul/1995:00:03:02 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 304 0
sneaker.oregoncoast.com - - [01/Jul/1995:00:03:02 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
sneaker.oregoncoast.com - - [01/Jul/1995:00:03:03 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
onyx.southwind.net - - [01/Jul/1995:00:03:03 -0400] "GET /images/KSC-94EC-412-small.gif HTTP/1.0" 200 20484
gater3.sematech.org - - [01/Jul/1995:00:03:04 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0868.gif HTTP/1.0" 200 47122
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:03:05 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
brandt.xensei.com - - [01/Jul/1995:00:03:05 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
brandt.xensei.com - - [01/Jul/1995:00:03:08 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
piweba3y.prodigy.com - - [01/Jul/1995:00:03:09 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-tcdt-crew-walkout.mpg HTTP/1.0" 200 647168
unicomp6.unicomp.net - - [01/Jul/1995:00:03:09 -0400] "GET /images/lcc-small2.gif HTTP/1.0" 200 58026
gayle-gaston.tenet.edu - - [01/Jul/1995:00:03:11 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
129.188.154.200 - - [01/Jul/1995:00:03:12 -0400] "GET /facts/about_ksc.html HTTP/1.0" 200 3977
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:03:13 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
link097.txdirect.net - - [01/Jul/1995:00:03:13 -0400] "GET /shuttle/missions/sts-65/mission-sts-65.html HTTP/1.0" 200 130811
lmsmith.tezcat.com - - [01/Jul/1995:00:03:13 -0400] "GET /cgi-bin/imagemap/countdown?103,175 HTTP/1.0" 302 110
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:03:14 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
129.188.154.200 - - [01/Jul/1995:00:03:14 -0400] "GET /images/launchpalms-small.gif HTTP/1.0" 200 11473
lmsmith.tezcat.com - - [01/Jul/1995:00:03:14 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
brandt.xensei.com - - [01/Jul/1995:00:03:15 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
charger.execpc.com - - [01/Jul/1995:00:03:15 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
129.188.154.200 - - [01/Jul/1995:00:03:16 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
129.188.154.200 - - [01/Jul/1995:00:03:16 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
charger.execpc.com - - [01/Jul/1995:00:03:16 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
129.94.144.152 - - [01/Jul/1995:00:03:19 -0400] "GET /images/shuttle-patch-small.gif HTTP/1.0" 200 4179
charger.execpc.com - - [01/Jul/1995:00:03:19 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
charger.execpc.com - - [01/Jul/1995:00:03:19 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
www-a1.proxy.aol.com - - [01/Jul/1995:00:03:20 -0400] "GET /cgi-bin/imagemap/countdown?107,144 HTTP/1.0" 302 96
dd11-054.compuserve.com - - [01/Jul/1995:00:03:24 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:03:24 -0400] "GET /software HTTP/1.0" 302 -
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:03:25 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:03:26 -0400] "GET /software/ HTTP/1.0" 200 689
port2.electrotex.com - - [01/Jul/1995:00:03:27 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
isdn6-34.dnai.com - - [01/Jul/1995:00:03:30 -0400] "GET /shuttle/missions/sts-68/sts-68-patch-small.gif HTTP/1.0" 200 17459
midcom.com - - [01/Jul/1995:00:03:31 -0400] "GET /history/apollo/apollo-13/apollo-13.html HTTP/1.0" 200 18114
isdn6-34.dnai.com - - [01/Jul/1995:00:03:31 -0400] "GET /shuttle/missions/sts-68/mission-sts-68.html HTTP/1.0" 200 49087
midcom.com - - [01/Jul/1995:00:03:33 -0400] "GET /history/apollo/apollo-13/apollo-13-patch-small.gif HTTP/1.0" 200 12859
ix-or10-06.ix.netcom.com - - [01/Jul/1995:00:03:34 -0400] "GET /software/winvn/readme.txt HTTP/1.0" 200 5736
isdn6-34.dnai.com - - [01/Jul/1995:00:03:36 -0400] "GET /shuttle/resources/orbiters/endeavour.html HTTP/1.0" 200 6168
dd11-054.compuserve.com - - [01/Jul/1995:00:03:36 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
isdn6-34.dnai.com - - [01/Jul/1995:00:03:36 -0400] "GET /shuttle/resources/orbiters/endeavour-logo.gif HTTP/1.0" 200 5052
isdn6-34.dnai.com - - [01/Jul/1995:00:03:37 -0400] "GET /shuttle/resources/orbiters/orbiters-logo.gif HTTP/1.0" 200 1932
isdn6-34.dnai.com - - [01/Jul/1995:00:03:37 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
teleman.pr.mcs.net - - [01/Jul/1995:00:03:38 -0400] "GET /msfc/astro_home3.gif HTTP/1.0" 200 73728
isdn6-34.dnai.com - - [01/Jul/1995:00:03:39 -0400] "GET /shuttle/missions/sts-68/sts-68-patch-small.gif HTTP/1.0" 200 17459
slip1.yab.com - - [01/Jul/1995:00:03:40 -0400] "GET /images/landing-747.gif HTTP/1.0" 200 110875
isdn6-34.dnai.com - - [01/Jul/1995:00:03:40 -0400] "GET /shuttle/missions/sts-68/mission-sts-68.html HTTP/1.0" 200 49087
bos1d.delphi.com - - [01/Jul/1995:00:03:43 -0400] "GET /history/apollo/apollo-13/apollo-13.html HTTP/1.0" 200 18114
205.189.154.54 - - [01/Jul/1995:00:03:45 -0400] "GET /cgi-bin/imagemap/countdown?108,176 HTTP/1.0" 302 110
charger.execpc.com - - [01/Jul/1995:00:03:47 -0400] "GET /history/history.html HTTP/1.0" 200 1502
ix-ftw-tx1-24.ix.netcom.com - - [01/Jul/1995:00:03:48 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
midcom.com - - [01/Jul/1995:00:03:48 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
midcom.com - - [01/Jul/1995:00:03:49 -0400] "GET /history/apollo/images/footprint-logo.gif HTTP/1.0" 200 4209
isdn6-34.dnai.com - - [01/Jul/1995:00:03:51 -0400] "GET /facilities/lc39a.html HTTP/1.0" 200 7008
remote27.compusmart.ab.ca - - [01/Jul/1995:00:03:51 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0868.jpg HTTP/1.0" 200 61848
205.189.154.54 - - [01/Jul/1995:00:03:51 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
isdn6-34.dnai.com - - [01/Jul/1995:00:03:51 -0400] "GET /images/lc39a-logo.gif HTTP/1.0" 200 13116
port2.electrotex.com - - [01/Jul/1995:00:03:51 -0400] "GET /shuttle/countdown/video/livevideo.jpeg HTTP/1.0" 200 44467
isdn6-34.dnai.com - - [01/Jul/1995:00:03:52 -0400] "GET /images/kscmap-tiny.gif HTTP/1.0" 200 2537
isdn6-34.dnai.com - - [01/Jul/1995:00:03:52 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
ix-ftw-tx1-24.ix.netcom.com - - [01/Jul/1995:00:03:52 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
lmsmith.tezcat.com - - [01/Jul/1995:00:03:52 -0400] "GET /shuttle/missions/sts-71/images/index71.gif HTTP/1.0" 200 73728
charger.execpc.com - - [01/Jul/1995:00:03:53 -0400] "GET /history/apollo/images/apollo-small.gif HTTP/1.0" 200 9630
teleman.pr.mcs.net - - [01/Jul/1995:00:03:56 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 304 0
teleman.pr.mcs.net - - [01/Jul/1995:00:03:57 -0400] "GET /images/launchmedium.gif HTTP/1.0" 304 0
teleman.pr.mcs.net - - [01/Jul/1995:00:03:57 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
teleman.pr.mcs.net - - [01/Jul/1995:00:03:57 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
129.188.154.200 - - [01/Jul/1995:00:03:58 -0400] "GET / HTTP/1.0" 200 7074
www-a1.proxy.aol.com - - [01/Jul/1995:00:04:01 -0400] "GET /cgi-bin/imagemap/countdown?99,113 HTTP/1.0" 302 111
129.188.154.200 - - [01/Jul/1995:00:04:01 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
link097.txdirect.net - - [01/Jul/1995:00:04:02 -0400] "GET /images/shuttle-patch-small.gif HTTP/1.0" 200 4179
smyth-pc.moorecap.com - - [01/Jul/1995:00:04:03 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
gayle-gaston.tenet.edu - - [01/Jul/1995:00:04:04 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0915.gif HTTP/1.0" 200 29634
129.188.154.200 - - [01/Jul/1995:00:04:05 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
129.188.154.200 - - [01/Jul/1995:00:04:05 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
129.188.154.200 - - [01/Jul/1995:00:04:05 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
isdn6-34.dnai.com - - [01/Jul/1995:00:04:10 -0400] "GET /images/dual-pad.gif HTTP/1.0" 200 141308
www-a1.proxy.aol.com - - [01/Jul/1995:00:04:10 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
charger.execpc.com - - [01/Jul/1995:00:04:12 -0400] "GET /history/apollo/apollo.html HTTP/1.0" 200 3258
smyth-pc.moorecap.com - - [01/Jul/1995:00:04:13 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
205.212.115.106 - - [01/Jul/1995:00:04:13 -0400] "GET /shuttle/missions/sts-71/images/index71.gif HTTP/1.0" 200 235862
charger.execpc.com - - [01/Jul/1995:00:04:14 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
charger.execpc.com - - [01/Jul/1995:00:04:15 -0400] "GET /history/apollo/images/apollo-logo.gif HTTP/1.0" 200 3047
unicomp6.unicomp.net - - [01/Jul/1995:00:04:16 -0400] "GET /ksc.html HTTP/1.0" 200 7074
205.189.154.54 - - [01/Jul/1995:00:04:17 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0747.gif HTTP/1.0" 200 32187
dd11-054.compuserve.com - - [01/Jul/1995:00:04:17 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
news.ti.com - - [01/Jul/1995:00:04:18 -0400] "GET /ksc.html HTTP/1.0" 200 7074
ix-ftw-tx1-24.ix.netcom.com - - [01/Jul/1995:00:04:18 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
unicomp6.unicomp.net - - [01/Jul/1995:00:04:19 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
charger.execpc.com - - [01/Jul/1995:00:04:20 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
news.ti.com - - [01/Jul/1995:00:04:21 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
ix-ftw-tx1-24.ix.netcom.com - - [01/Jul/1995:00:04:22 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
teleman.pr.mcs.net - - [01/Jul/1995:00:04:23 -0400] "GET /shuttle/missions/sts-67/mission-sts-67.html HTTP/1.0" 200 21408
129.94.144.152 - - [01/Jul/1995:00:04:25 -0400] "GET /shuttle/technology/sts-newsref/stsref-toc.html HTTP/1.0" 200 84907
link097.txdirect.net - - [01/Jul/1995:00:04:26 -0400] "GET /shuttle/technology/sts-newsref/stsref-toc.html HTTP/1.0" 200 84907
unicomp6.unicomp.net - - [01/Jul/1995:00:04:26 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
unicomp6.unicomp.net - - [01/Jul/1995:00:04:26 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
onyx.southwind.net - - [01/Jul/1995:00:04:27 -0400] "GET /shuttle/technology/sts-newsref/centers.html HTTP/1.0" 200 71024
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:04:27 -0400] "GET /shuttle/missions/sts-69/mission-sts-69.html HTTP/1.0" 200 4325
unicomp6.unicomp.net - - [01/Jul/1995:00:04:27 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
129.188.154.200 - - [01/Jul/1995:00:04:27 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
netport-27.iu.net - - [01/Jul/1995:00:04:27 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
slip1.yab.com - - [01/Jul/1995:00:04:28 -0400] "GET /history/history.html HTTP/1.0" 200 1502
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:04:28 -0400] "GET /shuttle/missions/sts-69/sts-69-patch-small.gif HTTP/1.0" 200 8083
teleman.pr.mcs.net - - [01/Jul/1995:00:04:30 -0400] "GET /shuttle/missions/sts-67/sts-67-patch-small.gif HTTP/1.0" 200 17083
129.188.154.200 - - [01/Jul/1995:00:04:30 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
savvy1.savvy.com - - [01/Jul/1995:00:04:30 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
gater3.sematech.org - - [01/Jul/1995:00:04:31 -0400] "GET /cgi-bin/imagemap/countdown?370,274 HTTP/1.0" 302 68
teleman.pr.mcs.net - - [01/Jul/1995:00:04:31 -0400] "GET /images/launch-logo.gif HTTP/1.0" 304 0
slip1.yab.com - - [01/Jul/1995:00:04:32 -0400] "GET /history/rocket-history.txt HTTP/1.0" 200 26990
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:04:33 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-hatch-hand-group.mpg HTTP/1.0" 200 49152
netport-27.iu.net - - [01/Jul/1995:00:04:34 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
savvy1.savvy.com - - [01/Jul/1995:00:04:34 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
199.33.32.50 - - [01/Jul/1995:00:04:36 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-launch-3.mpg HTTP/1.0" 200 130724
129.188.154.200 - - [01/Jul/1995:00:04:37 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
pme607.onramp.awinc.com - - [01/Jul/1995:00:04:38 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
bart-slip1.llnl.gov - - [01/Jul/1995:00:04:40 -0400] "GET /shuttle/technology/sts-newsref/stsref-toc.html HTTP/1.0" 200 84907
ad03-031.compuserve.com - - [01/Jul/1995:00:04:40 -0400] "GET /facilities/vab.html HTTP/1.0" 200 4045
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:04:44 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
savvy1.savvy.com - - [01/Jul/1995:00:04:44 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
savvy1.savvy.com - - [01/Jul/1995:00:04:44 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
news.ti.com - - [01/Jul/1995:00:04:46 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:04:46 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
news.ti.com - - [01/Jul/1995:00:04:46 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:04:48 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:04:48 -0400] "GET /shuttle/missions/sts-78/mission-sts-78.html HTTP/1.0" 200 4377
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:04:50 -0400] "GET /shuttle/missions/sts-78/sts-78-patch-small.gif HTTP/1.0" 200 4179
ad03-031.compuserve.com - - [01/Jul/1995:00:04:51 -0400] "GET /images/vab-small.gif HTTP/1.0" 200 35709
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:04:51 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
199.166.39.14 - - [01/Jul/1995:00:04:52 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
news.ti.com - - [01/Jul/1995:00:04:52 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
pme607.onramp.awinc.com - - [01/Jul/1995:00:04:54 -0400] "GET /cgi-bin/imagemap/countdown?99,178 HTTP/1.0" 302 110
news.ti.com - - [01/Jul/1995:00:04:55 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
remote27.compusmart.ab.ca - - [01/Jul/1995:00:04:55 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0871.gif HTTP/1.0" 200 45518
charger.execpc.com - - [01/Jul/1995:00:04:55 -0400] "GET /history/apollo/apollo-13/apollo-13.html HTTP/1.0" 200 18114
199.166.39.14 - - [01/Jul/1995:00:04:56 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
onyx.southwind.net - - [01/Jul/1995:00:04:58 -0400] "GET /images/shuttle-patch-logo.gif HTTP/1.0" 200 891
199.166.39.14 - - [01/Jul/1995:00:04:59 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
pme607.onramp.awinc.com - - [01/Jul/1995:00:05:02 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:05:06 -0400] "GET /cgi-bin/imagemap/countdown?107,144 HTTP/1.0" 302 96
link097.txdirect.net - - [01/Jul/1995:00:05:06 -0400] "GET /shuttle HTTP/1.0" 302 -
link097.txdirect.net - - [01/Jul/1995:00:05:07 -0400] "GET /shuttle/ HTTP/1.0" 200 957
dd11-054.compuserve.com - - [01/Jul/1995:00:05:09 -0400] "GET /shuttle/missions/61-c/mission-61-c.html HTTP/1.0" 200 8368
charger.execpc.com - - [01/Jul/1995:00:05:12 -0400] "GET /history/apollo/apollo-13/apollo-13-patch-small.gif HTTP/1.0" 200 12859
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:13 -0400] "GET /shuttle/missions/sts-78/news HTTP/1.0" 302 -
link097.txdirect.net - - [01/Jul/1995:00:05:13 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:14 -0400] "GET /shuttle/missions/sts-78/news/ HTTP/1.0" 200 374
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:15 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:17 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
net-1-141.eden.com - - [01/Jul/1995:00:05:17 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.jpg HTTP/1.0" 200 52491
teleman.pr.mcs.net - - [01/Jul/1995:00:05:18 -0400] "GET /shuttle/missions/sts-78/mission-sts-78.html HTTP/1.0" 200 4377
199.166.39.14 - - [01/Jul/1995:00:05:18 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
waters-gw.starway.net.au - - [01/Jul/1995:00:05:19 -0400] "GET /shuttle/missions/51-l/images/850128.GIF HTTP/1.0" 200 172498
teleman.pr.mcs.net - - [01/Jul/1995:00:05:20 -0400] "GET /shuttle/missions/sts-78/sts-78-patch-small.gif HTTP/1.0" 304 0
199.166.39.14 - - [01/Jul/1995:00:05:21 -0400] "GET /cgi-bin/imagemap/countdown?302,275 HTTP/1.0" 302 98
slip132.indirect.com - - [01/Jul/1995:00:05:22 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:23 -0400] "GET /shuttle/missions/sts-78/ HTTP/1.0" 200 1596
link097.txdirect.net - - [01/Jul/1995:00:05:23 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:23 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:24 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
slip1.yab.com - - [01/Jul/1995:00:05:24 -0400] "GET /history/early-astronauts.txt HTTP/1.0" 200 3850
www-a1.proxy.aol.com - - [01/Jul/1995:00:05:25 -0400] "GET / HTTP/1.0" 200 7074
199.166.39.14 - - [01/Jul/1995:00:05:26 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
link097.txdirect.net - - [01/Jul/1995:00:05:29 -0400] "GET /shuttle/movies/ HTTP/1.0" 200 602
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:05:30 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
link097.txdirect.net - - [01/Jul/1995:00:05:30 -0400] "GET /icons/movie.xbm HTTP/1.0" 200 530
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:05:31 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
129.94.144.152 - - [01/Jul/1995:00:05:35 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
port2.electrotex.com - - [01/Jul/1995:00:05:37 -0400] "GET /shuttle/countdown/video/livevideo.jpeg HTTP/1.0" 200 43974
129.94.144.152 - - [01/Jul/1995:00:05:37 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:05:37 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
link097.txdirect.net - - [01/Jul/1995:00:05:38 -0400] "GET /shuttle/movies/astronauts.mpg HTTP/1.0" 200 49152
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:05:39 -0400] "GET /shuttle/missions/sts-71/sts-71-patch.jpg HTTP/1.0" 200 203429
charger.execpc.com - - [01/Jul/1995:00:05:39 -0400] "GET /history/apollo/images/footprint-logo.gif HTTP/1.0" 200 4209
205.212.115.106 - - [01/Jul/1995:00:05:42 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
alyssa.prodigy.com - - [01/Jul/1995:00:05:43 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
remote27.compusmart.ab.ca - - [01/Jul/1995:00:05:43 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0876.gif HTTP/1.0" 200 51398
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:43 -0400] "GET /shuttle/missions/sts-72/mission-sts-72.html HTTP/1.0" 200 3752
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:45 -0400] "GET /shuttle/missions/sts-72/sts-72-patch-small.gif HTTP/1.0" 200 4179
teleman.pr.mcs.net - - [01/Jul/1995:00:05:46 -0400] "GET /shuttle/missions/sts-70/mission-sts-70.html HTTP/1.0" 200 13469
teleman.pr.mcs.net - - [01/Jul/1995:00:05:48 -0400] "GET /shuttle/missions/sts-70/sts-70-patch-small.gif HTTP/1.0" 200 5026
slip1.yab.com - - [01/Jul/1995:00:05:53 -0400] "GET /history/skylab/skylab.html HTTP/1.0" 200 1687
199.166.39.14 - - [01/Jul/1995:00:05:53 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 65536
129.188.154.200 - - [01/Jul/1995:00:05:53 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
p06.eznets.canton.oh.us - - [01/Jul/1995:00:05:54 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
slip4068.sirius.com - - [01/Jul/1995:00:05:55 -0400] "GET /ksc.html HTTP/1.0" 200 7074
pm4_23.digital.net - - [01/Jul/1995:00:05:58 -0400] "GET /images/shuttle-patch-small.gif HTTP/1.0" 200 4179
p06.eznets.canton.oh.us - - [01/Jul/1995:00:05:58 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:58 -0400] "GET /shuttle/missions/sts-72/news HTTP/1.0" 302 -
mars.ark.com - - [01/Jul/1995:00:05:59 -0400] "GET /facts/faq04.html HTTP/1.0" 200 27063
p06.eznets.canton.oh.us - - [01/Jul/1995:00:05:59 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:05:59 -0400] "GET /shuttle/missions/sts-72/news/ HTTP/1.0" 200 374
news.ti.com - - [01/Jul/1995:00:06:00 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
janice.cc.wwu.edu - - [01/Jul/1995:00:06:01 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
dd11-054.compuserve.com - - [01/Jul/1995:00:06:02 -0400] "GET /history/history.html HTTP/1.0" 200 1502
news.ti.com - - [01/Jul/1995:00:06:03 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
gayle-gaston.tenet.edu - - [01/Jul/1995:00:06:03 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.jpg HTTP/1.0" 200 52491
p06.eznets.canton.oh.us - - [01/Jul/1995:00:06:05 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dd11-054.compuserve.com - - [01/Jul/1995:00:06:05 -0400] "GET /history/apollo/images/apollo-small.gif HTTP/1.0" 200 9630
dnet018.sat.texas.net - - [01/Jul/1995:00:06:06 -0400] "GET /history/apollo/apollo-13/apollo-13.html HTTP/1.0" 200 18114
teleman.pr.mcs.net - - [01/Jul/1995:00:06:06 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
teleman.pr.mcs.net - - [01/Jul/1995:00:06:08 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
mars.ark.com - - [01/Jul/1995:00:06:11 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
mars.ark.com - - [01/Jul/1995:00:06:11 -0400] "GET /images/faq.gif HTTP/1.0" 200 263
burger.letters.com - - [01/Jul/1995:00:06:12 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
burger.letters.com - - [01/Jul/1995:00:06:12 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 0
burger.letters.com - - [01/Jul/1995:00:06:13 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
net-1-141.eden.com - - [01/Jul/1995:00:06:15 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
ad12-051.compuserve.com - - [01/Jul/1995:00:06:15 -0400] "GET /history/history.html HTTP/1.0" 200 1502
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:06:17 -0400] "GET /history/apollo/apollo-11/apollo-11-info.html HTTP/1.0" 200 1457
www-a1.proxy.aol.com - - [01/Jul/1995:00:06:19 -0400] "GET /whats-new.html HTTP/1.0" 200 17314
ad12-051.compuserve.com - - [01/Jul/1995:00:06:19 -0400] "GET /history/apollo/images/apollo-small.gif HTTP/1.0" 200 9630
citynet.ci.la.ca.us - - [01/Jul/1995:00:06:20 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
gater4.sematech.org - - [01/Jul/1995:00:06:26 -0400] "GET /cgi-bin/imagemap/countdown?88,208 HTTP/1.0" 302 95
remote27.compusmart.ab.ca - - [01/Jul/1995:00:06:26 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:06:27 -0400] "GET /facilities/lc39a.html HTTP/1.0" 200 7008
gater3.sematech.org - - [01/Jul/1995:00:06:28 -0400] "GET /shuttle/countdown/tour.html HTTP/1.0" 200 4347
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:06:28 -0400] "GET /images/lc39a-logo.gif HTTP/1.0" 200 13116
ottgate2.bnr.ca - - [01/Jul/1995:00:06:28 -0400] "GET /shuttle/technology/images/srb_mod_compare_1-small.gif HTTP/1.0" 200 36902
ad12-051.compuserve.com - - [01/Jul/1995:00:06:30 -0400] "GET /ksc.html HTTP/1.0" 200 7074
ottgate2.bnr.ca - - [01/Jul/1995:00:06:30 -0400] "GET /shuttle/technology/images/srb_mod_compare_6-small.gif HTTP/1.0" 200 28219
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:06:32 -0400] "GET /images/kscmap-tiny.gif HTTP/1.0" 200 2537
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:06:33 -0400] "GET /history/apollo/apollo-11/images/ HTTP/1.0" 200 3459
ix-war-mi1-20.ix.netcom.com - - [01/Jul/1995:00:06:34 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
janice.cc.wwu.edu - - [01/Jul/1995:00:06:35 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
news.ti.com - - [01/Jul/1995:00:06:36 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
news.ti.com - - [01/Jul/1995:00:06:36 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
pme607.onramp.awinc.com - - [01/Jul/1995:00:06:36 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
ottgate2.bnr.ca - - [01/Jul/1995:00:06:36 -0400] "GET /shuttle/technology/images/srb_mod_compare_3-small.gif HTTP/1.0" 200 55666
gater3.sematech.org - - [01/Jul/1995:00:06:37 -0400] "GET /images/KSC-94EC-412-small.gif HTTP/1.0" 200 20484
teleman.pr.mcs.net - - [01/Jul/1995:00:06:39 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
www-a1.proxy.aol.com - - [01/Jul/1995:00:06:39 -0400] "GET /images/whatsnew.gif HTTP/1.0" 200 651
slip132.indirect.com - - [01/Jul/1995:00:06:41 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.gif HTTP/1.0" 200 31631
teleman.pr.mcs.net - - [01/Jul/1995:00:06:41 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
alyssa.prodigy.com - - [01/Jul/1995:00:06:42 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
charger.execpc.com - - [01/Jul/1995:00:06:43 -0400] "GET /history/mercury/mercury.html HTTP/1.0" 200 1871
svasu.extern.ucsd.edu - - [01/Jul/1995:00:06:46 -0400] "GET /history/apollo/apollo-13/movies/apo13inside.mpg HTTP/1.0" 200 501126
ppp-mia-53.shadow.net - - [01/Jul/1995:00:06:46 -0400] "GET /ksc.html HTTP/1.0" 200 7074
janice.cc.wwu.edu - - [01/Jul/1995:00:06:48 -0400] "GET /shuttle/countdown/video/livevideo.jpeg HTTP/1.0" 200 48725
ppp-mia-53.shadow.net - - [01/Jul/1995:00:06:48 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
charger.execpc.com - - [01/Jul/1995:00:06:49 -0400] "GET /images/mercury-logo.gif HTTP/1.0" 200 6588
brandt.xensei.com - - [01/Jul/1995:00:06:54 -0400] "GET /shuttle/missions/sts-71/sts-71-day-04-highlights.html HTTP/1.0" 200 5544
alyssa.prodigy.com - - [01/Jul/1995:00:06:55 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
ppp-mia-53.shadow.net - - [01/Jul/1995:00:06:59 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
ppp-mia-53.shadow.net - - [01/Jul/1995:00:07:00 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ppp-mia-53.shadow.net - - [01/Jul/1995:00:07:01 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
p06.eznets.canton.oh.us - - [01/Jul/1995:00:07:02 -0400] "GET /cgi-bin/imagemap/countdown?98,110 HTTP/1.0" 302 111
slip1.yab.com - - [01/Jul/1995:00:07:03 -0400] "GET /history/skylab/skylab.jpg HTTP/1.0" 200 162605
p06.eznets.canton.oh.us - - [01/Jul/1995:00:07:04 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
ppp-mia-53.shadow.net - - [01/Jul/1995:00:07:04 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
p06.eznets.canton.oh.us - - [01/Jul/1995:00:07:08 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
gater3.sematech.org - - [01/Jul/1995:00:07:13 -0400] "GET /ksc.html HTTP/1.0" 200 7074
pm4_23.digital.net - - [01/Jul/1995:00:07:13 -0400] "GET /shuttle/technology/sts-newsref/sts_egress.html HTTP/1.0" 200 86381
dd11-054.compuserve.com - - [01/Jul/1995:00:07:14 -0400] "GET /shuttle/missions/sts-67/mission-sts-67.html HTTP/1.0" 200 21408
remote27.compusmart.ab.ca - - [01/Jul/1995:00:07:15 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.gif HTTP/1.0" 200 31631
gater3.sematech.org - - [01/Jul/1995:00:07:16 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
waters-gw.starway.net.au - - [01/Jul/1995:00:07:19 -0400] "GET /shuttle/missions/51-l/images/86HC119.GIF HTTP/1.0" 200 127775
205.212.115.106 - - [01/Jul/1995:00:07:20 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.jpg HTTP/1.0" 200 52491
ppp236.iadfw.net - - [01/Jul/1995:00:07:20 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ad12-051.compuserve.com - - [01/Jul/1995:00:07:20 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
charger.execpc.com - - [01/Jul/1995:00:07:21 -0400] "GET /history/mercury/mr-3/mr-3.html HTTP/1.0" 200 1124
ppp236.iadfw.net - - [01/Jul/1995:00:07:21 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
p06.eznets.canton.oh.us - - [01/Jul/1995:00:07:21 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
charger.execpc.com - - [01/Jul/1995:00:07:22 -0400] "GET /history/mercury/mr-3/mr-3-patch-small.gif HTTP/1.0" 200 19084
asp.erinet.com - - [01/Jul/1995:00:07:23 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ppp236.iadfw.net - - [01/Jul/1995:00:07:26 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
ppp236.iadfw.net - - [01/Jul/1995:00:07:26 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
asp.erinet.com - - [01/Jul/1995:00:07:26 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
asp.erinet.com - - [01/Jul/1995:00:07:27 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
ppp236.iadfw.net - - [01/Jul/1995:00:07:27 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
charger.execpc.com - - [01/Jul/1995:00:07:29 -0400] "GET /history/apollo/images/APOLLO-logosmall.gif HTTP/1.0" 200 1173
asp.erinet.com - - [01/Jul/1995:00:07:29 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
ppp236.iadfw.net - - [01/Jul/1995:00:07:29 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
asp.erinet.com - - [01/Jul/1995:00:07:30 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
asp.erinet.com - - [01/Jul/1995:00:07:30 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
asp.erinet.com - - [01/Jul/1995:00:07:31 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:31 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
www-proxy.crl.research.digital.com - - [01/Jul/1995:00:07:33 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:34 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:34 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:34 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
asp.erinet.com - - [01/Jul/1995:00:07:34 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
news.ti.com - - [01/Jul/1995:00:07:34 -0400] "GET /shuttle/missions/sts-71/sts-71-day-04-highlights.html HTTP/1.0" 200 5544
teleman.pr.mcs.net - - [01/Jul/1995:00:07:35 -0400] "GET /cgi-bin/imagemap/countdown?102,172 HTTP/1.0" 302 110
www-proxy.crl.research.digital.com - - [01/Jul/1995:00:07:35 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
teleman.pr.mcs.net - - [01/Jul/1995:00:07:36 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ppp236.iadfw.net - - [01/Jul/1995:00:07:36 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
ppp4.sunrem.com - - [01/Jul/1995:00:07:37 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
199.166.39.14 - - [01/Jul/1995:00:07:37 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-tcdt-crew-walkout.mpg HTTP/1.0" 200 131072
ppp236.iadfw.net - - [01/Jul/1995:00:07:37 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
slip132.indirect.com - - [01/Jul/1995:00:07:37 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
ppp236.iadfw.net - - [01/Jul/1995:00:07:37 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ppp4.sunrem.com - - [01/Jul/1995:00:07:39 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
pm13.j51.com - - [01/Jul/1995:00:07:40 -0400] "GET /shuttle/missions/sts-71/movies/crew-arrival-t38.mpg HTTP/1.0" 200 65536
ppp4.sunrem.com - - [01/Jul/1995:00:07:41 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:42 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
ppp4.sunrem.com - - [01/Jul/1995:00:07:43 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
pm4_23.digital.net - - [01/Jul/1995:00:07:43 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
pm4_23.digital.net - - [01/Jul/1995:00:07:43 -0400] "GET /images/shuttle-patch-logo.gif HTTP/1.0" 200 891
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:43 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
charger.execpc.com - - [01/Jul/1995:00:07:44 -0400] "GET /history/mercury/ma-6/ma-6.html HTTP/1.0" 200 1117
citynet.ci.la.ca.us - - [01/Jul/1995:00:07:45 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
charger.execpc.com - - [01/Jul/1995:00:07:46 -0400] "GET /history/mercury/ma-6/ma-6-patch-small.gif HTTP/1.0" 200 21277
dnet018.sat.texas.net - - [01/Jul/1995:00:07:47 -0400] "GET /ksc.html HTTP/1.0" 200 7074
dnet018.sat.texas.net - - [01/Jul/1995:00:07:50 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
ppp-mia-53.shadow.net - - [01/Jul/1995:00:07:50 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
asp.erinet.com - - [01/Jul/1995:00:07:52 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:07:52 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ppp-mia-53.shadow.net - - [01/Jul/1995:00:07:53 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
dnet018.sat.texas.net - - [01/Jul/1995:00:07:56 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
slip1.yab.com - - [01/Jul/1995:00:07:57 -0400] "GET /history/skylab/skylab-2.html HTTP/1.0" 200 1708
dnet018.sat.texas.net - - [01/Jul/1995:00:07:59 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
dnet018.sat.texas.net - - [01/Jul/1995:00:08:00 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
166.79.67.111 - - [01/Jul/1995:00:08:02 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
ppp-mia-53.shadow.net - - [01/Jul/1995:00:08:03 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
ppp-mia-53.shadow.net - - [01/Jul/1995:00:08:03 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
dnet018.sat.texas.net - - [01/Jul/1995:00:08:05 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
www-proxy.crl.research.digital.com - - [01/Jul/1995:00:08:05 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
brandt.xensei.com - - [01/Jul/1995:00:08:06 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:08:07 -0400] "GET /history/apollo/apollo-11/images/index.gif HTTP/1.0" 200 172537
www-proxy.crl.research.digital.com - - [01/Jul/1995:00:08:09 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 75100
slip1.kias.com - - [01/Jul/1995:00:08:10 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
ix-li3-23.ix.netcom.com - - [01/Jul/1995:00:08:11 -0400] "GET /shuttle/missions/sts-71/movies/crew-arrival-t38.mpg HTTP/1.0" 200 305722
ppp-mia-53.shadow.net - - [01/Jul/1995:00:08:12 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
brandt.xensei.com - - [01/Jul/1995:00:08:13 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
net-1-141.eden.com - - [01/Jul/1995:00:08:13 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0613.jpg HTTP/1.0" 200 61716
166.79.67.111 - - [01/Jul/1995:00:08:21 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
remote27.compusmart.ab.ca - - [01/Jul/1995:00:08:22 -0400] "GET /cgi-bin/imagemap/countdown?382,274 HTTP/1.0" 302 68
ttyu0.tyrell.net - - [01/Jul/1995:00:08:22 -0400] "GET / HTTP/1.0" 200 7074
ttyu0.tyrell.net - - [01/Jul/1995:00:08:25 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
166.79.67.111 - - [01/Jul/1995:00:08:26 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
slip1.kias.com - - [01/Jul/1995:00:08:26 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
slip1.kias.com - - [01/Jul/1995:00:08:27 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ttyu0.tyrell.net - - [01/Jul/1995:00:08:27 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ttyu0.tyrell.net - - [01/Jul/1995:00:08:27 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
199.120.91.6 - - [01/Jul/1995:00:08:28 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
129.94.144.152 - - [01/Jul/1995:00:08:29 -0400] "GET /shuttle/technology/sts-newsref/sts-cron.html HTTP/1.0" 200 200053
ppp-mia-53.shadow.net - - [01/Jul/1995:00:08:30 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ttyu0.tyrell.net - - [01/Jul/1995:00:08:31 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ttyu0.tyrell.net - - [01/Jul/1995:00:08:31 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
slip132.indirect.com - - [01/Jul/1995:00:08:31 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.txt HTTP/1.0" 200 1391
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:08:32 -0400] "GET /cgi-bin/imagemap/countdown?94,175 HTTP/1.0" 302 110
199.120.91.6 - - [01/Jul/1995:00:08:32 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
199.120.91.6 - - [01/Jul/1995:00:08:32 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:08:33 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
slip1.yab.com - - [01/Jul/1995:00:08:38 -0400] "GET /history/skylab/skylab-3.html HTTP/1.0" 200 1424
dnet018.sat.texas.net - - [01/Jul/1995:00:08:41 -0400] "GET /whats-new.html HTTP/1.0" 200 17314
199.120.91.6 - - [01/Jul/1995:00:08:43 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
dnet018.sat.texas.net - - [01/Jul/1995:00:08:43 -0400] "GET /images/whatsnew.gif HTTP/1.0" 200 651
ppp4.sunrem.com - - [01/Jul/1995:00:08:45 -0400] "GET /cgi-bin/imagemap/countdown?105,143 HTTP/1.0" 302 96
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:08:49 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
slip1.kias.com - - [01/Jul/1995:00:08:49 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
brandt.xensei.com - - [01/Jul/1995:00:08:50 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 75344
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:08:52 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:08:52 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:08:52 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
dnet018.sat.texas.net - - [01/Jul/1995:00:08:54 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
www-a1.proxy.aol.com - - [01/Jul/1995:00:08:56 -0400] "GET /cgi-bin/imagemap/countdown?99,213 HTTP/1.0" 302 95
www-a1.proxy.aol.com - - [01/Jul/1995:00:08:59 -0400] "GET /shuttle/countdown/tour.html HTTP/1.0" 200 4347
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:09:00 -0400] "GET /ksc.html HTTP/1.0" 200 7074
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:09:00 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0869.jpg HTTP/1.0" 200 56275
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:09:00 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:09:01 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
slip1.yab.com - - [01/Jul/1995:00:09:02 -0400] "GET /history/skylab/skylab-4.html HTTP/1.0" 200 1393
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:09:02 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:09:03 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
129.94.144.152 - - [01/Jul/1995:00:09:05 -0400] "GET /images/shuttle-patch-logo.gif HTTP/1.0" 200 891
129.94.144.152 - - [01/Jul/1995:00:09:06 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
teleman.pr.mcs.net - - [01/Jul/1995:00:09:07 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0423.jpg HTTP/1.0" 200 84494
piweba3y.prodigy.com - - [01/Jul/1995:00:09:07 -0400] "GET /shuttle/technology/images/srb_mod_compare_6-small.gif HTTP/1.0" 200 28219
waters-gw.starway.net.au - - [01/Jul/1995:00:09:16 -0400] "GET /shuttle/missions/51-l/images/86HC125.GIF HTTP/1.0" 200 100705
www-a1.proxy.aol.com - - [01/Jul/1995:00:09:16 -0400] "GET /images/KSC-94EC-412-small.gif HTTP/1.0" 200 20484
166.79.67.111 - - [01/Jul/1995:00:09:17 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
wwwproxy.info.au - - [01/Jul/1995:00:09:18 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ppp-mia-53.shadow.net - - [01/Jul/1995:00:09:18 -0400] "GET /cgi-bin/imagemap/countdown?99,150 HTTP/1.0" 302 96
news.ti.com - - [01/Jul/1995:00:09:19 -0400] "GET /shuttle/missions/sts-71/sts-71-day-03-highlights.html HTTP/1.0" 200 6104
wwwproxy.info.au - - [01/Jul/1995:00:09:21 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
wwwproxy.info.au - - [01/Jul/1995:00:09:21 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
citynet.ci.la.ca.us - - [01/Jul/1995:00:09:23 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
199.120.91.6 - - [01/Jul/1995:00:09:25 -0400] "GET /cgi-bin/imagemap/countdown?373,278 HTTP/1.0" 302 68
wwwproxy.info.au - - [01/Jul/1995:00:09:25 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
wwwproxy.info.au - - [01/Jul/1995:00:09:28 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
pm110.spectra.net - - [01/Jul/1995:00:09:30 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
wwwproxy.info.au - - [01/Jul/1995:00:09:30 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
pm110.spectra.net - - [01/Jul/1995:00:09:33 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
brandt.xensei.com - - [01/Jul/1995:00:09:34 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
wwwproxy.info.au - - [01/Jul/1995:00:09:35 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 304 0
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:09:36 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
129.94.144.152 - - [01/Jul/1995:00:09:37 -0400] "GET /shuttle/missions/51-l/mission-51-l.html HTTP/1.0" 200 6723
pm110.spectra.net - - [01/Jul/1995:00:09:37 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
wwwproxy.info.au - - [01/Jul/1995:00:09:39 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 304 0
wwwproxy.info.au - - [01/Jul/1995:00:09:39 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 304 0
pm110.spectra.net - - [01/Jul/1995:00:09:40 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
dnet018.sat.texas.net - - [01/Jul/1995:00:09:44 -0400] "GET /shuttle/missions/sts-63/sts-63-patch-small.gif HTTP/1.0" 200 16102
brandt.xensei.com - - [01/Jul/1995:00:09:46 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
net-1-141.eden.com - - [01/Jul/1995:00:09:47 -0400] "GET /cgi-bin/imagemap/countdown?376,273 HTTP/1.0" 302 68
teleman.pr.mcs.net - - [01/Jul/1995:00:09:48 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0613.jpg HTTP/1.0" 200 61716
129.94.144.152 - - [01/Jul/1995:00:09:50 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
129.94.144.152 - - [01/Jul/1995:00:09:52 -0400] "GET /shuttle/missions/51-l/51-l-patch-small.gif HTTP/1.0" 200 10495
p06.eznets.canton.oh.us - - [01/Jul/1995:00:09:53 -0400] "GET /cgi-bin/imagemap/countdown?94,145 HTTP/1.0" 302 96
pm110.spectra.net - - [01/Jul/1995:00:09:54 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
slip1.kias.com - - [01/Jul/1995:00:09:55 -0400] "GET /htbin/wais.pl HTTP/1.0" 200 308
pm110.spectra.net - - [01/Jul/1995:00:09:56 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dnet018.sat.texas.net - - [01/Jul/1995:00:09:57 -0400] "GET /shuttle/missions/sts-63/mission-sts-63.html HTTP/1.0" 200 53003
pm110.spectra.net - - [01/Jul/1995:00:09:57 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:10:01 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
205.212.115.106 - - [01/Jul/1995:00:10:01 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0876.gif HTTP/1.0" 200 51398
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:10:02 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
129.188.154.200 - - [01/Jul/1995:00:10:04 -0400] "GET /shuttle/missions/sts-71/movies/ HTTP/1.0" 200 3090
129.188.154.200 - - [01/Jul/1995:00:10:07 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
129.188.154.200 - - [01/Jul/1995:00:10:07 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
129.188.154.200 - - [01/Jul/1995:00:10:07 -0400] "GET /icons/movie.xbm HTTP/1.0" 200 530
129.188.154.200 - - [01/Jul/1995:00:10:07 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
citynet.ci.la.ca.us - - [01/Jul/1995:00:10:08 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
brandt.xensei.com - - [01/Jul/1995:00:10:08 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 74691
slip1.kias.com - - [01/Jul/1995:00:10:12 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
slip1.kias.com - - [01/Jul/1995:00:10:15 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
www-a1.proxy.aol.com - - [01/Jul/1995:00:10:16 -0400] "GET /shuttle/countdown/lps/fr.html HTTP/1.0" 200 1879
netport-27.iu.net - - [01/Jul/1995:00:10:19 -0400] "GET /pub/winvn/readme.txt HTTP/1.0" 404 -
corp-uu.infoseek.com - - [01/Jul/1995:00:10:22 -0400] "GET /ksc.html HTTP/1.0" 200 7074
129.188.154.200 - - [01/Jul/1995:00:10:23 -0400] "GET /shuttle/missions/sts-71/ HTTP/1.0" 200 3373
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:10:23 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:10:24 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0916.jpg HTTP/1.0" 200 34029
netport-27.iu.net - - [01/Jul/1995:00:10:28 -0400] "GET /pub/winvn/readme.txt HTTP/1.0" 404 -
slip1.kias.com - - [01/Jul/1995:00:10:28 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
205.157.131.144 - - [01/Jul/1995:00:10:28 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
129.188.154.200 - - [01/Jul/1995:00:10:29 -0400] "GET /shuttle/missions/sts-71/images/ HTTP/1.0" 200 16890
www-a1.proxy.aol.com - - [01/Jul/1995:00:10:29 -0400] "GET /shuttle/countdown/lps/back.gif HTTP/1.0" 200 1289
129.188.154.200 - - [01/Jul/1995:00:10:29 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
waters-gw.starway.net.au - - [01/Jul/1995:00:10:31 -0400] "GET /shuttle/missions/51-l/images/86HC159.GIF HTTP/1.0" 200 78295
www-d3.proxy.aol.com - - [01/Jul/1995:00:10:32 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ppp4.sunrem.com - - [01/Jul/1995:00:10:33 -0400] "GET /cgi-bin/imagemap/countdown?93,176 HTTP/1.0" 302 110
ppp4.sunrem.com - - [01/Jul/1995:00:10:34 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
205.157.131.144 - - [01/Jul/1995:00:10:34 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
205.157.131.144 - - [01/Jul/1995:00:10:34 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
205.157.131.144 - - [01/Jul/1995:00:10:36 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
dnet018.sat.texas.net - - [01/Jul/1995:00:10:37 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
ppp-mia-53.shadow.net - - [01/Jul/1995:00:10:38 -0400] "GET /cgi-bin/imagemap/countdown?103,180 HTTP/1.0" 302 110
129.94.144.152 - - [01/Jul/1995:00:10:39 -0400] "GET /shuttle/missions/51-l/51-l-info.html HTTP/1.0" 200 1387
ppp-mia-53.shadow.net - - [01/Jul/1995:00:10:40 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
brandt.xensei.com - - [01/Jul/1995:00:10:41 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
p06.eznets.canton.oh.us - - [01/Jul/1995:00:10:43 -0400] "GET /cgi-bin/imagemap/countdown?382,271 HTTP/1.0" 302 68
brandt.xensei.com - - [01/Jul/1995:00:10:43 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:10:43 -0400] "GET / HTTP/1.0" 200 7074
taiki4.envi.osakafu-u.ac.jp - - [01/Jul/1995:00:10:45 -0400] "GET /ksc.html HTTP/1.0" 200 7074
taiki4.envi.osakafu-u.ac.jp - - [01/Jul/1995:00:10:48 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:10:49 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
dynip38.efn.org - - [01/Jul/1995:00:10:50 -0400] "GET /software HTTP/1.0" 302 -
dynip38.efn.org - - [01/Jul/1995:00:10:51 -0400] "GET /software/ HTTP/1.0" 200 689
129.188.154.200 - - [01/Jul/1995:00:10:52 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
teleman.pr.mcs.net - - [01/Jul/1995:00:10:53 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0871.jpg HTTP/1.0" 200 60280
dynip38.efn.org - - [01/Jul/1995:00:10:53 -0400] "GET /icons/blank.xbm HTTP/1.0" 304 0
dynip38.efn.org - - [01/Jul/1995:00:10:53 -0400] "GET /icons/menu.xbm HTTP/1.0" 304 0
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:10:55 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:10:57 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 75142
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:10:59 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:11:00 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:11:02 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
dynip38.efn.org - - [01/Jul/1995:00:11:02 -0400] "GET /software/winvn/ HTTP/1.0" 200 2244
taiki4.envi.osakafu-u.ac.jp - - [01/Jul/1995:00:11:03 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dynip38.efn.org - - [01/Jul/1995:00:11:04 -0400] "GET /icons/text.xbm HTTP/1.0" 304 0
133.127.203.203 - - [01/Jul/1995:00:11:08 -0400] "GET /shuttle/missions/sts-71/movies/crew-arrival-t38.mpg HTTP/1.0" 200 305722
dynip38.efn.org - - [01/Jul/1995:00:11:09 -0400] "GET /icons/image.xbm HTTP/1.0" 304 0
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:11:12 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0911.jpg HTTP/1.0" 200 45966
brandt.xensei.com - - [01/Jul/1995:00:11:12 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 75142
dnet018.sat.texas.net - - [01/Jul/1995:00:11:13 -0400] "GET /history/apollo/apollo-13/apollo-13-info.html HTTP/1.0" 200 1583
ppp-mia-53.shadow.net - - [01/Jul/1995:00:11:13 -0400] "GET /shuttle/missions/sts-71/images/index71.gif HTTP/1.0" 200 49152
129.188.154.200 - - [01/Jul/1995:00:11:14 -0400] "GET /shuttle/missions HTTP/1.0" 302 -
ottgate2.bnr.ca - - [01/Jul/1995:00:11:14 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
129.188.154.200 - - [01/Jul/1995:00:11:15 -0400] "GET /shuttle/missions/ HTTP/1.0" 200 12283
www-d3.proxy.aol.com - - [01/Jul/1995:00:11:16 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
dd11-054.compuserve.com - - [01/Jul/1995:00:11:17 -0400] "GET /shuttle/missions/sts-67/sts-67-patch-small.gif HTTP/1.0" 200 17083
slip1.kias.com - - [01/Jul/1995:00:11:19 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
news.ti.com - - [01/Jul/1995:00:11:19 -0400] "GET /shuttle/missions/100th.html HTTP/1.0" 200 32303
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:21 -0400] "GET / HTTP/1.0" 200 7074
204.19.123.36 - - [01/Jul/1995:00:11:23 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ad11-010.compuserve.com - - [01/Jul/1995:00:11:24 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
www-a1.proxy.aol.com - - [01/Jul/1995:00:11:24 -0400] "GET /facilities/tour.html HTTP/1.0" 200 3723
slip1.kias.com - - [01/Jul/1995:00:11:24 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
teleman.pr.mcs.net - - [01/Jul/1995:00:11:26 -0400] "GET /cgi-bin/imagemap/countdown?107,147 HTTP/1.0" 302 96
205.212.115.106 - - [01/Jul/1995:00:11:27 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0911.gif HTTP/1.0" 200 31242
156.151.176.30 - - [01/Jul/1995:00:11:27 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
pm28.sonic.net - - [01/Jul/1995:00:11:27 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
205.157.131.144 - - [01/Jul/1995:00:11:27 -0400] "GET /cgi-bin/imagemap/countdown?92,174 HTTP/1.0" 302 110
205.157.131.144 - - [01/Jul/1995:00:11:28 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:29 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
dnet018.sat.texas.net - - [01/Jul/1995:00:11:29 -0400] "GET /history/apollo/apollo-13/movies/ HTTP/1.0" 200 945
dnet018.sat.texas.net - - [01/Jul/1995:00:11:30 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
pm28.sonic.net - - [01/Jul/1995:00:11:31 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:11:32 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
piweba1y.prodigy.com - - [01/Jul/1995:00:11:33 -0400] "GET / HTTP/1.0" 200 7074
pm28.sonic.net - - [01/Jul/1995:00:11:34 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dnet018.sat.texas.net - - [01/Jul/1995:00:11:35 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
citynet.ci.la.ca.us - - [01/Jul/1995:00:11:35 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0443.gif HTTP/1.0" 200 64910
dnet018.sat.texas.net - - [01/Jul/1995:00:11:35 -0400] "GET /icons/movie.xbm HTTP/1.0" 200 530
129.188.154.200 - - [01/Jul/1995:00:11:35 -0400] "GET /shuttle HTTP/1.0" 302 -
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:11:36 -0400] "GET /history/apollo/apollo-11/images/690700.GIF HTTP/1.0" 200 125771
dynip38.efn.org - - [01/Jul/1995:00:11:36 -0400] "GET /software/winvn/release.txt HTTP/1.0" 200 23052
pm28.sonic.net - - [01/Jul/1995:00:11:36 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:11:36 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
ppp4.sunrem.com - - [01/Jul/1995:00:11:37 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0443.gif HTTP/1.0" 200 64910
129.188.154.200 - - [01/Jul/1995:00:11:37 -0400] "GET /shuttle/ HTTP/1.0" 200 957
204.120.76.119 - - [01/Jul/1995:00:11:38 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
129.188.154.200 - - [01/Jul/1995:00:11:38 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-launch.mpg HTTP/1.0" 200 106496
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:40 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
www-d3.proxy.aol.com - - [01/Jul/1995:00:11:41 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0915.gif HTTP/1.0" 200 29634
ottgate2.bnr.ca - - [01/Jul/1995:00:11:42 -0400] "GET /shuttle/countdown/count.html HTTP/1.0" 200 73231
ix-dfw13-20.ix.netcom.com - - [01/Jul/1995:00:11:44 -0400] "GET /cgi-bin/imagemap/countdown?95,142 HTTP/1.0" 302 96
leet.cts.com - - [01/Jul/1995:00:11:45 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:11:46 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0906.jpg HTTP/1.0" 200 58414
pm110.spectra.net - - [01/Jul/1995:00:11:46 -0400] "GET /cgi-bin/imagemap/countdown?100,114 HTTP/1.0" 302 111
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:47 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
129.188.154.200 - - [01/Jul/1995:00:11:48 -0400] "GET /shuttle/movies/ HTTP/1.0" 200 602
200.13.2.37 - - [01/Jul/1995:00:11:48 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
dynip38.efn.org - - [01/Jul/1995:00:11:49 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:11:49 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:49 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
dynip38.efn.org - - [01/Jul/1995:00:11:51 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
dynip38.efn.org - - [01/Jul/1995:00:11:51 -0400] "GET /images/construct.gif HTTP/1.0" 304 0
dynip38.efn.org - - [01/Jul/1995:00:11:54 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
200.13.2.37 - - [01/Jul/1995:00:11:55 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
teleman.pr.mcs.net - - [01/Jul/1995:00:11:55 -0400] "GET /cgi-bin/imagemap/countdown?106,212 HTTP/1.0" 302 95
ppp3_136.bekkoame.or.jp - - [01/Jul/1995:00:11:55 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
teleman.pr.mcs.net - - [01/Jul/1995:00:11:56 -0400] "GET /shuttle/countdown/tour.html HTTP/1.0" 200 4347
ppp046.st.rim.or.jp - - [01/Jul/1995:00:11:57 -0400] "GET /ksc.html HTTP/1.0" 200 7074
ppp111.cs.mci.com - - [01/Jul/1995:00:11:58 -0400] "GET /shuttle/missions/sts-74/mission-sts-74.html HTTP/1.0" 200 3707
teleman.pr.mcs.net - - [01/Jul/1995:00:11:58 -0400] "GET /images/KSC-94EC-412-small.gif HTTP/1.0" 200 20484
ppp111.cs.mci.com - - [01/Jul/1995:00:12:02 -0400] "GET /shuttle/missions/sts-74/sts-74-patch-small.gif HTTP/1.0" 200 4179
dynip38.efn.org - - [01/Jul/1995:00:12:02 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
204.19.123.36 - - [01/Jul/1995:00:12:03 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
ppp046.st.rim.or.jp - - [01/Jul/1995:00:12:06 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
dynip38.efn.org - - [01/Jul/1995:00:12:07 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
leet.cts.com - - [01/Jul/1995:00:12:08 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:12:09 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
205.157.131.144 - - [01/Jul/1995:00:12:10 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0915.gif HTTP/1.0" 200 29634
slip1.kias.com - - [01/Jul/1995:00:12:11 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
www-b2.proxy.aol.com - - [01/Jul/1995:00:12:11 -0400] "GET / HTTP/1.0" 200 7074
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:12:12 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
piweba1y.prodigy.com - - [01/Jul/1995:00:12:13 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
www-d3.proxy.aol.com - - [01/Jul/1995:00:12:14 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0916.gif HTTP/1.0" 200 25814
dynip38.efn.org - - [01/Jul/1995:00:12:16 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
dnet018.sat.texas.net - - [01/Jul/1995:00:12:17 -0400] "GET /history/apollo/apollo-13/movies/apo13damage.mpg HTTP/1.0" 200 73728
ppp046.st.rim.or.jp - - [01/Jul/1995:00:12:18 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
dynip38.efn.org - - [01/Jul/1995:00:12:19 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
dynip38.efn.org - - [01/Jul/1995:00:12:20 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
teleman.pr.mcs.net - - [01/Jul/1995:00:12:20 -0400] "GET /cgi-bin/imagemap/countdown?321,276 HTTP/1.0" 302 98
www-a1.proxy.aol.com - - [01/Jul/1995:00:12:20 -0400] "GET /facilities/mlp.html HTTP/1.0" 200 2653
www-b2.proxy.aol.com - - [01/Jul/1995:00:12:20 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
www-b2.proxy.aol.com - - [01/Jul/1995:00:12:20 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
200.13.2.37 - - [01/Jul/1995:00:12:23 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
200.13.2.37 - - [01/Jul/1995:00:12:23 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
ppp-mia-53.shadow.net - - [01/Jul/1995:00:12:24 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0423.jpg HTTP/1.0" 200 84494
ppp046.st.rim.or.jp - - [01/Jul/1995:00:12:24 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
teleman.pr.mcs.net - - [01/Jul/1995:00:12:26 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
ppp046.st.rim.or.jp - - [01/Jul/1995:00:12:26 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
dnet018.sat.texas.net - - [01/Jul/1995:00:12:28 -0400] "GET /history/apollo/apollo-13/movies/apo13damage.mpg HTTP/1.0" 200 57344
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:12:28 -0400] "GET /ksc.html HTTP/1.0" 304 0
www-b2.proxy.aol.com - - [01/Jul/1995:00:12:30 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ppp046.st.rim.or.jp - - [01/Jul/1995:00:12:30 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
dnet018.sat.texas.net - - [01/Jul/1995:00:12:31 -0400] "GET /history/apollo/apollo-13/ HTTP/1.0" 200 1732
piweba1y.prodigy.com - - [01/Jul/1995:00:12:31 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
dnet018.sat.texas.net - - [01/Jul/1995:00:12:33 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
dnet018.sat.texas.net - - [01/Jul/1995:00:12:33 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
www-d3.proxy.aol.com - - [01/Jul/1995:00:12:34 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.gif HTTP/1.0" 200 31631
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:12:36 -0400] "GET /history/history.html HTTP/1.0" 304 0
205.157.131.144 - - [01/Jul/1995:00:12:37 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0915.jpg HTTP/1.0" 200 39654
ppp4.sunrem.com - - [01/Jul/1995:00:12:38 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.jpg HTTP/1.0" 200 52491
www-a1.proxy.aol.com - - [01/Jul/1995:00:12:40 -0400] "GET /images/mlp-logo.gif HTTP/1.0" 200 28426
pm28.sonic.net - - [01/Jul/1995:00:12:40 -0400] "GET /cgi-bin/imagemap/countdown?103,142 HTTP/1.0" 302 96
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:12:40 -0400] "GET /history/apollo/apollo.html HTTP/1.0" 304 0
piweba1y.prodigy.com - - [01/Jul/1995:00:12:42 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
burger.letters.com - - [01/Jul/1995:00:12:42 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
burger.letters.com - - [01/Jul/1995:00:12:44 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
ppp4.sunrem.com - - [01/Jul/1995:00:12:45 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
dd11-054.compuserve.com - - [01/Jul/1995:00:12:49 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
129.188.154.200 - - [01/Jul/1995:00:12:51 -0400] "GET /shuttle HTTP/1.0" 302 -
166.79.67.111 - - [01/Jul/1995:00:12:53 -0400] "GET /shuttle/countdown/ HTTP/1.0" 304 0
dd11-054.compuserve.com - - [01/Jul/1995:00:12:53 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
teleman.pr.mcs.net - - [01/Jul/1995:00:12:54 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 73132
129.188.154.200 - - [01/Jul/1995:00:12:55 -0400] "GET /shuttle/ HTTP/1.0" 200 957
waters-gw.starway.net.au - - [01/Jul/1995:00:12:55 -0400] "GET /shuttle/missions/51-l/images/86HC68.GIF HTTP/1.0" 200 116798
dnet018.sat.texas.net - - [01/Jul/1995:00:12:57 -0400] "GET /history/apollo/apollo-13/videos/ HTTP/1.0" 200 381
burger.letters.com - - [01/Jul/1995:00:12:57 -0400] "GET /shuttle/countdown/video/livevideo.gif HTTP/1.0" 200 73132
www-d3.proxy.aol.com - - [01/Jul/1995:00:13:02 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
dnet018.sat.texas.net - - [01/Jul/1995:00:13:04 -0400] "GET /history/apollo/apollo-13/ HTTP/1.0" 200 1732
205.188.0.173 - - [01/Jul/1995:00:13:05 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:05 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
pipe6.nyc.pipeline.com - - [01/Jul/1995:00:13:06 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-hatch-hand-group.mpg HTTP/1.0" 200 1081049
129.188.154.200 - - [01/Jul/1995:00:13:06 -0400] "GET / HTTP/1.0" 200 7074
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:07 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:13:07 -0400] "GET /history/apollo/apollo-12/apollo-12.html HTTP/1.0" 304 0
166.79.67.111 - - [01/Jul/1995:00:13:09 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
dd11-054.compuserve.com - - [01/Jul/1995:00:13:11 -0400] "GET /shuttle/technology/sts-newsref/sts-lcc.html HTTP/1.0" 200 32252
uconnvm.uconn.edu - - [01/Jul/1995:00:13:13 -0400] "GET /ksc.html HTTP/1.0" 200 7074
166.79.67.111 - - [01/Jul/1995:00:13:20 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:20 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:20 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
166.79.67.111 - - [01/Jul/1995:00:13:21 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:13:25 -0400] "GET /history/skylab/skylab.html HTTP/1.0" 200 1687
204.212.254.71 - - [01/Jul/1995:00:13:25 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:13:26 -0400] "GET /history/skylab/skylab-small.gif HTTP/1.0" 200 9202
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:13:27 -0400] "GET /shuttle/missions/sts-71/sts-71-press-kit.txt HTTP/1.0" 200 78588
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:28 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
ppp4.sunrem.com - - [01/Jul/1995:00:13:29 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
204.212.254.71 - - [01/Jul/1995:00:13:30 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
204.212.254.71 - - [01/Jul/1995:00:13:31 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:31 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:32 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:32 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:33 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:33 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:33 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:34 -0400] "GET /images/construct.gif HTTP/1.0" 304 0
kenmarks-ppp.clark.net - - [01/Jul/1995:00:13:34 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 304 0
slip1.kias.com - - [01/Jul/1995:00:13:36 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0918.jpg HTTP/1.0" 200 46888
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:13:38 -0400] "GET /ksc.html HTTP/1.0" 200 7074
204.212.254.71 - - [01/Jul/1995:00:13:38 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:13:40 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:42 -0400] "GET /shuttle/missions/sts-78/mission-sts-78.html HTTP/1.0" 200 4377
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:43 -0400] "GET /shuttle/missions/sts-78/sts-78-patch-small.gif HTTP/1.0" 200 4179
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:13:46 -0400] "GET /history/skylab/skylab-3.html HTTP/1.0" 200 1424
waters-gw.starway.net.au - - [01/Jul/1995:00:13:47 -0400] "GET /shuttle/missions/51-l/movies/ HTTP/1.0" 200 372
oahu-53.u.aloha.net - - [01/Jul/1995:00:13:48 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:13:48 -0400] "GET /history/skylab/skylab-logo.gif HTTP/1.0" 200 3274
sfsp86.slip.net - - [01/Jul/1995:00:13:50 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:13:53 -0400] "GET /history/apollo/apollo-11/images/69HC680.GIF HTTP/1.0" 200 149444
ppp-nyc-3-1.ios.com - - [01/Jul/1995:00:13:53 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-hatch-hand-group.mpg HTTP/1.0" 200 1081049
teleman.pr.mcs.net - - [01/Jul/1995:00:14:11 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-mir-dock.mpg HTTP/1.0" 200 122880
temprano.netheaven.com - - [01/Jul/1995:00:14:17 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:14:17 -0400] "GET /persons/astronauts/i-to-l/lousmaJR.txt HTTP/1.0" 404 -
waters-gw.starway.net.au - - [01/Jul/1995:00:14:18 -0400] "GET /shuttle/missions/51-l/docs/ HTTP/1.0" 200 368
temprano.netheaven.com - - [01/Jul/1995:00:14:20 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
temprano.netheaven.com - - [01/Jul/1995:00:14:20 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
pm110.spectra.net - - [01/Jul/1995:00:14:21 -0400] "GET /shuttle/missions/sts-71/sts-71-day-01-highlights.html HTTP/1.0" 200 2722
129.188.154.200 - - [01/Jul/1995:00:14:21 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:14:22 -0400] "GET /history/skylab/skylab-logo.gif HTTP/1.0" 200 3274
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:14:23 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0893.jpg HTTP/1.0" 200 298302
ppp4.sunrem.com - - [01/Jul/1995:00:14:24 -0400] "GET /cgi-bin/imagemap/countdown?266,274 HTTP/1.0" 302 85
temprano.netheaven.com - - [01/Jul/1995:00:14:26 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
sfsp86.slip.net - - [01/Jul/1995:00:14:27 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
sfsp86.slip.net - - [01/Jul/1995:00:14:30 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
boing.dgsys.com - - [01/Jul/1995:00:14:30 -0400] "GET /facts/faq11.html HTTP/1.0" 200 22096
ppp4.sunrem.com - - [01/Jul/1995:00:14:31 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:14:32 -0400] "GET /persons/astronauts/a-to-d/beanAL.txt HTTP/1.0" 404 -
waters-gw.starway.net.au - - [01/Jul/1995:00:14:36 -0400] "GET /shuttle/missions/51-l/news/ HTTP/1.0" 200 368
slip-5.io.com - - [01/Jul/1995:00:14:36 -0400] "GET /history/apollo/apollo.html HTTP/1.0" 200 3258
ottgate2.bnr.ca - - [01/Jul/1995:00:14:37 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 304 0
waters-gw.starway.net.au - - [01/Jul/1995:00:15:53 -0400] "GET /htbin/wais.pl?51-L HTTP/1.0" 200 316
dd11-054.compuserve.com - - [01/Jul/1995:00:15:55 -0400] "GET /shuttle/technology/sts-newsref/sts-lcc.html HTTP/1.0" 200 32252
204.212.254.71 - - [01/Jul/1995:00:15:58 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
204.227.13.26 - - [01/Jul/1995:00:15:58 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
slip-5.io.com - - [01/Jul/1995:00:15:59 -0400] "GET /history/apollo/as-201/as-201.html HTTP/1.0" 200 3680
slip-5.io.com - - [01/Jul/1995:00:16:02 -0400] "GET /history/apollo/as-201/as-201-patch-small.gif HTTP/1.0" 200 16184
204.227.13.26 - - [01/Jul/1995:00:16:02 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
204.227.13.26 - - [01/Jul/1995:00:16:02 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ppp111.cs.mci.com - - [01/Jul/1995:00:16:03 -0400] "GET /shuttle/missions/sts-74/mission-sts-74.html HTTP/1.0" 200 3707
ix-sd11-26.ix.netcom.com - - [01/Jul/1995:00:16:03 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:16:04 -0400] "GET /shuttle/missions/sts-68/ksc-srl-image.html HTTP/1.0" 200 1404
156.151.176.30 - - [01/Jul/1995:00:16:04 -0400] "GET /ksc.html HTTP/1.0" 200 7074
slip-5.io.com - - [01/Jul/1995:00:16:05 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
204.212.254.71 - - [01/Jul/1995:00:16:05 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
slip-5.io.com - - [01/Jul/1995:00:16:08 -0400] "GET /history/apollo/images/footprint-logo.gif HTTP/1.0" 200 4209
ppp111.cs.mci.com - - [01/Jul/1995:00:16:09 -0400] "GET /shuttle/missions/sts-74/sts-74-patch-small.gif HTTP/1.0" 200 4179
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:09 -0400] "GET /history/apollo/apollo-13/docs/ HTTP/1.0" 200 377
pm28.sonic.net - - [01/Jul/1995:00:16:10 -0400] "GET /cgi-bin/imagemap/countdown?373,274 HTTP/1.0" 302 68
detroit.freenet.org - - [01/Jul/1995:00:16:10 -0400] "GET /shuttle/countdown HTTP/1.0" 302 -
ip155.tmn.com - - [01/Jul/1995:00:16:11 -0400] "GET /shuttle/missions/sts-71/movies/crew-arrival-t38.mpg HTTP/1.0" 200 305722
204.212.254.71 - - [01/Jul/1995:00:16:12 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
129.188.154.200 - - [01/Jul/1995:00:16:13 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
156.151.176.30 - - [01/Jul/1995:00:16:13 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:16:14 -0400] "GET /facts/facts.html HTTP/1.0" 200 4717
shrspine.rapidramp.com - - [01/Jul/1995:00:16:15 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 304 0
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:15 -0400] "GET /history/apollo/apollo-13/ HTTP/1.0" 200 1732
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:16:15 -0400] "GET /images/faq.gif HTTP/1.0" 200 263
shrspine.rapidramp.com - - [01/Jul/1995:00:16:16 -0400] "GET /images/launchmedium.gif HTTP/1.0" 304 0
detroit.freenet.org - - [01/Jul/1995:00:16:16 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
shrspine.rapidramp.com - - [01/Jul/1995:00:16:16 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
ppp111.cs.mci.com - - [01/Jul/1995:00:16:17 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:17 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
annex-p2.sci.dixie.edu - - [01/Jul/1995:00:16:20 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 200 4538
ppp111.cs.mci.com - - [01/Jul/1995:00:16:20 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
204.227.13.26 - - [01/Jul/1995:00:16:21 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
shrspine.rapidramp.com - - [01/Jul/1995:00:16:21 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
156.151.176.30 - - [01/Jul/1995:00:16:21 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:25 -0400] "GET /history/apollo/apollo-13/videos/ HTTP/1.0" 200 381
detroit.freenet.org - - [01/Jul/1995:00:16:27 -0400] "GET /shuttle/missions/sts-71/movies/movies.html HTTP/1.0" 200 3092
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:29 -0400] "GET / HTTP/1.0" 200 7074
teleman.pr.mcs.net - - [01/Jul/1995:00:16:30 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-mir-dock-2.mpg HTTP/1.0" 200 65536
ix-wbg-va2-26.ix.netcom.com - - [01/Jul/1995:00:16:30 -0400] "GET /history/apollo/apollo-11/images/69HC683.GIF HTTP/1.0" 200 193700
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:16:33 -0400] "GET /facts/faq06.html HTTP/1.0" 200 12686
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:34 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
shrspine.rapidramp.com - - [01/Jul/1995:00:16:35 -0400] "GET /shuttle/missions/sts-37/mission-sts-37.html HTTP/1.0" 200 6023
156.151.176.45 - - [01/Jul/1995:00:16:35 -0400] "GET /ksc.html HTTP/1.0" 304 0
port2.cia.com - - [01/Jul/1995:00:16:36 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
shrspine.rapidramp.com - - [01/Jul/1995:00:16:37 -0400] "GET /shuttle/missions/sts-37/sts-37-patch-small.gif HTTP/1.0" 200 10371
port2.cia.com - - [01/Jul/1995:00:16:37 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
156.151.176.45 - - [01/Jul/1995:00:16:37 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
156.151.176.45 - - [01/Jul/1995:00:16:37 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 304 0
156.151.176.45 - - [01/Jul/1995:00:16:37 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 304 0
ppp111.cs.mci.com - - [01/Jul/1995:00:16:38 -0400] "GET /shuttle/resources/orbiters/atlantis.html HTTP/1.0" 200 7025
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:39 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
port2.cia.com - - [01/Jul/1995:00:16:39 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
port2.cia.com - - [01/Jul/1995:00:16:39 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
156.151.176.45 - - [01/Jul/1995:00:16:40 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 304 0
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:40 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:42 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
shrspine.rapidramp.com - - [01/Jul/1995:00:16:43 -0400] "GET /images/launch-logo.gif HTTP/1.0" 304 0
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:43 -0400] "GET /history/apollo/apollo.html HTTP/1.0" 200 3258
156.151.176.45 - - [01/Jul/1995:00:16:43 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 304 0
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:44 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
ppp111.cs.mci.com - - [01/Jul/1995:00:16:44 -0400] "GET /shuttle/resources/orbiters/atlantis-logo.gif HTTP/1.0" 200 4179
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:44 -0400] "GET /ksc.html HTTP/1.0" 200 7074
www-a1.proxy.aol.com - - [01/Jul/1995:00:16:44 -0400] "GET /images/oldtower.gif HTTP/1.0" 200 173919
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:46 -0400] "GET /software/winvn/winvn.html HTTP/1.0" 200 9867
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:46 -0400] "GET /images/ksclogo-medium.gif HTTP/1.0" 200 5866
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:47 -0400] "GET /images/construct.gif HTTP/1.0" 200 1414
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:47 -0400] "GET /software/winvn/bluemarb.gif HTTP/1.0" 200 4441
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:47 -0400] "GET /software/winvn/winvn.gif HTTP/1.0" 200 25218
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:48 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
ppp111.cs.mci.com - - [01/Jul/1995:00:16:49 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:50 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:50 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:50 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:16:51 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
129.188.154.200 - - [01/Jul/1995:00:16:51 -0400] "GET /htbin/wais.pl HTTP/1.0" 200 308
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:53 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
acs4.acs.ucalgary.ca - - [01/Jul/1995:00:16:53 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
ppp111.cs.mci.com - - [01/Jul/1995:00:16:54 -0400] "GET /shuttle/resources/orbiters/orbiters-logo.gif HTTP/1.0" 200 1932
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:54 -0400] "GET /software/winvn/wvsmall.gif HTTP/1.0" 200 13372
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:54 -0400] "GET /history/apollo/images/apollo-logo.gif HTTP/1.0" 200 3047
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:16:56 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:56 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:16:56 -0400] "GET /images/MOSAIC-logosmall.gif HTTP/1.0" 200 363
svasu.extern.ucsd.edu - - [01/Jul/1995:00:16:58 -0400] "GET /history/apollo/apollo-goals.txt HTTP/1.0" 200 712
129.188.154.200 - - [01/Jul/1995:00:17:00 -0400] "GET /shuttle/movies/astronauts.mpg HTTP/1.0" 200 106496
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:17:03 -0400] "GET /images/USA-logosmall.gif HTTP/1.0" 200 234
129.188.154.200 - - [01/Jul/1995:00:17:03 -0400] "GET /htbin/wais.pl?mpeg HTTP/1.0" 200 1639
acs4.acs.ucalgary.ca - - [01/Jul/1995:00:17:03 -0400] "GET / HTTP/1.0" 200 7074
shrspine.rapidramp.com - - [01/Jul/1995:00:17:05 -0400] "GET /facts/faq12.html HTTP/1.0" 200 19547
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:05 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:08 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
dialup61.afn.org - - [01/Jul/1995:00:17:09 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
204.227.13.26 - - [01/Jul/1995:00:17:11 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:11 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
dialup61.afn.org - - [01/Jul/1995:00:17:12 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 304 0
ppp5.earthlight.co.nz - - [01/Jul/1995:00:17:13 -0400] "GET /shuttle/missions/sts-70/mission-sts-70.html HTTP/1.0" 200 13469
204.227.13.26 - - [01/Jul/1995:00:17:13 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
sfsp86.slip.net - - [01/Jul/1995:00:17:16 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
news.ti.com - - [01/Jul/1995:00:17:19 -0400] "GET /shuttle/missions/sts-71/news HTTP/1.0" 302 -
dialup61.afn.org - - [01/Jul/1995:00:17:19 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:17:19 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
news.ti.com - - [01/Jul/1995:00:17:20 -0400] "GET /shuttle/missions/sts-71/news/ HTTP/1.0" 200 3442
dialup61.afn.org - - [01/Jul/1995:00:17:21 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 304 0
dialup61.afn.org - - [01/Jul/1995:00:17:22 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 304 0
204.227.13.26 - - [01/Jul/1995:00:17:22 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
news.ti.com - - [01/Jul/1995:00:17:23 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
news.ti.com - - [01/Jul/1995:00:17:23 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
news.ti.com - - [01/Jul/1995:00:17:23 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
ix-dc10-19.ix.netcom.com - - [01/Jul/1995:00:17:24 -0400] "GET /cgi-bin/imagemap/countdown?375,272 HTTP/1.0" 302 68
svasu.extern.ucsd.edu - - [01/Jul/1995:00:17:28 -0400] "GET /history/apollo/images/footprint-small.gif HTTP/1.0" 200 18149
svasu.extern.ucsd.edu - - [01/Jul/1995:00:17:28 -0400] "GET /history/apollo/images/apollo-logo.gif HTTP/1.0" 200 3047
shrspine.rapidramp.com - - [01/Jul/1995:00:17:28 -0400] "GET /images/faq.gif HTTP/1.0" 200 263
shrspine.rapidramp.com - - [01/Jul/1995:00:17:29 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:29 -0400] "GET /shuttle/missions/sts-78/mission-sts-78.html HTTP/1.0" 200 4377
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:17:29 -0400] "GET /shuttle/missions/sts-68/images/ksc.gif HTTP/1.0" 200 152676
detroit.freenet.org - - [01/Jul/1995:00:17:29 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-mir-dock.mpg HTTP/1.0" 200 946425
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:31 -0400] "GET /shuttle/missions/sts-78/sts-78-patch-small.gif HTTP/1.0" 200 4179
129.188.154.200 - - [01/Jul/1995:00:17:32 -0400] "GET /shuttle/countdown/lps/mpeg.html HTTP/1.0" 200 1221
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:33 -0400] "GET /images/launch-logo.gif HTTP/1.0" 200 1713
129.188.154.200 - - [01/Jul/1995:00:17:34 -0400] "GET /shuttle/countdown/lps/back.gif HTTP/1.0" 200 1289
pm28.sonic.net - - [01/Jul/1995:00:17:34 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
dd11-054.compuserve.com - - [01/Jul/1995:00:17:35 -0400] "GET /shuttle/missions/sts-67/sts-67-patch.jpg HTTP/1.0" 200 103193
svasu.extern.ucsd.edu - - [01/Jul/1995:00:17:36 -0400] "GET /history/apollo/apollo-spacecraft.txt HTTP/1.0" 200 2261
129.188.154.200 - - [01/Jul/1995:00:17:39 -0400] "GET /htbin/cdt_main.pl HTTP/1.0" 200 3214
leet.cts.com - - [01/Jul/1995:00:17:42 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
129.193.116.41 - - [01/Jul/1995:00:17:46 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
129.188.154.200 - - [01/Jul/1995:00:17:47 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
129.188.154.200 - - [01/Jul/1995:00:17:49 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
129.193.116.41 - - [01/Jul/1995:00:17:51 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
129.193.116.41 - - [01/Jul/1995:00:17:52 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
129.193.116.41 - - [01/Jul/1995:00:17:52 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
acs4.acs.ucalgary.ca - - [01/Jul/1995:00:17:54 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
news.ti.com - - [01/Jul/1995:00:17:54 -0400] "GET /shuttle/missions/sts-71/sts-71-info.html HTTP/1.0" 200 1440
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:55 -0400] "GET /shuttle/missions/sts-77/mission-sts-77.html HTTP/1.0" 200 3071
traitor.demon.co.uk - - [01/Jul/1995:00:17:57 -0400] "GET /history/apollo/apollo-13/apollo-13-patch-small.gif HTTP/1.0" 200 12859
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:17:57 -0400] "GET /shuttle/missions/sts-77/sts-77-patch-small.gif HTTP/1.0" 200 4179
blv-pm0-ip28.halcyon.com - - [01/Jul/1995:00:18:01 -0400] "GET /facts/launch-pass.txt HTTP/1.0" 200 29823
acs4.acs.ucalgary.ca - - [01/Jul/1995:00:18:02 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
sfsp86.slip.net - - [01/Jul/1995:00:18:02 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0917.gif HTTP/1.0" 200 30995
204.227.13.26 - - [01/Jul/1995:00:18:03 -0400] "GET /cgi-bin/imagemap/countdown?99,144 HTTP/1.0" 302 96
204.248.98.63 - - [01/Jul/1995:00:18:05 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
slip-5.io.com - - [01/Jul/1995:00:18:06 -0400] "GET /history/apollo/as-201/as-201-info.html HTTP/1.0" 200 1395
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:18:08 -0400] "GET /shuttle/missions/sts-76/mission-sts-76.html HTTP/1.0" 200 3109
h-shining.norfolk.infi.net - - [01/Jul/1995:00:18:08 -0400] "GET /shuttle/missions/sts-71/mission-sts-71.html HTTP/1.0" 200 12040
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:18:10 -0400] "GET /shuttle/missions/sts-76/sts-76-patch-small.gif HTTP/1.0" 200 4179
204.248.98.63 - - [01/Jul/1995:00:18:10 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
204.248.98.63 - - [01/Jul/1995:00:18:10 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
204.248.98.63 - - [01/Jul/1995:00:18:10 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
slip-5.io.com - - [01/Jul/1995:00:18:13 -0400] "GET /history/apollo/as-201/sounds/ HTTP/1.0" 200 372
traitor.demon.co.uk - - [01/Jul/1995:00:18:13 -0400] "GET /images/ksclogosmall.gif HTTP/1.0" 200 3635
ppp160.iadfw.net - - [01/Jul/1995:00:18:13 -0400] "GET /shuttle/countdown/countdown.html HTTP/1.0" 200 3985
traitor.demon.co.uk - - [01/Jul/1995:00:18:13 -0400] "GET /history/apollo/images/footprint-logo.gif HTTP/1.0" 200 4209
slip-5.io.com - - [01/Jul/1995:00:18:15 -0400] "GET /icons/blank.xbm HTTP/1.0" 200 509
slip-5.io.com - - [01/Jul/1995:00:18:15 -0400] "GET /icons/menu.xbm HTTP/1.0" 200 527
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:18:16 -0400] "GET /software/winvn/wvlarge.gif HTTP/1.0" 200 23416
h-shining.norfolk.infi.net - - [01/Jul/1995:00:18:20 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
net-1-217.eden.com - - [01/Jul/1995:00:18:20 -0400] "GET /shuttle/missions/sts-71/images/images.html HTTP/1.0" 200 7634
slip-5.io.com - - [01/Jul/1995:00:18:23 -0400] "GET /history/apollo/as-201/ HTTP/1.0" 200 1699
pm28.sonic.net - - [01/Jul/1995:00:18:23 -0400] "GET /shuttle/missions/sts-71/images/KSC-95EC-0613.gif HTTP/1.0" 200 45970
slip-5.io.com - - [01/Jul/1995:00:18:25 -0400] "GET /icons/text.xbm HTTP/1.0" 200 527
slip-5.io.com - - [01/Jul/1995:00:18:25 -0400] "GET /icons/image.xbm HTTP/1.0" 200 509
www-a1.proxy.aol.com - - [01/Jul/1995:00:18:27 -0400] "GET /facilities/vab.html HTTP/1.0" 200 4045
teleman.pr.mcs.net - - [01/Jul/1995:00:18:28 -0400] "GET /shuttle/missions/sts-71/movies/sts-71-mir-dock-2.mpg HTTP/1.0" 200 139264
remote27.compusmart.ab.ca - - [01/Jul/1995:00:18:28 -0400] "GET /shuttle/missions/sts-71/sts-71-patch-small.gif HTTP/1.0" 200 12054
ppp160.iadfw.net - - [01/Jul/1995:00:18:28 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
kuts5p06.cc.ukans.edu - - [01/Jul/1995:00:18:29 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:18:30 -0400] "GET /images/WORLD-logosmall.gif HTTP/1.0" 200 669
whlane.cts.com - - [01/Jul/1995:00:18:31 -0400] "GET /shuttle/missions/missions.html HTTP/1.0" 200 8677
whlane.cts.com - - [01/Jul/1995:00:18:33 -0400] "GET /images/launchmedium.gif HTTP/1.0" 200 11853
www-a1.proxy.aol.com - - [01/Jul/1995:00:18:33 -0400] "GET /images/vab-small.gif HTTP/1.0" 200 35709
slip-5.io.com - - [01/Jul/1995:00:18:33 -0400] "GET /history/apollo/as-201/sounds/ HTTP/1.0" 200 372
ottgate2.bnr.ca - - [01/Jul/1995:00:18:34 -0400] "GET /shuttle/technology/images/et_1-small.gif HTTP/1.0" 200 35624
ppp5.earthlight.co.nz - - [01/Jul/1995:00:18:35 -0400] "GET /shuttle/missions/sts-70/sts-70-info.html HTTP/1.0" 200 1429
ppp24.swcp.com - - [01/Jul/1995:00:18:35 -0400] "GET /shuttle/countdown/ HTTP/1.0" 200 3985
ottgate2.bnr.ca - - [01/Jul/1995:00:18:37 -0400] "GET /shuttle/technology/images/et-lox_1-small.gif HTTP/1.0" 200 36098
ppp24.swcp.com - - [01/Jul/1995:00:18:39 -0400] "GET /shuttle/countdown/count.gif HTTP/1.0" 200 40310
ppp24.swcp.com - - [01/Jul/1995:00:18:39 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ppp24.swcp.com - - [01/Jul/1995:00:18:39 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
cu-dialup-1005.cit.cornell.edu - - [01/Jul/1995:00:18:39 -0400] "GET /pub/winvn/readme.txt HTTP/1.0" 404 -
whlane.cts.com - - [01/Jul/1995:00:18:41 -0400] "GET /images/NASA-logosmall.gif HTTP/1.0" 200 786
whlane.cts.com - - [01/Jul/1995:00:18:41 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
slip-5.io.com - - [01/Jul/1995:00:18:41 -0400] "GET /history/apollo/as-201/ HTTP/1.0" 200 1699
204.227.13.26 - - [01/Jul/1995:00:18:42 -0400] "GET /cgi-bin/imagemap/countdown?98,108 HTTP/1.0" 302 111
h-shining.norfolk.infi.net - - [01/Jul/1995:00:18:42 -0400] "GET /images/KSC-logosmall.gif HTTP/1.0" 200 1204
ix-tam1-26.ix.netcom.com - - [01/Jul/1995:00:18:43 -0400] "GET /shuttle/missions/sts-68/images/ksc-upclose.gif HTTP/1.0" 200 86984
burger.letters.com - - [01/Jul/1995:00:18:43 -0400] "GET /shuttle/countdown/liftoff.html HTTP/1.0" 304 0
ppp160.iadfw.net - - [01/Jul/1995:00:18:44 -0400] "GET /htbin/wais.pl HTTP/1.0" 200 308
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment