baseball_scorecard 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,9 +22,9 @@ Gem::Specification.new do |s|
22
22
  # specify any dependencies here; for example:
23
23
  # s.add_development_dependency "rspec"
24
24
  # s.add_runtime_dependency "rest-client"
25
- s.add_dependency "markaby"
26
- s.add_dependency "hpricot"
27
- s.add_dependency "green_shoes"
28
- s.add_dependency "gameday_api"
29
- s.add_dependency "launchy"
25
+
26
+ s.add_runtime_dependency "green_shoes"
27
+ s.add_runtime_dependency "hpricot"
28
+ s.add_runtime_dependency "gameday_api"
29
+ s.add_runtime_dependency "launchy"
30
30
  end
@@ -1,16 +1,14 @@
1
+ # 2012 J. Kaiden
2
+ # please see the gameday_copyright.txt file
3
+
1
4
  class Array #makes green_shoes play nice with gameday_api ;)
2
5
  def clear; _clear end
3
6
  end
4
7
 
5
8
  module CardGenerator
6
- attr_accessor :home_team, :visiting_team, :home_batters, :visiting_batters,
7
- :home_pitchers, :visiting_pitchers, :visiting_abrev, :home_abrev,
8
- :visiting_score, :home_score, :date, :elements, :fldg, :imagedir
9
9
 
10
10
  def init_cards(game)
11
- @@parent = self
12
- #@imagedir = "images"
13
- @imagedir = File.join(File.dirname(__FILE__), "images")
11
+ @imagedir = "file:///#{File.join(File.dirname(__FILE__), "images")}"
14
12
  Thread.new{init_batting_arrays(game)}
15
13
  end
16
14
 
@@ -252,117 +250,155 @@ module CardGenerator
252
250
  end
253
251
 
254
252
  def init_html(home_or_away)
255
- @status_line.text = "building html"
256
- p "building html"###
257
-
258
- html_builder = Markaby::Builder.new
259
- html_builder.html do
260
- imagedir = @@parent.imagedir
261
- case home_or_away
262
- when 'home'
263
- batters = @@parent.home_batters; pitchers = @@parent.home_pitchers; team_abrev = @@parent.home_abrev
264
- when 'away'
265
- batters = @@parent.visiting_batters; pitchers = @@parent.visiting_pitchers; team_abrev = @@parent.visiting_abrev
266
- end
267
-
268
- head {title "#{team_abrev} Scorecard"}
269
- body :style => "background-image: url(#{File.join(imagedir, 'grass.jpg')})" do
253
+ @status_line.text = "building html"
254
+ p "writing html"###
255
+
256
+ case home_or_away
257
+ when 'home'
258
+ batters = @home_batters; pitchers = @home_pitchers; team_abrev = @home_abrev
259
+ when 'away'
260
+ batters = @visiting_batters; pitchers = @visiting_pitchers; team_abrev = @visiting_abrev
261
+ end
262
+
263
+ File.open("scorecard_#{home_or_away}.html", "w"){|f|
264
+
265
+ f.puts "<html>"
266
+ f.puts "<head title=\"#{team_abrev} Scorecard\"></head>"
267
+ f.puts "<body style=\"background-image: url(#{File.join(@imagedir, 'grass.jpg')})\">"
270
268
 
271
- h1 :style => "padding-top: 5"
272
- pre "#{@@parent.visiting_team} #{@@parent.visiting_score} - #{@@parent.home_team} #{@@parent.home_score}", :style => "color: white; font-family: arial; text-align: center"
273
- h2
274
- pre @@parent.date, :style => "color: white; font-family: arial; text-align: center"
275
- img :src => File.join(imagedir, "team_images", "#{team_abrev.downcase}.png"),
276
- :style => "position: absolute; left: 20; top: 85"
269
+ f.puts "<h1 style=\"padding-top: 5\">"
270
+ f.puts "<pre style=\"color: white; font-family: arial; text-align: center\">"
271
+ f.puts "#{@visiting_team} #{@visiting_score} - #{@home_team} #{@home_score}"
272
+ f.puts "</pre>"
273
+ f.puts "</h1>"
277
274
 
278
- table do
279
-
280
- tr
281
- td; inning_num = 1
282
- 9.times{
283
- td inning_num, :style => "color: white; font-family: arial; font-size: 125%; text-align: center"
275
+ f.puts "<h2>"
276
+ f.puts "<pre style=\"color: white; font-family: arial; text-align: center\">"
277
+ f.puts @date
278
+ f.puts "</pre>"
279
+ f.puts "<img src=\"#{File.join(@imagedir, 'team_images', "#{team_abrev.downcase}.png")}\" style=\"position: absolute; left: 20; top:85\">"
280
+ f.puts "</h2>"
281
+
282
+ f.puts "<table>"
283
+
284
+ f.puts "<tr>"
285
+ f.puts "<td></td>"
286
+ inning_num = 1
287
+ @game.innings.length.times{
288
+ f.puts "<td style=\"color: white; font-family: arial; font-size: 125%; text-align: center\">"
289
+ f.puts inning_num
290
+ f.puts "</td>"
284
291
  inning_num += 1
285
292
  }
293
+ f.puts "</tr>"
286
294
 
287
- batters.each_with_index{|batter, batter_index|
295
+ batters.each_with_index{|batter, batter_index|
288
296
  unless batter.batting_order == 0
289
- tr
290
- td :width => 150, :title => batter.stats
291
- pre "#{batter.batting_order}\n#{batter.name}\n##{batter.number} #{batter.position}",
292
- :style => "color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20"
297
+ f.puts "<tr>"
293
298
 
294
- batter.innings.each_with_index{|inning, inning_index|
295
- if inning.empty?
296
- td
297
- img :src => File.join(imagedir, "bases_no_ba.png"), :style => "position: relative; top: 0; left: 0"
298
- else
299
- atbat = batter.innings[inning_index][-1]
300
- @@parent.get_elements(home_or_away, batter_index, inning_index)
301
- description = ""#
302
- if batter.innings[inning_index].length > 1#
303
- batter.innings[inning_index].each_with_index{|ab, ab_index|#
304
- description << "At Bat #{ab_index + 1}: #{ab.des}\n"#
305
- }#
299
+ f.puts "<td style=\"width: 150\" title=\"#{batter.stats}\">"
300
+ f.puts "<pre style=\"color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20\">"
301
+ f.puts "#{batter.batting_order}\n#{batter.name}\n##{batter.number} #{batter.position}"
302
+ f.puts "</pre>"
303
+ f.puts "</td>"
304
+
305
+ batter.innings.each_with_index{|inning, inning_index|
306
+ if inning.empty?
307
+ f.puts "<td>"
308
+ f.puts "<img src=\"#{File.join(@imagedir, 'bases_no_ba.png')}\" style=\"position: relative; top: 0; left: 0\"></img>"
309
+ f.puts "</td>"
306
310
  else
307
- description = atbat.des
308
- end
309
- td :style => "position: relative; top: 0; left: 0", :title => description
310
- img :src => File.join(imagedir, "bases_bg.png"), :style => "position: absolute; top: 0; left: 0"
311
- img :src => @@parent.elements[1], :style => "position: absolute; top: 0; left: 0" if @@parent.elements[1]
312
- img :src => @@parent.elements[0], :style => "position: absolute; top: 0; left: 0"
313
- img :src => @@parent.elements[2], :style => "position: absolute; top: 69; left: 69" if @@parent.elements[2]
314
- pre "#{atbat.b}-#{atbat.s}",
315
- :style => "position: absolute; top: -7; left: 7; font-family: arial; font-size: small"
316
- pre @@parent.fldg,
317
- :style => "position: absolute; top: 60; left: 7; font-family: arial; font-size: small" if @@parent.fldg
318
- pre "#{@@parent.elements[4]}",
319
- :style => "position: absolute; top: -7; left: 65; font-family: arial; font-size: small" if @@parent.elements[4]
320
- pre "RBI",
321
- :style => "position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small" if @@parent.elements[4]
322
- if batter.innings[inning_index].length > 1
323
- pre "+AB", :style => "position: absolute; top: 43; left: 33; font-family: arial; font-weight: bold; font-size: small"
324
- end
325
- if atbat.des.include?('steals')
326
- pre "SB", :style => "position: absolute; top: 6; left: 37; font-family: arial; font-weight: bold"
327
- end
328
- end #if inning.empty?
329
- } #batter.innings.each_with_index
311
+ atbat = batter.innings[inning_index][-1]
312
+ get_elements(home_or_away, batter_index, inning_index)
313
+ description = ""#
314
+ if batter.innings[inning_index].length > 1#
315
+ batter.innings[inning_index].each_with_index{|ab, ab_index|#
316
+ description << "At Bat #{ab_index + 1}: #{ab.des}\n"#
317
+ }#
318
+ else
319
+ description = atbat.des
320
+ end
321
+ f.puts "<td style=\"position: relative; top: 0; left: 0\" title=\"#{description}\">"
322
+ f.puts "<img src=\"#{File.join(@imagedir, 'bases_bg.png')}\" style=\"position: absolute; top: 0; left: 0\"></img>"
323
+ f.puts "<img src= #{@elements[1]} style=\"position: absolute; top: 0; left: 0\"></img>" if @elements[1]
324
+ f.puts "<img src= #{@elements[0]} style=\"position: absolute; top: 0; left: 0\"></img>"
325
+ f.puts "<img src= #{@elements[2]} style=\"position: absolute; top: 69; left: 69\"></img>" if @elements[2]
326
+ f.puts "<pre style=\"position: absolute; top: -7; left: 7; font-family: arial; font-size: small\">"
327
+ f.puts "#{atbat.b}-#{atbat.s}"
328
+ f.puts "</pre>"
329
+ if @fldg
330
+ f.puts "<pre style=\"position: absolute; top: 60; left: 7; font-family: arial; font-size: small\">"
331
+ f.puts @fldg
332
+ f.puts "</pre>"
333
+ end
334
+ if @elements[4]
335
+ f.puts "<pre style=\"position: absolute; top: -7; left: 65; font-family: arial; font-size: small\">"
336
+ f.puts @elements[4]
337
+ f.puts "</pre>"
338
+ f.puts "<pre style=\"position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small\">"
339
+ f.puts "RBI"
340
+ f.puts "</pre>"
341
+ end
342
+ if batter.innings[inning_index].length > 1
343
+ f.puts "<pre style=\"position: absolute; top: 6; left: 32; font-family: arial; font-weight: bold\">"
344
+ f.puts "+AB"
345
+ f.puts "</pre>"
346
+ end
347
+ if atbat.des.include?('steals')
348
+ f.puts "<pre style=\"position: absolute; top: 6; left: 37; font-family: arial; font-weight: bold\">"
349
+ f.puts "SB"
350
+ f.puts "</pre>"
351
+ end
352
+
353
+ f.puts "</td>"
354
+ end #if inning.empty?
355
+ } #batter.innings.each_with_index
356
+ f.puts "</tr>"
330
357
  end #unless
331
358
  } #batters.each_with_index
332
- end #table
359
+
360
+ f.puts "</table>"
333
361
 
334
- hr :style => "padding-top: 10"##
335
- h2 "Pitching", :style => "color: white; font-family: arial; text-align: center"
336
- table do
337
- tr
338
- td; %w[W-L ERA IP AB K BB H R ER].each{|entry|
339
- td entry, :width => 150, :style => "color: white; font-family: arial; font-size: 125%; text-align: center"
340
- }
362
+ f.puts "<hr style=\"padding-top: 10\"></hr>"
363
+ f.puts "<h2 style=\"color: white; font-family: arial; text-align: center\">Pitching</h2>"
364
+
365
+ f.puts "<table>"
366
+
367
+ f.puts "<tr>"
368
+ f.puts "<td></td>"
369
+ %w[W-L ERA IP AB K BB H R ER].each{|entry|
370
+ f.puts "<td style=\"width: 150; color: white; font-family: arial; font-size: 125%; text-align: center\">"
371
+ f.puts entry
372
+ f.puts "</td>"
373
+ }
374
+ f.puts "</tr>"
375
+
341
376
  pitchers.each{|pitcher|
342
- tr :style => "color: white; font-family: arial"
343
- td pitcher.pitcher_name, :style => "font-size: 125%; text-align: right; padding-right: 20"
344
- td "#{pitcher.w}-#{pitcher.l}", :width => 150, :style => "text-align: center"
345
- td pitcher.era, :width => 150, :style => "text-align: center"
346
- td pitcher.inn, :width => 150, :style => "text-align: center"
347
- td pitcher.bf, :width => 150, :style => "text-align: center"
348
- td pitcher.so, :width => 150, :style => "text-align: center"
349
- td pitcher.bb, :width => 150, :style => "text-align: center"
350
- td pitcher.h, :width => 150, :style => "text-align: center"
351
- td pitcher.r, :width => 150, :style => "text-align: center"
352
- td pitcher.er, :width => 150, :style => "text-align: center"
353
- } #pitchers.each
354
- end #table
377
+ f.puts "<tr style=\"color: white; font-family: arial\">"
378
+ f.puts "<td style=\"font-size: 125%; text-align: right; padding-right: 20\">"
379
+ f.puts pitcher.pitcher_name
380
+ f.puts "</td>"
381
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.w}-#{pitcher.l}</td>"
382
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.era}</td>"
383
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.inn}</td>"
384
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.bf}</td>"
385
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.so}</td>"
386
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.bb}</td>"
387
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.h}</td>"
388
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.r}</td>"
389
+ f.puts "<td style=\"width: 150; text-align: center\">#{pitcher.er}</td>"
390
+ f.puts "</tr>"
391
+ }
392
+ f.puts "</table>"
355
393
 
356
- end #body
357
- end #html_builder
394
+ f.puts "</body>"
395
+ f.puts "</html>"
358
396
 
359
- File.open("scorecard_#{home_or_away}.html", "w"){|f|
360
- f.puts(html_builder.to_s)
361
- }
362
-
363
- @status_line.text = "html built"
364
- p "html built"##
365
- Launchy.open("scorecard_#{home_or_away}.html")
366
- end #init_html
397
+ } #close file
398
+
399
+ @status_line.text = "html built"
400
+ p "html built"##
401
+ Launchy.open("./scorecard_#{home_or_away}.html")
402
+ end #init_html()
367
403
 
368
404
  end #module CardGenerator
@@ -1,3 +1,3 @@
1
1
  module BaseballScorecard
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,4 +1,7 @@
1
- require 'markaby'
1
+ # 2012 J. Kaiden
2
+ # please see the gameday_copyright.txt file
3
+
4
+ #require 'markaby'
2
5
  require 'green_shoes'
3
6
  require 'gameday'
4
7
  require 'team'
data/readme.txt CHANGED
@@ -4,17 +4,19 @@ Hey there -
4
4
 
5
5
  If you care about baseball half as much as I do, this might be interesting to you - if not, well I'm sorry...
6
6
 
7
- Assuming you do give a rat's behind about baseball, odds are you've scored a game or two... I've been living abroad for a good long while - and the truth is that folks where I am are clueless about baseball... their loss. Anyway, here's an app I worked out with Shoes and timothyf's gameday_api to generate scorecards so I can check out the games the next day in a way that's sensible (to me at least...) even if i can't actually talk to anyone about it ;)
7
+ Assuming you do give a rat's behind about baseball, odds are you've scored a game or two... I've been living abroad for a good long while - and the truth is that folks where I am are clueless about baseball... their loss. Anyway, here's an app I worked out with green Shoes and timothyf's gameday_api to generate html scorecards so I can check out the games the next day in a way that's sensible (to me at least...) even if i can't actually talk to anyone about it ;)
8
8
 
9
9
  INSTALL:
10
10
 
11
11
  gem install 'baseball_scorecard'
12
12
 
13
- RUN:
13
+ RUN (in terminal):
14
14
 
15
15
  scorecard
16
16
 
17
- Select a team and date, and click 'find games.' If games for the given team and date are found, a box where you can select the game time (if there's a double header that day,) and a 'build scorecards' button will appear. Click 'build scorecards,' and give the thing a little while to cook.... it's got a bunch of data to get and crunch!
17
+ Installation of the gem might take a while - it's dependent on a few other gems that may need to be installed as well. Once the thing is installed, type `scorecard` into your terminal or command line or whatever, press return or enter or whatever, and away you go!
18
+
19
+ Select a team and date from the window that pops up, and click 'find games.' If games for the given team and date are found, a box where you can select the game time (if there's a double header that day,) and a 'build scorecards' button will appear. Click 'build scorecards,' and give the thing a little while to cook.... it's got a bunch of data to get and crunch!
18
20
 
19
21
  Everyone scores games a little differently, so here are some notes about my notation:
20
22
 
@@ -47,9 +49,13 @@ scorecard
47
49
 
48
50
  Hovering over a particular at bat cell will show the description of the at bat. Hovering over a batter will show their season and career stats.
49
51
 
52
+ I've noticed that this works best for recent games, as not all of the data necessary to generate the scorecards is available for older games - for example, I tried creating cards for the 2004 ALCS game 7 for the screenshot (being a Red Sox fan,) and it didn't work :( - Had to go back a couple of weeks to find a game that we won instead!
53
+
50
54
  So i guess that's about it... I've still got some work to do on the thing, but hopefully it'll mostly work!
51
55
 
52
56
  Go Shoes...
53
57
  Go Sox!!!
54
58
 
55
59
  - j
60
+
61
+ *** PLEASE READ THE 'gameday_copyright.txt' FILE
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: baseball_scorecard
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-05-04 00:00:00.000000000 Z
12
+ date: 2012-05-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
- name: markaby
16
- requirement: &70216140 !ruby/object:Gem::Requirement
15
+ name: green_shoes
16
+ requirement: &77452780 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,21 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70216140
24
+ version_requirements: *77452780
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: hpricot
27
- requirement: &70215440 !ruby/object:Gem::Requirement
28
- none: false
29
- requirements:
30
- - - ! '>='
31
- - !ruby/object:Gem::Version
32
- version: '0'
33
- type: :runtime
34
- prerelease: false
35
- version_requirements: *70215440
36
- - !ruby/object:Gem::Dependency
37
- name: green_shoes
38
- requirement: &70214420 !ruby/object:Gem::Requirement
27
+ requirement: &77452510 !ruby/object:Gem::Requirement
39
28
  none: false
40
29
  requirements:
41
30
  - - ! '>='
@@ -43,10 +32,10 @@ dependencies:
43
32
  version: '0'
44
33
  type: :runtime
45
34
  prerelease: false
46
- version_requirements: *70214420
35
+ version_requirements: *77452510
47
36
  - !ruby/object:Gem::Dependency
48
37
  name: gameday_api
49
- requirement: &70200090 !ruby/object:Gem::Requirement
38
+ requirement: &77452280 !ruby/object:Gem::Requirement
50
39
  none: false
51
40
  requirements:
52
41
  - - ! '>='
@@ -54,10 +43,10 @@ dependencies:
54
43
  version: '0'
55
44
  type: :runtime
56
45
  prerelease: false
57
- version_requirements: *70200090
46
+ version_requirements: *77452280
58
47
  - !ruby/object:Gem::Dependency
59
48
  name: launchy
60
- requirement: &70199400 !ruby/object:Gem::Requirement
49
+ requirement: &77452060 !ruby/object:Gem::Requirement
61
50
  none: false
62
51
  requirements:
63
52
  - - ! '>='
@@ -65,7 +54,7 @@ dependencies:
65
54
  version: '0'
66
55
  type: :runtime
67
56
  prerelease: false
68
- version_requirements: *70199400
57
+ version_requirements: *77452060
69
58
  description: Baseball scorecard generator
70
59
  email:
71
60
  - jakekaiden@gmail.com
@@ -144,10 +133,9 @@ files:
144
133
  - lib/baseball_scorecard/images/team_images/tex.png
145
134
  - lib/baseball_scorecard/images/team_images/tor.png
146
135
  - lib/baseball_scorecard/images/team_images/was.png
147
- - lib/baseball_scorecard/scorecard_away.html
148
- - lib/baseball_scorecard/scorecard_home.html
149
136
  - lib/baseball_scorecard/version.rb
150
137
  - readme.txt
138
+ - scorecard_screenshot.png
151
139
  homepage: ''
152
140
  licenses: []
153
141
  post_install_message:
@@ -1,28 +0,0 @@
1
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>OAK Scorecard</title></head><body style="background-image: url(images/grass.jpg)"><h1 style="padding-top: 5"/><pre style="color: white; font-family: arial; text-align: center">Oakland As 5 - Boston Red Sox 3</pre><h2/><pre style="color: white; font-family: arial; text-align: center">May 01, 2012</pre><img src="images/team_images/oak.png" style="position: absolute; left: 20; top: 85"/><table><tr/><td/><td style="color: white; font-family: arial; font-size: 125%; text-align: center">1</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">2</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">3</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">4</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">5</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">6</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">7</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">8</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">9</td><tr/><td width="150" title="SEASON: avg: .192 ab: 99 r: 12 sb: 5 hr: 2 rbi: 5 ops: .579
2
- CAREER: avg: .304 ab: 411 r: 52 sb: 23 hr: 2 rbi: 38 ops: .762"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">1
3
- Weeks
4
- #19 2B</pre><td style="position: relative; top: 0; left: 0" title="Jemile Weeks singles on a line drive to left fielder Cody Ross. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td style="position: relative; top: 0; left: 0" title="Jemile Weeks strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jemile Weeks singles on a line drive to center fielder Marlon Byrd. Kila Ka'aihue scores. Cliff Pennington scores. Jemile Weeks to 2nd on the throw. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><pre style="position: absolute; top: -7; left: 65; font-family: arial; font-size: small">2</pre><pre style="position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small">RBI</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jemile Weeks grounds out, third baseman Nick Punto to first baseman Adrian Gonzalez. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">5-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jemile Weeks grounds out to first baseman Adrian Gonzalez. Cliff Pennington to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">3</pre><tr/><td width="150" title="SEASON: avg: .107 ab: 28 r: 2 sb: 0 hr: 1 rbi: 2 ops: .388
5
- CAREER: avg: .234 ab: 4611 r: 525 sb: 45 hr: 139 rbi: 587 ops: .692"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">2
6
- Inge
7
- #18 3B</pre><td style="position: relative; top: 0; left: 0" title="Brandon Inge called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Brandon Inge flies out to right fielder Ryan Sweeney. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td style="position: relative; top: 0; left: 0" title="Brandon Inge flies out to right fielder Ryan Sweeney. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Brandon Inge pops out to second baseman Dustin Pedroia. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_pop.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Brandon Inge grounds out, shortstop Mike Aviles to first baseman Adrian Gonzalez. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-3.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">6-3</pre><tr/><td width="150" title="SEASON: avg: .276 ab: 98 r: 12 sb: 3 hr: 4 rbi: 9 ops: .784
8
- CAREER: avg: .248 ab: 379 r: 51 sb: 3 hr: 10 rbi: 37 ops: .709"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">3
9
- Reddick
10
- #16 RF</pre><td style="position: relative; top: 0; left: 0" title="Josh Reddick walks. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-1</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Josh Reddick called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Josh Reddick strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Josh Reddick doubles (8) on a fly ball to left fielder Cody Ross. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_2B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Josh Reddick strikes out swinging, catcher Jarrod Saltalamacchia to first baseman Adrian Gonzalez. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><tr/><td width="150" title="SEASON: avg: .250 ab: 88 r: 8 sb: 4 hr: 5 rbi: 20 ops: .796
11
- CAREER: avg: .250 ab: 88 r: 8 sb: 4 hr: 5 rbi: 20 ops: .796"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">4
12
- Cespedes
13
- #52 CF</pre><td style="position: relative; top: 0; left: 0" title="Yoenis Cespedes singles on a ground ball to center fielder Marlon Byrd. Jemile Weeks scores. Josh Reddick to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><pre style="position: absolute; top: -7; left: 65; font-family: arial; font-size: small">1</pre><pre style="position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small">RBI</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Yoenis Cespedes pops out to second baseman Dustin Pedroia. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_pop.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Yoenis Cespedes pops out to second baseman Dustin Pedroia. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_pop.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Yoenis Cespedes strikes out on foul tip. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .195 ab: 41 r: 6 sb: 1 hr: 4 rbi: 7 ops: .814
14
- CAREER: avg: .242 ab: 2371 r: 343 sb: 45 hr: 118 rbi: 364 ops: .779"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">5
15
- Gomes, J
16
- #31 LF</pre><td style="position: relative; top: 0; left: 0" title="Jonny Gomes strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jonny Gomes strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-3</pre><td style="position: relative; top: 0; left: 0" title="Jonny Gomes grounds out softly, pitcher Scott Atchison to first baseman Adrian Gonzalez. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jonny Gomes called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .229 ab: 83 r: 5 sb: 0 hr: 0 rbi: 8 ops: .536
17
- CAREER: avg: .258 ab: 2272 r: 265 sb: 15 hr: 56 rbi: 284 ops: .706"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">6
18
- Suzuki, K
19
- #8 C</pre><td style="position: relative; top: 0; left: 0" title="Kurt Suzuki called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kurt Suzuki singles on a ground ball to shortstop Mike Aviles. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">6</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kurt Suzuki grounds out, third baseman Nick Punto to first baseman Adrian Gonzalez. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">5-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kurt Suzuki flies out to center fielder Marlon Byrd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .313 ab: 48 r: 5 sb: 1 hr: 0 rbi: 2 ops: .740
20
- CAREER: avg: .220 ab: 286 r: 33 sb: 1 hr: 11 rbi: 32 ops: .695"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">7
21
- Ka'aihue
22
- #25 1B</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kila Ka'aihue hits a ground-rule double (3) on a line drive to right field. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_2B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kila Ka'aihue walks. Kurt Suzuki to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-1</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kila Ka'aihue singles on a line drive to right fielder Ryan Sweeney. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Kila Ka'aihue called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .267 ab: 15 r: 2 sb: 0 hr: 0 rbi: 0 ops: .722
23
- CAREER: avg: .267 ab: 15 r: 2 sb: 0 hr: 0 rbi: 0 ops: .722"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">8
24
- Recker
25
- #26 DH</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Anthony Recker strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Anthony Recker strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Anthony Recker singles on a ground ball to left fielder Cody Ross. Kila Ka'aihue to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Anthony Recker called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .213 ab: 89 r: 7 sb: 4 hr: 0 rbi: 4 ops: .536
26
- CAREER: avg: .260 ab: 1334 r: 163 sb: 55 hr: 18 rbi: 135 ops: .696"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">9
27
- Pennington
28
- #2 SS</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cliff Pennington flies out to left fielder Cody Ross. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-3.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cliff Pennington doubles (6) on a line drive to center fielder Marlon Byrd. Kurt Suzuki scores. Kila Ka'aihue to 3rd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_2B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2-3.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><pre style="position: absolute; top: -7; left: 65; font-family: arial; font-size: small">1</pre><pre style="position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small">RBI</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cliff Pennington flies out to left fielder Cody Ross. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cliff Pennington singles on a fly ball to right fielder Cody Ross. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre></table><hr style="padding-top: 10"/><h2 style="color: white; font-family: arial; text-align: center">Pitching</h2><table><tr/><td/><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">W-L</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">ERA</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">IP</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">AB</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">K</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">BB</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">H</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">R</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">ER</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Parker, J</td><td width="150" style="text-align: center">1-0</td><td width="150" style="text-align: center">1.38</td><td width="150" style="text-align: center">6.2</td><td width="150" style="text-align: center">27</td><td width="150" style="text-align: center">4</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">4</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">1</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Fuentes</td><td width="150" style="text-align: center">1-0</td><td width="150" style="text-align: center">4.00</td><td width="150" style="text-align: center">0.1</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Cook, R</td><td width="150" style="text-align: center">0-0</td><td width="150" style="text-align: center">0.00</td><td width="150" style="text-align: center">1.0</td><td width="150" style="text-align: center">4</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Balfour</td><td width="150" style="text-align: center">0-1</td><td width="150" style="text-align: center">4.72</td><td width="150" style="text-align: center">0.1</td><td width="150" style="text-align: center">5</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">3</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">2</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Norberto</td><td width="150" style="text-align: center">0-0</td><td width="150" style="text-align: center">4.91</td><td width="150" style="text-align: center">0.2</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td></table></body></html>
@@ -1,34 +0,0 @@
1
- <html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><title>BOS Scorecard</title></head><body style="background-image: url(images/grass.jpg)"><h1 style="padding-top: 5"/><pre style="color: white; font-family: arial; text-align: center">Oakland As 5 - Boston Red Sox 3</pre><h2/><pre style="color: white; font-family: arial; text-align: center">May 01, 2012</pre><img src="images/team_images/bos.png" style="position: absolute; left: 20; top: 85"/><table><tr/><td/><td style="color: white; font-family: arial; font-size: 125%; text-align: center">1</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">2</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">3</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">4</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">5</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">6</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">7</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">8</td><td style="color: white; font-family: arial; font-size: 125%; text-align: center">9</td><tr/><td width="150" title="SEASON: avg: .286 ab: 91 r: 18 sb: 3 hr: 5 rbi: 19 ops: .839
2
- CAREER: avg: .288 ab: 1254 r: 172 sb: 37 hr: 26 rbi: 132 ops: .736"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">1
3
- Aviles
4
- #3 SS</pre><td style="position: relative; top: 0; left: 0" title="Mike Aviles pops out to second baseman Jemile Weeks. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_pop.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Mike Aviles flies out to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Mike Aviles called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Mike Aviles grounds into a force out, fielded by third baseman Brandon Inge. Cody Ross out at 3rd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_force.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">5</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Mike Aviles singles on a line drive to center fielder Yoenis Cespedes. Cody Ross scores. Marlon Byrd scores. Nick Punto to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><pre style="position: absolute; top: -7; left: 65; font-family: arial; font-size: small">2</pre><pre style="position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small">RBI</pre><tr/><td width="150" title="SEASON: avg: .362 ab: 69 r: 7 sb: 0 hr: 0 rbi: 8 ops: .943
5
- CAREER: avg: .282 ab: 1517 r: 202 sb: 17 hr: 14 rbi: 169 ops: .720"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">2
6
- Sweeney
7
- #12 RF</pre><td style="position: relative; top: 0; left: 0" title="Ryan Sweeney hit by pitch. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_HBP.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-2</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Ryan Sweeney lines out to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_line.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Ryan Sweeney flies out to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .205 ab: 39 r: 11 sb: 1 hr: 2 rbi: 8 ops: .766
8
- CAREER: avg: .252 ab: 623 r: 81 sb: 13 hr: 17 rbi: 69 ops: .713"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">2
9
- McDonald, D
10
- #54 PH</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .125 ab: 8 r: 1 sb: 0 hr: 0 rbi: 0 ops: .250
11
- CAREER: avg: .167 ab: 42 r: 6 sb: 0 hr: 0 rbi: 4 ops: .470"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">2
12
- Anderson, La
13
- #62 PH-LF</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Lars Anderson strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td style="position: relative; top: 0; left: 0" title="Lars Anderson strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><tr/><td width="150" title="SEASON: avg: .296 ab: 98 r: 16 sb: 2 hr: 3 rbi: 7 ops: .806
14
- CAREER: avg: .305 ab: 2830 r: 480 sb: 82 hr: 75 rbi: 344 ops: .836"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">3
15
- Pedroia
16
- #15 2B</pre><td style="position: relative; top: 0; left: 0" title="Dustin Pedroia strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Dustin Pedroia singles on a line drive to right fielder Josh Reddick. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Dustin Pedroia grounds out, shortstop Cliff Pennington to first baseman Kila Ka'aihue. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">6-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Dustin Pedroia grounds out, first baseman Kila Ka'aihue to pitcher Ryan Cook. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">3-1</pre><td style="position: relative; top: 0; left: 0" title="Dustin Pedroia grounds into a force out, second baseman Jemile Weeks to shortstop Cliff Pennington. Mike Aviles out at 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_force.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4-6</pre><tr/><td width="150" title="SEASON: avg: .261 ab: 88 r: 12 sb: 0 hr: 2 rbi: 15 ops: .720
17
- CAREER: avg: .293 ab: 3800 r: 596 sb: 2 hr: 195 rbi: 642 ops: .888"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">4
18
- Gonzalez, Ad
19
- #28 1B</pre><td style="position: relative; top: 0; left: 0" title="Adrian Gonzalez grounds out to first baseman Kila Ka'aihue. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Adrian Gonzalez grounds out, first baseman Kila Ka'aihue to pitcher Jarrod Parker. Dustin Pedroia to 3rd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-3.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">3-1</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Adrian Gonzalez pops out to third baseman Brandon Inge in foul territory. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_pop.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">5</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Adrian Gonzalez walks. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-0</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .386 ab: 88 r: 17 sb: 0 hr: 6 rbi: 21 ops: 1.132
20
- CAREER: avg: .283 ab: 6219 r: 1059 sb: 11 hr: 378 rbi: 1267 ops: .922"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">5
21
- Ortiz
22
- #34 DH</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="David Ortiz flies out to right fielder Josh Reddick. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">9</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="David Ortiz grounds out, second baseman Jemile Weeks to first baseman Kila Ka'aihue. Dustin Pedroia scores. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">4-3</pre><pre style="position: absolute; top: -7; left: 65; font-family: arial; font-size: small">1</pre><pre style="position: absolute; top: -1; left: 72; font-family: arial; font-size: x-small">RBI</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="David Ortiz grounds out, shortstop Cliff Pennington to first baseman Kila Ka'aihue. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">6-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="David Ortiz called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><tr/><td width="150" title="SEASON: avg: .282 ab: 78 r: 14 sb: 0 hr: 5 rbi: 18 ops: .876
23
- CAREER: avg: .262 ab: 2440 r: 329 sb: 28 hr: 100 rbi: 371 ops: .781"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">6
24
- Ross, C
25
- #7 LF-RF</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cody Ross singles on a sharp line drive to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cody Ross grounds out, third baseman Brandon Inge to first baseman Kila Ka'aihue. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">5-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cody Ross doubles (4) on a ground ball to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_2B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Cody Ross doubles (5) on a fly ball to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_2B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><tr/><td width="150" title="SEASON: avg: .241 ab: 54 r: 6 sb: 0 hr: 4 rbi: 9 ops: .786
26
- CAREER: avg: .244 ab: 1175 r: 154 sb: 1 hr: 39 rbi: 151 ops: .711"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">7
27
- Saltalamacchia
28
- #39 C</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jarrod Saltalamacchia called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jarrod Saltalamacchia singles on a ground ball to center fielder Yoenis Cespedes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jarrod Saltalamacchia flies out to center fielder Yoenis Cespedes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Jarrod Saltalamacchia called out on strikes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_called.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><tr/><td width="150" title="SEASON: avg: .182 ab: 77 r: 5 sb: 0 hr: 0 rbi: 5 ops: .427
29
- CAREER: avg: .281 ab: 3696 r: 516 sb: 49 hr: 81 rbi: 436 ops: .758"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">8
30
- Byrd
31
- #23 CF</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Marlon Byrd flies out to center fielder Yoenis Cespedes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_3.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">3-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">8</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Marlon Byrd strikes out swinging. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_strikes.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">1-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Marlon Byrd flies out to left fielder Jonny Gomes. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_fly.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-2.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_2.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-1</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Marlon Byrd singles on a line drive to left fielder Jonny Gomes. Cody Ross to 3rd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_1B.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-3.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">2-2</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">7</pre><tr/><td width="150" title="SEASON: avg: .174 ab: 23 r: 2 sb: 0 hr: 0 rbi: 3 ops: .551
32
- CAREER: avg: .249 ab: 2602 r: 346 sb: 92 hr: 14 rbi: 218 ops: .653"/><pre style="color: white; font-family: arial; font-size: 125%; text-align: right; padding-right: 20">9
33
- Punto
34
- #5 3B</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Nick Punto grounds out, shortstop Cliff Pennington to first baseman Kila Ka'aihue. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/out_ground.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases.png" style="position: absolute; top: 0; left: 0"/><img src="images/outs_1.png" style="position: absolute; top: 69; left: 69"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">0-0</pre><pre style="position: absolute; top: 60; left: 7; font-family: arial; font-size: small">6-3</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Nick Punto walks. Jarrod Saltalamacchia to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-1</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Nick Punto walks. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-1</pre><td/><img src="images/bases_no_ba.png" style="position: relative; top: 0; left: 0"/><td style="position: relative; top: 0; left: 0" title="Nick Punto walks. Marlon Byrd to 2nd. "/><img src="images/bases_bg.png" style="position: absolute; top: 0; left: 0"/><img src="images/hit_BB.png" style="position: absolute; top: 0; left: 0"/><img src="images/bases-1-2-3.png" style="position: absolute; top: 0; left: 0"/><pre style="position: absolute; top: -7; left: 7; font-family: arial; font-size: small">4-2</pre></table><hr style="padding-top: 10"/><h2 style="color: white; font-family: arial; text-align: center">Pitching</h2><table><tr/><td/><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">W-L</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">ERA</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">IP</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">AB</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">K</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">BB</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">H</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">R</td><td width="150" style="color: white; font-family: arial; font-size: 125%; text-align: center">ER</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Doubront</td><td width="150" style="text-align: center">1-1</td><td width="150" style="text-align: center">5.19</td><td width="150" style="text-align: center">4.0</td><td width="150" style="text-align: center">20</td><td width="150" style="text-align: center">8</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">6</td><td width="150" style="text-align: center">5</td><td width="150" style="text-align: center">5</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Atchison</td><td width="150" style="text-align: center">1-0</td><td width="150" style="text-align: center">1.88</td><td width="150" style="text-align: center">2.0</td><td width="150" style="text-align: center">8</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Hill, R</td><td width="150" style="text-align: center">0-0</td><td width="150" style="text-align: center">3.86</td><td width="150" style="text-align: center">1.2</td><td width="150" style="text-align: center">6</td><td width="150" style="text-align: center">3</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td><tr style="color: white; font-family: arial"/><td style="font-size: 125%; text-align: right; padding-right: 20">Albers</td><td width="150" style="text-align: center">0-0</td><td width="150" style="text-align: center">1.93</td><td width="150" style="text-align: center">1.1</td><td width="150" style="text-align: center">5</td><td width="150" style="text-align: center">2</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">1</td><td width="150" style="text-align: center">0</td><td width="150" style="text-align: center">0</td></table></body></html>