Last active
April 4, 2019 15:01
-
-
Save AlexDaGr8/2a8812267cb4c3743d5097229c95f60e to your computer and use it in GitHub Desktop.
Interactive and attempting to be more DRY with the code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<body> | |
<style> | |
.wrapper { | |
display: grid; | |
grid-template-columns: repeat(2,minmax(0,1fr)); | |
grid-gap: 10px; | |
width: 95%; | |
margin: auto; | |
} | |
.chart { | |
box-shadow: 3px 3px 3px 3px #777; | |
width: 100%; | |
} | |
</style> | |
<div class="wrapper"> | |
<div class="chart" id="chart1"></div> | |
<div class="chart" id="chart2"></div> | |
</div> | |
<script src='https://d3js.org/d3.v5.min.js'></script> | |
<script> | |
d3.csv('WMATA2.csv') | |
.then(data => { | |
data.forEach(d => { | |
d.Time = new Date(d.Time); | |
}) | |
var scatter, stacked; | |
var colors = d3.scaleOrdinal() | |
.range(['#DD3565', '#3BB273']) | |
.domain(['Exit', 'Entry']) | |
// chart1 | |
scatter = new createSVG('#chart1', d => d.Time, d => d.Time.getHours() + (d.Time.getMinutes()/60), null); | |
scatter.data = data.filter(d => d.Description === 'Exit' || d.Description === 'Entry'); | |
scatter.setXTest('scaleTime'); | |
scatter.setYTest('scaleLinear') | |
scatter.colors = colors; | |
scatter.scatter('Description'); | |
// chart1.setX(d3.scaleTime() | |
// .range([0, chart1.width]) | |
// .domain(d3.extent(data, d => d.Time))) | |
// chart1.setY(d3.scaleLinear() | |
// .range([chart1.height, 0]) | |
// .domain(d3.extent(data, d => d.Time.getHours() + (d.Time.getMinutes()/60))).nice()) | |
// chart1.elems = chart1.svg.selectAll('circle') | |
// .data(chart1.data) | |
// .join('circle') | |
// .attr('cx', d => chart1.x(d.Time)) | |
// .attr('cy', d => chart1.y(d.Time.getHours() + (d.Time.getMinutes()/60))) | |
// .attr('r', 4) | |
// .attr('fill', d => colors(d.Description)) | |
// .attr('opacity', '.7') | |
// chart1.updateChart = function() { | |
// extent = d3.event.selection | |
// var filtered = chart1.elems | |
// .filter(function(d){ return isBrushed(extent, chart1.x(d.Time), chart1.y(d.Time.getHours() + (d.Time.getMinutes()/60)) ); }) | |
// .attr('opacity', .9) | |
// .attr('stroke', brushedColor) | |
// .attr('stroke-width', 2) | |
// .attr('data-brushed', true) | |
// var notFilterd = chart1.elems | |
// .filter(function(d){ return !isBrushed(extent, chart1.x(d.Time), chart1.y(d.Time.getHours() + (d.Time.getMinutes()/60)) ); }) | |
// .attr('opacity', .7) | |
// .attr('stroke', function(d) { | |
// return d3.select(this).attr('data-clicked') === 'true' ? clickedColor : null; | |
// }) | |
// .attr('data-brushed', false) | |
// stacked.update(filtered.data().length === 0 ? notFilterd.data() : filtered.data()) | |
// // A function that return TRUE or FALSE according if a dot is in the selection or not | |
// function isBrushed(brush_coords, cx, cy) { | |
// var x0 = brush_coords[0][0], | |
// x1 = brush_coords[1][0], | |
// y0 = brush_coords[0][1], | |
// y1 = brush_coords[1][1]; | |
// return x0 <= cx && cx <= x1 && y0 <= cy && cy <= y1; | |
// } | |
// } | |
// chart1.svg.call( | |
// d3.brush() | |
// .extent([[0,0], [chart1.width, chart1.height]]) | |
// .on('start brush', chart1.updateChart) | |
// ) | |
// stacked chart | |
stacked = new createSVG('#chart2',{left: 30, top: 20, right: 20, bottom: 30}) | |
Object.defineProperty(stacked, 'data', { | |
set: function(val) { | |
var tempNest = [...new Set(val.map(d => d.EntryLocation || d.ExitLocation))] | |
.map(d => { | |
return { | |
key: d, | |
values: [ | |
{key: 'Exit', values: val.filter(v => v.ExitLocation === d && v.Description === 'Exit')}, | |
{key: 'Entry', values: val.filter(v => v.EntryLocation === d && v.Description === 'Entry')}, | |
] | |
} | |
}) | |
tempNest.forEach(d => { | |
var d0 = 0; | |
d.values.sort((a,b) => a.key - b.key).forEach(v => { | |
v.data = d; | |
v.d0 = d0; | |
v.d1 = v.values.length + d0; | |
d0 += v.values.length; | |
}) | |
}) | |
var tempData; | |
if (this._data) { | |
tempData = this._data; | |
tempData.forEach(function (v) { | |
var filter = tempNest.filter(k => k.key === v.key); | |
v.values = tempNest.filter(k => k.key === v.key).length > 0 ? | |
tempNest.filter(k => k.key === v.key)[0].values : | |
[ | |
{key: 'Entry', values: [], data: {}, d0: 0, d1: 0}, | |
{key: 'Exit', values: [], data: {}, d0: 0, d1: 0} | |
]; | |
}) | |
} else { | |
tempData = tempNest; | |
} | |
this._data = tempData; | |
} | |
}) | |
stacked.data = data; | |
stacked.setX(d3.scaleBand() | |
.range([0,stacked.width]) | |
.domain(stacked.data.map(d => d.key)) | |
.padding(0.05)) | |
stacked.setY(d3.scaleLinear() | |
.range([stacked.height, 0]) | |
.domain([0, d3.max(stacked.data, d => d3.sum(d.values, v => v.values.length))])) | |
stacked.xAxis | |
.call(function(g) { | |
g.selectAll('.tick text').each(function(d,i) { | |
if (i % 2 === 0) { | |
d3.select(this).attr('y', d3.select(this).attr('y') * 2 + 2) | |
} | |
}) | |
}) | |
stacked.elems = stacked.svg.selectAll('g.series') | |
.data(stacked.data) | |
.join('g') | |
.attr('class', 'series') | |
.attr('transform', d => 'translate(' + stacked.x(d.key) + ',0)') | |
stacked.rects = stacked.elems.selectAll('rect.series-rect') | |
.data(d => d.values) | |
.join('rect') | |
.attr('class', 'series-rect') | |
.attr('x', 0) | |
.attr('width', stacked.x.bandwidth()) | |
.attr('y', d => stacked.y(d.d1)) | |
.attr('height', d => stacked.y(d.d0) - stacked.y(d.d1)) | |
.attr('fill', d => colors(d.key)) | |
.attr('stroke', null) | |
.on('mouseover', function(d) { | |
d3.select(this) | |
.style('opacity', 0.7) | |
}) | |
.on('mouseout', function(d) { | |
d3.select(this) | |
.style('opacity', 1) | |
}) | |
.on('click', function(d) { | |
let clicked = d3.select(this).attr('stroke') ? true : false; | |
stacked.rects.attr('stroke', null) | |
if (!clicked) { | |
d3.select(this) | |
.attr('stroke', '#aaa') | |
.attr('stroke-width', 2) | |
chart1.elems.each(function(v) { | |
d3.select(this) | |
.transition() | |
.attr('stroke', function(d) { | |
return d3.select(this).attr('data-brushed') === 'true' ? brushedColor : null; | |
}) | |
.attr('data-clicked', false) | |
if (v[d.key + 'Location'] === d.data.key && v.Description === d.key) { | |
d3.select(this) | |
.transition().duration(250) | |
.attr('r', 8) | |
.attr('stroke', function(d) { | |
return d3.select(this).attr('data-brushed') === 'true' ? brushedColor : clickedColor; | |
}) | |
.attr('stroke-width', 2) | |
.transition().duration(250) | |
.attr('r', 4) | |
.attr('data-clicked', true) | |
} | |
}) | |
} else { | |
chart1.elems.each(function(v) { | |
d3.select(this) | |
.transition() | |
.attr('stroke', function(d) { | |
return d3.select(this).attr('data-brushed') === 'true' ? brushedColor : null; | |
}) | |
.attr('data-clicked', false) | |
}) | |
} | |
}) | |
stacked.update = function(_data) { | |
this.data = _data; | |
this.elems.data(this.data) | |
this.elems.selectAll('rect.series-rect') | |
.data(d => d.values) | |
.transition() | |
.attr('y', d => this.y(d.d1)) | |
.attr('height', d => this.y(d.d0) - this.y(d.d1)) | |
} | |
let dash = new dashboard(); | |
dash.addChart(scatter); | |
dash.addChart(stacked) | |
}) | |
function createSVG(el,xAcc,yAcc,m) { | |
this.chartID = 'chart-' + Math.floor(Math.random() * 1000); | |
this.htmlElem = document.querySelector(el ? el : 'body'); | |
this.container = d3.select(el ? el : 'body'); | |
this.margin = m ? m : {left: 30, top: 20, right: 20, bottom: 20}; | |
this.width = window.getComputedStyle(this.htmlElem).width.split('px')[0] - this.margin.left - this.margin.right; | |
this.height = 450 - this.margin.top - this.margin.bottom; | |
this._svg = this.container.append('svg') | |
.attr('id', this.chartID) | |
.attr('width', this.width + this.margin.left + this.margin.right) | |
.attr('height', this.height + this.margin.top + this.margin.bottom) | |
this.svg = this._svg.append('g') | |
.attr('transform', 'translate(' + [this.margin.left, this.margin.top] + ')'); | |
this.colors = d3.scaleOrdinal(d3.schemeCategory10); | |
this.colorVal = null; | |
this.linkCharts = []; | |
this._data; | |
Object.defineProperty(this, 'data', { | |
get: function() { | |
return this._data; | |
}, | |
set: function(val) { | |
var temp = val; | |
if (xAcc !== undefined && yAcc !== undefined) { | |
var temp = val.map(function(d, i) { | |
return {key: xAcc.call(val, d, i), value: yAcc.call(val, d, i), data: d} | |
}); | |
} | |
this._data = temp; | |
}, | |
configurable: true | |
}) | |
window.addEventListener('resize', () => { | |
this.resize() | |
}) | |
} | |
createSVG.prototype.setX = function(scale) { | |
this.x = scale; | |
this.xType = scale.name; | |
this.xAxis = this.svg.append('g') | |
.attr('transform', 'translate(0,' + this.height + ')') | |
.call(d3.axisBottom(this.x)) | |
} | |
createSVG.prototype.setY = function(scale) { | |
this.y = scale; | |
this.yAxis = this.svg.append('g') | |
.call(d3.axisLeft(this.y)) | |
} | |
createSVG.prototype.setXTest = function(scale) { | |
this.x = d3[scale]() | |
.range([0, this.width]) | |
.domain(d3.extent(this.data, d => d.key)); | |
this.xType = scale.name; | |
this.xAxis = this.svg.append('g') | |
.attr('transform', 'translate(0,' + this.height + ')') | |
.call(d3.axisBottom(this.x)) | |
} | |
createSVG.prototype.setYTest = function(scale) { | |
this.y = d3[scale]() | |
.range([this.height, 0]) | |
.domain(d3.extent(this.data, d => d.value)) | |
.nice(); | |
this.yAxis = this.svg.append('g') | |
.call(d3.axisLeft(this.y)) | |
} | |
createSVG.prototype.link = function(links) { | |
links.forEach(d => { | |
this.linkCharts.push(d); | |
}) | |
console.log('linked', this.linkCharts) | |
} | |
createSVG.prototype.scatter = function(z) { | |
const that = this; | |
this.clickedColor = '#29506d', | |
this.brushedColor = '#222'; | |
this.elems = this.svg.selectAll('circle') | |
.data(this.data) | |
.join('circle') | |
.attr('cx', d => this.x(d.key)) | |
.attr('cy', d => this.y(d.value)) | |
.attr('r', 4) | |
.attr('fill', d => z ? this.colors(d.data[z]) : 'steelblue') | |
.attr('opacity', '.7') | |
this.brushed = function() { | |
extent = d3.event.selection | |
var filtered = that.elems | |
.filter(function(d){ return isBrushed(extent, that.x(d.key), that.y(d.value) ); }) | |
.attr('opacity', .9) | |
.attr('stroke', that.brushedColor) | |
.attr('stroke-width', 2) | |
.attr('data-brushed', true) | |
var notFiltered = that.elems | |
.filter(function(d){ return !isBrushed(extent, that.x(d.key), that.y(d.value) ); }) | |
.attr('opacity', .7) | |
.attr('stroke', function(d) { | |
return d3.select(this).attr('data-clicked') === 'true' ? that.clickedColor : null; | |
}) | |
.attr('data-brushed', false) | |
that.linkCharts.forEach(d => { | |
d.update(filtered.data().length === 0 ? notFiltered.data().map(d => d.data) : filtered.data().map(d => d.data)) | |
}) | |
//stacked.update(filtered.data().length === 0 ? notFilterd.data() : filtered.data()) | |
// A function that return TRUE or FALSE according if a dot is in the selection or not | |
function isBrushed(brush_coords, cx, cy) { | |
var x0 = brush_coords[0][0], | |
x1 = brush_coords[1][0], | |
y0 = brush_coords[0][1], | |
y1 = brush_coords[1][1]; | |
return x0 <= cx && cx <= x1 && y0 <= cy && cy <= y1; | |
} | |
} | |
this.svg.call( | |
d3.brush() | |
.extent([[0,0], [this.width, this.height]]) | |
.on('start brush', this.brushed) | |
) | |
} | |
createSVG.prototype.resize = function() { | |
this.width = window.getComputedStyle(this.htmlElem).width.split('px')[0] - this.margin.left - this.margin.right; | |
this._svg.attr('width', this.width + this.margin.left + this.margin.right) | |
this.x.range([0, this.width]) | |
this.xAxis.call(d3.axisBottom(this.x)) | |
if (this.xType === 'i') { | |
this.elems.transition() | |
.attr('width', this.x.bandwidth()) | |
.attr('x', d => this.x(d.key)) | |
} else { | |
this.elems.transition() | |
.attr('cx', d => this.x(d.Time)) | |
} | |
} | |
function dashboard () { | |
this.charts = []; | |
this.addChart = function(chart) { | |
chart.link(this.charts.map(d => d.chart)); | |
this.charts.forEach(d => { | |
d.chart.link([chart]) | |
}); | |
this.charts.push({id: Math.floor(Math.random() * 100), chart: chart}); | |
} | |
} | |
</script> | |
</body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SeqNum | Time | Description | Operator | EntryLocation | ExitLocation | Product | RemRides | Change | Balance | |
---|---|---|---|---|---|---|---|---|---|---|
8 | 1/4/16 8:38 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 10.00 | 14.35 | |||
9 | 1/4/16 8:39 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 29.35 | |||
10 | 1/4/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.35 | |||
11 | 1/4/16 9:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.30 | ||
12 | 1/4/16 16:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.30 | |||
13 | 1/4/16 16:56 | Exit | Metrorail | L'Enfant Plza N | Farragut N NW | StoredValue FF | (2.15) | 24.15 | ||
14 | 1/4/16 17:25 | Entry | Metrorail | Farragut N NW | StoredValue FF | 0.00 | 24.15 | |||
15 | 1/4/16 17:37 | Exit | Metrorail | Farragut N NW | Tenleytown-AU | StoredValue FF | (2.45) | 21.70 | ||
0 | 1/5/16 8:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.70 | |||
1 | 1/5/16 9:12 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.65 | ||
2 | 1/5/16 17:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.65 | |||
3 | 1/5/16 18:14 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 15.60 | ||
4 | 1/6/16 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.60 | |||
5 | 1/6/16 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.55 | ||
6 | 1/6/16 17:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.55 | |||
7 | 1/6/16 17:44 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.50 | ||
8 | 1/7/16 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.50 | |||
9 | 1/7/16 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.45 | ||
10 | 1/7/16 18:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.45 | |||
11 | 1/7/16 18:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.40 | ||
12 | 1/8/16 8:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.40 | |||
13 | 1/8/16 8:51 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.35 | ||
14 | 1/8/16 14:26 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 25.35 | |||
0 | 1/8/16 14:50 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (2.35) | 23.00 | |||
15 | 1/8/16 14:26 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.35 | |||
0 | 1/11/16 8:32 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.00 | |||
1 | 1/11/16 8:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.00 | |||
2 | 1/11/16 8:56 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.95 | ||
3 | 1/11/16 17:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.95 | |||
4 | 1/11/16 17:55 | Exit | Metrorail | L'Enfant Plza N | Farragut N NW | StoredValue FF | (2.15) | 17.80 | ||
5 | 1/11/16 18:38 | Entry | Metrorail | Farragut N NW | StoredValue FF | 0.00 | 17.80 | |||
6 | 1/11/16 18:49 | Exit | Metrorail | Farragut N NW | Tenleytown-AU | StoredValue FF | (2.45) | 15.35 | ||
7 | 1/12/16 8:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.35 | |||
8 | 1/12/16 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.30 | ||
9 | 1/12/16 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.30 | |||
10 | 1/12/16 17:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.25 | ||
11 | 1/13/16 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.25 | |||
12 | 1/13/16 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.20 | ||
13 | 1/13/16 17:53 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.20 | |||
14 | 1/13/16 18:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.15 | ||
0 | 1/14/16 9:12 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 0.10 | |||
1 | 1/14/16 9:13 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 25.10 | |||
15 | 1/14/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.15 | |||
2 | 1/14/16 17:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.10 | |||
3 | 1/14/16 17:57 | Exit | Metrorail | L'Enfant Plza N | McPherson Sq W | StoredValue FF | (2.15) | 22.95 | ||
4 | 1/14/16 20:41 | Entry | Metrorail | Farragut N SE | StoredValue FF | 0.00 | 22.95 | |||
5 | 1/14/16 21:02 | Exit | Metrorail | Farragut N SE | Tenleytown-AU | StoredValue FF | (2.00) | 20.95 | ||
6 | 1/15/16 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.95 | |||
7 | 1/15/16 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.90 | ||
8 | 1/15/16 16:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.90 | |||
9 | 1/15/16 16:12 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 15.75 | ||
10 | 1/15/16 17:54 | Entry | Metrorail | Gal Pl-Chntwn N | StoredValue FF | 0.00 | 15.75 | |||
11 | 1/15/16 18:14 | Exit | Metrorail | Gal Pl-Chntwn N | Tenleytown-AU | StoredValue FF | (2.80) | 12.95 | ||
11 | 1/19/16 8:03 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.95 | |||
12 | 1/19/16 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.95 | |||
13 | 1/19/16 8:38 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.90 | ||
14 | 1/19/16 15:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.90 | |||
15 | 1/19/16 16:12 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 7.05 | ||
0 | 1/19/16 19:02 | Entry | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 7.05 | |||
1 | 1/19/16 19:36 | Exit | Metrorail | Va Sq-GMU | Tenleytown-AU | StoredValue FF | (2.75) | 4.30 | ||
2 | 1/20/16 8:10 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.30 | |||
3 | 1/20/16 8:48 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.25 | ||
4 | 1/20/16 8:49 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 26.25 | |||
5 | 1/20/16 18:14 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.25 | |||
6 | 1/20/16 18:38 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 23.40 | ||
7 | 1/20/16 21:55 | Entry | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 23.40 | |||
8 | 1/20/16 22:43 | Exit | Metrorail | Va Sq-GMU | Tenleytown-AU | StoredValue FF | (2.75) | 20.65 | ||
9 | 1/21/16 8:21 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.65 | |||
10 | 1/21/16 8:46 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.60 | ||
11 | 1/21/16 18:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.60 | |||
12 | 1/21/16 18:55 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.55 | ||
13 | 1/26/16 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.55 | |||
14 | 1/26/16 9:21 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.50 | ||
0 | 1/26/16 16:40 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 8.45 | |||
15 | 1/26/16 16:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.50 | |||
1 | 1/27/16 8:05 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.45 | |||
2 | 1/27/16 8:38 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.40 | ||
3 | 1/27/16 18:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.40 | |||
4 | 1/27/16 18:42 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 2.55 | ||
5 | 1/27/16 21:26 | Entry | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 2.55 | |||
6 | 1/27/16 21:57 | Exit | Metrorail | Va Sq-GMU | Tenleytown-AU | StoredValue FF | (2.75) | (0.20) | ||
7 | 1/27/16 21:58 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 24.80 | |||
8 | 1/28/16 7:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.80 | |||
9 | 1/28/16 8:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 21.75 | ||
10 | 1/28/16 18:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.75 | |||
11 | 1/28/16 18:42 | Exit | Metrorail | L'Enfant Plza N | Dupont Circle S | StoredValue FF | (2.15) | 19.60 | ||
12 | 1/28/16 20:44 | Entry | Metrorail | Dupont Circle S | StoredValue FF | 0.00 | 19.60 | |||
13 | 1/28/16 21:06 | Exit | Metrorail | Dupont Circle S | Tenleytown-AU | StoredValue FF | (1.85) | 17.75 | ||
14 | 1/29/16 7:55 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.75 | |||
15 | 1/29/16 8:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 14.70 | ||
0 | 1/29/16 13:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.70 | |||
1 | 1/29/16 13:57 | Exit | Metrorail | L'Enfant Plza N | Union Stn N | StoredValue FF | (1.75) | 12.95 | ||
2 | 2/1/16 7:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.95 | |||
3 | 2/1/16 7:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.90 | ||
4 | 2/2/16 19:17 | Entry | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 9.90 | |||
5 | 2/2/16 19:50 | Exit | Metrorail | Va Sq-GMU | Tenleytown-AU | StoredValue FF | (2.75) | 7.15 | ||
5 | 2/3/16 18:47 | Sale | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 7.15 | |||
6 | 2/4/16 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.15 | |||
7 | 2/4/16 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 4.10 | ||
8 | 2/4/16 19:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.10 | |||
9 | 2/4/16 19:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.35) | 1.75 | ||
10 | 2/4/16 19:27 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 26.75 | |||
11 | 2/5/16 7:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.75 | |||
12 | 2/5/16 8:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.70 | ||
13 | 2/5/16 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.70 | |||
14 | 2/5/16 17:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 20.65 | ||
0 | 2/8/16 8:57 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 17.60 | |||
14 | 2/8/16 8:28 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.65 | |||
15 | 2/8/16 8:29 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.65 | |||
1 | 2/8/16 17:05 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.60 | |||
2 | 2/8/16 17:31 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.55 | ||
3 | 2/9/16 7:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.55 | |||
4 | 2/9/16 7:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.50 | ||
5 | 2/9/16 15:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.50 | |||
6 | 2/9/16 16:25 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 8.65 | ||
7 | 2/10/16 8:29 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.65 | |||
8 | 2/10/16 8:53 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.60 | ||
9 | 2/10/16 17:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.60 | |||
9 | 2/10/16 18:25 | Sale | Metrorail | Va Sq-GMU | StoredValue FF | 0.00 | 5.60 | |||
10 | 2/11/16 7:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.60 | |||
11 | 2/11/16 8:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.55 | ||
12 | 2/11/16 16:37 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 2.55 | |||
13 | 2/11/16 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | (0.50) | ||
14 | 2/11/16 17:03 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 24.50 | |||
0 | 2/16/16 8:28 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 21.45 | |||
15 | 2/16/16 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.50 | |||
1 | 2/16/16 15:58 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.45 | |||
2 | 2/16/16 16:22 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 18.60 | ||
3 | 2/17/16 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.60 | |||
4 | 2/17/16 8:46 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.55 | ||
5 | 2/18/16 8:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.55 | |||
6 | 2/18/16 9:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.50 | ||
7 | 2/18/16 18:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.50 | |||
8 | 2/18/16 18:59 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.45 | ||
9 | 2/19/16 7:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.45 | |||
10 | 2/19/16 8:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.40 | ||
11 | 2/19/16 15:48 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.40 | |||
12 | 2/19/16 16:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.35 | ||
12 | 2/22/16 7:37 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.35 | |||
13 | 2/22/16 7:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.35 | |||
14 | 2/22/16 8:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.30 | ||
0 | 2/22/16 17:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.30 | |||
1 | 2/22/16 17:48 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.25 | ||
15 | 2/22/16 17:23 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 25.30 | |||
2 | 2/23/16 7:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.25 | |||
3 | 2/23/16 8:10 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.20 | ||
4 | 2/23/16 16:09 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.20 | |||
5 | 2/23/16 16:32 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 16.35 | ||
6 | 2/24/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.35 | |||
7 | 2/24/16 9:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.30 | ||
8 | 2/24/16 18:22 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.30 | |||
9 | 2/24/16 18:50 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 10.45 | ||
10 | 2/25/16 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.45 | |||
11 | 2/25/16 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.40 | ||
12 | 2/25/16 18:00 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.40 | |||
13 | 2/25/16 18:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.35 | ||
0 | 2/26/16 7:52 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 26.30 | |||
14 | 2/26/16 7:31 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 29.35 | |||
15 | 2/26/16 7:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.35 | |||
1 | 2/26/16 16:28 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.30 | |||
2 | 2/26/16 16:34 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 24.15 | ||
3 | 2/26/16 17:44 | Entry | Metrorail | Gal Pl-Chntwn N | StoredValue FF | 0.00 | 24.15 | |||
4 | 2/26/16 18:01 | Exit | Metrorail | Gal Pl-Chntwn N | Tenleytown-AU | StoredValue FF | (2.80) | 21.35 | ||
5 | 2/29/16 16:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.35 | |||
6 | 2/29/16 16:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 18.30 | ||
7 | 3/1/16 7:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.30 | |||
8 | 3/1/16 8:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.25 | ||
9 | 3/1/16 15:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.25 | |||
10 | 3/1/16 16:12 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 12.40 | ||
11 | 3/2/16 7:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.40 | |||
12 | 3/2/16 8:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.35 | ||
13 | 3/2/16 16:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.35 | |||
14 | 3/2/16 16:24 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 6.30 | ||
0 | 3/3/16 8:56 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 3.25 | |||
15 | 3/3/16 8:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.30 | |||
1 | 3/3/16 16:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.25 | |||
2 | 3/3/16 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 0.20 | ||
3 | 3/3/16 17:18 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 25.20 | |||
3 | 3/7/16 7:54 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.20 | |||
4 | 3/7/16 7:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.20 | |||
5 | 3/7/16 8:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.15 | ||
6 | 3/7/16 18:25 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.15 | |||
7 | 3/7/16 18:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 19.10 | ||
8 | 3/8/16 7:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.10 | |||
9 | 3/8/16 8:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.05 | ||
10 | 3/8/16 19:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.05 | |||
11 | 3/8/16 19:24 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.35) | 13.70 | ||
12 | 3/9/16 8:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.70 | |||
13 | 3/9/16 8:56 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.65 | ||
0 | 3/9/16 20:14 | Entry | Metrorail | U St-Cardozo W | StoredValue FF | 0.00 | 8.50 | |||
14 | 3/9/16 18:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.65 | |||
15 | 3/9/16 18:41 | Exit | Metrorail | L'Enfant Plza N | U St-Cardozo W | StoredValue FF | (2.15) | 8.50 | ||
1 | 3/9/16 20:44 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (2.25) | 6.25 | |||
2 | 3/10/16 8:01 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.25 | |||
3 | 3/10/16 8:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.20 | ||
4 | 3/10/16 18:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.20 | |||
5 | 3/10/16 18:39 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 0.15 | ||
5 | 3/10/16 18:40 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 25.15 | |||
6 | 3/10/16 18:40 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 25.15 | |||
7 | 3/11/16 7:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.15 | |||
8 | 3/11/16 8:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.10 | ||
9 | 3/11/16 13:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.10 | |||
10 | 3/11/16 14:04 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.35) | 19.75 | ||
11 | 3/14/16 8:17 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.75 | |||
12 | 3/14/16 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.70 | ||
13 | 3/14/16 18:14 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.70 | |||
14 | 3/14/16 18:39 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.65 | ||
0 | 3/15/16 7:58 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 10.60 | |||
15 | 3/15/16 7:31 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.65 | |||
1 | 3/15/16 15:53 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.60 | |||
2 | 3/15/16 16:16 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 7.75 | ||
3 | 3/17/16 8:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.75 | |||
4 | 3/17/16 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 4.70 | ||
5 | 3/17/16 18:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.70 | |||
6 | 3/17/16 18:44 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.65 | ||
7 | 3/17/16 18:45 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 26.65 | |||
8 | 3/18/16 7:58 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.65 | |||
9 | 3/18/16 8:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.60 | ||
10 | 3/18/16 16:47 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.60 | |||
11 | 3/18/16 17:14 | Exit | Metrorail | L'Enfant Plza N | Cleveland Park | StoredValue FF | (2.55) | 21.05 | ||
12 | 3/21/16 8:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.05 | |||
13 | 3/21/16 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.00 | ||
14 | 3/21/16 18:15 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.00 | |||
15 | 3/21/16 18:46 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.95 | ||
0 | 3/22/16 7:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.95 | |||
1 | 3/22/16 8:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.90 | ||
2 | 3/22/16 11:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.90 | |||
3 | 3/22/16 11:46 | Exit | Metrorail | L'Enfant Plza N | Capitol S | StoredValue FF | (1.75) | 10.15 | ||
3 | 3/22/16 12:24 | Sale | Metrorail | Capitol S | StoredValue FF | 0.00 | 10.15 | |||
4 | 3/22/16 12:25 | Entry | Metrorail | Capitol S | StoredValue FF | 0.00 | 10.15 | |||
5 | 3/22/16 12:30 | Exit | Metrorail | Capitol S | L'Enfant Plza N | StoredValue FF | (1.75) | 8.40 | ||
6 | 3/22/16 16:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.40 | |||
7 | 3/22/16 16:50 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 5.55 | ||
7 | 3/23/16 7:24 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.55 | |||
8 | 3/23/16 7:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.55 | |||
9 | 3/23/16 7:56 | Exit | Metrorail | Tenleytown-AU | Crystal City | StoredValue FF | (3.75) | 1.80 | ||
10 | 3/23/16 16:39 | Entry | Metrorail | Crystal City | StoredValue FF | 0.00 | 1.80 | |||
10 | 3/23/16 17:14 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 1.80 | |||
11 | 3/23/16 17:16 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 26.80 | |||
12 | 3/23/16 17:17 | Exit | Metrorail | Crystal City | Tenleytown-AU | StoredValue FF | (3.75) | 23.05 | ||
13 | 3/24/16 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.05 | |||
14 | 3/24/16 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 20.00 | ||
0 | 3/24/16 10:48 | Exit | Metrorail | Capitol S | StoredValue FF | (1.75) | 18.25 | |||
1 | 3/24/16 12:20 | Entry | Metrorail | Capitol S | StoredValue FF | 0.00 | 18.25 | |||
2 | 3/24/16 12:27 | Exit | Metrorail | Capitol S | L'Enfant Plza N | StoredValue FF | (1.75) | 16.50 | ||
15 | 3/24/16 10:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.00 | |||
3 | 3/24/16 18:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.50 | |||
4 | 3/24/16 18:47 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.45 | ||
5 | 3/25/16 8:17 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.45 | |||
6 | 3/25/16 8:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.40 | ||
7 | 3/25/16 16:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.40 | |||
8 | 3/25/16 16:41 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 8.25 | ||
9 | 3/25/16 18:07 | Entry | Metrorail | Gal Plc-Chntn W | StoredValue FF | 0.00 | 8.25 | |||
10 | 3/25/16 18:26 | Exit | Metrorail | Gal Plc-Chntn W | Tenleytown-AU | StoredValue FF | (2.80) | 5.45 | ||
10 | 3/28/16 8:14 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.45 | |||
11 | 3/28/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.45 | |||
12 | 3/28/16 8:36 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.40 | ||
13 | 3/28/16 8:37 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 27.40 | |||
14 | 3/28/16 18:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.40 | |||
15 | 3/28/16 19:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 24.35 | ||
0 | 3/29/16 7:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.35 | |||
1 | 3/29/16 8:17 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 21.30 | ||
2 | 3/29/16 15:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.30 | |||
3 | 3/29/16 16:08 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 18.45 | ||
4 | 3/30/16 8:56 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.45 | |||
5 | 3/30/16 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.40 | ||
6 | 3/30/16 18:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.40 | |||
7 | 3/30/16 18:48 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 12.55 | ||
8 | 4/4/16 8:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.55 | |||
9 | 4/4/16 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.50 | ||
10 | 4/4/16 17:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.50 | |||
11 | 4/4/16 18:20 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 6.45 | ||
12 | 4/5/16 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.45 | |||
13 | 4/5/16 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.40 | ||
14 | 4/5/16 15:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.40 | |||
15 | 4/5/16 16:15 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 0.55 | ||
0 | 4/6/16 9:21 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 25.55 | |||
1 | 4/6/16 9:21 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.55 | |||
2 | 4/6/16 9:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.50 | ||
3 | 4/6/16 18:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.50 | |||
4 | 4/6/16 18:26 | Exit | Metrorail | L'Enfant Plza N | Clarendon | StoredValue FF | (2.70) | 19.80 | ||
5 | 4/7/16 8:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.80 | |||
6 | 4/7/16 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.75 | ||
7 | 4/7/16 17:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.75 | |||
8 | 4/7/16 17:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.70 | ||
9 | 4/9/16 16:47 | Entry | Metrobus | 31 - WISCONSIN AVE LIMITED 31 | StoredValue FF | (1.75) | 11.95 | |||
10 | 4/11/16 7:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.95 | |||
11 | 4/11/16 7:49 | Exit | Metrorail | Tenleytown-AU | Dupont Circle N | StoredValue FF | (2.30) | 9.65 | ||
12 | 4/18/16 8:31 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.65 | |||
13 | 4/18/16 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.60 | ||
14 | 4/19/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.60 | |||
15 | 4/19/16 8:37 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.55 | ||
0 | 4/19/16 16:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.55 | |||
1 | 4/19/16 16:48 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 0.70 | ||
2 | 4/20/16 8:33 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 25.70 | |||
3 | 4/20/16 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.70 | |||
4 | 4/20/16 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.65 | ||
5 | 4/20/16 18:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.65 | |||
6 | 4/20/16 19:04 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 19.80 | ||
7 | 4/21/16 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.80 | |||
8 | 4/21/16 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.75 | ||
9 | 4/21/16 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.75 | |||
10 | 4/21/16 17:51 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.70 | ||
11 | 4/25/16 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.70 | |||
12 | 4/25/16 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.65 | ||
13 | 4/25/16 17:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.65 | |||
14 | 4/25/16 18:12 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 7.60 | ||
0 | 4/26/16 8:08 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 4.55 | |||
15 | 4/26/16 7:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.60 | |||
1 | 4/26/16 16:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.55 | |||
2 | 4/26/16 16:35 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 1.70 | ||
3 | 4/27/16 7:55 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 25.00 | 26.70 | |||
4 | 4/27/16 7:55 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.70 | |||
5 | 4/27/16 8:46 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.65 | ||
6 | 4/27/16 17:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.65 | |||
7 | 4/27/16 17:58 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 20.80 | ||
8 | 4/28/16 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.80 | |||
9 | 4/28/16 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.75 | ||
10 | 4/28/16 15:16 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.75 | |||
11 | 4/28/16 15:26 | Exit | Metrorail | L'Enfant Plza N | Capitol S | StoredValue FF | (2.15) | 15.60 | ||
12 | 4/28/16 15:49 | Entry | Metrorail | Capitol S | StoredValue FF | 0.00 | 15.60 | |||
13 | 4/28/16 15:57 | Exit | Metrorail | Capitol S | L'Enfant Plza N | StoredValue FF | (2.15) | 13.45 | ||
0 | 4/28/16 18:33 | Entry | Metrorail | Capitol S | StoredValue FF | 0.00 | 11.30 | |||
1 | 4/28/16 18:57 | Exit | Metrorail | Capitol S | Tenleytown-AU | StoredValue FF | (3.25) | 8.05 | ||
14 | 4/28/16 18:12 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.45 | |||
15 | 4/28/16 18:19 | Exit | Metrorail | L'Enfant Plza N | Capitol S | StoredValue FF | (2.15) | 11.30 | ||
2 | 4/29/16 8:04 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.05 | |||
3 | 4/29/16 8:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.00 | ||
4 | 4/29/16 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.00 | |||
5 | 4/29/16 17:37 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.95 | ||
6 | 5/2/16 7:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 1.95 | |||
7 | 5/2/16 8:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | (1.10) | ||
8 | 5/2/16 17:21 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 26.00 | 24.90 | |||
9 | 5/2/16 17:22 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.90 | |||
10 | 5/2/16 17:51 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.85 | ||
11 | 5/3/16 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.85 | |||
12 | 5/3/16 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.80 | ||
13 | 5/3/16 15:22 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.80 | |||
14 | 5/3/16 15:46 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 15.95 | ||
15 | 5/4/16 8:18 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.95 | |||
0 | 5/4/16 8:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.90 | ||
1 | 5/4/16 17:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.90 | |||
2 | 5/4/16 17:55 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 10.05 | ||
3 | 5/5/16 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.05 | |||
4 | 5/5/16 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.00 | ||
5 | 5/5/16 17:14 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.00 | |||
6 | 5/5/16 17:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.95 | ||
7 | 5/9/16 8:10 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.95 | |||
8 | 5/9/16 8:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.90 | ||
9 | 5/9/16 17:48 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 25.00 | 25.90 | |||
10 | 5/9/16 17:48 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.90 | |||
11 | 5/9/16 18:11 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.85 | ||
12 | 5/10/16 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.85 | |||
13 | 5/10/16 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.80 | ||
14 | 5/10/16 17:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.80 | |||
15 | 5/10/16 18:07 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.75 | ||
0 | 5/11/16 7:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.75 | |||
1 | 5/11/16 8:12 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.70 | ||
2 | 5/11/16 17:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.70 | |||
3 | 5/11/16 17:57 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.65 | ||
4 | 5/12/16 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.65 | |||
5 | 5/12/16 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.60 | ||
6 | 5/12/16 18:05 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.60 | |||
7 | 5/12/16 18:31 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.55 | ||
8 | 5/13/16 8:11 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.55 | |||
9 | 5/13/16 8:35 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.50 | ||
10 | 5/13/16 17:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 1.50 | |||
11 | 5/13/16 17:38 | Exit | Metrorail | L'Enfant Plza N | Capitol S | StoredValue FF | (2.15) | (0.65) | ||
12 | 5/13/16 17:39 | Sale | Metrorail | Capitol S | StoredValue FF | 25.00 | 24.35 | |||
13 | 5/13/16 19:03 | Entry | Metrorail | Capitol S | StoredValue FF | 0.00 | 24.35 | |||
14 | 5/13/16 19:29 | Exit | Metrorail | Capitol S | Tenleytown-AU | StoredValue FF | (2.35) | 22.00 | ||
15 | 5/16/16 8:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.00 | |||
0 | 5/16/16 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.95 | ||
1 | 5/16/16 18:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.95 | |||
2 | 5/16/16 19:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 15.90 | ||
3 | 5/17/16 7:59 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.90 | |||
4 | 5/17/16 8:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.85 | ||
5 | 5/17/16 17:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.85 | |||
6 | 5/17/16 18:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.80 | ||
7 | 5/18/16 7:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.80 | |||
8 | 5/18/16 7:52 | Exit | Metrorail | Tenleytown-AU | Bethesda | StoredValue FF | (2.15) | 7.65 | ||
9 | 5/18/16 17:34 | Entry | Metrorail | Bethesda | StoredValue FF | 0.00 | 7.65 | |||
10 | 5/18/16 17:45 | Exit | Metrorail | Bethesda | Tenleytown-AU | StoredValue FF | (2.15) | 5.50 | ||
11 | 5/19/16 8:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.50 | |||
12 | 5/19/16 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.45 | ||
13 | 5/19/16 18:55 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 32.45 | |||
14 | 5/19/16 18:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.45 | |||
15 | 5/19/16 19:07 | Exit | Metrorail | L'Enfant Plza N | U St-Cardozo W | StoredValue FF | (2.15) | 30.30 | ||
0 | 5/20/16 7:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.30 | |||
1 | 5/20/16 8:08 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 27.25 | ||
2 | 5/20/16 16:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.25 | |||
3 | 5/20/16 17:18 | Exit | Metrorail | L'Enfant Plza N | Gal Plc-Chntn E | StoredValue FF | (2.15) | 25.10 | ||
4 | 5/23/16 8:35 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.10 | |||
5 | 5/23/16 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.05 | ||
6 | 5/23/16 18:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.05 | |||
7 | 5/23/16 18:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 19.00 | ||
8 | 5/24/16 8:25 | Entry | Metrobus | 37 - WISCONSIN AVE LIMITED 37 | StoredValue FF | (1.75) | 17.25 | |||
9 | 5/24/16 8:55 | Transfer | Metrorail | Dupont Circle N | StoredValue FF | 0.00 | 17.25 | |||
10 | 5/24/16 9:21 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (1.65) | 15.60 | |||
11 | 5/24/16 18:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.60 | |||
12 | 5/24/16 18:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 12.55 | ||
13 | 5/25/16 8:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.55 | |||
14 | 5/25/16 9:10 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.50 | ||
15 | 5/25/16 18:26 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.50 | |||
0 | 5/25/16 18:47 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 6.45 | ||
0 | 5/26/16 7:41 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.45 | |||
1 | 5/26/16 7:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.45 | |||
2 | 5/26/16 8:09 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.40 | ||
3 | 5/26/16 18:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.40 | |||
4 | 5/26/16 18:31 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 0.35 | ||
5 | 5/31/16 8:24 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 30.35 | |||
6 | 5/31/16 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.35 | |||
7 | 5/31/16 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 27.30 | ||
8 | 5/31/16 18:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.30 | |||
9 | 5/31/16 18:47 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 24.25 | ||
10 | 6/1/16 8:17 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.25 | |||
11 | 6/1/16 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 21.20 | ||
12 | 6/1/16 18:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.20 | |||
13 | 6/1/16 18:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 18.15 | ||
14 | 6/2/16 8:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.15 | |||
15 | 6/2/16 8:26 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.10 | ||
0 | 6/2/16 17:57 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.10 | |||
1 | 6/2/16 18:20 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 12.05 | ||
2 | 6/3/16 8:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.05 | |||
3 | 6/3/16 8:48 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.00 | ||
4 | 6/3/16 17:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.00 | |||
5 | 6/3/16 17:48 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 6.85 | ||
6 | 6/6/16 7:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.85 | |||
7 | 6/6/16 7:41 | Exit | Metrorail | Tenleytown-AU | Dupont Circle N | StoredValue FF | (2.30) | 4.55 | ||
8 | 6/6/16 18:28 | Entry | Metrorail | Dupont Circle N | StoredValue FF | 0.00 | 4.55 | |||
9 | 6/6/16 18:38 | Exit | Metrorail | Dupont Circle N | Tenleytown-AU | StoredValue FF | (2.30) | 2.25 | ||
10 | 6/7/16 7:37 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 32.25 | |||
11 | 6/7/16 7:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 32.25 | |||
12 | 6/7/16 8:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 29.20 | ||
13 | 6/7/16 18:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 29.20 | |||
14 | 6/7/16 18:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.15 | ||
15 | 6/8/16 7:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.15 | |||
0 | 6/8/16 8:09 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 23.10 | |||
1 | 6/8/16 17:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.10 | |||
2 | 6/8/16 18:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 20.05 | ||
3 | 6/9/16 7:51 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.05 | |||
4 | 6/9/16 8:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.00 | ||
5 | 6/9/16 17:21 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.00 | |||
6 | 6/9/16 17:43 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.95 | ||
7 | 6/10/16 7:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.95 | |||
8 | 6/10/16 8:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.90 | ||
9 | 6/10/16 14:04 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.90 | |||
10 | 6/10/16 14:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.35) | 8.55 | ||
11 | 6/13/16 8:11 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.55 | |||
12 | 6/13/16 8:37 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.50 | ||
13 | 6/13/16 17:52 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.50 | |||
14 | 6/13/16 18:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 2.45 | ||
15 | 6/14/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 2.45 | |||
0 | 6/14/16 9:03 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | (0.60) | |||
1 | 6/14/16 9:04 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 29.40 | |||
2 | 6/14/16 16:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 29.40 | |||
3 | 6/14/16 17:09 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.35 | ||
4 | 6/15/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.35 | |||
5 | 6/15/16 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.30 | ||
6 | 6/15/16 15:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.30 | |||
7 | 6/15/16 15:39 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 20.25 | ||
8 | 6/16/16 8:51 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.25 | |||
9 | 6/16/16 9:34 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.20 | ||
10 | 6/16/16 17:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.20 | |||
11 | 6/16/16 18:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.15 | ||
12 | 6/20/16 7:49 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.15 | |||
13 | 6/20/16 8:17 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.10 | ||
14 | 6/20/16 18:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.10 | |||
15 | 6/20/16 18:56 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 8.05 | ||
0 | 6/21/16 8:09 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.05 | |||
1 | 6/21/16 8:38 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.00 | ||
2 | 6/21/16 17:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.00 | |||
3 | 6/21/16 18:08 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.95 | ||
4 | 6/21/16 18:09 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 31.95 | |||
5 | 6/22/16 8:00 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.95 | |||
6 | 6/22/16 8:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 28.90 | ||
2 | 7/1/16 7:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.30 | |||
3 | 7/1/16 8:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.25 | ||
4 | 7/1/16 15:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.25 | |||
5 | 7/1/16 16:12 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.20 | ||
6 | 7/5/16 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.20 | |||
7 | 7/5/16 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.15 | ||
8 | 7/5/16 17:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.15 | |||
9 | 7/5/16 18:04 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 8.10 | ||
10 | 7/6/16 7:59 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.10 | |||
11 | 7/6/16 8:23 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.05 | ||
12 | 7/6/16 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.05 | |||
13 | 7/6/16 17:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 2.00 | ||
14 | 7/7/16 8:07 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 32.00 | |||
15 | 7/7/16 8:08 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 32.00 | |||
0 | 7/7/16 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 28.95 | ||
1 | 7/7/16 16:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.95 | |||
2 | 7/7/16 16:46 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 26.80 | ||
3 | 7/8/16 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.80 | |||
4 | 7/8/16 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.75 | ||
5 | 7/8/16 14:21 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.75 | |||
6 | 7/8/16 14:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.35) | 21.40 | ||
7 | 7/11/16 16:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.40 | |||
8 | 7/11/16 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 18.35 | ||
9 | 7/12/16 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.35 | |||
10 | 7/12/16 8:37 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.30 | ||
11 | 7/12/16 16:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.30 | |||
12 | 7/12/16 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 12.25 | ||
13 | 7/13/16 7:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.25 | |||
14 | 7/13/16 8:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.20 | ||
0 | 7/13/16 16:25 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 6.15 | |||
15 | 7/13/16 16:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.20 | |||
0 | 7/14/16 8:06 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.15 | |||
1 | 7/14/16 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.15 | |||
2 | 7/14/16 8:35 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.10 | ||
3 | 7/14/16 17:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.10 | |||
4 | 7/14/16 17:39 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 0.05 | ||
5 | 7/18/16 8:21 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 30.05 | |||
6 | 7/18/16 8:21 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.05 | |||
7 | 7/18/16 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 27.00 | ||
8 | 7/18/16 17:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.00 | |||
9 | 7/18/16 17:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 23.95 | ||
10 | 7/19/16 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.95 | |||
11 | 7/19/16 8:31 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 20.90 | ||
12 | 7/19/16 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.90 | |||
13 | 7/19/16 17:26 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 17.85 | ||
14 | 7/20/16 8:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.85 | |||
15 | 7/20/16 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 14.80 | ||
0 | 7/20/16 17:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.80 | |||
1 | 7/20/16 18:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 11.75 | ||
2 | 7/21/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.75 | |||
3 | 7/21/16 8:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.70 | ||
4 | 7/21/16 17:05 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.70 | |||
5 | 7/21/16 17:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 5.65 | ||
6 | 7/25/16 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.65 | |||
7 | 7/25/16 8:46 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.60 | ||
8 | 7/25/16 17:12 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 32.60 | |||
9 | 7/25/16 17:12 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.60 | |||
10 | 7/25/16 17:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 29.55 | ||
11 | 7/26/16 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.55 | |||
12 | 7/26/16 8:57 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.50 | ||
13 | 7/26/16 17:16 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.50 | |||
14 | 7/26/16 17:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 23.45 | ||
0 | 7/28/16 9:12 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 20.40 | |||
15 | 7/28/16 8:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.45 | |||
1 | 7/28/16 17:47 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.40 | |||
2 | 7/28/16 18:11 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 17.35 | ||
3 | 7/29/16 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.35 | |||
4 | 7/29/16 9:09 | Exit | Metrorail | Tenleytown-AU | Ballston | StoredValue FF | (3.60) | 13.75 | ||
5 | 7/29/16 16:47 | Entry | Metrorail | Grosvenor | StoredValue FF | 0.00 | 13.75 | |||
6 | 7/29/16 17:02 | Exit | Metrorail | Grosvenor | Tenleytown-AU | StoredValue FF | (3.05) | 10.70 | ||
7 | 8/1/16 8:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.70 | |||
8 | 8/1/16 9:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.65 | ||
9 | 8/1/16 17:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.65 | |||
10 | 8/1/16 17:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.60 | ||
11 | 8/2/16 8:37 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 34.60 | |||
12 | 8/2/16 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 34.60 | |||
13 | 8/2/16 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 31.55 | ||
14 | 8/2/16 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.55 | |||
15 | 8/2/16 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 28.50 | ||
0 | 8/3/16 8:29 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.50 | |||
1 | 8/3/16 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 25.45 | ||
2 | 8/3/16 17:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.45 | |||
3 | 8/3/16 18:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.40 | ||
4 | 8/4/16 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.40 | |||
5 | 8/4/16 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.35 | ||
6 | 8/4/16 17:15 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.35 | |||
7 | 8/4/16 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.30 | ||
8 | 8/9/16 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.30 | |||
9 | 8/9/16 9:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.25 | ||
10 | 8/9/16 16:59 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.25 | |||
11 | 8/9/16 17:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.20 | ||
12 | 8/10/16 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.20 | |||
13 | 8/10/16 8:58 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.15 | ||
14 | 8/10/16 16:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.15 | |||
15 | 8/10/16 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.10 | ||
0 | 8/11/16 9:01 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.10 | |||
1 | 8/11/16 9:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.05 | ||
1 | 8/11/16 17:23 | Sale Cancelled Trans | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 1.05 | |||
1 | 8/11/16 17:23 | Sale Cancelled Trans | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 1.05 | |||
1 | 8/11/16 17:26 | Sale Cancelled Trans | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 31.05 | |||
2 | 8/11/16 17:26 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 31.05 | |||
3 | 8/11/16 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.05 | |||
4 | 8/11/16 17:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 28.00 | ||
5 | 8/12/16 9:08 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.00 | |||
6 | 8/12/16 9:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.95 | ||
7 | 8/12/16 16:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.95 | |||
8 | 8/12/16 16:55 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.90 | ||
9 | 8/16/16 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.90 | |||
10 | 8/16/16 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.85 | ||
11 | 8/16/16 17:02 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.85 | |||
12 | 8/16/16 17:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 15.80 | ||
13 | 8/17/16 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.80 | |||
14 | 8/17/16 8:54 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.75 | ||
15 | 8/17/16 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.75 | |||
0 | 8/17/16 17:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.70 | ||
1 | 8/18/16 7:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.70 | |||
2 | 8/18/16 8:35 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.65 | ||
3 | 8/18/16 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.65 | |||
4 | 8/18/16 17:23 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.60 | ||
5 | 8/19/16 8:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.60 | |||
6 | 8/19/16 9:12 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.55 | ||
7 | 8/19/16 16:51 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 30.55 | |||
8 | 8/19/16 16:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.55 | |||
9 | 8/19/16 17:03 | Exit | Metrorail | L'Enfant Plza N | Pentagon City | StoredValue FF | (2.15) | 28.40 | ||
10 | 8/22/16 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.40 | |||
11 | 8/22/16 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 25.35 | ||
12 | 8/22/16 16:59 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.35 | |||
13 | 8/22/16 17:21 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.30 | ||
14 | 8/23/16 7:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.30 | |||
15 | 8/23/16 8:09 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.25 | ||
0 | 8/23/16 16:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.25 | |||
1 | 8/23/16 16:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.20 | ||
2 | 8/24/16 7:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.20 | |||
3 | 8/24/16 8:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.15 | ||
4 | 8/24/16 16:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.15 | |||
5 | 8/24/16 17:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.10 | ||
6 | 8/25/16 7:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.10 | |||
7 | 8/25/16 8:10 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.05 | ||
8 | 8/25/16 17:00 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.05 | |||
9 | 8/25/16 17:35 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.00 | ||
9 | 8/26/16 7:47 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.00 | |||
10 | 8/26/16 7:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.00 | |||
11 | 8/26/16 8:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.95 | ||
12 | 8/26/16 15:21 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 30.95 | |||
13 | 8/26/16 15:21 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.95 | |||
14 | 8/26/16 15:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 27.90 | ||
15 | 8/29/16 7:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.90 | |||
0 | 8/29/16 8:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.85 | ||
1 | 8/29/16 16:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.85 | |||
2 | 8/29/16 16:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.80 | ||
3 | 8/30/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.80 | |||
4 | 8/30/16 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.75 | ||
5 | 8/30/16 17:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.75 | |||
6 | 8/30/16 18:18 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 15.70 | ||
7 | 8/31/16 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.70 | |||
8 | 8/31/16 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.65 | ||
9 | 8/31/16 18:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.65 | |||
10 | 8/31/16 18:51 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 9.80 | ||
11 | 9/1/16 8:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.80 | |||
12 | 9/1/16 8:58 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.75 | ||
13 | 9/1/16 18:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.75 | |||
14 | 9/1/16 19:13 | Exit | Metrorail | L'Enfant Plza N | Clarendon | StoredValue FF | (2.70) | 4.05 | ||
15 | 9/6/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.05 | |||
0 | 9/6/16 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.00 | ||
1 | 9/6/16 8:41 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 31.00 | |||
2 | 9/6/16 16:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.00 | |||
3 | 9/6/16 17:14 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 27.95 | ||
4 | 9/12/16 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.95 | |||
5 | 9/12/16 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.90 | ||
6 | 9/12/16 17:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.90 | |||
7 | 9/12/16 17:35 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.85 | ||
8 | 9/13/16 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.85 | |||
9 | 9/13/16 9:14 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.80 | ||
10 | 9/13/16 17:04 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.80 | |||
11 | 9/13/16 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 15.75 | ||
12 | 9/19/16 8:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.75 | |||
13 | 9/19/16 9:08 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.70 | ||
14 | 9/19/16 16:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.70 | |||
15 | 9/19/16 17:09 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.65 | ||
0 | 9/20/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.65 | |||
1 | 9/20/16 8:43 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.60 | ||
2 | 9/20/16 17:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.60 | |||
3 | 9/20/16 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.55 | ||
4 | 9/26/16 8:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.55 | |||
5 | 9/26/16 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 0.50 | ||
6 | 9/26/16 9:06 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 30.50 | |||
7 | 9/26/16 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.50 | |||
8 | 9/26/16 17:21 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 27.45 | ||
9 | 9/27/16 7:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.45 | |||
10 | 9/27/16 8:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.40 | ||
11 | 9/27/16 16:37 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.40 | |||
12 | 9/27/16 17:01 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.35 | ||
13 | 10/3/16 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.35 | |||
14 | 10/3/16 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.30 | ||
0 | 10/3/16 18:59 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 15.25 | |||
15 | 10/3/16 18:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.30 | |||
1 | 10/4/16 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.25 | |||
2 | 10/4/16 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.20 | ||
3 | 10/4/16 17:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.20 | |||
4 | 10/4/16 17:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.15 | ||
5 | 10/11/16 8:19 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.15 | |||
6 | 10/11/16 8:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.10 | ||
7 | 10/11/16 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.10 | |||
8 | 10/11/16 17:27 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.05 | ||
8 | 10/17/16 7:38 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.05 | |||
9 | 10/17/16 7:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.05 | |||
10 | 10/17/16 8:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza W | StoredValue FF | (3.05) | 0.00 | ||
11 | 10/17/16 18:40 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 30.00 | |||
12 | 10/17/16 18:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.00 | |||
13 | 10/17/16 19:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.95 | ||
14 | 10/18/16 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.95 | |||
15 | 10/18/16 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.90 | ||
0 | 10/18/16 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.90 | |||
1 | 10/18/16 17:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 20.85 | ||
2 | 10/24/16 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.85 | |||
3 | 10/24/16 9:12 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.80 | ||
4 | 10/24/16 18:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.80 | |||
5 | 10/24/16 18:54 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 14.75 | ||
6 | 10/25/16 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.75 | |||
7 | 10/25/16 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.70 | ||
8 | 10/25/16 18:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.70 | |||
9 | 10/25/16 19:11 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 8.65 | ||
9 | 10/29/16 19:22 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.65 | |||
10 | 10/31/16 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.65 | |||
11 | 10/31/16 9:29 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.60 | ||
12 | 10/31/16 17:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.60 | |||
13 | 10/31/16 18:23 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 2.55 | ||
14 | 10/31/16 18:23 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 32.55 | |||
0 | 11/1/16 9:03 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 29.50 | |||
15 | 11/1/16 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 32.55 | |||
1 | 11/1/16 17:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 29.50 | |||
2 | 11/1/16 18:19 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.45 | ||
3 | 11/7/16 8:10 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.45 | |||
4 | 11/7/16 8:43 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.40 | ||
5 | 11/7/16 17:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.40 | |||
6 | 11/7/16 18:05 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 21.25 | ||
6 | 11/17/16 8:45 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.25 | |||
7 | 11/17/16 8:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.25 | |||
8 | 11/17/16 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.20 | ||
9 | 11/17/16 18:26 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.20 | |||
10 | 11/17/16 18:59 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 15.35 | ||
11 | 11/18/16 8:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.35 | |||
12 | 11/18/16 9:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 12.30 | ||
13 | 11/18/16 18:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.30 | |||
14 | 11/18/16 18:44 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 9.25 | ||
0 | 11/21/16 9:13 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 6.20 | |||
15 | 11/21/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.25 | |||
1 | 11/21/16 18:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.20 | |||
2 | 11/21/16 18:51 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 4.05 | ||
3 | 11/22/16 8:40 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 34.05 | |||
4 | 11/22/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 34.05 | |||
5 | 11/22/16 9:10 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 31.00 | ||
5 | 11/28/16 8:48 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.00 | |||
6 | 11/28/16 8:49 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.00 | |||
7 | 11/28/16 9:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 27.95 | ||
8 | 11/28/16 18:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.95 | |||
9 | 11/28/16 18:51 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 25.80 | ||
10 | 11/29/16 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.80 | |||
11 | 11/29/16 9:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.75 | ||
12 | 11/29/16 18:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.75 | |||
13 | 11/29/16 19:19 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 19.70 | ||
14 | 11/30/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.70 | |||
15 | 11/30/16 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.65 | ||
0 | 11/30/16 18:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.65 | |||
1 | 11/30/16 18:53 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 13.80 | ||
2 | 12/1/16 8:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.80 | |||
3 | 12/1/16 9:10 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.75 | ||
4 | 12/1/16 19:15 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.75 | |||
5 | 12/1/16 19:30 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (1.75) | 9.00 | ||
5 | 12/5/16 9:00 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.00 | |||
6 | 12/5/16 9:00 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.00 | |||
7 | 12/5/16 9:21 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.95 | ||
8 | 12/5/16 16:53 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.95 | |||
9 | 12/5/16 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 2.90 | ||
9 | 12/6/16 8:14 | Sale Cancelled Trans | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 2.90 | |||
10 | 12/6/16 8:15 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 32.90 | |||
11 | 12/6/16 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 32.90 | |||
12 | 12/6/16 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 29.85 | ||
13 | 12/6/16 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 29.85 | |||
14 | 12/6/16 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.80 | ||
0 | 12/7/16 9:02 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 23.75 | |||
15 | 12/7/16 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.80 | |||
1 | 12/7/16 17:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.75 | |||
2 | 12/7/16 17:50 | Exit | Metrorail | L'Enfant Plza N | Va Sq-GMU | StoredValue FF | (2.85) | 20.90 | ||
3 | 12/8/16 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.90 | |||
4 | 12/8/16 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 17.85 | ||
5 | 12/8/16 16:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.85 | |||
6 | 12/8/16 16:54 | Exit | Metrorail | L'Enfant Plza N | King St | StoredValue FF | (3.35) | 14.50 | ||
7 | 12/12/16 8:40 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.50 | |||
8 | 12/12/16 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.45 | ||
9 | 12/12/16 18:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.45 | |||
10 | 12/12/16 18:49 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 9.30 | ||
11 | 12/13/16 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.30 | |||
12 | 12/13/16 8:57 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 6.25 | ||
13 | 12/13/16 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.25 | |||
14 | 12/13/16 17:36 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 3.20 | ||
0 | 12/14/16 9:12 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 0.15 | |||
15 | 12/14/16 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.20 | |||
1 | 12/14/16 18:16 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 30.15 | |||
2 | 12/14/16 18:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.15 | |||
3 | 12/14/16 18:29 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 28.00 | ||
4 | 12/15/16 8:34 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.00 | |||
5 | 12/15/16 9:08 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.95 | ||
6 | 12/15/16 17:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.95 | |||
7 | 12/15/16 18:13 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.90 | ||
8 | 12/19/16 17:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.90 | |||
9 | 12/19/16 17:51 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 18.85 | ||
10 | 12/20/16 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.85 | |||
11 | 12/20/16 9:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.80 | ||
12 | 12/20/16 18:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.80 | |||
13 | 12/20/16 18:58 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 13.65 | ||
14 | 12/21/16 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.65 | |||
15 | 12/21/16 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.60 | ||
0 | 12/21/16 18:02 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.60 | |||
1 | 12/21/16 18:28 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 7.55 | ||
2 | 1/3/17 9:05 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.55 | |||
3 | 1/3/17 9:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 4.50 | ||
4 | 1/3/17 17:11 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.50 | |||
5 | 1/3/17 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.45 | ||
6 | 1/4/17 9:02 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 31.45 | |||
7 | 1/4/17 9:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.45 | |||
8 | 1/4/17 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 28.40 | ||
9 | 1/4/17 18:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.40 | |||
10 | 1/4/17 18:31 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 26.25 | ||
11 | 1/5/17 8:56 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.25 | |||
12 | 1/5/17 9:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 23.20 | ||
13 | 1/5/17 17:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.20 | |||
14 | 1/5/17 17:41 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 20.15 | ||
15 | 1/9/17 9:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.15 | |||
0 | 1/9/17 9:40 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 17.10 | |||
1 | 1/9/17 17:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.10 | |||
2 | 1/9/17 17:36 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 14.95 | ||
3 | 1/10/17 8:12 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.95 | |||
4 | 1/10/17 8:35 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 11.90 | ||
5 | 1/10/17 16:52 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.90 | |||
6 | 1/10/17 17:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 8.85 | ||
7 | 1/11/17 8:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.85 | |||
8 | 1/11/17 8:59 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 5.80 | ||
9 | 1/11/17 18:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.80 | |||
10 | 1/11/17 19:17 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 3.65 | ||
11 | 1/12/17 8:36 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 33.65 | |||
12 | 1/12/17 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 33.65 | |||
13 | 1/12/17 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 30.60 | ||
14 | 1/12/17 16:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.60 | |||
15 | 1/12/17 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 27.55 | ||
0 | 1/17/17 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.55 | |||
1 | 1/17/17 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 24.50 | ||
2 | 1/17/17 17:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.50 | |||
3 | 1/17/17 17:46 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 21.45 | ||
4 | 1/18/17 7:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.45 | |||
5 | 1/18/17 8:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 18.40 | ||
6 | 1/18/17 17:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 18.40 | |||
7 | 1/18/17 17:55 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 16.25 | ||
8 | 1/20/17 10:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.25 | |||
9 | 1/20/17 10:28 | Exit | Metrorail | Tenleytown-AU | Grosvenor | StoredValue FF | (3.05) | 13.20 | ||
10 | 1/20/17 15:07 | Entry | Metrorail | Grosvenor | StoredValue FF | 0.00 | 13.20 | |||
11 | 1/20/17 15:22 | Exit | Metrorail | Grosvenor | Rockville | StoredValue FF | (2.60) | 10.60 | ||
12 | 1/23/17 8:12 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.60 | |||
13 | 1/23/17 8:40 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.55 | ||
14 | 1/23/17 18:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.55 | |||
15 | 1/23/17 18:34 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 5.40 | ||
0 | 1/25/17 8:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.40 | |||
1 | 1/25/17 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.35 | ||
2 | 1/25/17 18:40 | Sale | Metrorail | L'Enfant Plza N | StoredValue FF | 30.00 | 32.35 | |||
3 | 1/25/17 18:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.35 | |||
4 | 1/25/17 19:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 29.30 | ||
5 | 1/26/17 8:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.30 | |||
6 | 1/26/17 8:53 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.25 | ||
7 | 1/26/17 17:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.25 | |||
8 | 1/26/17 18:30 | Exit | Metrorail | L'Enfant Plza N | Court House | StoredValue FF | (2.55) | 23.70 | ||
9 | 1/30/17 9:12 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.70 | |||
10 | 1/30/17 9:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 20.65 | ||
11 | 1/30/17 18:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.65 | |||
12 | 1/30/17 19:16 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 17.60 | ||
13 | 1/31/17 8:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.60 | |||
14 | 1/31/17 8:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 14.55 | ||
15 | 1/31/17 16:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.55 | |||
0 | 1/31/17 17:11 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 11.50 | |||
1 | 2/1/17 8:21 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.50 | |||
2 | 2/1/17 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.45 | ||
3 | 2/1/17 16:47 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.45 | |||
4 | 2/1/17 16:59 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 6.30 | ||
5 | 2/6/17 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.30 | |||
6 | 2/6/17 9:17 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 3.25 | ||
7 | 2/6/17 18:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.25 | |||
9 | 2/7/17 8:26 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 31.10 | |||
10 | 2/7/17 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.10 | |||
11 | 2/7/17 8:51 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 28.05 | ||
12 | 2/7/17 17:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.05 | |||
13 | 2/7/17 17:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 25.00 | ||
14 | 2/8/17 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.00 | |||
15 | 2/8/17 8:46 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 21.95 | ||
0 | 2/8/17 17:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 21.95 | |||
1 | 2/8/17 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 18.90 | ||
2 | 2/9/17 8:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 18.90 | |||
3 | 2/9/17 9:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 15.85 | ||
4 | 2/9/17 17:32 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 15.85 | |||
5 | 2/9/17 18:01 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 12.80 | ||
6 | 2/13/17 8:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.80 | |||
7 | 2/13/17 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 9.75 | ||
8 | 2/13/17 17:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.75 | |||
9 | 2/13/17 17:45 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (2.15) | 7.60 | ||
10 | 2/14/17 8:18 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.60 | |||
11 | 2/14/17 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 4.55 | ||
12 | 2/14/17 16:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.55 | |||
13 | 2/14/17 17:08 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.50 | ||
14 | 2/14/17 17:08 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 31.50 | |||
15 | 2/15/17 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.50 | |||
0 | 2/15/17 9:03 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 28.45 | |||
1 | 2/15/17 17:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.45 | |||
2 | 2/15/17 18:11 | Exit | Metrorail | L'Enfant Plza N | Ballston | StoredValue FF | (3.05) | 25.40 | ||
3 | 2/16/17 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.40 | |||
4 | 2/16/17 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.35 | ||
5 | 2/16/17 17:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.35 | |||
6 | 2/16/17 18:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 19.30 | ||
7 | 2/21/17 8:32 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.30 | |||
8 | 2/21/17 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.25 | ||
9 | 2/21/17 16:59 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.25 | |||
10 | 2/21/17 17:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.20 | ||
11 | 2/22/17 8:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.20 | |||
12 | 2/22/17 9:21 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.15 | ||
13 | 2/22/17 17:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.15 | |||
14 | 2/22/17 17:46 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 7.10 | ||
15 | 2/23/17 8:35 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.10 | |||
0 | 2/23/17 9:03 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 4.05 | |||
1 | 2/23/17 17:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.05 | |||
2 | 2/23/17 17:54 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.00 | ||
3 | 2/27/17 9:02 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 31.00 | |||
4 | 2/27/17 9:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.00 | |||
5 | 2/27/17 9:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 27.95 | ||
6 | 2/27/17 18:08 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.95 | |||
7 | 2/27/17 18:25 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 25.80 | ||
8 | 2/28/17 17:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.80 | |||
9 | 2/28/17 17:24 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.75 | ||
10 | 3/1/17 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.75 | |||
11 | 3/1/17 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.70 | ||
12 | 3/1/17 17:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.70 | |||
13 | 3/1/17 17:41 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.65 | ||
14 | 3/2/17 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.65 | |||
15 | 3/2/17 9:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.60 | ||
0 | 3/2/17 20:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.60 | |||
1 | 3/2/17 20:41 | Exit | Metrorail | L'Enfant Plza N | Gal Pl-Chntwn N | StoredValue FF | (1.75) | 11.85 | ||
2 | 3/6/17 8:51 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.85 | |||
3 | 3/6/17 9:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.80 | ||
4 | 3/6/17 17:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.80 | |||
5 | 3/6/17 17:41 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 5.75 | ||
6 | 3/7/17 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.75 | |||
7 | 3/7/17 8:54 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.70 | ||
8 | 3/7/17 16:59 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 2.70 | |||
9 | 3/7/17 17:26 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | (0.35) | ||
10 | 3/7/17 17:26 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 29.65 | |||
11 | 3/8/17 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.65 | |||
12 | 3/8/17 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.60 | ||
13 | 3/8/17 16:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.60 | |||
14 | 3/8/17 16:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 23.55 | ||
15 | 3/9/17 8:29 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.55 | |||
0 | 3/9/17 8:55 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 20.50 | |||
1 | 3/9/17 16:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.50 | |||
2 | 3/9/17 17:13 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 17.45 | ||
3 | 3/13/17 8:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.45 | |||
4 | 3/13/17 9:23 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 14.40 | ||
5 | 3/13/17 17:15 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.40 | |||
6 | 3/13/17 17:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 11.35 | ||
7 | 3/15/17 8:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.35 | |||
8 | 3/15/17 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.30 | ||
9 | 3/15/17 16:58 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.30 | |||
10 | 3/15/17 17:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 5.25 | ||
11 | 3/16/17 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.25 | |||
12 | 3/16/17 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.20 | ||
13 | 3/16/17 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 2.20 | |||
14 | 3/16/17 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | (0.85) | ||
15 | 3/16/17 17:18 | Sale | Metrorail | Tenleytown-AU | StoredValue FF | 30.00 | 29.15 | |||
0 | 3/20/17 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.15 | |||
1 | 3/20/17 9:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.10 | ||
2 | 3/20/17 17:08 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.10 | |||
3 | 3/20/17 17:34 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 23.05 | ||
4 | 4/12/17 7:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.05 | |||
5 | 4/12/17 7:54 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 20.00 | ||
6 | 4/12/17 16:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.00 | |||
7 | 4/12/17 16:43 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.95 | ||
8 | 4/13/17 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.95 | |||
9 | 4/13/17 8:45 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.90 | ||
10 | 4/13/17 17:09 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.90 | |||
11 | 4/13/17 17:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.85 | ||
12 | 4/17/17 8:08 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.85 | |||
13 | 4/17/17 8:32 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.80 | ||
14 | 4/17/17 16:21 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.80 | |||
15 | 4/17/17 16:47 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.75 | ||
0 | 4/18/17 8:11 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.75 | |||
1 | 4/18/17 8:38 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.70 | ||
3 | 4/18/17 16:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.70 | |||
4 | 4/18/17 16:51 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 28.65 | ||
5 | 4/19/17 8:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.65 | |||
6 | 4/19/17 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 25.60 | ||
7 | 4/19/17 16:51 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.60 | |||
8 | 4/19/17 17:13 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.55 | ||
9 | 4/20/17 7:56 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.55 | |||
10 | 4/20/17 8:21 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza W | StoredValue FF | (3.05) | 19.50 | ||
11 | 4/20/17 17:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.50 | |||
12 | 4/20/17 17:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.45 | ||
13 | 5/1/17 7:58 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.45 | |||
14 | 5/1/17 8:26 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.40 | ||
0 | 5/1/17 16:54 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 10.35 | |||
15 | 5/1/17 16:34 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.40 | |||
1 | 5/2/17 7:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.35 | |||
2 | 5/2/17 8:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.30 | ||
3 | 5/2/17 18:02 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.30 | |||
4 | 5/2/17 18:16 | Exit | Metrorail | L'Enfant Plza N | Crystal City | StoredValue FF | (2.15) | 5.15 | ||
5 | 5/3/17 8:15 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.15 | |||
6 | 5/3/17 8:41 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.10 | ||
8 | 5/3/17 16:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.10 | |||
9 | 5/3/17 17:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 29.05 | ||
10 | 5/4/17 17:14 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 29.05 | |||
11 | 5/4/17 17:37 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 26.00 | ||
12 | 5/8/17 8:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 26.00 | |||
13 | 5/8/17 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 22.95 | ||
14 | 5/8/17 17:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.95 | |||
15 | 5/8/17 17:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 19.90 | ||
0 | 5/10/17 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.90 | |||
1 | 5/10/17 8:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 16.85 | ||
2 | 5/10/17 16:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.85 | |||
3 | 5/10/17 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 13.80 | ||
4 | 5/11/17 8:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.80 | |||
5 | 5/11/17 8:37 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 10.75 | ||
6 | 5/11/17 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 10.75 | |||
7 | 5/11/17 17:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 7.70 | ||
8 | 5/15/17 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 7.70 | |||
9 | 5/15/17 8:57 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 4.65 | ||
10 | 5/15/17 17:12 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 4.65 | |||
11 | 5/15/17 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 1.60 | ||
13 | 5/17/17 7:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.60 | |||
14 | 5/17/17 8:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.55 | ||
0 | 5/17/17 17:43 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.05) | 5.50 | |||
15 | 5/17/17 17:22 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.55 | |||
1 | 5/18/17 8:04 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.50 | |||
2 | 5/18/17 8:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 2.45 | ||
4 | 5/18/17 16:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.45 | |||
5 | 5/18/17 16:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 29.40 | ||
6 | 5/22/17 8:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.40 | |||
7 | 5/22/17 8:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 26.35 | ||
8 | 5/22/17 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.35 | |||
9 | 5/22/17 17:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 23.30 | ||
10 | 5/23/17 7:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.30 | |||
11 | 5/23/17 7:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 20.25 | ||
12 | 5/23/17 16:59 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.25 | |||
13 | 5/23/17 17:23 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 17.20 | ||
14 | 5/24/17 7:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.20 | |||
15 | 5/24/17 8:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 14.15 | ||
0 | 5/24/17 16:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.15 | |||
1 | 5/24/17 16:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 11.10 | ||
2 | 5/25/17 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.10 | |||
3 | 5/25/17 8:29 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 8.05 | ||
4 | 5/25/17 16:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.05 | |||
5 | 5/25/17 16:26 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 5.00 | ||
6 | 5/30/17 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.00 | |||
7 | 5/30/17 8:45 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.95 | ||
9 | 5/30/17 16:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.95 | |||
10 | 5/30/17 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 28.90 | ||
11 | 5/31/17 7:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.90 | |||
12 | 5/31/17 8:08 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 25.85 | ||
13 | 5/31/17 17:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.85 | |||
14 | 5/31/17 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.80 | ||
0 | 6/1/17 8:37 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.05) | 19.75 | |||
15 | 6/1/17 8:09 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.80 | |||
1 | 6/1/17 15:57 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.75 | |||
2 | 6/1/17 16:22 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.70 | ||
3 | 6/5/17 8:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.70 | |||
4 | 6/5/17 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.65 | ||
5 | 6/5/17 17:08 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.65 | |||
6 | 6/5/17 17:31 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.60 | ||
7 | 6/7/17 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.60 | |||
8 | 6/7/17 8:51 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.55 | ||
9 | 6/7/17 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.55 | |||
10 | 6/7/17 17:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 4.50 | ||
11 | 6/8/17 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.50 | |||
12 | 6/8/17 8:26 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.45 | ||
14 | 6/8/17 17:37 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.45 | |||
15 | 6/8/17 17:37 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.45 | |||
0 | 6/8/17 17:59 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 28.40 | ||
1 | 6/12/17 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.40 | |||
2 | 6/12/17 8:51 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 25.35 | ||
3 | 6/12/17 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.35 | |||
4 | 6/12/17 17:07 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 22.30 | ||
5 | 6/14/17 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.30 | |||
6 | 6/14/17 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 19.25 | ||
7 | 6/14/17 18:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.25 | |||
8 | 6/14/17 19:14 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 16.20 | ||
9 | 6/19/17 8:51 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.20 | |||
10 | 6/19/17 9:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 13.15 | ||
11 | 6/19/17 18:16 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.15 | |||
12 | 6/19/17 18:44 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.05) | 10.10 | ||
13 | 6/20/17 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.10 | |||
14 | 6/20/17 8:56 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 7.05 | ||
0 | 6/20/17 18:18 | Exit | Metrorail | McPherson Sq W | StoredValue FF | (2.15) | 4.90 | |||
15 | 6/20/17 18:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 7.05 | |||
1 | 6/22/17 8:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.90 | |||
2 | 6/22/17 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.05) | 1.85 | ||
4 | 7/5/17 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.85 | |||
5 | 7/5/17 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 28.70 | ||
6 | 7/5/17 18:16 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.70 | |||
7 | 7/5/17 18:41 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 25.55 | ||
8 | 7/6/17 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.55 | |||
9 | 7/6/17 9:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 22.40 | ||
10 | 7/6/17 17:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.40 | |||
11 | 7/6/17 17:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 19.25 | ||
12 | 7/10/17 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.25 | |||
13 | 7/10/17 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 16.10 | ||
14 | 7/10/17 17:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.10 | |||
15 | 7/10/17 17:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 12.95 | ||
0 | 7/11/17 8:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.95 | |||
1 | 7/11/17 9:14 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 9.80 | ||
2 | 7/11/17 17:02 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.80 | |||
3 | 7/11/17 17:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 6.65 | ||
4 | 7/13/17 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.65 | |||
5 | 7/13/17 8:48 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 3.50 | ||
6 | 7/13/17 17:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.50 | |||
7 | 7/13/17 17:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 0.35 | ||
9 | 7/17/17 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.35 | |||
10 | 7/17/17 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 27.20 | ||
11 | 7/17/17 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.20 | |||
12 | 7/17/17 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 24.05 | ||
13 | 7/20/17 8:56 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.05 | |||
14 | 7/20/17 9:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 20.90 | ||
0 | 7/20/17 16:58 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.15) | 17.75 | |||
15 | 7/20/17 16:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.90 | |||
1 | 7/24/17 9:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.75 | |||
2 | 7/24/17 9:40 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 14.60 | ||
3 | 7/24/17 17:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.60 | |||
4 | 7/24/17 17:51 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 11.45 | ||
5 | 7/26/17 9:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.45 | |||
6 | 7/26/17 9:31 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 8.30 | ||
7 | 7/26/17 17:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.30 | |||
8 | 7/26/17 17:46 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 5.15 | ||
9 | 7/28/17 8:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.15 | |||
10 | 7/28/17 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 2.00 | ||
12 | 7/28/17 14:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.00 | |||
13 | 7/28/17 15:18 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.60) | 29.40 | ||
14 | 7/31/17 8:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 29.40 | |||
15 | 7/31/17 9:13 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 26.25 | ||
0 | 7/31/17 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.25 | |||
1 | 7/31/17 17:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 23.10 | ||
2 | 8/1/17 8:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.10 | |||
3 | 8/1/17 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 19.95 | ||
4 | 8/1/17 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.95 | |||
5 | 8/1/17 17:13 | Exit | Metrorail | L'Enfant Plza N | Shaw-Hwrd U N | StoredValue FF | (2.25) | 17.70 | ||
6 | 8/3/17 8:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.70 | |||
7 | 8/3/17 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 14.55 | ||
8 | 8/3/17 17:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.55 | |||
9 | 8/3/17 17:43 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 11.40 | ||
10 | 8/7/17 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.40 | |||
11 | 8/7/17 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 8.25 | ||
12 | 8/7/17 18:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.25 | |||
13 | 8/7/17 18:30 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 5.10 | ||
14 | 8/8/17 7:55 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.10 | |||
15 | 8/8/17 8:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 1.95 | ||
1 | 8/8/17 16:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.95 | |||
2 | 8/8/17 16:47 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 28.80 | ||
3 | 8/9/17 8:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.80 | |||
4 | 8/9/17 9:08 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 25.65 | ||
5 | 8/9/17 17:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.65 | |||
6 | 8/9/17 18:09 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 22.50 | ||
7 | 8/10/17 8:31 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.50 | |||
8 | 8/10/17 8:56 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 19.35 | ||
9 | 8/10/17 17:26 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.35 | |||
10 | 8/10/17 17:54 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 16.20 | ||
11 | 8/14/17 8:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.20 | |||
12 | 8/14/17 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 13.05 | ||
13 | 8/14/17 17:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.05 | |||
14 | 8/14/17 17:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 9.90 | ||
0 | 8/15/17 8:54 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.15) | 6.75 | |||
15 | 8/15/17 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.90 | |||
1 | 8/15/17 17:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.75 | |||
2 | 8/15/17 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 3.60 | ||
4 | 8/16/17 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 33.60 | |||
5 | 8/16/17 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 30.45 | ||
6 | 8/16/17 17:23 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.45 | |||
7 | 8/16/17 17:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 27.30 | ||
8 | 8/17/17 8:47 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.30 | |||
9 | 8/17/17 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 24.15 | ||
10 | 8/17/17 16:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.15 | |||
11 | 8/17/17 17:00 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 21.00 | ||
12 | 8/18/17 8:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.00 | |||
13 | 8/18/17 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 17.85 | ||
14 | 8/18/17 13:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.85 | |||
15 | 8/18/17 14:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (2.60) | 15.25 | ||
0 | 8/18/17 16:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 15.25 | |||
1 | 8/18/17 17:09 | Exit | Metrorail | Tenleytown-AU | Farragut N SE | StoredValue FF | (2.55) | 12.70 | ||
2 | 8/21/17 8:18 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 12.70 | |||
3 | 8/21/17 8:42 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 9.55 | ||
4 | 8/21/17 16:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.55 | |||
5 | 8/21/17 17:12 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 6.40 | ||
6 | 8/22/17 8:31 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.40 | |||
7 | 8/22/17 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 3.25 | ||
8 | 8/22/17 17:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.25 | |||
9 | 8/22/17 17:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 0.10 | ||
11 | 8/24/17 8:45 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.10 | |||
12 | 8/24/17 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 26.95 | ||
13 | 8/24/17 16:16 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 26.95 | |||
14 | 8/24/17 16:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 23.80 | ||
0 | 8/28/17 9:23 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.15) | 20.65 | |||
15 | 8/28/17 8:59 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 23.80 | |||
1 | 8/28/17 17:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.65 | |||
2 | 8/28/17 18:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 17.50 | ||
3 | 8/29/17 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.50 | |||
4 | 8/29/17 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 14.35 | ||
5 | 8/29/17 17:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.35 | |||
6 | 8/29/17 17:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 11.20 | ||
7 | 9/5/17 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.20 | |||
8 | 9/5/17 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 8.05 | ||
9 | 9/5/17 16:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.05 | |||
10 | 9/5/17 17:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 4.90 | ||
11 | 9/6/17 8:58 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 4.90 | |||
12 | 9/6/17 9:22 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 1.75 | ||
14 | 9/6/17 17:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 31.75 | |||
15 | 9/6/17 17:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 28.60 | ||
0 | 9/7/17 9:00 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.60 | |||
1 | 9/7/17 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 25.45 | ||
2 | 9/7/17 16:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.45 | |||
3 | 9/7/17 17:14 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 22.30 | ||
4 | 9/11/17 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.30 | |||
5 | 9/11/17 8:59 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 19.15 | ||
6 | 9/11/17 16:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.15 | |||
7 | 9/11/17 16:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 16.00 | ||
8 | 9/12/17 8:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.00 | |||
9 | 9/12/17 9:06 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 12.85 | ||
10 | 9/12/17 17:31 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 12.85 | |||
11 | 9/12/17 17:54 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 9.70 | ||
12 | 9/13/17 7:50 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 9.70 | |||
13 | 9/13/17 8:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 6.55 | ||
14 | 9/13/17 16:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.55 | |||
15 | 9/13/17 16:34 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 3.40 | ||
0 | 9/18/17 8:20 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.40 | |||
1 | 9/18/17 8:44 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 0.25 | ||
3 | 9/18/17 17:02 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.25 | |||
4 | 9/18/17 17:28 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 27.10 | ||
5 | 9/20/17 7:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.10 | |||
6 | 9/20/17 8:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 23.95 | ||
7 | 9/20/17 16:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 23.95 | |||
8 | 9/20/17 16:25 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 20.80 | ||
9 | 9/21/17 7:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 20.80 | |||
10 | 9/21/17 8:01 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 17.65 | ||
11 | 9/21/17 15:18 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.65 | |||
12 | 9/21/17 15:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 14.50 | ||
13 | 9/25/17 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.50 | |||
14 | 9/25/17 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 11.35 | ||
0 | 9/25/17 17:07 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.15) | 8.20 | |||
15 | 9/25/17 16:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.35 | |||
1 | 10/3/17 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 8.20 | |||
2 | 10/3/17 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 5.05 | ||
3 | 10/3/17 16:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 5.05 | |||
4 | 10/3/17 17:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 1.90 | ||
6 | 10/5/17 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 31.90 | |||
7 | 10/5/17 8:31 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 28.75 | ||
8 | 10/5/17 16:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 28.75 | |||
9 | 10/5/17 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 25.60 | ||
10 | 10/10/17 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 25.60 | |||
11 | 10/10/17 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 22.45 | ||
12 | 10/10/17 16:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 22.45 | |||
13 | 10/10/17 17:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 19.30 | ||
14 | 10/11/17 9:01 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 19.30 | |||
15 | 10/11/17 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 16.15 | ||
0 | 10/11/17 17:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 16.15 | |||
1 | 10/11/17 17:30 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 13.00 | ||
2 | 10/12/17 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 13.00 | |||
3 | 10/12/17 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 9.85 | ||
4 | 10/12/17 16:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 9.85 | |||
5 | 10/12/17 17:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 6.70 | ||
6 | 10/18/17 8:14 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 6.70 | |||
7 | 10/18/17 8:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 3.55 | ||
8 | 10/18/17 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 3.55 | |||
9 | 10/18/17 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 0.40 | ||
11 | 10/23/17 8:13 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 30.40 | |||
12 | 10/23/17 8:39 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 27.25 | ||
13 | 10/23/17 16:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 27.25 | |||
14 | 10/23/17 17:05 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 24.10 | ||
0 | 10/24/17 8:48 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.15) | 20.95 | |||
15 | 10/24/17 8:20 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 24.10 | |||
1 | 10/24/17 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 20.95 | |||
2 | 10/24/17 17:34 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 17.80 | ||
3 | 11/20/17 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 17.80 | |||
4 | 11/20/17 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 14.65 | ||
5 | 11/20/17 17:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 14.65 | |||
6 | 11/20/17 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 11.50 | ||
7 | 11/27/17 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 11.50 | |||
8 | 11/27/17 9:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 8.35 | ||
9 | 11/27/17 16:52 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 8.35 | |||
10 | 11/27/17 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 5.20 | ||
11 | 12/4/17 9:04 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 5.20 | |||
12 | 12/4/17 9:34 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 2.05 | ||
14 | 12/4/17 17:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 32.05 | |||
15 | 12/4/17 18:04 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 28.90 | ||
0 | 12/5/17 8:34 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 28.90 | |||
1 | 12/5/17 9:00 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 25.75 | ||
2 | 12/5/17 17:34 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 25.75 | |||
3 | 12/5/17 18:00 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 22.60 | ||
4 | 12/7/17 8:20 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 22.60 | |||
5 | 12/7/17 8:53 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 19.45 | ||
6 | 12/7/17 16:56 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 19.45 | |||
7 | 12/7/17 17:26 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 16.30 | ||
8 | 12/11/17 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 16.30 | |||
9 | 12/11/17 8:59 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | (3.15) | 13.15 | |||
10 | 12/11/17 17:40 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 13.15 | |||
11 | 12/11/17 18:07 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 10.00 | ||
12 | 12/12/17 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 10.00 | |||
13 | 12/12/17 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 6.85 | ||
14 | 12/12/17 16:41 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 6.85 | |||
15 | 12/12/17 17:07 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 3.70 | ||
0 | 12/13/17 8:05 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 3.70 | |||
1 | 12/13/17 8:45 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 0.55 | ||
3 | 12/13/17 17:49 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 30.55 | |||
4 | 12/13/17 18:16 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 27.40 | ||
5 | 12/14/17 8:25 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 27.40 | |||
6 | 12/14/17 8:51 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 24.25 | ||
7 | 12/14/17 16:46 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 24.25 | |||
8 | 12/14/17 17:16 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 21.10 | ||
9 | 12/18/17 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 21.10 | |||
10 | 12/18/17 8:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 17.95 | ||
11 | 12/18/17 16:47 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 17.95 | |||
12 | 12/18/17 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | (3.15) | 14.80 | ||
13 | 12/19/17 8:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | 0.00 | 14.80 | |||
14 | 12/19/17 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | (3.15) | 11.65 | ||
0 | 12/19/17 16:55 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | (3.15) | 8.50 | |||
15 | 12/19/17 16:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | 0.00 | 11.65 | |||
1 | 01/02/18 08:55 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.50 | |||
2 | 01/02/18 09:21 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.35 | ||
3 | 01/02/18 05:33 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.35 | |||
4 | 01/02/18 06:00 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.20 | ||
6 | 01/03/18 09:05 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $32.20 | |||
7 | 01/03/18 09:30 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $29.05 | ||
8 | 01/03/18 05:04 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $29.05 | |||
9 | 01/03/18 05:32 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $25.90 | ||
10 | 01/08/18 08:59 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $25.90 | |||
11 | 01/08/18 09:22 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $22.75 | ||
12 | 01/08/18 02:23 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $22.75 | |||
13 | 01/08/18 02:56 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($2.60) | $20.15 | ||
14 | 01/09/18 08:46 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $20.15 | |||
15 | 01/09/18 09:11 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $17.00 | ||
0 | 01/09/18 05:45 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $17.00 | |||
1 | 01/09/18 06:11 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $13.85 | ||
2 | 01/10/18 08:47 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $13.85 | |||
3 | 01/10/18 09:27 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $10.70 | ||
4 | 01/10/18 05:05 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.70 | |||
5 | 01/10/18 05:31 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $7.55 | ||
6 | 01/11/18 08:45 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $7.55 | |||
7 | 01/11/18 09:11 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $4.40 | ||
8 | 01/11/18 05:00 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $4.40 | |||
9 | 01/11/18 05:22 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $1.25 | ||
11 | 01/17/18 08:57 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.25 | |||
12 | 01/17/18 09:26 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $27.10 | ||
13 | 01/17/18 04:25 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $27.10 | |||
14 | 01/17/18 04:51 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $23.95 | ||
15 | 01/18/18 08:51 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $23.95 | |||
0 | 01/18/18 09:15 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $20.80 | ||
1 | 01/18/18 05:17 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $20.80 | |||
2 | 01/18/18 05:40 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $17.65 | ||
3 | 01/22/18 08:35 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $17.65 | |||
4 | 01/22/18 09:04 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $14.50 | ||
5 | 01/22/18 04:56 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $14.50 | |||
6 | 01/22/18 05:28 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $11.35 | ||
7 | 01/23/18 08:09 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.35 | |||
8 | 01/23/18 08:34 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.20 | ||
9 | 01/23/18 04:57 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.20 | |||
10 | 01/23/18 05:26 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $5.05 | ||
11 | 01/24/18 08:36 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $5.05 | |||
12 | 01/24/18 09:04 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $1.90 | ||
13 | 01/24/18 05:37 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $1.90 | |||
15 | 01/24/18 06:07 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $28.75 | ||
0 | 01/25/18 08:37 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $28.75 | |||
1 | 01/25/18 09:03 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $25.60 | ||
2 | 01/25/18 04:59 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $25.60 | |||
3 | 01/25/18 05:22 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $22.45 | ||
4 | 01/29/18 08:46 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $22.45 | |||
5 | 01/29/18 09:11 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $19.30 | ||
6 | 01/29/18 05:12 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $19.30 | |||
7 | 01/29/18 05:37 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $16.15 | ||
8 | 01/30/18 08:24 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $16.15 | |||
9 | 01/30/18 08:52 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $13.00 | ||
10 | 01/30/18 04:42 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $13.00 | |||
11 | 01/30/18 05:05 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $9.85 | ||
12 | 01/31/18 08:32 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $9.85 | |||
13 | 01/31/18 09:05 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $6.70 | ||
14 | 01/31/18 05:09 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $6.70 | |||
15 | 01/31/18 05:33 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $3.55 | ||
0 | 02/01/18 08:35 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $3.55 | |||
1 | 02/01/18 09:01 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $0.40 | ||
3 | 02/01/18 05:03 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $30.40 | |||
4 | 02/01/18 05:29 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $27.25 | ||
5 | 02/05/18 08:28 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $27.25 | |||
6 | 02/05/18 08:52 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $24.10 | ||
7 | 02/05/18 04:38 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $24.10 | |||
8 | 02/05/18 05:09 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $20.95 | ||
9 | 02/06/18 08:37 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $20.95 | |||
10 | 02/06/18 09:01 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $17.80 | ||
11 | 02/06/18 04:48 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $17.80 | |||
12 | 02/06/18 05:12 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $14.65 | ||
13 | 02/07/18 08:48 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $14.65 | |||
14 | 02/07/18 09:15 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.50 | ||
0 | 02/07/18 04:53 PM | Exit | Metrorail | Tenleytown-AU | StoredValue FF | ($3.15) | $8.35 | |||
15 | 02/07/18 04:29 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.50 | |||
1 | 02/08/18 08:39 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.35 | |||
2 | 02/08/18 09:04 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.20 | ||
3 | 02/08/18 04:55 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.20 | |||
4 | 02/08/18 05:20 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.05 | ||
6 | 02/12/18 08:40 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $32.05 | |||
7 | 02/12/18 09:08 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $28.90 | ||
8 | 02/12/18 05:28 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $28.90 | |||
9 | 02/12/18 05:58 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $25.75 | ||
10 | 02/13/18 08:33 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $25.75 | |||
11 | 02/13/18 09:00 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $22.60 | ||
12 | 02/13/18 05:05 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $22.60 | |||
13 | 02/13/18 05:30 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $19.45 | ||
14 | 02/14/18 08:45 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $19.45 | |||
15 | 02/14/18 09:15 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $16.30 | ||
0 | 02/14/18 05:10 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $16.30 | |||
1 | 02/14/18 05:36 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $13.15 | ||
2 | 02/15/18 08:41 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $13.15 | |||
3 | 02/15/18 09:09 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $10.00 | ||
4 | 02/15/18 05:35 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.00 | |||
5 | 02/15/18 05:59 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.85 | ||
6 | 02/20/18 08:24 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.85 | |||
7 | 02/20/18 08:52 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.70 | ||
8 | 02/20/18 06:01 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.70 | |||
9 | 02/20/18 06:26 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $0.55 | ||
11 | 02/21/18 08:03 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.55 | |||
12 | 02/21/18 08:31 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $27.40 | ||
13 | 02/21/18 05:27 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $27.40 | |||
14 | 02/21/18 05:49 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $24.25 | ||
0 | 02/22/18 09:15 AM | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | ($3.15) | $21.10 | |||
15 | 02/22/18 08:50 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $24.25 | |||
1 | 02/22/18 05:39 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $21.10 | |||
2 | 02/22/18 06:04 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $17.95 | ||
3 | 02/26/18 08:53 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $17.95 | |||
4 | 02/26/18 09:19 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $14.80 | ||
5 | 02/26/18 04:47 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $14.80 | |||
6 | 02/26/18 05:15 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $11.65 | ||
7 | 02/27/18 08:54 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.65 | |||
8 | 02/27/18 09:19 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.50 | ||
9 | 02/27/18 05:20 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.50 | |||
10 | 02/27/18 05:49 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $5.35 | ||
11 | 02/28/18 08:35 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $5.35 | |||
12 | 02/28/18 09:01 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $2.20 | ||
14 | 02/28/18 04:53 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $32.20 | |||
15 | 02/28/18 05:18 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $29.05 | ||
0 | 03/01/18 08:38 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $29.05 | |||
1 | 03/01/18 09:04 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $25.90 | ||
2 | 03/01/18 05:00 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $25.90 | |||
3 | 03/01/18 05:28 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $22.75 | ||
4 | 03/05/18 08:23 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $22.75 | |||
5 | 03/05/18 08:47 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $19.60 | ||
6 | 03/05/18 05:02 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $19.60 | |||
7 | 03/05/18 05:28 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $16.45 | ||
8 | 03/06/18 08:21 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $16.45 | |||
9 | 03/06/18 08:45 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $13.30 | ||
10 | 03/06/18 05:42 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $13.30 | |||
11 | 03/06/18 05:47 PM | Exit | Metrorail | L'Enfant Plza N | Gal Plc-Chntn E | StoredValue FF | ($2.25) | $11.05 | ||
12 | 03/07/18 08:09 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.05 | |||
13 | 03/07/18 08:35 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $7.90 | ||
14 | 03/07/18 04:41 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $7.90 | |||
15 | 03/07/18 05:07 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $4.75 | ||
0 | 03/21/18 08:58 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $4.75 | |||
1 | 03/21/18 09:28 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $1.60 | ||
3 | 03/21/18 01:21 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $31.60 | |||
4 | 03/21/18 01:44 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($2.60) | $29.00 | ||
5 | 03/22/18 09:15 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $29.00 | |||
6 | 03/22/18 09:40 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $25.85 | ||
7 | 03/22/18 05:04 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $25.85 | |||
8 | 03/22/18 05:30 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $22.70 | ||
9 | 03/26/18 08:15 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $22.70 | |||
10 | 03/26/18 08:40 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $19.55 | ||
11 | 03/26/18 04:45 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $19.55 | |||
12 | 03/26/18 05:09 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $16.40 | ||
13 | 03/27/18 07:55 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $16.40 | |||
14 | 03/27/18 08:24 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $13.25 | ||
0 | 03/27/18 05:14 PM | Exit | Metrorail | Tenleytown-AU | StoredValue FF | ($3.15) | $10.10 | |||
15 | 03/27/18 04:47 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $13.25 | |||
1 | 03/28/18 09:02 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $10.10 | |||
2 | 03/28/18 09:28 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $6.95 | ||
3 | 03/28/18 05:05 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $6.95 | |||
4 | 03/28/18 05:31 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $3.80 | ||
5 | 03/29/18 08:34 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $3.80 | |||
6 | 03/29/18 08:58 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $0.65 | ||
8 | 03/29/18 05:16 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $30.65 | |||
9 | 03/29/18 05:42 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $27.50 | ||
10 | 04/02/18 09:02 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $27.50 | |||
11 | 04/02/18 09:28 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $24.35 | ||
12 | 04/02/18 04:57 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $24.35 | |||
13 | 04/02/18 05:22 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $21.20 | ||
14 | 04/03/18 08:53 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $21.20 | |||
15 | 04/03/18 09:18 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $18.05 | ||
0 | 04/03/18 05:10 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $18.05 | |||
1 | 04/03/18 05:38 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $14.90 | ||
2 | 04/04/18 08:29 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $14.90 | |||
3 | 04/04/18 08:56 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.75 | ||
4 | 04/04/18 05:00 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.75 | |||
5 | 04/04/18 05:27 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.60 | ||
6 | 04/05/18 08:43 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.60 | |||
7 | 04/05/18 09:07 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.45 | ||
8 | 04/05/18 05:09 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.45 | |||
9 | 04/05/18 05:34 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.30 | ||
11 | 04/09/18 07:44 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $32.30 | |||
12 | 04/09/18 08:07 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $29.15 | ||
13 | 04/09/18 04:17 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $29.15 | |||
14 | 04/09/18 04:42 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $26.00 | ||
0 | 04/10/18 08:24 AM | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | ($3.15) | $22.85 | |||
15 | 04/10/18 07:54 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $26.00 | |||
1 | 04/10/18 04:11 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $22.85 | |||
2 | 04/10/18 04:44 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $19.70 | ||
3 | 04/11/18 08:34 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $19.70 | |||
4 | 04/11/18 09:01 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $16.55 | ||
5 | 04/11/18 04:43 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $16.55 | |||
6 | 04/11/18 05:06 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $13.40 | ||
7 | 04/12/18 08:40 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $13.40 | |||
8 | 04/12/18 09:03 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $10.25 | ||
9 | 04/12/18 05:02 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.25 | |||
10 | 04/12/18 05:32 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $7.10 | ||
11 | 04/16/18 08:27 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $7.10 | |||
12 | 04/16/18 08:52 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.95 | ||
13 | 04/16/18 04:40 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.95 | |||
14 | 04/16/18 05:06 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $0.80 | ||
0 | 04/17/18 08:39 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.80 | |||
1 | 04/17/18 09:55 AM | Exit | Metrorail | Tenleytown-AU | Dupont Circle S | StoredValue FF | ($2.40) | $28.40 | ||
2 | 04/17/18 05:27 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $28.40 | |||
3 | 04/17/18 05:49 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $25.25 | ||
5 | 04/23/18 08:31 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $27.65 | |||
6 | 04/23/18 08:56 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $24.50 | ||
7 | 04/23/18 05:05 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $24.50 | |||
8 | 04/23/18 05:30 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $21.35 | ||
9 | 04/24/18 08:34 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $21.35 | |||
10 | 04/24/18 09:03 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $18.20 | ||
11 | 04/24/18 05:03 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $18.20 | |||
12 | 04/24/18 05:30 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $15.05 | ||
13 | 04/25/18 08:34 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $15.05 | |||
14 | 04/25/18 09:00 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.90 | ||
0 | 04/25/18 05:38 PM | Exit | Metrorail | Tenleytown-AU | StoredValue FF | ($3.15) | $8.75 | |||
15 | 04/25/18 05:13 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.90 | |||
1 | 04/28/18 09:27 PM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.75 | |||
2 | 04/28/18 09:52 PM | Exit | Metrorail | Tenleytown-AU | Frndshp Hgts N | StoredValue FF | ($2.00) | $6.75 | ||
3 | 04/30/18 08:48 AM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.75 | |||
4 | 04/30/18 09:16 AM | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.60 | ||
5 | 04/30/18 04:39 PM | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.60 | |||
6 | 04/30/18 05:05 PM | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $0.45 | ||
8 | 5/3/18 9:05 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.45 | |||
9 | 5/3/18 9:32 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $27.30 | ||
10 | 5/3/18 16:11 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $27.30 | |||
11 | 5/3/18 16:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $24.15 | ||
12 | 5/7/18 8:54 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $24.15 | |||
13 | 5/7/18 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $21.00 | ||
14 | 5/7/18 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $21.00 | |||
15 | 5/7/18 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $17.85 | ||
0 | 5/9/18 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $17.85 | |||
1 | 5/9/18 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $14.70 | ||
2 | 5/9/18 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $14.70 | |||
3 | 5/9/18 17:15 | Exit | Metrorail | L'Enfant Plza N | Shaw-Hwrd U N | StoredValue FF | ($2.25) | $12.45 | ||
4 | 5/10/18 9:00 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $12.45 | |||
5 | 5/10/18 9:28 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $9.30 | ||
6 | 5/10/18 16:53 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $9.30 | |||
7 | 5/10/18 17:16 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.15 | ||
8 | 5/14/18 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.15 | |||
9 | 5/14/18 9:07 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.00 | |||
11 | 5/14/18 16:47 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $33.00 | |||
12 | 5/14/18 17:14 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $29.85 | ||
13 | 5/15/18 7:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $29.85 | |||
14 | 5/15/18 8:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $26.70 | ||
0 | 5/15/18 17:45 | Exit | Metrorail | Tenleytown-AU | StoredValue FF | ($3.15) | $23.55 | |||
15 | 5/15/18 17:21 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $26.70 | |||
1 | 5/16/18 8:20 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $23.55 | |||
2 | 5/16/18 8:45 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $20.40 | ||
3 | 5/16/18 17:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $20.40 | |||
4 | 5/16/18 17:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $17.25 | ||
5 | 5/17/18 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $17.25 | |||
6 | 5/17/18 8:30 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $14.10 | ||
7 | 5/17/18 17:13 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $14.10 | |||
8 | 5/17/18 17:41 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $10.95 | ||
9 | 5/22/18 8:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $10.95 | |||
10 | 5/22/18 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $7.80 | ||
11 | 5/22/18 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $7.80 | |||
12 | 5/22/18 17:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $4.65 | ||
13 | 5/23/18 7:35 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $4.65 | |||
14 | 5/23/18 8:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $1.50 | ||
0 | 5/23/18 16:34 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $31.50 | |||
1 | 5/23/18 17:00 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $28.35 | ||
2 | 5/26/18 11:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $28.35 | |||
3 | 5/26/18 11:08 | Exit | Metrorail | Tenleytown-AU | Van Ness-UDC | StoredValue FF | ($2.00) | $26.35 | ||
4 | 5/26/18 11:33 | Entry | Metrorail | Dupont Circle N | StoredValue FF | $0.00 | $26.35 | |||
5 | 5/26/18 12:01 | Exit | Metrorail | Dupont Circle N | L'Enfant Plza W | StoredValue FF | ($0.60) | $25.75 | ||
6 | 5/29/18 8:41 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $25.75 | |||
7 | 5/29/18 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $22.60 | ||
8 | 5/29/18 17:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $22.60 | |||
9 | 5/29/18 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $19.45 | ||
10 | 5/30/18 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $19.45 | |||
11 | 5/30/18 8:52 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $16.30 | ||
12 | 5/30/18 17:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $16.30 | |||
13 | 5/30/18 17:43 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $13.15 | ||
14 | 5/31/18 7:55 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $13.15 | |||
15 | 5/31/18 8:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $10.00 | ||
0 | 5/31/18 16:08 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.00 | |||
1 | 5/31/18 16:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.85 | ||
2 | 06/13/18 07:25 PM | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.85 | |||
3 | 06/13/18 07:36 PM | Exit | Metrorail | Tenleytown-AU | Dupont Circle S | StoredValue FF | ($2.10) | $4.75 | ||
4 | 7/23/18 8:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $4.75 | |||
5 | 7/23/18 9:26 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $1.60 | ||
7 | 7/23/18 17:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.60 | |||
8 | 7/23/18 17:34 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.45 | ||
9 | 7/31/18 19:14 | Entry | Metrobus | 79 - GEORGIA AVE METRO EXTRA 79 | StoredValue FF | ($2.00) | $6.45 | |||
10 | 7/31/18 21:18 | Entry | Metrobus | 70 - GA AVE-7TH STREET 70 71 | StoredValue FF | ($2.00) | $4.45 | |||
11 | 8/20/18 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $4.45 | |||
12 | 8/20/18 9:27 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $1.30 | ||
14 | 8/20/18 17:20 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.30 | |||
15 | 8/20/18 17:46 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.15 | ||
0 | 8/22/18 8:14 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.15 | |||
1 | 8/22/18 8:40 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.00 | ||
2 | 8/22/18 16:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.00 | |||
3 | 8/22/18 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $1.85 | ||
5 | 8/23/18 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.85 | |||
6 | 8/23/18 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.70 | ||
7 | 8/23/18 18:14 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.70 | |||
8 | 8/23/18 18:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $5.55 | ||
9 | 8/24/18 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $5.55 | |||
10 | 8/24/18 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $2.40 | ||
12 | 8/24/18 15:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $12.40 | |||
13 | 8/24/18 16:04 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $9.25 | ||
14 | 8/27/18 8:30 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $9.25 | |||
15 | 8/27/18 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $6.10 | ||
0 | 8/27/18 17:01 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $6.10 | |||
1 | 8/27/18 17:34 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.95 | ||
3 | 8/28/18 8:35 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $12.95 | |||
4 | 8/28/18 8:58 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $9.80 | ||
5 | 8/28/18 17:03 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $9.80 | |||
6 | 8/28/18 17:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.65 | ||
7 | 8/29/18 8:09 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.65 | |||
8 | 8/29/18 8:34 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.50 | ||
9 | 8/29/18 16:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.50 | |||
10 | 8/29/18 17:03 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $0.35 | ||
12 | 8/30/18 8:12 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $10.35 | |||
13 | 8/30/18 8:40 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $7.20 | ||
14 | 8/30/18 16:05 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $7.20 | |||
15 | 8/30/18 16:28 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $4.05 | ||
0 | 9/4/18 8:23 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $4.05 | |||
1 | 9/4/18 8:50 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $0.90 | ||
3 | 9/4/18 17:05 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.90 | |||
4 | 9/4/18 17:29 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $7.75 | ||
5 | 9/5/18 8:06 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $7.75 | |||
6 | 9/5/18 8:37 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $4.60 | ||
7 | 9/5/18 16:36 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $4.60 | |||
8 | 9/5/18 17:00 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $1.45 | ||
10 | 9/6/18 8:19 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.45 | |||
11 | 9/6/18 8:47 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.30 | ||
12 | 9/6/18 16:33 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.30 | |||
13 | 9/6/18 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $5.15 | ||
14 | 9/10/18 8:53 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $5.15 | |||
15 | 9/10/18 9:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $2.00 | ||
1 | 9/10/18 17:06 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $12.00 | |||
2 | 9/10/18 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.85 | ||
3 | 9/11/18 8:33 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.85 | |||
4 | 9/11/18 9:05 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.70 | ||
5 | 9/11/18 17:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.70 | |||
6 | 9/11/18 17:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.55 | ||
7 | 9/12/18 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $2.55 | |||
9 | 9/12/18 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $9.40 | ||
10 | 9/12/18 17:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $9.40 | |||
11 | 9/12/18 18:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.25 | ||
12 | 9/13/18 8:28 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.25 | |||
13 | 9/13/18 8:55 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.10 | ||
14 | 9/13/18 17:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.10 | |||
15 | 9/13/18 17:22 | Exit | Metrorail | L'Enfant Plza N | Gal Plc-Chntn E | StoredValue FF | ($2.25) | $0.85 | ||
1 | 9/13/18 18:15 | Entry | Metrorail | Gal Plc-Chntn E | StoredValue FF | $0.00 | $10.85 | |||
2 | 9/13/18 18:21 | Exit | Metrorail | Gal Plc-Chntn E | L'Enfant Plza N | StoredValue FF | ($2.25) | $8.60 | ||
3 | 9/13/18 18:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.60 | |||
4 | 9/13/18 18:35 | Exit | Metrorail | L'Enfant Plza N | Gal Plc-Chntn E | StoredValue FF | ($2.25) | $6.35 | ||
5 | 9/13/18 23:59 | Entry | Metrobus | 70 - GA AVE-7TH STREET 70 71 | StoredValue FF | ($2.00) | $4.35 | |||
6 | 9/14/18 8:19 | Entry | Metrorail | Columbia Hgts | StoredValue FF | $0.00 | $4.35 | |||
7 | 9/14/18 8:37 | Exit | Metrorail | Columbia Hgts | L'Enfant Plza N | StoredValue FF | ($2.30) | $2.05 | ||
8 | 9/14/18 14:53 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $2.05 | |||
10 | 9/14/18 15:17 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($2.60) | $0.00 | ||
12 | 9/17/18 8:49 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $20.00 | |||
13 | 9/17/18 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $16.85 | ||
14 | 9/17/18 17:55 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $16.85 | |||
15 | 9/17/18 18:16 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $13.70 | ||
0 | 9/18/18 8:22 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $13.70 | |||
1 | 9/18/18 8:52 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $10.55 | ||
2 | 9/18/18 16:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $10.55 | |||
3 | 9/18/18 17:08 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $7.40 | ||
4 | 9/19/18 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $7.40 | |||
5 | 9/19/18 9:03 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $4.25 | ||
6 | 9/19/18 17:09 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $4.25 | |||
7 | 9/19/18 17:38 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $1.10 | ||
9 | 9/24/18 8:26 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $31.10 | |||
10 | 9/24/18 8:53 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $27.95 | ||
11 | 9/24/18 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $27.95 | |||
12 | 9/24/18 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $24.80 | ||
13 | 9/25/18 8:43 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $24.80 | |||
14 | 9/25/18 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $21.65 | ||
15 | 9/25/18 17:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $21.65 | |||
0 | 9/25/18 17:45 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $18.50 | ||
1 | 9/26/18 8:36 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $18.50 | |||
2 | 9/26/18 9:04 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $15.35 | ||
3 | 9/26/18 19:20 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $15.35 | |||
4 | 9/26/18 19:43 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $12.80 | ||
5 | 9/27/18 8:14 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $12.80 | |||
6 | 9/27/18 8:43 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $9.65 | ||
7 | 9/27/18 16:34 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $9.65 | |||
8 | 9/27/18 16:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.50 | ||
9 | 10/2/18 8:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.50 | |||
10 | 10/2/18 8:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.35 | ||
11 | 10/2/18 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $3.35 | |||
12 | 10/2/18 17:09 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $0.20 | ||
14 | 10/3/18 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.20 | |||
15 | 10/3/18 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $27.05 | ||
0 | 10/3/18 19:40 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $27.05 | |||
1 | 10/3/18 20:03 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $24.50 | ||
2 | 10/9/18 8:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $24.50 | |||
3 | 10/9/18 9:16 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $21.35 | ||
4 | 10/9/18 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $21.35 | |||
5 | 10/9/18 17:32 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $18.20 | ||
6 | 10/10/18 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $18.20 | |||
7 | 10/10/18 9:14 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $15.05 | ||
8 | 10/10/18 19:53 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $15.05 | |||
9 | 10/10/18 20:23 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $12.50 | ||
10 | 10/11/18 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $12.50 | |||
11 | 10/11/18 9:19 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $9.35 | ||
12 | 10/11/18 17:35 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $9.35 | |||
13 | 10/11/18 17:57 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $6.20 | ||
14 | 10/15/18 8:55 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $6.20 | |||
15 | 10/15/18 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $3.05 | ||
1 | 10/15/18 17:30 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $33.05 | |||
2 | 10/15/18 17:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $29.90 | ||
3 | 10/16/18 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $29.90 | |||
4 | 10/16/18 9:20 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $26.75 | ||
5 | 10/16/18 17:28 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $26.75 | |||
6 | 10/16/18 17:54 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $23.60 | ||
7 | 10/17/18 20:05 | Entry | Metrorail | Dupont Circle N | StoredValue FF | $0.00 | $23.60 | |||
8 | 10/17/18 20:18 | Exit | Metrorail | Dupont Circle N | Tenleytown-AU | StoredValue FF | ($2.10) | $21.50 | ||
9 | 10/22/18 8:52 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $21.50 | |||
10 | 10/22/18 9:18 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $18.35 | ||
11 | 10/22/18 17:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $18.35 | |||
12 | 10/22/18 17:50 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $15.20 | ||
13 | 10/24/18 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $15.20 | |||
14 | 10/24/18 9:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $12.05 | ||
15 | 10/24/18 19:58 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $12.05 | |||
0 | 10/24/18 20:31 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $9.50 | ||
1 | 10/29/18 8:39 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $9.50 | |||
2 | 10/29/18 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $6.35 | ||
3 | 10/29/18 17:22 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $6.35 | |||
4 | 10/29/18 17:53 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $3.20 | ||
6 | 10/30/18 8:42 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $33.20 | |||
7 | 10/30/18 9:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $30.05 | ||
8 | 10/30/18 16:48 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $30.05 | |||
9 | 10/30/18 17:15 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $26.90 | ||
10 | 10/31/18 8:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $26.90 | |||
11 | 10/31/18 9:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $23.75 | ||
12 | 10/31/18 20:05 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $23.75 | |||
13 | 10/31/18 20:28 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $21.20 | ||
14 | 11/1/18 8:48 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $21.20 | |||
15 | 11/1/18 9:15 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $18.05 | ||
0 | 11/1/18 17:07 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $18.05 | |||
1 | 11/1/18 17:35 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $14.90 | ||
2 | 11/5/18 7:46 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $14.90 | |||
3 | 11/5/18 8:12 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.75 | ||
4 | 11/5/18 16:19 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.75 | |||
5 | 11/5/18 16:44 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.60 | ||
6 | 11/6/18 7:38 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.60 | |||
7 | 11/6/18 8:07 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.45 | ||
8 | 11/6/18 16:45 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.45 | |||
9 | 11/6/18 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.30 | ||
11 | 11/7/18 8:02 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $32.30 | |||
12 | 11/7/18 8:26 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $29.15 | ||
13 | 11/7/18 20:02 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $29.15 | |||
14 | 11/7/18 20:29 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $26.60 | ||
0 | 11/13/18 8:24 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | ($3.15) | $23.45 | |||
15 | 11/13/18 8:01 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $26.60 | |||
1 | 11/13/18 16:24 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $23.45 | |||
2 | 11/13/18 16:52 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $20.30 | ||
3 | 11/14/18 7:59 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $20.30 | |||
4 | 11/14/18 8:23 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $17.15 | ||
5 | 11/14/18 20:16 | Entry | Metrorail | Arch-Navy Mem | StoredValue FF | $0.00 | $17.15 | |||
6 | 11/14/18 20:42 | Exit | Metrorail | Arch-Navy Mem | Tenleytown-AU | StoredValue FF | ($2.55) | $14.60 | ||
7 | 11/19/18 8:09 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $14.60 | |||
8 | 11/19/18 8:34 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.45 | ||
9 | 11/19/18 16:50 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $11.45 | |||
10 | 11/19/18 17:13 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $8.30 | ||
11 | 11/20/18 8:34 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $8.30 | |||
12 | 11/20/18 8:57 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $5.15 | ||
13 | 11/20/18 17:10 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $5.15 | |||
14 | 11/20/18 17:33 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $2.00 | ||
0 | 11/26/18 8:04 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $32.00 | |||
1 | 11/26/18 8:33 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $28.85 | ||
2 | 11/26/18 16:27 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $28.85 | |||
3 | 11/26/18 16:56 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $25.70 | ||
4 | 11/27/18 8:00 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $25.70 | |||
5 | 11/27/18 8:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $22.55 | ||
6 | 11/27/18 16:57 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $22.55 | |||
7 | 11/27/18 17:11 | Exit | Metrorail | L'Enfant Plza N | Foggy Bottom | StoredValue FF | ($2.25) | $20.30 | ||
8 | 11/28/18 7:57 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $20.30 | |||
9 | 11/28/18 8:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $17.15 | ||
10 | 11/28/18 17:42 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $17.15 | |||
11 | 11/28/18 17:59 | Exit | Metrorail | L'Enfant Plza N | U St-Cardozo W | StoredValue FF | ($2.25) | $14.90 | ||
12 | 11/29/18 7:56 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $14.90 | |||
13 | 11/29/18 8:25 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $11.75 | ||
14 | 12/3/18 7:44 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.75 | |||
15 | 12/3/18 8:11 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.60 | ||
0 | 12/3/18 16:15 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.60 | |||
1 | 12/3/18 16:42 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $5.45 | ||
2 | 12/4/18 7:24 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $5.45 | |||
3 | 12/4/18 7:49 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $2.30 | ||
5 | 12/4/18 17:43 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $32.30 | |||
6 | 12/4/18 17:58 | Exit | Metrorail | L'Enfant Plza N | U St-Cardozo W | StoredValue FF | ($2.25) | $30.05 | ||
7 | 12/5/18 8:16 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $30.05 | |||
8 | 12/5/18 8:43 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $26.90 | ||
9 | 12/5/18 16:17 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $26.90 | |||
10 | 12/5/18 16:40 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $23.75 | ||
11 | 12/6/18 8:37 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $23.75 | |||
12 | 12/6/18 9:02 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $20.60 | ||
13 | 12/6/18 17:48 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $20.60 | |||
14 | 12/6/18 18:19 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $17.45 | ||
0 | 12/10/18 8:29 | Exit | Metrorail | L'Enfant Plza N | StoredValue FF | ($3.15) | $14.30 | |||
15 | 12/10/18 8:03 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $17.45 | |||
1 | 12/10/18 16:39 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $14.30 | |||
2 | 12/10/18 17:06 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $11.15 | ||
3 | 12/11/18 7:51 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $11.15 | |||
4 | 12/11/18 8:17 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $8.00 | ||
5 | 12/11/18 16:38 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $8.00 | |||
6 | 12/11/18 17:02 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $4.85 | ||
8 | 12/12/18 8:04 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $34.85 | |||
9 | 12/12/18 8:31 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $31.70 | ||
10 | 12/12/18 16:44 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $31.70 | |||
11 | 12/12/18 17:10 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($3.15) | $28.55 | ||
12 | 12/14/18 8:27 | Entry | Metrorail | Tenleytown-AU | StoredValue FF | $0.00 | $28.55 | |||
13 | 12/14/18 8:53 | Exit | Metrorail | Tenleytown-AU | L'Enfant Plza N | StoredValue FF | ($3.15) | $25.40 | ||
14 | 12/14/18 13:29 | Entry | Metrorail | L'Enfant Plza N | StoredValue FF | $0.00 | $25.40 | |||
15 | 12/14/18 13:58 | Exit | Metrorail | L'Enfant Plza N | Tenleytown-AU | StoredValue FF | ($2.60) | $22.80 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment