<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/subtitle_it/formats/rsb.rb</filename>
    </added>
    <added>
      <filename>spec/fixtures/pseudo.rsb</filename>
    </added>
    <added>
      <filename>spec/subtitle_it/formats/rsb_spec.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -17,4 +17,9 @@
 == 0.4.0 2008-09-07
 
 * 1 major enhancement:
-  * Adds yml generator
\ No newline at end of file
+  * Adds yml generator
+  
+== 0.5.1 2008-09-08
+
+* 1 major enhancement:
+  * Adds rsb support
\ No newline at end of file</diff>
      <filename>History.txt</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 History.txt
 License.txt
 Manifest.txt
-PostInstall.txt
 README.markdown
 README.txt
 Rakefile
@@ -11,7 +10,7 @@ config/hoe.rb
 config/requirements.rb
 lib/subtitle_it.rb
 lib/subtitle_it/delay.rb
-lib/subtitle_it/formats/pseudo.rb
+lib/subtitle_it/formats/rsb.rb
 lib/subtitle_it/formats/srt.rb
 lib/subtitle_it/formats/sub.rb
 lib/subtitle_it/formats/yml.rb
@@ -25,11 +24,12 @@ script/generate
 script/txt2html
 setup.rb
 spec/fixtures/godfather.srt
+spec/fixtures/pseudo.rsb
 spec/fixtures/pulpfiction.sub
 spec/fixtures/sincity.yml
 spec/spec.opts
 spec/spec_helper.rb
-spec/subtitle_it/formats/pseudo_spec.rb
+spec/subtitle_it/formats/rsb_spec.rb
 spec/subtitle_it/formats/srt_spec.rb
 spec/subtitle_it/formats/sub_spec.rb
 spec/subtitle_it/formats/yml_spec.rb
@@ -37,12 +37,7 @@ spec/subtitle_it/subline_spec.rb
 spec/subtitle_it/subtime_spec.rb
 spec/subtitle_it/subtitle_spec.rb
 spec/subtitle_it_spec.rb
+subtitle_it.gemspec
 tasks/deployment.rake
 tasks/environment.rake
 tasks/rspec.rake
-tasks/website.rake
-website/index.html
-website/index.txt
-website/javascripts/rounded_corners_lite.inc.js
-website/stylesheets/screen.css
-website/template.html.erb</diff>
      <filename>Manifest.txt</filename>
    </modified>
    <modified>
      <diff>@@ -10,8 +10,9 @@ rescue LoadError
 end
 
 require 'optparse'
-
 require 'subtitle_it'
+
+include SubtitleIt
 # NOTE: the option -p/--path= is given as an example, and should probably be replaced in your application.
 
 OPTIONS = {
@@ -23,7 +24,7 @@ MANDATORY_OPTIONS = %w(  )
 
 parser = OptionParser.new do |opts|
   opts.banner = &lt;&lt;BANNER
-SubtitleIt - Convert and Create subtitles.
+SubtitleIt - Convert and create subtitles.
 
 Usage: #{File.basename($0)} [options] file_in [file_out]
 
@@ -45,7 +46,11 @@ BANNER
           &quot;Delay to add/remove&quot;) { |OPTIONS[:delay]| }
           
   opts.on(&quot;-h&quot;, &quot;--help&quot;,
-          &quot;Show this help message.&quot;) { puts opts; exit }
+          &quot;Show this help message.&quot;) { puts opts; exit }          
+
+  opts.on(&quot;-v&quot;, &quot;--version&quot;,
+          &quot;Show program version&quot;) { OPTIONS[:version] = true }          
+          
   opts.parse!(ARGV)
 
   if MANDATORY_OPTIONS &amp;&amp; MANDATORY_OPTIONS.find { |option| OPTIONS[option.to_sym].nil? }
@@ -53,11 +58,16 @@ BANNER
   end
 end
     t = Time.now
+if OPTIONS[:version]
+  include SubtitleIt
+  puts a
+  exit
+end    
+
 if ARGV.empty?
   puts parser.banner
   exit
 end
-path = OPTIONS[:path]
 
 filein, filein_ext = ARGV[0].split('.')
 fileout, fileout_ext = ARGV[1] ? ARGV[1].split('.') : [filein, filein_ext]
@@ -90,10 +100,16 @@ header:
   version: FIXME
   
 lines:
-  - ['00:05:26.5', '00:05:28.5', 'worth killing for...']
+  - ['00:05:26.5', '2', 'worth killing for...']
 GEN
-  OPTIONS[:format] = 'yml'
+  OPTIONS[:format] = 'rsb'
 end
 
-File.open(&quot;#{fileout}.#{OPTIONS[:format]}&quot;, 'w') {|f| f.write(out) }  
-puts &quot;Done. Total time: #{Time.now - t}&quot;
\ No newline at end of file
+fout = &quot;#{fileout}.#{OPTIONS[:format]}&quot;
+
+if File.writable?(fout)
+  File.open(fout, 'w') {|f| f.write(out) }  
+  puts &quot;Done. Total time: #{Time.now - t}&quot;
+else
+  puts &quot;Can`t write to #{fout}&quot;
+end
\ No newline at end of file</diff>
      <filename>bin/subtitle_it</filename>
    </modified>
    <modified>
      <diff>@@ -1,14 +1,16 @@
 $:.unshift(File.dirname(__FILE__)) unless
 $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
-
 require 'rubygems'
-
+require 'subtitle_it/version'
 require 'subtitle_it/delay'
 require 'subtitle_it/subtime'
 require 'subtitle_it/subline'
 require 'subtitle_it/subtitle'
 
 module SubtitleIt
+ def a
+   'hhh'
+ end
 end
 
 class Numeric
@@ -34,7 +36,6 @@ class String
 end
 
 class Fixnum
-
   def to_time()
     # convert millisec to standard time format
     # 3600 * 1000 = ,000
@@ -46,5 +47,4 @@ class Fixnum
     p time_list if $DEBUG
     [ time_list.join(':'),msec ].join(',')
   end
-
 end
\ No newline at end of file</diff>
      <filename>lib/subtitle_it.rb</filename>
    </modified>
    <modified>
      <diff>@@ -12,13 +12,13 @@ module SubtitleIt
     end
 
     def to_srt
-      out = &quot;&quot;
+      out = []
       @lines.each_with_index do |l,i|
-        out &lt;&lt; &quot;#{i}\n&quot;
-        out &lt;&lt; &quot;%s --&gt; %s\n&quot; % [l.text_on.to_s, l.text_off.to_s]
-        out &lt;&lt; l.text + &quot;\n&quot;
+        out &lt;&lt; &quot;#{i}&quot;
+        out &lt;&lt; &quot;%s --&gt; %s&quot; % [l.text_on.to_s, l.text_off.to_s]
+        out &lt;&lt; l.text
       end
-      out        
+      out.join(&quot;\n&quot;)
     end    
   end
 end</diff>
      <filename>lib/subtitle_it/formats/srt.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 require 'subtitle_it/formats/srt'
 require 'subtitle_it/formats/sub'
 require 'subtitle_it/formats/yml'
-require 'subtitle_it/formats/pseudo'
+require 'subtitle_it/formats/rsb'
 
 module SubtitleIt
   include Formats
@@ -10,7 +10,7 @@ module SubtitleIt
     attr_reader :raw, :format, :lines
   
     def initialize(raw,format,framerate=23.976)
-      raise unless format =~ /^srt$|^sub|yml|txt/
+      raise unless format =~ /^srt$|^sub|yml|txt|rsb/
       @framerate = framerate
       @raw = raw
       @format = format</diff>
      <filename>lib/subtitle_it/subtitle.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,9 +1,12 @@
 module SubtitleIt
-  module VERSION #:nodoc:
+  module V #:nodoc:
     MAJOR = 0
-    MINOR = 4
-    TINY  = 0
+    MINOR = 5
+    TINY  = 3
 
     STRING = [MAJOR, MINOR, TINY].join('.')
   end
+  def version
+    STRING
+  end
 end</diff>
      <filename>lib/subtitle_it/version.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1,2025 @@
-{0}{0}00:00:01.118 --&gt; 00:00:01.177&quot;l'm through, never again,|too dangerous.&quot;2|00:00:01.180 --&gt; 00:00:01.270I know that's what I always say.|I'm always right too.3|00:00:01.274 --&gt; 00:00:01.364- You forget about it in a day or two.|- The days of me forgetting are over.4|00:00:01.368 --&gt; 00:00:01.428The days of me remembering|have just begun.5|00:00:01.430 --&gt; 00:00:01.490You know, when you go on like this,|what you sound like ?6|00:00:01.493 --&gt; 00:00:01.583- I sound like a sensible fuckin' man.|- You sound like a duck.7|00:00:01.587 --&gt; 00:00:01.707- Quack, quack, quack.|- Take heart, 'cause you're never8|00:00:01.712 --&gt; 00:00:01.802Since I'm never gonna|do it again, you're never9|00:00:01.806 --&gt; 00:00:01.956- After tonight ?|- Correct. I got all tonight to quack.10|00:00:01.962 --&gt; 00:00:02.022- Can I get anyone more coffee ?|- Oh, yes !11|00:00:02.087 --&gt; 00:00:02.176- Thank you.|- You're welcome.12|00:00:02.180 --&gt; 00:00:02.270I mean, the way it is now,13|00:00:02.274 --&gt; 00:00:02.334you're takin' the same risk|as when you rob a bank.14|00:00:02.336 --&gt; 00:00:02.396Takin' more of a risk.|Banks are easier.15|00:00:02.399 --&gt; 00:00:02.489Federal banks ain't supposed to stop you|in any way during a robbery.16|00:00:02.493 --&gt; 00:00:02.643They're insured. Why should|they give a fuck ? I don't even17|00:00:02.649 --&gt; 00:00:02.739Heard about this one bloke, he walks|into a bank with a portable phone.18|00:00:02.743 --&gt; 00:00:02.833He gives the phone to a teller.|The bloke on the other end says,19|00:00:02.837 --&gt; 00:00:02.927&quot;We got this guy's little girl.|If you don't give him all your20|00:00:02.931 --&gt; 00:00:03.021- Did it work ?|- Fuckin' right it worked.21|00:00:03.025 --&gt; 00:00:03.204Knucklehead walks into a bank|with a telephone. Not a pistol,22|00:00:03.211 --&gt; 00:00:03.331- Cleans the place out.|They don't lift a fuckin' finger.23|00:00:03.336 --&gt; 00:00:03.456There probably never was|a little girl. The point of24|00:00:03.462 --&gt; 00:00:03.552The point of the story is they|robbed a bank with a telephone.25|00:00:03.555 --&gt; 00:00:03.645- You want to rob banks ?|- I'm not saying I wanna rob banks.26|00:00:03.649 --&gt; 00:00:03.709I'm illustrating if we did, it'd be|easier than what we've been doing.27|00:00:03.712 --&gt; 00:00:03.832-No more liquor stores ?|-What've we been talkin' about ?28|00:00:03.837 --&gt; 00:00:03.927Besides, it ain't the giggle|it used to be. There's too many29|00:00:03.931 --&gt; 00:00:03.991Vietnamese, Koreans,|don't even speak fuckin' English.30|00:00:03.993 --&gt; 00:00:04.053You tell 'em empty out|the register, they don't know31|00:00:04.056 --&gt; 00:00:04.116They make it too personal.32|00:00:04.119 --&gt; 00:00:04.239- We keep on, one of these gook|fuckers gonna make us kill him.33|00:00:04.244 --&gt; 00:00:04.393I don't want to either.|But they'll probably put us34|00:00:04.399 --&gt; 00:00:04.429And if it's not the gooks,35|00:00:04.462 --&gt; 00:00:04.522it's these old fuckin' Jews who've owned|the store for 15 fucking generations.36|00:00:04.524 --&gt; 00:00:04.644You got Grandpa lrving sitting|behind the counter with37|00:00:04.649 --&gt; 00:00:04.709Try walkin' into one of those places|with nothing but a phone.38|00:00:04.712 --&gt; 00:00:04.772See how far that gets you.|Forget it.39|00:00:04.774 --&gt; 00:00:04.864- We're out of it.|- Well, what then, day jobs ?40|00:00:04.868 --&gt; 00:00:04.928- Not in this life.|- What then ?41|00:00:04.993 --&gt; 00:00:05.053Gar&#231;on, coffee !42|00:00:05.056 --&gt; 00:00:05.146This place.43|00:00:05.181 --&gt; 00:00:05.271Gar&#231;on means boy.44|00:00:05.368 --&gt; 00:00:05.458This place ?|A coffee shop ?45|00:00:05.462 --&gt; 00:00:05.552What's wrong with that ?46|00:00:05.555 --&gt; 00:00:05.645Nobody ever robs restaurants.|Why not ?47|00:00:05.681 --&gt; 00:00:05.741Bars, liquor stores,48|00:00:05.743 --&gt; 00:00:05.863gas stations; you get your head|blown off stickin' up one of them.49|00:00:05.868 --&gt; 00:00:05.988Restaurants, on the other hand,|you catch with their pants down.50|00:00:05.993 --&gt; 00:00:06.083They're not expectin' to get robbed.|Not as expectin' anyway.51|00:00:06.087 --&gt; 00:00:06.237- I bet you could cut down on the|hero factor in a place like this.52|00:00:06.244 --&gt; 00:00:06.333Same as banks,|these places are insured.53|00:00:06.336 --&gt; 00:00:06.396Manager.|He don't give a fuck.54|00:00:06.399 --&gt; 00:00:06.489They're just trying to get you out|before you start pluggin' the diners.55|00:00:06.493 --&gt; 00:00:06.613Waitresses. Fuckin' forget it.|No way they're takin' a bullet56|00:00:06.618 --&gt; 00:00:06.708Busboys. Some wetback gettin'|paid $1.50 an hour...57|00:00:06.712 --&gt; 00:00:06.772really give a fuck|you're stealin' from the owner ?58|00:00:06.774 --&gt; 00:00:06.864Customers sittin' there|with food in their mouths,59|00:00:06.868 --&gt; 00:00:07.018One minute, they're havin'|a Denver omelet, the next, someone60|00:00:07.025 --&gt; 00:00:07.175See, I got the idea the last|liquor store we stuck up, remember ?61|00:00:07.181 --&gt; 00:00:07.241- All the customers kept comin' in.|- Yeah.62|00:00:07.244 --&gt; 00:00:07.364You got the idea|of takin' their wallets.63|00:00:07.369 --&gt; 00:00:07.458- Thank you.|- Made more from the wallets64|00:00:07.462 --&gt; 00:00:07.552- Yes, we did.|- A lot of people come to restaurants.65|00:00:07.555 --&gt; 00:00:07.645- A lot of wallets.|- Pretty smart, huh ?66|00:00:07.649 --&gt; 00:00:07.709Pretty smart.67|00:00:07.774 --&gt; 00:00:07.864I'm ready. Let's do it.|Right now, right here.68|00:00:07.868 --&gt; 00:00:07.988- Come on.|- All right. Same as69|00:00:07.993 --&gt; 00:00:08.083You're crowd control.|I'll handle the employees.70|00:00:08.244 --&gt; 00:00:08.334- I love you, Pumpkin.|- I love you, Honey Bunny.71|00:00:08.369 --&gt; 00:00:08.428Everybody be cool !|This is a robbery !72|00:00:08.430 --&gt; 00:00:08.520Any of you fucking pricks move,73|00:00:08.524 --&gt; 00:00:08.644and I'll execute|every motherfuckin' last one of you.74|00:00:08.649 --&gt; 00:00:08.649and I'll execute|every motherfuckin' last one of you.75|00:00:11.993 --&gt; 00:00:12.053- Jungle boogie|- Get down with the boogie76|00:00:12.056 --&gt; 00:00:12.116- Jungle boogie|- Get it on77|00:00:12.119 --&gt; 00:00:12.179- Jungle boogie|- Get down with the boogie78|00:00:12.181 --&gt; 00:00:12.271- Jungle boogie|- Get it on79|00:00:12.275 --&gt; 00:00:12.335- Jungle boogie|- Get up with the boogie80|00:00:12.338 --&gt; 00:00:12.398- Jungle boogie|- Get up with the get down81|00:00:12.400 --&gt; 00:00:12.460- Jungle boogie|- Get down and boogie82|00:00:12.463 --&gt; 00:00:12.553- Jungle boogie|- Shake it around83|00:00:12.774 --&gt; 00:00:12.894- Okay, so tell me again|about the hash bars.84|00:00:12.900 --&gt; 00:00:12.960- Hash is legal there, right ?|- It's legal, but it ain't 100% legal.85|00:00:12.993 --&gt; 00:00:13.113You just can't walk into a restaurant,|roll a joint and start puffin' away.86|00:00:13.119 --&gt; 00:00:13.209I mean, they want you to smoke in|your home or certain designated places.87|00:00:13.212 --&gt; 00:00:13.302- Those are hash bars ?|- Yeah. It breaks down like this.88|00:00:13.306 --&gt; 00:00:13.366It's legal to buy it.|It's legal to own it.89|00:00:13.369 --&gt; 00:00:13.459And if you're the proprietor|of a hash bar, it's legal to sell it.90|00:00:13.463 --&gt; 00:00:13.613It's illegal to carry it,|but-but that doesn't matter,91|00:00:13.619 --&gt; 00:00:13.738If you get stopped by a cop|in Amsterdam, it's illegal92|00:00:13.743 --&gt; 00:00:13.863- I mean, that's a right the cops|in Amsterdam don't have.93|00:00:13.868 --&gt; 00:00:13.928That's all there is to it.|I'm fuckin' goin'.94|00:00:13.931 --&gt; 00:00:14.021I know, baby.|You'd dig it the most.95|00:00:14.025 --&gt; 00:00:14.115- But you know what the funniest thing|about Europe is ?96|00:00:14.119 --&gt; 00:00:14.239It's the little differences.|I mean, they got the same shit97|00:00:14.244 --&gt; 00:00:14.334- but it's just there,|it's a little different.98|00:00:14.338 --&gt; 00:00:14.428You can walk into a movie theater|in Amsterdam and buy a beer.99|00:00:14.431 --&gt; 00:00:14.551And I don't mean just like no paper cup.|I'm talkin' about a glass of beer.100|00:00:14.557 --&gt; 00:00:14.647And in Paris, you can buy|a beer in McDonald's.101|00:00:14.681 --&gt; 00:00:14.771a Quarter-Pounder|with Cheese in Paris ?102|00:00:14.774 --&gt; 00:00:14.834They don't call it|a Quarter-Pounder with Cheese ?103|00:00:14.837 --&gt; 00:00:14.927They got the metric system.|They wouldn't know what the fuck104|00:00:14.931 --&gt; 00:00:15.051- What do they call it ?|- They call it a Royale with Cheese.105|00:00:15.056 --&gt; 00:00:15.086- Royale with Cheese.|- That's right.106|00:00:15.087 --&gt; 00:00:15.147What do they call a Big Mac ?107|00:00:15.150 --&gt; 00:00:15.240Big Mac's a Big Mac,|but they call it Le Big Mac.108|00:00:15.244 --&gt; 00:00:15.334Le Big Mac.109|00:00:15.338 --&gt; 00:00:15.458- What do they call a Whopper ?|- I don't know. I didn't110|00:00:15.463 --&gt; 00:00:15.583- You know what they put on French fries|in Holland instead of ketchup ?111|00:00:15.588 --&gt; 00:00:15.678- Mayonnaise.|- Goddamn !112|00:00:15.682 --&gt; 00:00:15.801- I seen 'em do it, man.|They fuckin' drown 'em in that shit.113|00:00:15.868 --&gt; 00:00:15.988We should have shotguns|for this kind of deal.114|00:00:16.056 --&gt; 00:00:16.146- How many up there ?|- Three or four.115|00:00:16.150 --&gt; 00:00:16.270- That's countin' our guy ?|- Not sure.116|00:00:16.275 --&gt; 00:00:16.365- So that means that it could be|up to five guys up there ?117|00:00:16.369 --&gt; 00:00:16.429We should have|fuckin' shotguns.118|00:00:16.431 --&gt; 00:00:16.521- What's her name ?|- Mia.119|00:00:16.525 --&gt; 00:00:16.645- Mia. How did Marsellus and her meet ?|- I don't know.120|00:00:16.650 --&gt; 00:00:16.769However people meet people.|She used to be a actress.121|00:00:16.774 --&gt; 00:00:16.834Oh, really ?|She do anything I'd have seen ?122|00:00:16.837 --&gt; 00:00:16.957- I think her biggest deal|was she starred in a pilot.123|00:00:16.962 --&gt; 00:00:17.082- Well, you know the shows on TV ?|- I don't watch TV.124|00:00:17.087 --&gt; 00:00:17.177Yeah, but you are aware that there|is an invention called television,125|00:00:17.181 --&gt; 00:00:17.271- and on this invention|they show shows, right ?126|00:00:17.275 --&gt; 00:00:17.425The way they pick TV shows is they make|one show. That show's called a pilot.127|00:00:17.431 --&gt; 00:00:17.521Then they show that one show|to the people who pick shows...128|00:00:17.525 --&gt; 00:00:17.585and on the strength of that|one show, they decide if129|00:00:17.588 --&gt; 00:00:17.738Some get chosen and|become television programs.130|00:00:17.744 --&gt; 00:00:17.833She starred in one of the ones|that became nothing.131|00:00:17.837 --&gt; 00:00:17.927You remember|Antwan Rockamora ?132|00:00:17.931 --&gt; 00:00:18.021Half-black, half-Samoan.|Used to call him &quot;Tony Rocky Horror.&quot;133|00:00:18.056 --&gt; 00:00:18.146- Yeah, maybe. Fat, right ?|- I wouldn't go so far as to134|00:00:18.150 --&gt; 00:00:18.240I mean, he got a weight problem.|What's a nigger gonna do ? He's Samoan.135|00:00:18.244 --&gt; 00:00:18.364- I think I know who you mean.|What about him ?136|00:00:18.369 --&gt; 00:00:18.489Word 'round the campfire is|it was on account of137|00:00:18.744 --&gt; 00:00:18.863- So what he'd do ? Fuck her ?|- No, no, no, no, no. Nothin' that bad.138|00:00:18.868 --&gt; 00:00:18.958- Well, then what then ?|- He gave her a foot massage.139|00:00:19.025 --&gt; 00:00:19.115A foot massage ?140|00:00:19.119 --&gt; 00:00:19.179- That's it ?|- Mm-hmm.141|00:00:19.181 --&gt; 00:00:19.241Then what'd Marsellus do ?142|00:00:19.244 --&gt; 00:00:19.334Sent a couple cats over to his place.|They took him out on his patio.143|00:00:19.338 --&gt; 00:00:19.458Threw his ass over the balcony.|Nigger fell four stories.144|00:00:19.463 --&gt; 00:00:19.583He had a little garden down|at the bottom enclosed in glass,145|00:00:19.588 --&gt; 00:00:19.648Nigger fell through that.146|00:00:19.650 --&gt; 00:00:19.740Since then, he kind of|developed a speech impediment.147|00:00:19.776 --&gt; 00:00:19.866- That's a damn shame.|- Hmm.148|00:00:19.994 --&gt; 00:00:20.114- But still, you play|with matches, you get burned.149|00:00:20.119 --&gt; 00:00:20.239You don't be givin' Marsellus Wallace's|new bride a foot massage.150|00:00:20.244 --&gt; 00:00:20.304You don't think he overreacted ?151|00:00:20.306 --&gt; 00:00:20.456Antwan didn't expect Marsellus|to react the way he did,152|00:00:20.463 --&gt; 00:00:20.583It was a foot massage.|A foot massage is nothin'.153|00:00:20.588 --&gt; 00:00:20.708It's laying your hands in a familiar way|on Marsellus's new wife.154|00:00:20.713 --&gt; 00:00:20.833I mean, is it as bad as eatin'|her pussy out ? No, but it's155|00:00:20.838 --&gt; 00:00:20.898Whoa, stop right there.|Eatin' the bitch out...156|00:00:20.901 --&gt; 00:00:20.990and givin' the bitch a foot massage|ain't even the same fucking thing.157|00:00:20.994 --&gt; 00:00:21.114- It's not. It's the same ballpark.|- Ain't no fuckin' ballpark neither.158|00:00:21.119 --&gt; 00:00:21.209Now, look, maybe your method|of massage differs from mine.159|00:00:21.212 --&gt; 00:00:21.302But touchin' his wife's feet|and sticking your tongue160|00:00:21.306 --&gt; 00:00:21.456ain't the same fuckin' ballpark;|it ain't the same league;161|00:00:21.463 --&gt; 00:00:21.553- Foot massages don't mean shit !|- Have you ever given a foot massage ?162|00:00:21.557 --&gt; 00:00:21.647Don't be tellin' me about foot massages.163|00:00:21.650 --&gt; 00:00:21.740- I'm the foot fuckin' master.|- You given a lot of them ?164|00:00:21.744 --&gt; 00:00:21.864Shit, yeah !|Got my technique down and everything.165|00:00:21.869 --&gt; 00:00:21.958Would you give a guy|a foot massage ?166|00:00:21.994 --&gt; 00:00:22.084- Fuck you.167|00:00:22.087 --&gt; 00:00:22.177- You give 'em a lot ?|- Fuck you.168|00:00:22.181 --&gt; 00:00:22.271- You know, I'm kind of tired.|I could use a foot massage.169|00:00:22.275 --&gt; 00:00:22.365You best back off.|I'm gettin' a little pissed here.170|00:00:22.400 --&gt; 00:00:22.490- This is the door.|- Yeah, it is.171|00:00:22.557 --&gt; 00:00:22.647What time you got ?172|00:00:22.650 --&gt; 00:00:22.7107:22 in the a.m.173|00:00:22.713 --&gt; 00:00:22.803No, it ain't quite time yet.|Come on. Let's hang back.174|00:00:23.056 --&gt; 00:00:23.146Look, just 'cause I wouldn't give no man|a foot massage don't make it right...175|00:00:23.150 --&gt; 00:00:23.240for Marsellus to throw|Antwan off a building into176|00:00:23.244 --&gt; 00:00:23.334fuckin' up the way the nigger talks;|that shit ain't right.177|00:00:23.338 --&gt; 00:00:23.458Motherfucker do that shit to me,|he better paralyze my ass,178|00:00:23.463 --&gt; 00:00:23.613I ain't sayin' it's right,|but you sayin' a massage don't mean179|00:00:23.619 --&gt; 00:00:23.739Now, look, I've given a million|ladies a million foot massages,180|00:00:23.776 --&gt; 00:00:23.866We act like they don't,|but they do. That's what's181|00:00:23.869 --&gt; 00:00:23.929There's a sensuous thing goin' on...182|00:00:23.932 --&gt; 00:00:24.022where you don't talk about it,|but you know it and she knows it.183|00:00:24.026 --&gt; 00:00:24.175Fuckin' Marsellus knew it. And Antwan|should've fuckin' better known better.184|00:00:24.181 --&gt; 00:00:24.331That's his fuckin' wife, man.|This ain't a man with a sense185|00:00:24.338 --&gt; 00:00:24.398You know what I'm sayin' ?186|00:00:24.400 --&gt; 00:00:24.460It's an interestin' point.187|00:00:24.463 --&gt; 00:00:24.523Come on.|Let's get into character.188|00:00:24.744 --&gt; 00:00:24.804- What's her name again ?|- Mia.189|00:00:24.807 --&gt; 00:00:24.897- Mia.|- Why you so interested190|00:00:24.901 --&gt; 00:00:25.051He's goin' out of town, Florida.|And he asked me if I'd take care191|00:00:25.057 --&gt; 00:00:25.176- Take care of her ?|- No, man. Just take her out.192|00:00:25.181 --&gt; 00:00:25.271Show her a good time.|Make sure she don't get lonely.193|00:00:25.275 --&gt; 00:00:25.335You're gonna be takin'|Mia Wallace out on a date ?194|00:00:25.369 --&gt; 00:00:25.429It is not a date.195|00:00:25.432 --&gt; 00:00:25.552It's just like if you were|gonna take your buddy's wife196|00:00:25.557 --&gt; 00:00:25.677- It's just good company, that's all.197|00:00:25.776 --&gt; 00:00:25.926- It's not a date.|It's definitely not a date.198|00:00:26.120 --&gt; 00:00:26.239Hey, kids.|How you boys doin' ?199|00:00:26.244 --&gt; 00:00:26.304Hey, keep chillin'.200|00:00:26.494 --&gt; 00:00:26.584You know who we are ?201|00:00:26.588 --&gt; 00:00:26.708We're associates of your|business partner, Marsellus Wallace.202|00:00:26.713 --&gt; 00:00:26.803You do remember|your business partner, don't you ?203|00:00:26.869 --&gt; 00:00:26.959Now, let me take|a wild guess here.204|00:00:27.026 --&gt; 00:00:27.116- You're Brett, right ?|- Yeah.205|00:00:27.120 --&gt; 00:00:27.239I thought so. You remember|your business partner Marsellus Wallace,206|00:00:27.244 --&gt; 00:00:27.304don't ya, Brett ?207|00:00:27.306 --&gt; 00:00:27.366Yeah, I remember.208|00:00:27.369 --&gt; 00:00:27.489Good. Looks like me and Vincent|caught you boys at breakfast.209|00:00:27.494 --&gt; 00:00:27.584Sorry about that.|Whatcha havin' ?210|00:00:27.588 --&gt; 00:00:27.648Hamburgers.211|00:00:27.650 --&gt; 00:00:27.770Hamburgers ! The cornerstone|of any nutritious breakfast.212|00:00:27.807 --&gt; 00:00:27.867What kind of hamburgers ?213|00:00:27.869 --&gt; 00:00:27.929- Uh, ch-cheeseburgers.|- No, no, no.214|00:00:27.932 --&gt; 00:00:28.022Where'd you get 'em ?|McDonald's, Wendy's, Jack-in-the-Box ?215|00:00:28.026 --&gt; 00:00:28.116- Where ?|- Uh, Big Kahuna Burger.216|00:00:28.120 --&gt; 00:00:28.209Big Kahuna Burger !|That's that Hawaiian burger joint.217|00:00:28.213 --&gt; 00:00:28.333I hear they got some tasty burgers.|I ain't never had one myself.218|00:00:28.338 --&gt; 00:00:28.398They're-- They're good.219|00:00:28.400 --&gt; 00:00:28.490You mind if I try|one of yours ?220|00:00:28.494 --&gt; 00:00:28.554- This is yours here, right ?|- Yeah.221|00:00:28.807 --&gt; 00:00:28.867Mmmm.222|00:00:28.869 --&gt; 00:00:28.959This is a tasty burger !|Vincent !223|00:00:28.963 --&gt; 00:00:29.023You ever had|a Big Kahuna burger ?224|00:00:29.057 --&gt; 00:00:29.147Want a bite ?|They're real tasty.225|00:00:29.151 --&gt; 00:00:29.241- I ain't hungry.|- Well, if you like burgers,226|00:00:29.245 --&gt; 00:00:29.364Me, I can't usually get 'em|'cause my girlfriend's a vegetarian,227|00:00:29.369 --&gt; 00:00:29.459which pretty much makes me|a vegetarian.228|00:00:29.463 --&gt; 00:00:29.553But I do love the taste|of a good burger. Mmmm.229|00:00:29.557 --&gt; 00:00:29.677You know what they call|a Quarter-Pounder with Cheese230|00:00:29.713 --&gt; 00:00:29.773- No.|- Tell 'em, Vincent.231|00:00:29.776 --&gt; 00:00:29.866- A Royale with Cheese.|- A Royale with Cheese.232|00:00:29.901 --&gt; 00:00:29.991You know why they call it that ?233|00:00:29.995 --&gt; 00:00:30.085Uh, because of|the metric system ?234|00:00:30.120 --&gt; 00:00:30.210Check out the big brain|on Brett !235|00:00:30.214 --&gt; 00:00:30.303You're a smart motherfucker.|That's right. The metric system.236|00:00:30.400 --&gt; 00:00:30.460- What's in this ?|- Sprite.237|00:00:30.463 --&gt; 00:00:30.523Sprite. Good.238|00:00:30.525 --&gt; 00:00:30.615You mind if I have some of your|tasty beverage to wash this down with ?239|00:00:30.619 --&gt; 00:00:30.709Go right ahead.240|00:00:31.057 --&gt; 00:00:31.147That hit the spot.241|00:00:31.151 --&gt; 00:00:31.271You. Flock of Seagulls.|You know why we're here ?242|00:00:31.276 --&gt; 00:00:31.365- Why don't you tell my man|Vince here where you got the shit hid.243|00:00:31.369 --&gt; 00:00:31.489I don't remember askin' you|a goddamned thing !244|00:00:31.588 --&gt; 00:00:31.648You were sayin' ?245|00:00:31.651 --&gt; 00:00:31.711It's in the cupboard.246|00:00:31.807 --&gt; 00:00:31.897N-No, the one|by your kn-knees.247|00:00:32.525 --&gt; 00:00:32.585We happy ?248|00:00:32.588 --&gt; 00:00:32.678Vincent ?249|00:00:32.682 --&gt; 00:00:32.742- We happy ?|- Yeah, we happy.250|00:00:32.807 --&gt; 00:00:32.927 Look, I'm sorry, uh, l--|I didn't get your name.251|00:00:32.932 --&gt; 00:00:33.052I got yours. Vincent. Right ?|B-But I never got yours.252|00:00:33.057 --&gt; 00:00:33.207- My name's Pitt, and your ass|ain't talkin' your way outta this shit.253|00:00:33.245 --&gt; 00:00:33.335I just want you|to know how--254|00:00:33.401 --&gt; 00:00:33.520I just want you to know how sorry we are|th-that things got so fucked up...255|00:00:33.525 --&gt; 00:00:33.585with us and Mr. Wallace.256|00:00:33.588 --&gt; 00:00:33.708W-We got into this thing with|the best intentions. Really. I never--257|00:00:33.713 --&gt; 00:00:33.833Oh, I'm sorry,|did I break your concentration ?258|00:00:33.838 --&gt; 00:00:33.898- I didn't mean to do that. Please.259|00:00:33.901 --&gt; 00:00:34.051Continue. You were saying something|about &quot;best intentions.&quot;260|00:00:34.120 --&gt; 00:00:34.210What's the matter ?|Oh, you were finished !261|00:00:34.214 --&gt; 00:00:34.304Oh, well, allow me to retort.262|00:00:34.433 --&gt; 00:00:34.492What does Marsellus Wallace|look like ?263|00:00:34.494 --&gt; 00:00:34.584What ?264|00:00:34.588 --&gt; 00:00:34.678- What country you from ?|- What ?265|00:00:34.682 --&gt; 00:00:34.802- &quot;What&quot; ain't no country I ever|heard of. They speak English in What ?266|00:00:34.807 --&gt; 00:00:34.897- English, motherfucker !|Do you speak it ?267|00:00:34.901 --&gt; 00:00:34.931- Then you know what I'm sayin' !|- Yes.268|00:00:34.932 --&gt; 00:00:35.052Describe what Marsellus Wallace|looks like !269|00:00:35.057 --&gt; 00:00:35.117- What ? l--|- Say &quot;what&quot; again !270|00:00:35.120 --&gt; 00:00:35.240Say &quot;what&quot; again ! I dare ya !|I double dare you, motherfucker !271|00:00:35.245 --&gt; 00:00:35.365- Say &quot;what&quot; one more goddamn time !|- H-H-He's black.272|00:00:35.370 --&gt; 00:00:35.430- Go on !|- He's bald !273|00:00:35.433 --&gt; 00:00:35.522- Does he look like a bitch ?|- What ?274|00:00:35.557 --&gt; 00:00:35.677Does he look... Iike a bitch ?275|00:00:35.682 --&gt; 00:00:35.802- No !|- Then why you tryin'276|00:00:35.807 --&gt; 00:00:35.897- I didn't.|- Yes, you did. Yes, you did, Brett !277|00:00:35.901 --&gt; 00:00:35.961- You tried to fuck him.|- No, no.278|00:00:35.963 --&gt; 00:00:36.113But Marsellus Wallace don't like to be|fucked by anybody except Mrs. Wallace.279|00:00:36.120 --&gt; 00:00:36.210- You read the Bible, Brett ?|- Yes !280|00:00:36.214 --&gt; 00:00:36.364Well, there's this passage|I got memorized. Sort of281|00:00:36.370 --&gt; 00:00:36.430Ezekiel 25:17.282|00:00:36.433 --&gt; 00:00:36.523&quot;The path of the righteous man...283|00:00:36.526 --&gt; 00:00:36.645is beset on all sides|by the inequities of the selfish...284|00:00:36.651 --&gt; 00:00:36.741and the tyranny of evil men.285|00:00:36.744 --&gt; 00:00:36.894Blessed is he who,|in the name of charity and goodwill,286|00:00:36.901 --&gt; 00:00:36.991shepherds the weak|through the valley of darkness,287|00:00:36.995 --&gt; 00:00:37.085for he is truly|his brother's keeper...288|00:00:37.089 --&gt; 00:00:37.179and the finder|of lost children.289|00:00:37.182 --&gt; 00:00:37.302And I will strike down upon thee|with great vengeance...290|00:00:37.308 --&gt; 00:00:37.368and furious anger...291|00:00:37.370 --&gt; 00:00:37.490those who attempt to poison|and destroy My brothers !292|00:00:37.495 --&gt; 00:00:37.614And you will know|My name is the Lord...293|00:00:37.619 --&gt; 00:00:37.709when I lay My vengeance|upon thee !&quot;294|00:00:38.276 --&gt; 00:00:38.336I think you gonna find...295|00:00:38.339 --&gt; 00:00:38.429when all this shit|is over and done--296|00:00:38.495 --&gt; 00:00:38.615I think you're gonna find yourself|one smilin' motherfucker.297|00:00:38.651 --&gt; 00:00:38.741The thing is, Butch,298|00:00:38.744 --&gt; 00:00:38.834right now...|you got ability.299|00:00:38.901 --&gt; 00:00:38.961But painful as it may be,300|00:00:38.963 --&gt; 00:00:39.053ability... don't last.301|00:00:39.120 --&gt; 00:00:39.240And your days are just about over.302|00:00:39.245 --&gt; 00:00:39.365Now, that's a hard|motherfuckin' fact of life.303|00:00:39.370 --&gt; 00:00:39.520But that's a fact of life your ass|is gonna have to get realistic about.304|00:00:39.589 --&gt; 00:00:39.738You see, this business is filled to|the brim with unrealistic motherfuckers.305|00:00:39.744 --&gt; 00:00:39.864Motherfuckers who thought|their ass would age like wine.306|00:00:39.932 --&gt; 00:00:40.022If you mean it turns|to vinegar... it does.307|00:00:40.057 --&gt; 00:00:40.177If you mean it gets better|with age... it don't.308|00:00:40.245 --&gt; 00:00:40.305Besides, Butch,309|00:00:40.370 --&gt; 00:00:40.460how many fights you think|you got in you anyway ?310|00:00:40.464 --&gt; 00:00:40.524Hmm ?311|00:00:40.527 --&gt; 00:00:40.587Two ?312|00:00:40.620 --&gt; 00:00:40.739Boxers don't have|an old-timers' day.313|00:00:40.776 --&gt; 00:00:40.866You came close,|but you never made it.314|00:00:40.901 --&gt; 00:00:41.021And if you were gonna make it,|you would have made it before now.315|00:00:41.527 --&gt; 00:00:41.587You my nigger ?316|00:00:41.714 --&gt; 00:00:41.803Certainly appears so.317|00:00:41.995 --&gt; 00:00:42.085The night of the fight,|you may feel a slight sting.318|00:00:42.182 --&gt; 00:00:42.302That's pride fuckin' with you.319|00:00:42.339 --&gt; 00:00:42.399Fuck pride !320|00:00:42.464 --&gt; 00:00:42.554Pride only hurts.321|00:00:42.558 --&gt; 00:00:42.618It never helps.322|00:00:42.652 --&gt; 00:00:42.712You fight through that shit.323|00:00:42.746 --&gt; 00:00:42.895'Cause a year from now,|when you kickin' it in the Caribbean,324|00:00:42.901 --&gt; 00:00:43.051you gonna say to yourself,|&quot;Marsellus Wallace was right.&quot;325|00:00:43.120 --&gt; 00:00:43.240I got no problem|with that, Mr. Wallace.326|00:00:43.245 --&gt; 00:00:43.365In the fifth,|your ass goes down.327|00:00:43.495 --&gt; 00:00:43.525Say it.328|00:00:43.620 --&gt; 00:00:43.710In the fifth,|my ass goes down.329|00:00:43.777 --&gt; 00:00:43.836Yo, Vincent Vega.|Our man in Amsterdam.330|00:00:43.838 --&gt; 00:00:43.988Jules Winfield, our man in lnglewood.|Get your asses on in here.331|00:00:43.995 --&gt; 00:00:44.085- Goddamn, nigger,|what's up with them clothes ?332|00:00:44.089 --&gt; 00:00:44.179Where's the big man ?333|00:00:44.214 --&gt; 00:00:44.274The big man's right over there|takin' care of some business.334|00:00:44.276 --&gt; 00:00:44.426Why don't you hang back a second or two.|You see the white boy leave, go on over.335|00:00:44.495 --&gt; 00:00:44.585How ya been ?336|00:00:44.589 --&gt; 00:00:44.679- I been doin' pretty good.|How 'bout yourself ?337|00:00:44.746 --&gt; 00:00:44.836So I hear you're|takin' Mia out tomorrow.338|00:00:44.932 --&gt; 00:00:44.992At Marsellus's request.339|00:00:45.026 --&gt; 00:00:45.086- Have you met Mia ?|- Not yet.340|00:00:45.089 --&gt; 00:00:45.209- What's so fuckin' funny ?341|00:00:45.214 --&gt; 00:00:45.274- Not a goddamn thing.|- I got to piss.342|00:00:45.276 --&gt; 00:00:45.396Look, I'm not a fuckin' idiot,|all right ? It's the big man's wife.343|00:00:45.401 --&gt; 00:00:45.491I'm gonna sit across from her,|chew my food with my mouth closed,344|00:00:45.495 --&gt; 00:00:45.555Iaugh at her fuckin' jokes,|and that's it.345|00:00:45.558 --&gt; 00:00:45.648Hey, my name's Paul,|and this shit's between y'all.346|00:00:45.652 --&gt; 00:00:45.742Then what'd you fuckin'|ask me about it for ?347|00:00:45.746 --&gt; 00:00:45.806Asshole.348|00:00:45.995 --&gt; 00:00:46.085- Gimme a pack of Red Apples.|- Filters ?349|00:00:46.089 --&gt; 00:00:46.119No.350|00:00:46.214 --&gt; 00:00:46.334- You lookin' at somethin', friend ?|- You ain't my friend, palooka.351|00:00:46.401 --&gt; 00:00:46.491-What was that ?|-I think you heard me just fine, punchy.352|00:00:46.495 --&gt; 00:00:46.585Vincent Vega's in the house ?353|00:00:46.589 --&gt; 00:00:46.679My nigger,|get your ass over here.354|00:00:46.902 --&gt; 00:00:46.991- What's up ?|- Man, I'm really sorry.355|00:00:46.995 --&gt; 00:00:47.055You shouldn't worry about it.356|00:00:47.057 --&gt; 00:00:47.147Pack of Red Apples. $1.40.357|00:00:47.214 --&gt; 00:00:47.304And some matches.358|00:00:47.401 --&gt; 00:00:47.461Thanks.359|00:00:47.495 --&gt; 00:00:47.615 It's as if it turns every part|of your body into the tip of a penis.360|00:00:47.652 --&gt; 00:00:47.742- Whoa.|- I'll lend it to you.361|00:00:47.746 --&gt; 00:00:47.896That gun to pierce your ears,|they don't use that to pierce362|00:00:47.902 --&gt; 00:00:47.992Forget that gun. That guns goes against|the entire idea behind piercing.363|00:00:47.996 --&gt; 00:00:48.145All my piercing, 18 places on my body,|every one of 'em done with a needle.364|00:00:48.151 --&gt; 00:00:48.241Five in each ear, one through|the nipple of my left breast,365|00:00:48.276 --&gt; 00:00:48.366two in my right nostril,|one in my left eyebrow,366|00:00:48.370 --&gt; 00:00:48.430one in my belly,|one in my lip, one in my clit,367|00:00:48.433 --&gt; 00:00:48.553- and I wear a stud in my tongue.|- Excuse me.368|00:00:48.558 --&gt; 00:00:48.618I was just curious,369|00:00:48.620 --&gt; 00:00:48.710but, um... why would you wear|a stud in your tongue ?370|00:00:48.746 --&gt; 00:00:48.836Sex thing.|Helps fellatio.371|00:00:48.839 --&gt; 00:00:48.959Vincenzo.|Step in my office.372|00:00:49.151 --&gt; 00:00:49.241This is Panda from Mexico.|Very good stuff.373|00:00:49.245 --&gt; 00:00:49.365Now, that's Bava.|Different, but equally good.374|00:00:49.370 --&gt; 00:00:49.430And that is Choco|from the Harz Mountains of Germany.375|00:00:49.464 --&gt; 00:00:49.584Now, the first two are the same.|300 a gram. Those are friend prices.376|00:00:49.589 --&gt; 00:00:49.679But this one|is a little more expensive.377|00:00:49.683 --&gt; 00:00:49.743This is 500 a gram.378|00:00:49.746 --&gt; 00:00:49.836But, when you shoot it, you will know|where that extra money went.379|00:00:49.839 --&gt; 00:00:49.959There's nothing wrong with these two.|This is real, real, real good shit.380|00:00:49.965 --&gt; 00:00:50.084But this one|is a fuckin' madman.381|00:00:50.089 --&gt; 00:00:50.179Remember, I just got back|from Amsterdam.382|00:00:50.182 --&gt; 00:00:50.272Am I a nigger ?|Are we in lnglewood ? No.383|00:00:50.276 --&gt; 00:00:50.366You're in my home. Now, white people|who know the difference...384|00:00:50.370 --&gt; 00:00:50.460between good shit and bad shit,|this is the house they come to.385|00:00:50.464 --&gt; 00:00:50.554Now, my shit, I'll take the Pepsi|Challenge with that Amsterdam shit...386|00:00:50.558 --&gt; 00:00:50.648- any old day of the fuckin' week.|- That's a bold statement.387|00:00:50.652 --&gt; 00:00:50.772This ain't Amsterdam, Vince.|This is a seller's market.388|00:00:50.777 --&gt; 00:00:50.897Coke is fuckin' dead|as... dead.389|00:00:50.902 --&gt; 00:00:51.022Heroin, it's comin' back|in a big fuckin' way.390|00:00:51.058 --&gt; 00:00:51.147- All right.|Gimme three grams of madman.391|00:00:51.151 --&gt; 00:00:51.271Now, if it's as good as you say it is,|I'll come back and buy another thousand.392|00:00:51.276 --&gt; 00:00:51.336I just hope that I still|have some left for ya,393|00:00:51.339 --&gt; 00:00:51.459but I'm givin' you some|out of my own private stash.394|00:00:51.464 --&gt; 00:00:51.584That is what a nice guy I am.395|00:00:51.589 --&gt; 00:00:51.679- I'm outta balloons.|Is a baggie all right ?396|00:00:51.714 --&gt; 00:00:51.744All right.|I'll just get one for ya.397|00:00:51.777 --&gt; 00:00:51.897Honey, will you get me some baggies|and, uh, twistix from the kitchen ?398|00:00:51.902 --&gt; 00:00:51.962Okay.399|00:00:51.965 --&gt; 00:00:52.085Hey, uh, what do you think about Trudi ?|She ain't got a boyfriend.400|00:00:52.090 --&gt; 00:00:52.179- You wanna hang out and get high ?|- Which one's Trudi ?401|00:00:52.182 --&gt; 00:00:52.302-The one with all the shit in her face ?|-No, that's Jody.402|00:00:52.308 --&gt; 00:00:52.368That's my wife.403|00:00:52.370 --&gt; 00:00:52.520- I'm sorry, man.|- Thank you.404|00:00:52.527 --&gt; 00:00:52.647- No, I can't. I gotta be someplace.|- All right, no problemo.405|00:00:52.652 --&gt; 00:00:52.712- I'll take a rain check.406|00:00:52.714 --&gt; 00:00:52.834- Oh.|- Thank you, Jody.407|00:00:52.839 --&gt; 00:00:52.929Still got your Malibu ?408|00:00:52.933 --&gt; 00:00:53.023Oh, man, you know what some fucker|did the other day ?409|00:00:53.027 --&gt; 00:00:53.087- What ?|- Fuckin' keyed it.410|00:00:53.090 --&gt; 00:00:53.180- Oh, man, that's fucked up.|- Tell me about it.411|00:00:53.184 --&gt; 00:00:53.273I had it in storage|for three years.412|00:00:53.276 --&gt; 00:00:53.396It was out five days, and some|dickless piece of shit fucked with it.413|00:00:53.401 --&gt; 00:00:53.551They should be fuckin' killed,|man. No trial, no jury,414|00:00:53.558 --&gt; 00:00:53.678I wish I could've caught him|doin' it. I'd have given415|00:00:53.683 --&gt; 00:00:53.833- It'd been worth him doin' it|just so I could've caught him.416|00:00:53.839 --&gt; 00:00:53.899What's more chicken-shit|than fuckin' with a man's automobile ?417|00:00:53.933 --&gt; 00:00:53.993- Don't fuck with another man's vehicle.|- You don't do it.418|00:00:53.996 --&gt; 00:00:54.086- It's just against the rules.|- Thank you.419|00:00:54.090 --&gt; 00:00:54.150Thank you.420|00:00:54.152 --&gt; 00:00:54.242- Mind if I shoot up here ?|- Hey, mi casa es su casa.421|00:00:54.246 --&gt; 00:00:54.335Muchas gracias.422|00:00:57.433 --&gt; 00:00:57.523 Hi, Vincent.|I'm getting dressed. The door's open.423|00:00:57.558 --&gt; 00:00:57.678Come inside and make yourself|a drink. Mia.424|00:00:57.933 --&gt; 00:00:57.993Hello ?425|00:00:57.996 --&gt; 00:00:58.116 Billy Raye was a preacher's son|and when his daddy would visit426|00:00:58.121 --&gt; 00:00:58.181Vincent.427|00:00:58.277 --&gt; 00:00:58.337Vincent.428|00:00:58.340 --&gt; 00:00:58.400I'm on the intercom.429|00:00:58.403 --&gt; 00:00:58.462Where is--|Where is the intercom ?430|00:00:58.464 --&gt; 00:00:58.584It's on the wall|by the two African fellows.431|00:00:58.589 --&gt; 00:00:58.649To your right.432|00:00:58.746 --&gt; 00:00:58.806Warm.433|00:00:58.808 --&gt; 00:00:58.868Warmer.434|00:00:58.871 --&gt; 00:00:58.931Disco.435|00:00:58.933 --&gt; 00:00:58.993Hello ?436|00:00:58.996 --&gt; 00:00:59.116Push the button|if you want to talk.437|00:00:59.121 --&gt; 00:00:59.181Hello ?438|00:00:59.184 --&gt; 00:00:59.274Go make yourself a drink, and I'll|be down in two shakes of a lamb's tail.439|00:00:59.277 --&gt; 00:00:59.397The bar's by the fireplace.440|00:00:59.464 --&gt; 00:00:59.524Okay.441|00:00:59.527 --&gt; 00:00:59.587 When he started|sweet talkin' to me442|00:00:59.589 --&gt; 00:00:59.679 He come and tell me|everything is all right443|00:00:59.683 --&gt; 00:00:59.743 He'd kiss me and tell me|everything is all right444|00:00:59.746 --&gt; 00:00:59.806 Can I get away|again tonight445|00:00:59.808 --&gt; 00:00:59.898 The only one who could|ever reach me446|00:00:59.902 --&gt; 00:00:59.962 Was the son|of a preacher man447|00:00:59.965 --&gt; 00:01:00.055 The only boy|who could ever teach me448|00:01:00.058 --&gt; 00:01:00.148 Was the son of a preacher man|Yes, he was449|00:01:00.152 --&gt; 00:01:00.242 He was450|00:01:00.246 --&gt; 00:01:00.306- Lord he knows he was|- Yes he was451|00:01:00.403 --&gt; 00:01:00.463 How will I remember452|00:01:00.465 --&gt; 00:01:00.554 The look was in his eyes453|00:01:00.558 --&gt; 00:01:00.618 Stealing kisses from me|on the sly454|00:01:00.621 --&gt; 00:01:00.711 Taking time to make time455|00:01:00.714 --&gt; 00:01:00.774 Telling me that|he's all mine456|00:01:00.777 --&gt; 00:01:00.867- Learning from each other's knowin'457|00:01:00.871 --&gt; 00:01:00.931 Looking to see|how much we've grown458|00:01:00.933 --&gt; 00:01:01.023 And the only one|who could ever reach me459|00:01:01.027 --&gt; 00:01:01.087 Was the son|of a preacher man460|00:01:01.090 --&gt; 00:01:01.180 The only boy|who could ever teach me461|00:01:01.184 --&gt; 00:01:01.244 Was the son of a preacher man|Yes, he was462|00:01:01.246 --&gt; 00:01:01.336- Was, was|- He was463|00:01:01.340 --&gt; 00:01:01.400- Oh, yes he was464|00:01:01.434 --&gt; 00:01:01.464Let's go.465|00:01:01.652 --&gt; 00:01:01.712What the fuck is this place ?466|00:01:01.714 --&gt; 00:01:01.804This is Jackrabbit Slim's.467|00:01:01.808 --&gt; 00:01:01.868- An Elvis man should love it.468|00:01:01.871 --&gt; 00:01:01.991- Come on, Mia. Let's go get a steak.|- You can get a steak here, daddy-o.469|00:01:01.996 --&gt; 00:01:02.086Don't be a--470|00:01:02.090 --&gt; 00:01:02.180Oh, after you, kitty-cat.471|00:01:02.777 --&gt; 00:01:02.897Good evening, ladies and gentlemen.|Now, how may I help you ?472|00:01:02.902 --&gt; 00:01:02.992- There's a reservation under Wallace.|- Wallace ?473|00:01:02.996 --&gt; 00:01:03.056- We reserved a car.474|00:01:03.058 --&gt; 00:01:03.238Oh, a car. Why don't you seat 'em|over there in the Chrysler.475|00:01:03.246 --&gt; 00:01:03.336 School get out, baby|Gonna tell you some news476|00:01:03.340 --&gt; 00:01:03.400 Sure do look good|in them baby doll shoes477|00:01:03.403 --&gt; 00:01:03.553 One, two, buckle the shoes|Three, four, get out on the floor478|00:01:03.559 --&gt; 00:01:03.708 Five, six, come get your kicks down at|the corner of Lincoln and 46th, yeah479|00:01:03.808 --&gt; 00:01:03.868 All right480|00:01:03.965 --&gt; 00:01:04.025 I've been waitin' in school|all day long481|00:01:04.027 --&gt; 00:01:04.087 Waiting on the bell to ring|so I can go home482|00:01:04.090 --&gt; 00:01:04.150 Throw my books on the table|Pick up the telephone483|00:01:04.184 --&gt; 00:01:04.244- Come on, baby|- Coffee, please ? Decaf.484|00:01:04.246 --&gt; 00:01:04.306- Just a minute.|- Heading down to the drugstore485|00:01:04.309 --&gt; 00:01:04.369 Throw a nickel in the jukebox|Then we start to rock486|00:01:04.371 --&gt; 00:01:04.431 School's out, baby|Gonna tell you some news487|00:01:04.434 --&gt; 00:01:04.494 You sure do look good|in them baby doll shoes488|00:01:04.496 --&gt; 00:01:04.586 Well, it's one, two|Buckle the shoes489|00:01:04.590 --&gt; 00:01:04.650 Three, four|Get out on the floor490|00:01:04.653 --&gt; 00:01:04.772 Five, six, come get your kicks|down at the corner of Lincoln and 46th491|00:01:04.933 --&gt; 00:01:05.023 Gonna rock all night|Just wait and see492|00:01:05.027 --&gt; 00:01:05.117Ricky, Ricky, Ricky !493|00:01:05.184 --&gt; 00:01:05.274Let's hear it for Ricky Nelson !494|00:01:05.277 --&gt; 00:01:05.367- Fantastic job, Rick.|Thank you very much.495|00:01:05.496 --&gt; 00:01:05.586 Just to let you|all know, Ricky will be back496|00:01:05.590 --&gt; 00:01:05.709so we hope you enjoy your meals|here at Jackrabbit Slim's.497|00:01:05.746 --&gt; 00:01:05.806Thank you.498|00:01:05.808 --&gt; 00:01:05.898Call for...499|00:01:05.902 --&gt; 00:01:06.052- Phil-lip Mor-ris.|- What do you think ?500|00:01:06.059 --&gt; 00:01:06.179I think it's like|a wax museum with a pulse.501|00:01:06.184 --&gt; 00:01:06.304Hi, I'm Buddy.|What can I get you ?502|00:01:06.371 --&gt; 00:01:06.521Let's see, steak, steak, steak. Oh,|yeah, I'll have the Douglas Sirk steak.503|00:01:06.528 --&gt; 00:01:06.588- I'll have that.|- How do you want that cooked ?504|00:01:06.590 --&gt; 00:01:06.710- Burned to a crisp or bloody as hell ?|- Bloody as hell, and--505|00:01:06.715 --&gt; 00:01:06.774Oh, yeah, look at this--|vanilla Coke.506|00:01:06.777 --&gt; 00:01:06.837What about you, Peggy Sue ?507|00:01:06.840 --&gt; 00:01:06.930I'll have the...508|00:01:06.965 --&gt; 00:01:07.085Durward Kirby burger, bloody.509|00:01:07.090 --&gt; 00:01:07.180And... a five-dollar shake.510|00:01:07.215 --&gt; 00:01:07.275How do you want that shake,|Martin and Lewis, or Amos 'n Andy ?511|00:01:07.278 --&gt; 00:01:07.398- Martin and Lewis.|- Did you just order512|00:01:07.403 --&gt; 00:01:07.463Mm-hmm.513|00:01:07.465 --&gt; 00:01:07.555That's a shake ?|That's milk and ice cream ?514|00:01:07.559 --&gt; 00:01:07.709- Last I heard.|- That's five dollars ? You don't515|00:01:07.715 --&gt; 00:01:07.775- No.|- Just checking.516|00:01:07.778 --&gt; 00:01:07.867I'll be right back|with your drinks.517|00:01:07.871 --&gt; 00:01:07.931 To Lonesome Town518|00:01:07.933 --&gt; 00:01:08.023 To cry my troubles away519|00:01:08.090 --&gt; 00:01:08.210Could you, um...|roll me one of those, cowboy ?520|00:01:08.215 --&gt; 00:01:08.305You can have this one, cowgirl.521|00:01:08.309 --&gt; 00:01:08.369- Thanks.522|00:01:08.371 --&gt; 00:01:08.431 The streets are filled|with regret523|00:01:08.496 --&gt; 00:01:08.556Think nothin' of it.524|00:01:08.559 --&gt; 00:01:08.679 Lay me down|in Lonesome Town525|00:01:08.684 --&gt; 00:01:08.774- I can learn to forget|- So...526|00:01:08.778 --&gt; 00:01:08.867Marsellus said|you just got back from Amsterdam.527|00:01:08.871 --&gt; 00:01:08.961- Sure did.|- How long were you there ?528|00:01:08.965 --&gt; 00:01:09.055Just over three years.529|00:01:09.121 --&gt; 00:01:09.211I go there about once a year|to chill out for a month.530|00:01:09.215 --&gt; 00:01:09.335No kiddin' ?|I didn't know that.531|00:01:09.340 --&gt; 00:01:09.430Why would you ?532|00:01:09.559 --&gt; 00:01:09.619I heard you did a pilot.533|00:01:09.653 --&gt; 00:01:09.773- That was my 15 minutes.|- What was it ?534|00:01:09.778 --&gt; 00:01:09.897It was a show about a team of female|secret agents called Fox Force Five.535|00:01:09.902 --&gt; 00:01:09.992- What ?|- Fox Force Five.536|00:01:09.996 --&gt; 00:01:10.056Fox, as in were a bunch|of foxy chicks.537|00:01:10.059 --&gt; 00:01:10.149Force, as in we're a force|to be reckoned with.538|00:01:10.152 --&gt; 00:01:10.212And five, as in there's|one-two-three-four-five of us.539|00:01:10.215 --&gt; 00:01:10.335There was a blond one,|Sommerset O'Neal. She was the leader.540|00:01:10.340 --&gt; 00:01:10.430The Japanese fox|was a kung fu master.541|00:01:10.434 --&gt; 00:01:10.554The black girl|was a demolition expert.542|00:01:10.559 --&gt; 00:01:10.649French fox's speciality was sex.543|00:01:10.653 --&gt; 00:01:10.773- What was your speciality ?|- Knives.544|00:01:10.778 --&gt; 00:01:10.838The character I played,|Raven McCoy,545|00:01:10.841 --&gt; 00:01:10.960her background was she grew up|raised by circus performers.546|00:01:10.965 --&gt; 00:01:11.085According to the show,|she was the deadliest woman547|00:01:11.090 --&gt; 00:01:11.180And she knew|a zillion old jokes.548|00:01:11.184 --&gt; 00:01:11.304Her grandfather,|an old vaudevillian, taught her.549|00:01:11.309 --&gt; 00:01:11.399And if we would have got picked up,|they would've worked in a gimmick...550|00:01:11.403 --&gt; 00:01:11.523where every show|I would've told another joke.551|00:01:11.559 --&gt; 00:01:11.649You know any of them old jokes ?552|00:01:11.653 --&gt; 00:01:11.743Well, I only got the chance to say one|'cause we only did one show.553|00:01:11.747 --&gt; 00:01:11.837- Tell me.|- It's corny.554|00:01:11.872 --&gt; 00:01:11.932Don't be that way.|Tell me.555|00:01:11.934 --&gt; 00:01:12.023- No, you wouldn't like it,|and I'd be embarrassed.556|00:01:12.027 --&gt; 00:01:12.147You told 50 million people,|and you can't tell me ?557|00:01:12.152 --&gt; 00:01:12.272- I promise I won't laugh.|- That's what I'm afraid of, Vince.558|00:01:12.278 --&gt; 00:01:12.338That's not what I meant.|You know it.559|00:01:12.340 --&gt; 00:01:12.460Now I'm definitely not gonna tell you|'cause it's been built up too much.560|00:01:12.465 --&gt; 00:01:12.525What a gyp.561|00:01:12.559 --&gt; 00:01:12.619Martin and Lewis.562|00:01:12.716 --&gt; 00:01:12.806Vanilla Coke.563|00:01:12.934 --&gt; 00:01:13.023Mmm. Yummy.564|00:01:13.027 --&gt; 00:01:13.117You think I could|have a sip of that ?565|00:01:13.152 --&gt; 00:01:13.242Be my guest.566|00:01:13.246 --&gt; 00:01:13.336I gotta know what|a five-dollar shake tastes like.567|00:01:13.371 --&gt; 00:01:13.461- You can use my straw.|I don't have cooties.568|00:01:13.465 --&gt; 00:01:13.555Cooties I can handle.569|00:01:13.559 --&gt; 00:01:13.619All right.570|00:01:13.809 --&gt; 00:01:13.899Goddamn, that's a pretty|fuckin' good milkshake !571|00:01:13.903 --&gt; 00:01:14.023-Told ya.|-I don't know if it was worth $5,572|00:01:15.090 --&gt; 00:01:15.180- Don't you hate that ?|- Hate what ?573|00:01:15.184 --&gt; 00:01:15.244Uncomfortable silences.574|00:01:15.309 --&gt; 00:01:15.459Why do we feel it's necessary|to yak about bullshit575|00:01:15.465 --&gt; 00:01:15.555I don't know.|That's a good question.576|00:01:15.559 --&gt; 00:01:15.709That's when you know|you found somebody really special.577|00:01:15.716 --&gt; 00:01:15.866When you can just shut the fuck up for|a minute and comfortably share silence.578|00:01:15.872 --&gt; 00:01:15.992Well, I don't think we're quite|there yet, but don't feel bad.579|00:01:16.028 --&gt; 00:01:16.118I'll tell you what.580|00:01:16.122 --&gt; 00:01:16.211I'm gonna go to the bathroom|and powder my nose.581|00:01:16.215 --&gt; 00:01:16.305You sit here...|and think of something to say.582|00:01:16.371 --&gt; 00:01:16.401I'll do that.583|00:01:16.497 --&gt; 00:01:16.527Okay.584|00:01:17.309 --&gt; 00:01:17.369I said goddamn !585|00:01:17.371 --&gt; 00:01:17.461Goddamn !|Goddamn.586|00:01:17.528 --&gt; 00:01:17.618I need some hair spray.587|00:01:17.809 --&gt; 00:01:17.839Mmmm.588|00:01:17.872 --&gt; 00:01:17.992Don't you just love it when you|come back from the bathroom to589|00:01:17.997 --&gt; 00:01:18.057We're lucky|we got anything at all.590|00:01:18.060 --&gt; 00:01:18.150I don't think Buddy Holly's|much of a waiter.591|00:01:18.154 --&gt; 00:01:18.243Maybe we should've sat|in Marilyn Monroe's section.592|00:01:18.246 --&gt; 00:01:18.336- Which one ? There's two Monroes.|- No, there's not.593|00:01:18.340 --&gt; 00:01:18.400That is Marilyn Monroe.594|00:01:18.434 --&gt; 00:01:18.494That is Mamie Van Doren.595|00:01:18.497 --&gt; 00:01:18.647I don't see Jayne Mansfield,|so she must have the night off.596|00:01:18.653 --&gt; 00:01:18.743- Pretty smart.|- Yeah. I got my moments.597|00:01:18.747 --&gt; 00:01:18.897- So did you think of somethin' to say ?|- Actually, I did.598|00:01:18.935 --&gt; 00:01:18.995However...599|00:01:19.060 --&gt; 00:01:19.150you seem like|a really nice person, and l--600|00:01:19.154 --&gt; 00:01:19.214- I don't want to offend you.|- Oooh.601|00:01:19.216 --&gt; 00:01:19.365This doesn't sound like|the usual, mindless, boring,602|00:01:19.371 --&gt; 00:01:19.461This sounds like you|actually have somethin' to say.603|00:01:19.465 --&gt; 00:01:19.555Well, well, I do. I do.604|00:01:19.559 --&gt; 00:01:19.679- But you have|to promise not to be offended.605|00:01:19.684 --&gt; 00:01:19.804You can't promise somethin' like that.|I have no idea what you're gonna ask me.606|00:01:19.809 --&gt; 00:01:19.959You can ask me what you're gonna|ask me, and my natural response607|00:01:19.966 --&gt; 00:01:20.026Then, through no fault of my own,|I would have broken my promise.608|00:01:20.028 --&gt; 00:01:20.118- Let's just forget it.|- That's an impossibility.609|00:01:20.122 --&gt; 00:01:20.242Trying to forget anything|as intriguing as this would be610|00:01:20.247 --&gt; 00:01:20.306- Is that a fact ?|- And besides,611|00:01:20.309 --&gt; 00:01:20.459- isn't it more, uh, exciting|when you don't have permission ?612|00:01:20.465 --&gt; 00:01:20.555Well, here goes.613|00:01:20.559 --&gt; 00:01:20.649What did you think about|what happened to Antwan ?614|00:01:20.653 --&gt; 00:01:20.743- Who's Antwan ?|- Tony Rocky Horror. You know him.615|00:01:20.747 --&gt; 00:01:20.837- He fell out of a window.|- Hmm. Hmm.616|00:01:20.841 --&gt; 00:01:20.991Well, that is one way to say it.|Another way to say it would be617|00:01:20.997 --&gt; 00:01:21.087Another way would be|he was thrown out by Marsellus.618|00:01:21.091 --&gt; 00:01:21.241Yet even another way is to say|he was thrown out of a window619|00:01:21.247 --&gt; 00:01:21.307- Is that a fact ?|- No.620|00:01:21.310 --&gt; 00:01:21.399No, it's not a fact. It's just what|I heard. That's just what I heard.621|00:01:21.403 --&gt; 00:01:21.493- Who told you ?|- They.622|00:01:21.497 --&gt; 00:01:21.587&quot;They&quot; talk a lot, don't they ?623|00:01:21.653 --&gt; 00:01:21.713They certainly do.|They certainly do.624|00:01:21.716 --&gt; 00:01:21.866- Don't be shy, Vincent.|What else did &quot;they&quot; say ?625|00:01:21.872 --&gt; 00:01:21.932- Um--|- Did it involve the &quot;F&quot; word ?626|00:01:21.935 --&gt; 00:01:22.055No, no, no, no, no.|They just said that Antwan627|00:01:22.091 --&gt; 00:01:22.181- And ?|- And-- And nothin'.628|00:01:22.185 --&gt; 00:01:22.275That's it.629|00:01:22.279 --&gt; 00:01:22.339You heard Marsellus...630|00:01:22.341 --&gt; 00:01:22.460threw Tony Rocky Horror|out of a fourth-story window631|00:01:22.465 --&gt; 00:01:22.525- Mm-hmm.|- And you believe that ?632|00:01:22.528 --&gt; 00:01:22.648 Well, at the time|I was told it sounded reasonable.633|00:01:22.684 --&gt; 00:01:22.774Marsellus throwing Tony out|of a fourth-story window...634|00:01:22.778 --&gt; 00:01:22.868for massaging my feet|seemed reasonable ?635|00:01:22.872 --&gt; 00:01:22.962No, it seemed excessive,|but that doesn't mean it didn't happen.636|00:01:22.966 --&gt; 00:01:23.056I understand that Marsellus|is very protective of you.637|00:01:23.060 --&gt; 00:01:23.180A husband being protective|of his wife is one thing.638|00:01:23.185 --&gt; 00:01:23.305A husband almost killing|another man for touching639|00:01:23.310 --&gt; 00:01:23.370But did it happen ?640|00:01:23.373 --&gt; 00:01:23.552Only thing Antwan ever touched|of mine was my hand when he641|00:01:23.559 --&gt; 00:01:23.619Really ?642|00:01:23.622 --&gt; 00:01:23.742Truth is, nobody knows why Marsellus|threw Tony out that window...643|00:01:23.747 --&gt; 00:01:23.777except Marsellus and Tony.644|00:01:23.809 --&gt; 00:01:23.899When you little scamps get together,|you're worse than a sewing circle.645|00:01:23.935 --&gt; 00:01:24.025Ladies and gentlemen. Now the moment|you've all been waiting for.646|00:01:24.028 --&gt; 00:01:24.178The world-famous|Jackrabbit Slim's twist contest.647|00:01:24.247 --&gt; 00:01:24.397Now, this is where|one lucky couple...648|00:01:24.404 --&gt; 00:01:24.523will win this handsome trophy|that Marilyn here is holding.649|00:01:24.528 --&gt; 00:01:24.618Now, who will be|our first contestants ?650|00:01:24.622 --&gt; 00:01:24.712- Right here !|- All right !651|00:01:24.716 --&gt; 00:01:24.806- I wanna dance.|- No, no, no, no, no.652|00:01:24.809 --&gt; 00:01:24.929No, no, no, no, no. I do believe|Marsellus, my husband, your boss,653|00:01:24.935 --&gt; 00:01:25.055told you to take me out|and do whatever I wanted.654|00:01:25.060 --&gt; 00:01:25.150Now I wanna dance;|I wanna win; I want that trophy.655|00:01:25.154 --&gt; 00:01:25.184- So dance good.|- All right. You asked for it.656|00:01:25.185 --&gt; 00:01:25.245- So dance good.|- All right. You asked for it.657|00:01:25.247 --&gt; 00:01:25.337Let's hear it|for our first contestants.658|00:01:25.466 --&gt; 00:01:25.615Now let's meet our first|contestants here this evening.659|00:01:25.622 --&gt; 00:01:25.682Mrs. Mia Wallace.660|00:01:25.684 --&gt; 00:01:25.774And how 'bout your fella here ?661|00:01:25.778 --&gt; 00:01:25.808Vincent Vega.662|00:01:25.841 --&gt; 00:01:25.931All right, let's see what you can do.|Take it away !663|00:01:25.935 --&gt; 00:01:26.025- Go for it.|- Come on !664|00:01:26.559 --&gt; 00:01:26.679 It was a teenage wedding|and the old folks wished them well665|00:01:26.747 --&gt; 00:01:26.867 You could see that Pierre|did truly love the mademoiselle666|00:01:26.935 --&gt; 00:01:27.055 And now the young monsieur|and madame have rung the chapel bell667|00:01:27.122 --&gt; 00:01:27.242 C'est la vie say the old folks|It goes to show you never can tell668|00:01:27.310 --&gt; 00:01:27.430 They furnished off an apartment|with a two-room Roebucks sale669|00:01:27.466 --&gt; 00:01:27.585 The 'coolerador was crammed|with TV dinners and ginger ale670|00:01:27.653 --&gt; 00:01:27.773 But when Pierre found work|the little money comin'671|00:01:27.841 --&gt; 00:01:27.961 C'est la vie say the old folks|It goes to show you never can tell672|00:01:28.028 --&gt; 00:01:28.148 They had a hi-fi phono|and boy did they let it blast673|00:01:28.216 --&gt; 00:01:28.336 Seven hundred little records|all rock, rhythm and jazz674|00:01:28.404 --&gt; 00:01:28.524 But when the sun went down|the rapid tempo of the music fell675|00:01:28.560 --&gt; 00:01:28.709 C'est la vie say the old folks|It goes to show you never can tell676|00:01:29.498 --&gt; 00:01:29.618 They had a teenage wedding|and the old folks wished them well677|00:01:29.684 --&gt; 00:01:29.774 You could see that Pierre|did truly love the mademoiselle678|00:01:30.841 --&gt; 00:01:30.931Is that what you call|an uncomfortable silence ?679|00:01:30.935 --&gt; 00:01:31.055I don't know|what you call that.680|00:01:31.060 --&gt; 00:01:31.120- Drinks ! Music !681|00:01:31.154 --&gt; 00:01:31.214I'm gonna take a piss.682|00:01:31.216 --&gt; 00:01:31.366That's a little bit more information|than I needed, but go right ahead.683|00:01:31.778 --&gt; 00:01:31.838 Girl684|00:01:31.841 --&gt; 00:01:31.871 Bomp, bomp, bom685|00:01:31.872 --&gt; 00:01:31.992 You'll be a woman soon686|00:01:32.091 --&gt; 00:01:32.151 I love you so much|Can't count all the ways687|00:01:32.154 --&gt; 00:01:32.244 I'd die for you, girl|and all they can say is688|00:01:32.247 --&gt; 00:01:32.337 He's not your kind689|00:01:32.341 --&gt; 00:01:32.491 You never get tired of putting me down|and I never know when I come around690|00:01:32.498 --&gt; 00:01:32.588 What I'm gonna find691|00:01:32.592 --&gt; 00:01:32.712 Don't let them|make up your mind692|00:01:32.717 --&gt; 00:01:32.806 Don't you know, girl693|00:01:32.841 --&gt; 00:01:32.931 You'll be a woman soon694|00:01:32.935 --&gt; 00:01:33.025One drink, and that's it.695|00:01:33.028 --&gt; 00:01:33.148Don't be rude.|Drink your drink, but do it quickly.696|00:01:33.216 --&gt; 00:01:33.276Say good night...|and go home.697|00:01:33.341 --&gt; 00:01:33.461 You'll be a woman soon698|00:01:33.498 --&gt; 00:01:33.558 Soon699|00:01:33.623 --&gt; 00:01:33.713 You'll be a woman700|00:01:33.748 --&gt; 00:01:33.837 I've been misunderstood|for all of my life701|00:01:33.841 --&gt; 00:01:33.901 But what they're sayin', girl|it cuts like a knife702|00:01:33.903 --&gt; 00:01:33.993 The boy's no good703|00:01:33.997 --&gt; 00:01:34.057 Well, I've finally have found|what I been lookin' for704|00:01:34.060 --&gt; 00:01:34.210 But if they get a chance|they'll end it for sure705|00:01:34.216 --&gt; 00:01:34.276 Baby, I've done|all I could706|00:01:34.279 --&gt; 00:01:34.429 You see, this is|a moral test of oneself.707|00:01:34.435 --&gt; 00:01:34.525Whether or not|you can maintain loyalty.708|00:01:34.529 --&gt; 00:01:34.619Because... being loyal|is very important.709|00:01:34.623 --&gt; 00:01:34.773 You never get tired of putting me down|and I never know when I come around710|00:01:34.779 --&gt; 00:01:34.839 What I'm gonna find711|00:01:34.842 --&gt; 00:01:34.961 Don't let them|make up your mind712|00:01:34.966 --&gt; 00:01:35.056 Don't you know, girl713|00:01:35.091 --&gt; 00:01:35.211 You'll be a woman soon714|00:01:35.279 --&gt; 00:01:35.339 Please715|00:01:35.373 --&gt; 00:01:35.463 Come take my hand716|00:01:35.529 --&gt; 00:01:35.589 Girl717|00:01:35.623 --&gt; 00:01:35.743 You'll be a woman soon718|00:01:35.779 --&gt; 00:01:35.839 Please719|00:01:35.873 --&gt; 00:01:35.962 Come take my hand720|00:01:36.029 --&gt; 00:01:36.059- Hello.|- Girl721|00:01:36.122 --&gt; 00:01:36.242So, you're gonna go out there|and you're gonna say, &quot;Good night.722|00:01:36.248 --&gt; 00:01:36.308I've had a very lovely evening.&quot;723|00:01:36.310 --&gt; 00:01:36.460Walk out the door, get in|the car, go home, jerk off,724|00:01:36.623 --&gt; 00:01:36.713 Now it's up to you, girl725|00:01:36.748 --&gt; 00:01:36.868 You'll be a woman soon726|00:01:36.936 --&gt; 00:01:36.995- Please727|00:01:36.997 --&gt; 00:01:37.087 Come take my hand728|00:01:37.154 --&gt; 00:01:37.274- Girl729|00:01:37.279 --&gt; 00:01:37.369- You'll be a woman soon730|00:01:37.435 --&gt; 00:01:37.495 Soon731|00:01:37.529 --&gt; 00:01:37.619 You'll be a woman732|00:01:37.904 --&gt; 00:01:37.964All right, Mia.733|00:01:37.967 --&gt; 00:01:38.056So listen, I gotta go,|all right ?734|00:01:38.154 --&gt; 00:01:38.244Oh, Jesus fucking Christ.735|00:01:38.279 --&gt; 00:01:38.339You fu--|Oh, Jesus Christ !736|00:01:38.341 --&gt; 00:01:38.401Oh, fuck me.|Fuck me !737|00:01:38.404 --&gt; 00:01:38.554Oh-- Come on, girl. We're gettin'|outta here. We gotta walk now.738|00:01:38.842 --&gt; 00:01:38.932Don't fuckin' die on me, Mia !739|00:01:38.936 --&gt; 00:01:38.996Fuck !740|00:01:39.216 --&gt; 00:01:39.276Answer.741|00:01:39.279 --&gt; 00:01:39.339Have you got the ring ?742|00:01:39.341 --&gt; 00:01:39.461- Why, certainly.|- Join hands, you two lovebirds.743|00:01:39.467 --&gt; 00:01:39.557- Please ! Please !744|00:01:39.560 --&gt; 00:01:39.620Yes, yes.|Hold hands, you lovebirds.745|00:01:39.811 --&gt; 00:01:39.871Fuck you, Lance !|Answer !746|00:01:40.030 --&gt; 00:01:40.089Now what do you say ?747|00:01:40.091 --&gt; 00:01:40.181 I give up !|I'll marry you !748|00:01:40.185 --&gt; 00:01:40.305- Lance !|The goddamn phone's ringing !749|00:01:40.373 --&gt; 00:01:40.433I can hear it.750|00:01:40.435 --&gt; 00:01:40.525I thought you told those|fuckin' assholes never to751|00:01:40.529 --&gt; 00:01:40.589Yeah, I told them.752|00:01:40.592 --&gt; 00:01:40.682And that is exactly what I'm going|to tell this fucking asshole right now.753|00:01:40.748 --&gt; 00:01:40.838Don't you dare strike me !|- Hello.754|00:01:40.842 --&gt; 00:01:40.902Lance ! Vincent.755|00:01:40.904 --&gt; 00:01:40.994I'm in big fuckin' trouble, man.|I'm coming to your house.756|00:01:40.998 --&gt; 00:01:41.118W-Whoa. Whoa. Hold your horses, man.|W-What's the problem ?757|00:01:41.123 --&gt; 00:01:41.212- I got this chick,|she's fuckin' O.D.in' on me !758|00:01:41.216 --&gt; 00:01:41.336I'm not even joking with you !|Do not be bringing some759|00:01:41.341 --&gt; 00:01:41.401- No choice.|- Wh-- She's O.D.in' ?760|00:01:41.404 --&gt; 00:01:41.494- She's fuckin' dyin' on me, man !|- Just dandy.761|00:01:41.498 --&gt; 00:01:41.618Okay, then you bite|the fuckin' bullet, take her762|00:01:41.623 --&gt; 00:01:41.713- Negative !|- This is not my fuckin' problem, man !763|00:01:41.717 --&gt; 00:01:41.807You fucked her up,|you fuckin' deal with this !764|00:01:41.811 --&gt; 00:01:41.901Uh, are you talkin' to me|on a cellular phone ?765|00:01:41.904 --&gt; 00:01:41.994I don't know you.|Who is this ? Don't come here !766|00:01:41.998 --&gt; 00:01:42.088I'm hanging up the phone !|Prank caller ! Prank caller !767|00:01:42.341 --&gt; 00:01:42.401- What the hell was that ?768|00:01:42.467 --&gt; 00:01:42.557Have you lost|your fucking mind ?769|00:01:42.560 --&gt; 00:01:42.650- You were talking about drug|shit on a cellular phone !770|00:01:42.654 --&gt; 00:01:42.714- You crashed your car|into my fucking house !771|00:01:42.717 --&gt; 00:01:42.837Are you deaf ? You are not bringing|this fucked-up bitch into my house !772|00:01:42.842 --&gt; 00:01:42.932This &quot;fucked-up bitch&quot;|is Marsellus Wallace's wife.773|00:01:42.936 --&gt; 00:01:42.996- Do you know who Marsellus Wallace is ?|- Yeah.774|00:01:42.998 --&gt; 00:01:43.088If she croaks on me,|I am a fucking grease spot !775|00:01:43.092 --&gt; 00:01:43.211I will be forced to tell him|that you did not help and776|00:01:43.216 --&gt; 00:01:43.306Now, come on. Help me, help me.|Pick her up.777|00:01:43.341 --&gt; 00:01:43.401- Shit.778|00:01:43.467 --&gt; 00:01:43.527Lance !779|00:01:43.529 --&gt; 00:01:43.589Shit.780|00:01:43.592 --&gt; 00:01:43.682It's 1:30 in the goddamn morning.781|00:01:43.686 --&gt; 00:01:43.776What the fuck's going on out here ?782|00:01:43.779 --&gt; 00:01:43.839Who's she ?783|00:01:43.842 --&gt; 00:01:43.932Go to the fridge and get the thing|with the adrenalin shot.784|00:01:43.936 --&gt; 00:01:43.996- What's wrong with her ?|- She's O.D.ing !785|00:01:43.998 --&gt; 00:01:44.058- Get her outta here !|- Get the shot !786|00:01:44.061 --&gt; 00:01:44.151- Fuck you ! Fuck you too !|- What a fuckin' bitch.787|00:01:44.155 --&gt; 00:01:44.215Just keep talking to her,|all right ?788|00:01:44.217 --&gt; 00:01:44.306She's gettin' the shot. I'm going|to go get my little black medical book.789|00:01:44.310 --&gt; 00:01:44.370What the fuck you need|a medical book for ?790|00:01:44.373 --&gt; 00:01:44.433I've never had to give|an adrenalin shot before !791|00:01:44.435 --&gt; 00:01:44.525I don't go joy-poppin'|with bubble-gummers !792|00:01:44.529 --&gt; 00:01:44.619- Get the shot !|- I am, if you'll let me !793|00:01:44.623 --&gt; 00:01:44.713- I ain't stopping you !|- Stop talking to me.794|00:01:44.717 --&gt; 00:01:44.777- Get the shot !|- All right !795|00:01:44.873 --&gt; 00:01:44.963Hurry up. We're losing her !|- I'm looking as fast as I can !796|00:01:44.967 --&gt; 00:01:45.027What's he looking for ?797|00:01:45.030 --&gt; 00:01:45.120I don't know. Some book.|- What are you looking for ?798|00:01:45.123 --&gt; 00:01:45.213- A little black medical book.|- What are you looking for ?799|00:01:45.217 --&gt; 00:01:45.336My little black medical book ! It's|like a textbook they give to nurses.800|00:01:45.341 --&gt; 00:01:45.401- I never saw no medical book.|- Trust me. I have one.801|00:01:45.435 --&gt; 00:01:45.495- If it's so important,|why don't you keep it with the shot ?802|00:01:45.498 --&gt; 00:01:45.618- Stop bothering me !|- While you're looking, that girl's803|00:01:45.623 --&gt; 00:01:45.683You're never gonna find|anything in this mess !804|00:01:45.686 --&gt; 00:01:45.806- I'm gonna fucking kill you|if you don't shut up !805|00:01:45.811 --&gt; 00:01:45.931- Right ? Pig.|- Get the fuck outta my way.806|00:01:45.936 --&gt; 00:01:46.026- Quit fuckin' around|and give her the shot.807|00:01:46.061 --&gt; 00:01:46.151you take off her shirt|and find her heart.808|00:01:46.155 --&gt; 00:01:46.245- Does it gotta be exact ?|- We're giving her a shot in the heart,809|00:01:46.249 --&gt; 00:01:46.338I don't know exactly where her heart is.|I think it's right here.810|00:01:46.341 --&gt; 00:01:46.461- That's it.|- All right, what I need is811|00:01:46.467 --&gt; 00:01:46.527- You got it ?|- What ?812|00:01:46.529 --&gt; 00:01:46.589A magic marker.|A felt pen !813|00:01:46.592 --&gt; 00:01:46.682A fuckin' black magic marker !|Christ.814|00:01:46.686 --&gt; 00:01:46.836- Come on, man. Hurry up !|- Fuck ! Okay, okay.815|00:01:46.936 --&gt; 00:01:46.996- Hurry up, man.|- I'll tell you what to do.816|00:01:46.998 --&gt; 00:01:47.088- You're gonna give her the shot.|- No, you're gonna give her the shot.817|00:01:47.092 --&gt; 00:01:47.182- I ain't giving her the shot.|I never done this before.818|00:01:47.186 --&gt; 00:01:47.276I ain't starting now !|You brought her here.819|00:01:47.280 --&gt; 00:01:47.370The day I bring an O.D.ing bitch|to your house, then I give her the shot.820|00:01:47.374 --&gt; 00:01:47.433Give it to me.|Give me that.821|00:01:47.435 --&gt; 00:01:47.525All right, tell me what to do.822|00:01:47.529 --&gt; 00:01:47.619Okay, you're giving her an injection|of adrenalin straight to her heart.823|00:01:47.623 --&gt; 00:01:47.713- But she's got a breastplate--|You gotta pierce through that.824|00:01:47.717 --&gt; 00:01:47.807You gotta bring the needle|down in a stabbing motion.825|00:01:47.811 --&gt; 00:01:47.901- I gotta-- I gotta|stab her three times ?826|00:01:47.905 --&gt; 00:01:47.995But it's gotta be hard enough to get|through her breastplate into her heart.827|00:01:48.030 --&gt; 00:01:48.090Once you do that,|you p-press down on the p-plunger.828|00:01:48.092 --&gt; 00:01:48.182- Okay. Then what happens ?|- Kinda curious about that myself.829|00:01:48.186 --&gt; 00:01:48.276This ain't no fuckin' joke !|Am I gonna kill her ?830|00:01:48.280 --&gt; 00:01:48.370- She's supposed to come out|of it like that. It's--831|00:01:48.374 --&gt; 00:01:48.433- All right. Ready ?|- One.832|00:01:48.592 --&gt; 00:01:48.652Two.833|00:01:48.873 --&gt; 00:01:48.933Three !834|00:01:49.374 --&gt; 00:01:49.463If you're all right,|then say something.835|00:01:49.467 --&gt; 00:01:49.557Something.836|00:01:49.560 --&gt; 00:01:49.620That was fuckin' trippy.837|00:01:49.717 --&gt; 00:01:49.807- Ohh.|- Oh, man.838|00:01:50.560 --&gt; 00:01:50.590Mia. Mia.839|00:01:50.686 --&gt; 00:01:50.746What's--840|00:01:50.748 --&gt; 00:01:50.838What's your thoughts on-- on--841|00:01:50.842 --&gt; 00:01:50.902on how to handle this ?842|00:01:50.905 --&gt; 00:01:50.965What's yours ?843|00:01:51.061 --&gt; 00:01:51.151Well, I'm of the opinion|that if Marsellus lived his whole life,844|00:01:51.155 --&gt; 00:01:51.275he doesn't need to know|nothing about this incident.845|00:01:51.280 --&gt; 00:01:51.370If Marsellus knew|about this incident,846|00:01:51.374 --&gt; 00:01:51.434I'd be in as much trouble as you.847|00:01:51.436 --&gt; 00:01:51.496I seriously doubt that.848|00:01:51.530 --&gt; 00:01:51.589I can keep a secret if you can.849|00:01:51.654 --&gt; 00:01:51.714Shake on it ?850|00:01:51.873 --&gt; 00:01:51.933Mum's the word ?851|00:01:51.936 --&gt; 00:01:51.996Cool.852|00:01:51.998 --&gt; 00:01:52.148Now, if you'll excuse me, I'm going|to go home and have a heart attack.853|00:01:52.217 --&gt; 00:01:52.277Vincent.854|00:01:52.343 --&gt; 00:01:52.433Do you wanna hear|my Fox Force Five joke ?855|00:01:52.468 --&gt; 00:01:52.528Sure.856|00:01:52.530 --&gt; 00:01:52.619Except I think I'm still|a little too petrified to laugh.857|00:01:52.623 --&gt; 00:01:52.683No, you won't laugh|'cause it's not funny.858|00:01:52.686 --&gt; 00:01:52.806But if you still wanna hear it,|I'll tell it.859|00:01:52.811 --&gt; 00:01:52.871- I can't wait.|- Okay.860|00:01:52.873 --&gt; 00:01:52.963Three tomatoes|are walkin' down the street.861|00:01:52.967 --&gt; 00:01:53.027Papa Tomato, Mama Tomato|and Baby Tomato.862|00:01:53.030 --&gt; 00:01:53.150Baby Tomato starts lagging behind,|and Papa Tomato gets really angry.863|00:01:53.155 --&gt; 00:01:53.245Goes back and squishes him|and says,864|00:01:53.249 --&gt; 00:01:53.309&quot;Ketchup.&quot;865|00:01:53.405 --&gt; 00:01:53.465Ketchup.866|00:01:53.593 --&gt; 00:01:53.652See you around.867|00:01:54.280 --&gt; 00:01:54.370Oh, that Paddlefoot.|He funny, silly dog.868|00:01:54.405 --&gt; 00:01:54.465He think totem pole alive !869|00:01:54.468 --&gt; 00:01:54.558He arctic tenderfoot !870|00:01:54.562 --&gt; 00:01:54.681That totem pole been here forever !871|00:01:54.686 --&gt; 00:01:54.746- Butch ?872|00:01:54.748 --&gt; 00:01:54.808One more thing, and we'll start for--873|00:01:54.811 --&gt; 00:01:54.901- Butch, stop watching TV for a second.|- Yeah ?874|00:01:54.905 --&gt; 00:01:55.025- You've got a special visitor.|- Stand up. Stand up.875|00:01:55.092 --&gt; 00:01:55.242Now, do you remember when I told you|your daddy died in a P.O.W. camp ?876|00:01:55.249 --&gt; 00:01:55.369Well, this here is Captain Koons.877|00:01:55.374 --&gt; 00:01:55.464He was in the P.O.W. camp|with Daddy.878|00:01:55.624 --&gt; 00:01:55.684Hello, little man.879|00:01:55.687 --&gt; 00:01:55.806Boy, I sure heard|a bunch about you.880|00:01:55.811 --&gt; 00:01:55.901See, I was a good friend|of your dad's.881|00:01:55.905 --&gt; 00:01:55.995We were in that Hanoi|pit of hell together...882|00:01:55.998 --&gt; 00:01:56.058over five years.883|00:01:56.061 --&gt; 00:01:56.121Hopefully...884|00:01:56.124 --&gt; 00:01:56.214you'll never have to|experience this yourself,885|00:01:56.217 --&gt; 00:01:56.307but when two men are in a situation|like me and your dad were...886|00:01:56.311 --&gt; 00:01:56.401for as long as we were,887|00:01:56.405 --&gt; 00:01:56.525you take on certain responsibilities|of the other.888|00:01:56.530 --&gt; 00:01:56.590If it'd been me who'd--889|00:01:56.655 --&gt; 00:01:56.685not made it,890|00:01:56.687 --&gt; 00:01:56.836Major Coolidge'd be talking right now|to my son Jim.891|00:01:56.842 --&gt; 00:01:56.932But the way it turned out,|I'm talking to you.892|00:01:56.967 --&gt; 00:01:57.027Butch...893|00:01:57.092 --&gt; 00:01:57.152I got something for ya.894|00:01:57.343 --&gt; 00:01:57.403This watch I got here...895|00:01:57.405 --&gt; 00:01:57.555was first purchased|by your great-grandfather896|00:01:57.562 --&gt; 00:01:57.682It was bought in a little general store|in Knoxville, Tennessee.897|00:01:57.687 --&gt; 00:01:57.806Made by the first company|to ever make wristwatches.898|00:01:57.811 --&gt; 00:01:57.871Up 'til then, people just|carried pocket watches.899|00:01:57.905 --&gt; 00:01:57.995It was bought|by Private Doughboy Erine Coolidge...900|00:01:57.998 --&gt; 00:01:58.058on the day he set sail for Paris.901|00:01:58.061 --&gt; 00:01:58.151This was your|great-grandfather's war watch,902|00:01:58.155 --&gt; 00:01:58.245and he wore it every day|he was in that war, and...903|00:01:58.249 --&gt; 00:01:58.369when he'd done his duty,|he went home to your great-grandmother,904|00:01:58.374 --&gt; 00:01:58.494took the watch off,|put it in an old coffee can,905|00:01:58.499 --&gt; 00:01:58.619until your granddad, Dane Coolidge,|was called upon by his country...906|00:01:58.624 --&gt; 00:01:58.744to go overseas and fight|the Germans once again.907|00:01:58.749 --&gt; 00:01:58.838This time they called it|World War ll.908|00:01:58.842 --&gt; 00:01:58.992Your great-grandfather gave this watch|to your granddad for good luck.909|00:01:58.998 --&gt; 00:01:59.088Unfortunately, Dane's luck|wasn't as good as his old man's.910|00:01:59.092 --&gt; 00:01:59.182Dane was a Marine,|and he was killed...911|00:01:59.186 --&gt; 00:01:59.306along with all the other Marines|at the battle of Wake lsland.912|00:01:59.311 --&gt; 00:01:59.401Your granddad was facing death.913|00:01:59.405 --&gt; 00:01:59.465He knew it.914|00:01:59.468 --&gt; 00:01:59.588None of those boys ever|had any illusions about915|00:01:59.593 --&gt; 00:01:59.683so three days before the Japanese|took the island,916|00:01:59.687 --&gt; 00:01:59.837your granddad asked|a gunner on an Air Force transport,917|00:01:59.843 --&gt; 00:01:59.932a man he'd never met before|in his life--918|00:01:59.936 --&gt; 00:02:00.026to deliver to his infant son,919|00:02:00.030 --&gt; 00:02:00.150who he'd never seen in the flesh,|his gold watch.920|00:02:00.155 --&gt; 00:02:00.275Three days later, your granddad|was dead, but Winocki kept his word.921|00:02:00.280 --&gt; 00:02:00.400After the war was over,|he paid a visit to your grandmother,922|00:02:00.405 --&gt; 00:02:00.555delivering to your infant father|his dad's gold watch.923|00:02:00.562 --&gt; 00:02:00.592This watch.924|00:02:00.781 --&gt; 00:02:00.930This watch was on your daddy's wrist|when he was shot down over Hanoi.925|00:02:00.936 --&gt; 00:02:01.056He was captured,|put in a Vietnamese prison camp.926|00:02:01.061 --&gt; 00:02:01.181He knew if the gooks|ever saw the watch,927|00:02:01.186 --&gt; 00:02:01.276it'd be confiscated,|taken away.928|00:02:01.280 --&gt; 00:02:01.400The way your dad looked at it,|this watch was your birthright.929|00:02:01.405 --&gt; 00:02:01.525He'd be damned if any slope's|gonna put their greasy, yellow930|00:02:01.530 --&gt; 00:02:01.620so he hid it in one place he knew|he could hide something-- his ass.931|00:02:01.624 --&gt; 00:02:01.744Five long years|he wore this watch up his ass.932|00:02:01.749 --&gt; 00:02:01.869Then he died of dysentery--|He give me the watch.933|00:02:01.874 --&gt; 00:02:01.993I hid this uncomfortable|hunk of metal up my ass two years.934|00:02:01.998 --&gt; 00:02:02.058Then...935|00:02:02.061 --&gt; 00:02:02.181after seven years,|I was sent home to my family and...936|00:02:02.186 --&gt; 00:02:02.216now...937|00:02:02.311 --&gt; 00:02:02.401Iittle man,|I give the watch to you.938|00:02:03.092 --&gt; 00:02:03.122It's time, Butch.939|00:02:03.374 --&gt; 00:02:03.464ln the heavyweight division,940|00:02:03.468 --&gt; 00:02:03.558- in the right corner|wearing the blue trunks,941|00:02:03.562 --&gt; 00:02:03.652weighing 210 pounds,942|00:02:03.655 --&gt; 00:02:03.745Floyd Ray Wilson !943|00:02:03.843 --&gt; 00:02:03.903It's official. It's official.944|00:02:03.906 --&gt; 00:02:03.996- Wilson is dead !|- Well, Dan,945|00:02:04.000 --&gt; 00:02:04.059hands down, the most brutal fight|this city's ever seen.946|00:02:04.061 --&gt; 00:02:04.181Coolidge was out of there|faster than I've ever seen947|00:02:04.186 --&gt; 00:02:04.246- Do you think he knew Wilson was dead ?|- My guess would be yes.948|00:02:04.280 --&gt; 00:02:04.370I could see the frenzy in his|eyes give way to the realization949|00:02:04.374 --&gt; 00:02:04.464- I think any man would've|left the ring that fast.950|00:02:04.468 --&gt; 00:02:04.528is gonna affect|the world of boxing ?951|00:02:04.530 --&gt; 00:02:04.650A tragedy like this can't help|but shake the world of boxing952|00:02:04.655 --&gt; 00:02:04.775It's of paramount importance,|during the sad weeks ahead,953|00:02:05.812 --&gt; 00:02:05.872Man, you know I didn't--954|00:02:05.906 --&gt; 00:02:05.966- Marsellus.|- No, it wasn't. I didn't do it.955|00:02:05.968 --&gt; 00:02:06.028I didn't do it.956|00:02:06.031 --&gt; 00:02:06.121- How you doing ?|- Great.957|00:02:06.125 --&gt; 00:02:06.184I never thanked you|for dinner.958|00:02:06.249 --&gt; 00:02:06.309- What you got ?|- He booked.959|00:02:06.311 --&gt; 00:02:06.401- His trainer ?|- Says he don't know nothin'.960|00:02:06.405 --&gt; 00:02:06.495- I think Butch surprised|his ass same as us.961|00:02:06.499 --&gt; 00:02:06.619We wanna know. Take him to|the kennel, sic the dogs on his ass.962|00:02:06.624 --&gt; 00:02:06.714We'll find out for goddamn sure|what he knows and what he don't.963|00:02:06.718 --&gt; 00:02:06.778Butch's search--|How do you want it done ?964|00:02:06.781 --&gt; 00:02:06.871I'm prepared to scour the Earth|for that motherfucker.965|00:02:06.874 --&gt; 00:02:06.964If Butch goes to lndochina, I want|a nigger hiding in a bowl of rice...966|00:02:06.968 --&gt; 00:02:07.028ready to pop a cap in his ass.967|00:02:07.031 --&gt; 00:02:07.091I will take care of it.968|00:02:07.405 --&gt; 00:02:07.465Mister.969|00:02:07.562 --&gt; 00:02:07.622- Hey, mister.|- What ?970|00:02:07.624 --&gt; 00:02:07.774You were in that fight,|the fight on the radio.971|00:02:07.781 --&gt; 00:02:07.871- You're the fighter ?|- Whatever gave you that idea ?972|00:02:07.874 --&gt; 00:02:07.964No, come on.973|00:02:07.968 --&gt; 00:02:08.028You're him.974|00:02:08.031 --&gt; 00:02:08.091I know you're him.975|00:02:08.156 --&gt; 00:02:08.215Tell me you're him.976|00:02:08.218 --&gt; 00:02:08.278I'm him.977|00:02:08.311 --&gt; 00:02:08.371You killed the other boxing man.978|00:02:08.499 --&gt; 00:02:08.559He's dead ?979|00:02:08.562 --&gt; 00:02:08.622The radio said he was dead.980|00:02:08.718 --&gt; 00:02:08.778Sorry about that, Floyd.981|00:02:08.812 --&gt; 00:02:08.872What does it feel like ?982|00:02:08.906 --&gt; 00:02:08.936What does what feel like ?983|00:02:08.937 --&gt; 00:02:08.997Killing a man.984|00:02:09.062 --&gt; 00:02:09.182Beating another man to death|with your bare hands.985|00:02:09.187 --&gt; 00:02:09.247What are you, a weirdo ?986|00:02:09.250 --&gt; 00:02:09.309No.987|00:02:09.311 --&gt; 00:02:09.401It is a subject|I have much interest in.988|00:02:09.468 --&gt; 00:02:09.558You are the first person|I have ever met who has killed somebody.989|00:02:09.655 --&gt; 00:02:09.715So ?990|00:02:09.718 --&gt; 00:02:09.808- What does it feel like to kill a man ?991|00:02:09.843 --&gt; 00:02:09.903I'll tell you what.992|00:02:09.906 --&gt; 00:02:10.026Give me one of them cigarettes|you got up there, and I'll993|00:02:10.562 --&gt; 00:02:10.652So, Esmarelda...994|00:02:10.687 --&gt; 00:02:10.807Villa Lobos--|Is that Mexican ?995|00:02:10.812 --&gt; 00:02:10.902The name is Spanish,|but I am Colombian.996|00:02:10.906 --&gt; 00:02:10.996- That's some handle|you got there, honey.997|00:02:11.000 --&gt; 00:02:11.060And what is your name ?998|00:02:11.062 --&gt; 00:02:11.122Butch.999|00:02:11.125 --&gt; 00:02:11.185Butch.1000|00:02:11.187 --&gt; 00:02:11.336- What does it mean ?|- I'm an American, honey.1001|00:02:11.343 --&gt; 00:02:11.403So, moving right along,1002|00:02:11.405 --&gt; 00:02:11.465Esmarelda,1003|00:02:11.468 --&gt; 00:02:11.558what is it you want to know ?1004|00:02:11.562 --&gt; 00:02:11.682- I want to know what it|feels like to kill a man.1005|00:02:11.874 --&gt; 00:02:11.994Didn't know he was dead|'til you told me he was dead.1006|00:02:12.000 --&gt; 00:02:12.150Now that I know he's dead,|you wanna know how I feel about it ?1007|00:02:12.250 --&gt; 00:02:12.370I don't feel|the least bit bad about it.1008|00:02:12.687 --&gt; 00:02:12.747What the fuck'd I tell ya ?|Huh ?1009|00:02:12.749 --&gt; 00:02:12.869As soon as the word got out|the fix was in, man, the odds1010|00:02:12.874 --&gt; 00:02:12.934I know. I know.|Unbelievable.1011|00:02:12.937 --&gt; 00:02:13.057Hey, fuck him, Scotty. If he was|a better boxer, he'd still be alive.1012|00:02:13.062 --&gt; 00:02:13.122If he never|laced up his gloves,1013|00:02:13.125 --&gt; 00:02:13.185which he never shoulda done in the first|fuckin' place, he'd still be alive.1014|00:02:13.250 --&gt; 00:02:13.370Yeah, well, who gives a fuck ?|It's over now.1015|00:02:13.375 --&gt; 00:02:13.434Yeah, well, enough about the poor,|unfortunate Mr. Floyd.1016|00:02:13.437 --&gt; 00:02:13.557Let's talk about the rich|and prosperous Mr. Butch.1017|00:02:13.562 --&gt; 00:02:13.652How many bookies did you|lay it around on ?1018|00:02:13.656 --&gt; 00:02:13.716All eight ?|How long to collect ?1019|00:02:13.781 --&gt; 00:02:13.871So you'll have it all|by tomorrow night ? No, I understand.1020|00:02:13.875 --&gt; 00:02:13.965A few stragglers aside.|Oh, fuck, Scotty, that is good news.1021|00:02:13.968 --&gt; 00:02:14.028That is great news, man.1022|00:02:14.031 --&gt; 00:02:14.151Yeah. Mm-hmm. No, me and Fabienne|are gonna leave in the morning.1023|00:02:14.156 --&gt; 00:02:14.246It'll probably take us|a couple days to get down to Knoxville.1024|00:02:14.250 --&gt; 00:02:14.310Okay, my brother.1025|00:02:14.312 --&gt; 00:02:14.372You're right.1026|00:02:14.375 --&gt; 00:02:14.435You're goddamn right.1027|00:02:14.468 --&gt; 00:02:14.558All right, Scotty, next time I see you,|it'll be on Tennessee time.1028|00:02:14.562 --&gt; 00:02:14.622Cool, brother.1029|00:02:15.093 --&gt; 00:02:15.153$45.60.1030|00:02:15.250 --&gt; 00:02:15.310And, uh,1031|00:02:15.312 --&gt; 00:02:15.432here's a little something|for the effort.1032|00:02:15.438 --&gt; 00:02:15.527Now, if anybody asks you who your fare|was tonight, what are you gonna say ?1033|00:02:15.530 --&gt; 00:02:15.590The truth.1034|00:02:15.593 --&gt; 00:02:15.713Three well-dressed,|slightly toasted Mexicans.1035|00:02:15.781 --&gt; 00:02:15.841Bonsoir,|Esmarelda Villa Lobos.1036|00:02:15.843 --&gt; 00:02:15.903Buenas Noches, Butch.1037|00:02:16.250 --&gt; 00:02:16.310Whew.1038|00:02:16.344 --&gt; 00:02:16.404Keep the light off.1039|00:02:16.406 --&gt; 00:02:16.496- Is that better, Sugar Pop ?|- Oui.1040|00:02:16.624 --&gt; 00:02:16.684Hard day at the office ?1041|00:02:16.687 --&gt; 00:02:16.747Pretty hard.1042|00:02:16.749 --&gt; 00:02:16.809Got in a fight.1043|00:02:16.812 --&gt; 00:02:16.872Poor baby.1044|00:02:16.875 --&gt; 00:02:16.965Can you make spoons ?1045|00:02:16.968 --&gt; 00:02:17.058You know what ?|I was thinkin' about takin' a shower.1046|00:02:17.062 --&gt; 00:02:17.182- I'm stinkin' like a dog over here.|- I like the way you stink.1047|00:02:17.187 --&gt; 00:02:17.247Let me take this jacket off.1048|00:02:17.312 --&gt; 00:02:17.432- I was looking at myself in the mirror.|- Uh-huh.1049|00:02:17.438 --&gt; 00:02:17.468I wish I had a pot.1050|00:02:17.531 --&gt; 00:02:17.650You were looking|at yourself in the mirror,1051|00:02:17.656 --&gt; 00:02:17.746A pot.|A pot belly.1052|00:02:17.749 --&gt; 00:02:17.809Pot bellies are sexy.1053|00:02:17.812 --&gt; 00:02:17.872Well, you should be happy,1054|00:02:17.875 --&gt; 00:02:17.935'cause you have one.1055|00:02:17.937 --&gt; 00:02:18.057Shut up, fatso.|I don't have a pot.1056|00:02:18.062 --&gt; 00:02:18.152I have a bit of a tummy,|like Madonna when she did &quot;Lucky Star.&quot;1057|00:02:18.156 --&gt; 00:02:18.216It's not the same thing.1058|00:02:18.219 --&gt; 00:02:18.339I didn't know there was|such a difference between1059|00:02:18.344 --&gt; 00:02:18.404The difference is huge.1060|00:02:18.406 --&gt; 00:02:18.496Would you like it if I had a pot belly ?1061|00:02:18.500 --&gt; 00:02:18.560No.1062|00:02:18.563 --&gt; 00:02:18.712Pot bellies make a man|look either oafish or like a gorilla.1063|00:02:18.718 --&gt; 00:02:18.808But on a woman|a pot belly's very sexy.1064|00:02:18.812 --&gt; 00:02:18.962The rest of you is normal-- normal face,|normal legs, normal hips, normal ass--1065|00:02:18.968 --&gt; 00:02:19.088but with a big,|perfectly round pot belly.1066|00:02:19.094 --&gt; 00:02:19.184If I had one, I'd wear a T-shirt|two sizes too small...1067|00:02:19.187 --&gt; 00:02:19.247to accentuate it.1068|00:02:19.250 --&gt; 00:02:19.310You think men|would find that attractive ?1069|00:02:19.312 --&gt; 00:02:19.402I don't give a damn|what men find attractive.1070|00:02:19.406 --&gt; 00:02:19.526It's unfortunate what we find pleasing|to the touch and pleasing to the eye...1071|00:02:19.531 --&gt; 00:02:19.561is seldom the same.1072|00:02:19.687 --&gt; 00:02:19.777If you had a pot belly,|I would punch you in it.1073|00:02:19.781 --&gt; 00:02:19.871- You'd punch me in the belly ?|- Right in the belly.1074|00:02:19.875 --&gt; 00:02:19.935Ohh ! I'd smother you !1075|00:02:19.937 --&gt; 00:02:20.057- I'd drop it right on your face|'til you couldn't breathe !1076|00:02:20.062 --&gt; 00:02:20.122- You'd do that ?|- Yeah.1077|00:02:20.125 --&gt; 00:02:20.185- Promise ?|- Yeah.1078|00:02:20.281 --&gt; 00:02:20.341- Mmm.|- Mmm.1079|00:02:20.406 --&gt; 00:02:20.466Oh.1080|00:02:20.594 --&gt; 00:02:20.654Did you get everything ?1081|00:02:20.657 --&gt; 00:02:20.716- Yes, I did.|- Good job, Sugar Pop.1082|00:02:20.749 --&gt; 00:02:20.779Did everything|go as planned ?1083|00:02:20.781 --&gt; 00:02:20.871- You didn't listen to the-- Ow !1084|00:02:20.875 --&gt; 00:02:20.935You didn't listen to the radio ?1085|00:02:20.937 --&gt; 00:02:21.027I never listen to your fights.|Were you the winner ?1086|00:02:21.031 --&gt; 00:02:21.121I won, all right.1087|00:02:21.125 --&gt; 00:02:21.185- Are you still retiring ?|- Sure am.1088|00:02:21.219 --&gt; 00:02:21.279So it all worked out|in the finish.1089|00:02:21.313 --&gt; 00:02:21.403We're not at the finish yet, baby.1090|00:02:21.657 --&gt; 00:02:21.747We're in a lot of danger,|aren't we ?1091|00:02:21.781 --&gt; 00:02:21.871If they find us,|they'll kill us, won't they ?1092|00:02:21.937 --&gt; 00:02:22.027But they won't find us,|will they ?1093|00:02:22.125 --&gt; 00:02:22.215Do you still want me|to go with you ?1094|00:02:22.250 --&gt; 00:02:22.370I don't want to be a burden|or a nuisance. It's--1095|00:02:22.563 --&gt; 00:02:22.623Say it.1096|00:02:22.625 --&gt; 00:02:22.715- Fabienne,1097|00:02:22.719 --&gt; 00:02:22.808I want you to be with me.1098|00:02:22.812 --&gt; 00:02:22.902- Forever ?|- Forever and ever.1099|00:02:22.968 --&gt; 00:02:23.028Do you love me ?1100|00:02:23.031 --&gt; 00:02:23.091Very, very much.1101|00:02:23.250 --&gt; 00:02:23.340- Butch.|- Yes ?1102|00:02:23.375 --&gt; 00:02:23.435Will you give me|oral pleasure ?1103|00:02:23.500 --&gt; 00:02:23.560Will you kiss it ?1104|00:02:23.625 --&gt; 00:02:23.685But you first.1105|00:02:23.688 --&gt; 00:02:23.778- Okay.|- Okay.1106|00:02:24.062 --&gt; 00:02:24.152Butch.1107|00:02:24.156 --&gt; 00:02:24.246Mon amour.|L'aventure commence.1108|00:02:24.719 --&gt; 00:02:24.779I think I cracked a rib.1109|00:02:24.782 --&gt; 00:02:24.901- Giving me oral pleasure ?|- No, retard, from the fight.1110|00:02:24.906 --&gt; 00:02:24.996- Don't call me &quot;retard.&quot;|- My name is Fabby.1111|00:02:25.000 --&gt; 00:02:25.060- My name is Fabienne !|- Stop it.1112|00:02:25.062 --&gt; 00:02:25.122- Stop it !|- My name is Fabi--1113|00:02:25.125 --&gt; 00:02:25.215Shut up, fuckhead !|I hate that mongoloid voice.1114|00:02:25.219 --&gt; 00:02:25.309Okay, okay.|Sorry, sorry, sorry.1115|00:02:25.313 --&gt; 00:02:25.403- I take it back.1116|00:02:25.469 --&gt; 00:02:25.559Will you hand me a dry towel,|Miss Beautiful Tulip ?1117|00:02:25.563 --&gt; 00:02:25.683- Oh, I like that.|I like being called a tulip.1118|00:02:25.688 --&gt; 00:02:25.748&quot;Tulip&quot; is much better|than &quot;mongoloid.&quot;1119|00:02:25.751 --&gt; 00:02:25.841I didn't call you a mongoloid.|I called you a retard.1120|00:02:25.844 --&gt; 00:02:25.904And I took it back.1121|00:02:25.907 --&gt; 00:02:25.966- Butch ?1122|00:02:25.968 --&gt; 00:02:26.028Yes, Lemon Pie ?1123|00:02:26.031 --&gt; 00:02:26.121- Where are we going to go ?|- Well, I'm not sure yet.1124|00:02:26.156 --&gt; 00:02:26.216Wherever you want.1125|00:02:26.219 --&gt; 00:02:26.279We're gonna get a lot|of money from this,1126|00:02:26.313 --&gt; 00:02:26.373but it ain't gonna be|the kind of money...1127|00:02:26.375 --&gt; 00:02:26.465that we can live like hogs|in the fathouse forever.1128|00:02:26.469 --&gt; 00:02:26.589I was thinking maybe we could go|down someplace in the South Pacific.1129|00:02:26.594 --&gt; 00:02:26.684Kind of money we're gonna have's gonna|carry us a long way down there.1130|00:02:26.688 --&gt; 00:02:26.778- If we wanted,|we could live in Bora Bora ?1131|00:02:26.782 --&gt; 00:02:26.902And if after a while you didn't|dig that, we could go someplace else.1132|00:02:26.907 --&gt; 00:02:26.966Maybe Tahiti, Mexico.1133|00:02:26.968 --&gt; 00:02:26.998But I do not speak Spanish.1134|00:02:27.031 --&gt; 00:02:27.091Well, you do not speak|Bora-Boran either.1135|00:02:27.094 --&gt; 00:02:27.154Besides, Mexican's easy.1136|00:02:27.156 --&gt; 00:02:27.246- &#191; Donde esta el zapateria ?|- What does that mean ?1137|00:02:27.250 --&gt; 00:02:27.310Where is the shoe store?1138|00:02:27.313 --&gt; 00:02:27.373- &#191; Donde esta--|- Spit, please.1139|00:02:27.438 --&gt; 00:02:27.528- &#191; Donde esta el zapateria ?|- Excellent pronunciation.1140|00:02:27.532 --&gt; 00:02:27.592- Mmm.1141|00:02:27.594 --&gt; 00:02:27.684You'll be my little mamacita|in no time.1142|00:02:27.719 --&gt; 00:02:27.779- &#191; Que hora es ?|- &#191; Que hora es ?1143|00:02:27.782 --&gt; 00:02:27.842- What time is it ?|- What time is it ?1144|00:02:27.844 --&gt; 00:02:27.934Time for bed.1145|00:02:27.938 --&gt; 00:02:27.998Sweet dreams, jellybean.1146|00:02:28.219 --&gt; 00:02:28.279Butch ?1147|00:02:28.438 --&gt; 00:02:28.498Never mind.1148|00:02:28.719 --&gt; 00:02:28.809Aah !1149|00:02:28.813 --&gt; 00:02:28.933Merde ! You startled me.|Did you have a bad dream ?1150|00:02:29.250 --&gt; 00:02:29.370- What is this you're watching ?|- A motorcycle movie.1151|00:02:29.375 --&gt; 00:02:29.435I'm not sure the name.1152|00:02:29.469 --&gt; 00:02:29.559- Are you watching it ?|- In a way.1153|00:02:29.625 --&gt; 00:02:29.745It's a little early in the morning|for explosions and war.1154|00:02:29.844 --&gt; 00:02:29.964- What was it about ?|- How should I know ?1155|00:02:29.970 --&gt; 00:02:30.089- No, imbecile,|what was your dream about ?1156|00:02:30.094 --&gt; 00:02:30.154I don't remember.1157|00:02:30.156 --&gt; 00:02:30.246It's really rare|that I remember my dreams.1158|00:02:30.250 --&gt; 00:02:30.340Well, let's look|at the grumpy man in the morning.1159|00:02:30.406 --&gt; 00:02:30.466 Why don't you get up|and we'll get some breakfast.1160|00:02:30.469 --&gt; 00:02:30.559One more kiss,|and I'll get up.1161|00:02:30.625 --&gt; 00:02:30.715- Satisfied ?|- Yep.1162|00:02:30.719 --&gt; 00:02:30.839- Get up, lazy bones !|- Ohh !1163|00:02:30.844 --&gt; 00:02:30.934- Ohh. God.1164|00:02:30.970 --&gt; 00:02:31.060- What time is it ?|- Almost nine in the morning.1165|00:02:31.063 --&gt; 00:02:31.182- What time does our train arrive ?|- Eleven.1166|00:02:31.187 --&gt; 00:02:31.307- You know what I'm gonna|have for breakfast ?1167|00:02:31.313 --&gt; 00:02:31.433I'm gonna order a big plate|of blueberry pancakes...1168|00:02:31.438 --&gt; 00:02:31.498with maple syrup,1169|00:02:31.500 --&gt; 00:02:31.590eggs over easy|and five sausages.1170|00:02:31.594 --&gt; 00:02:31.684Anything to drink with that ?1171|00:02:31.688 --&gt; 00:02:31.778Wow, that looks nice.1172|00:02:31.782 --&gt; 00:02:31.872To drink-- A tall glass|of orange juice...1173|00:02:31.876 --&gt; 00:02:31.966and a black cup of coffee.1174|00:02:31.970 --&gt; 00:02:32.090- After that, I'm going to|have a slice of pie.1175|00:02:32.095 --&gt; 00:02:32.214- Any time of the day|is a good time for pie.1176|00:02:32.219 --&gt; 00:02:32.309Blueberry pie|to go with the pancakes.1177|00:02:32.313 --&gt; 00:02:32.403And on top, a thin slice|of melted cheese.1178|00:02:32.406 --&gt; 00:02:32.466Where's my watch ?1179|00:02:32.594 --&gt; 00:02:32.654It's there.1180|00:02:32.657 --&gt; 00:02:32.747- No, it's not.|- Have you looked ?1181|00:02:32.751 --&gt; 00:02:32.871Yes, I've fuckin' looked.|What the fuck do you think I'm doin' ?1182|00:02:32.876 --&gt; 00:02:32.936You sure you got it ?1183|00:02:32.938 --&gt; 00:02:32.998Yes.|Bedside table drawer.1184|00:02:33.001 --&gt; 00:02:33.121- On the little kangaroo ?|- Yes, it was on the little kangaroo.1185|00:02:33.126 --&gt; 00:02:33.215Yeah, well,|it's not here now.1186|00:02:33.219 --&gt; 00:02:33.279- Well, it should be.1187|00:02:33.313 --&gt; 00:02:33.403Yes, it most definitely should be,|but it's not here now !1188|00:02:33.563 --&gt; 00:02:33.683Fabienne,|where's my father's fucking watch ?1189|00:02:33.719 --&gt; 00:02:33.869Do you have any idea what he had|to go through to get me that watch ?1190|00:02:33.876 --&gt; 00:02:33.966I don't have time to go into it,|but he went through a lot.1191|00:02:33.970 --&gt; 00:02:34.120All this other shit you could've set|on fire, but I specifically reminded1192|00:02:34.126 --&gt; 00:02:34.156Now think.1193|00:02:34.157 --&gt; 00:02:34.276- Did you get it ?|- I believe so.1194|00:02:34.281 --&gt; 00:02:34.371&quot;You believe so&quot; ?|What the fuck does that mean ?1195|00:02:34.406 --&gt; 00:02:34.466Then I did.1196|00:02:34.500 --&gt; 00:02:34.560Are you sure ?1197|00:02:34.594 --&gt; 00:02:34.654No.1198|00:02:34.719 --&gt; 00:02:34.779Fuck ! Fuck ! Fuck !1199|00:02:34.782 --&gt; 00:02:34.842Motherfucker !|Motherfuckin'--1200|00:02:34.907 --&gt; 00:02:34.997Do you know how fucking stupid|you fucking are ?1201|00:02:35.001 --&gt; 00:02:35.061No !1202|00:02:35.126 --&gt; 00:02:35.186It's not your fault.1203|00:02:35.344 --&gt; 00:02:35.404You left it at the apartment.1204|00:02:35.563 --&gt; 00:02:35.683If you left it at the apartment,|it's not your fault.1205|00:02:35.751 --&gt; 00:02:35.841I had you bring|a bunch of stuff.1206|00:02:35.907 --&gt; 00:02:35.967I reminded you about it,1207|00:02:35.970 --&gt; 00:02:36.090but I didn't illustrate|how personal the watch was to me.1208|00:02:36.095 --&gt; 00:02:36.215If all I gave a fuck about was|the watch, I shoulda told you that.1209|00:02:36.220 --&gt; 00:02:36.310You're not a mind reader.1210|00:02:36.314 --&gt; 00:02:36.343Are you ?1211|00:02:36.657 --&gt; 00:02:36.717I-- I'm sorry.1212|00:02:36.719 --&gt; 00:02:36.839Don't be. Just means|I can't have breakfast with you.1213|00:02:36.844 --&gt; 00:02:36.904Why does it mean that ?1214|00:02:37.001 --&gt; 00:02:37.091Because I gotta go back to my apartment|and get my watch.1215|00:02:37.126 --&gt; 00:02:37.186Won't the gangsters|be looking for you there ?1216|00:02:37.220 --&gt; 00:02:37.340Well, that's what|I'm gonna find out.1217|00:02:37.345 --&gt; 00:02:37.434If they are, and I don't think|I can handle it,1218|00:02:37.438 --&gt; 00:02:37.498then I'll split.1219|00:02:37.500 --&gt; 00:02:37.620I saw your watch. I thought|I brought it. I'm so sorry.1220|00:02:37.782 --&gt; 00:02:37.872Here's some money.|Go out and get those pancakes.1221|00:02:37.876 --&gt; 00:02:37.936Have a nice breakfast.1222|00:02:37.938 --&gt; 00:02:38.028I'll take your Honda. I'll be back|before you can say &quot;blueberry pie.&quot;1223|00:02:38.032 --&gt; 00:02:38.122Blueberry pie.1224|00:02:38.126 --&gt; 00:02:38.186Maybe not that fast.1225|00:02:38.189 --&gt; 00:02:38.279- But pretty fast. Okay ?|- Okay.1226|00:02:38.282 --&gt; 00:02:38.342- Bye.|- Bye.1227|00:02:38.345 --&gt; 00:02:38.434Shit ! Of all the fuckin' things|she could fuckin' forget,1228|00:02:38.438 --&gt; 00:02:38.498she forgets my father's watch !1229|00:02:38.500 --&gt; 00:02:38.560I specifically reminded her--1230|00:02:38.563 --&gt; 00:02:38.623bedside table, on the kangaroo.1231|00:02:38.625 --&gt; 00:02:38.715I said the words:|&quot;Don't forget my father's watch.&quot;1232|00:02:39.189 --&gt; 00:02:39.279Visit the Jackrabbit Slim's|nearest you...1233|00:02:39.594 --&gt; 00:02:39.714i EI burro !1234|00:02:43.439 --&gt; 00:02:43.469Lookin' good, Butch.1235|00:02:48.564 --&gt; 00:02:48.624 lf I were walkin'|in your shoes1236|00:02:48.845 --&gt; 00:02:48.995 Countin' flowers on the wall|That don't bother me at all1237|00:02:49.001 --&gt; 00:02:49.121 Playin' solitaire 'til dawn|with a deck of fifty-one1238|00:02:49.126 --&gt; 00:02:49.216That's how you're gonna|beat 'em, Butch.1239|00:02:49.220 --&gt; 00:02:49.310- Smokin' cigarettes and|watchin' Captain Kangaroo1240|00:02:49.314 --&gt; 00:02:49.374 Now don't tell me1241|00:02:49.439 --&gt; 00:02:49.529 Countin' flowers on the wall1242|00:02:49.533 --&gt; 00:02:49.653 That don't bother me at all1243|00:02:49.658 --&gt; 00:02:49.808 Playin' solitaire 'til dawn|with a deck of fifty-one1244|00:02:49.814 --&gt; 00:02:49.963 Smokin' cigarettes|and watchin' Captain Kangaroo1245|00:02:49.970 --&gt; 00:02:50.030 Now don't tell me1246|00:02:50.032 --&gt; 00:02:50.122 I've nothin' to do1247|00:02:50.126 --&gt; 00:02:50.186 It's good to see you|I must go1248|00:02:50.189 --&gt; 00:02:50.249 I know I look a fright1249|00:02:50.251 --&gt; 00:02:50.341- Anyway my eyes|- Motherfucker.1250|00:02:50.345 --&gt; 00:02:50.405- Are not accustomed--|- Uhh !1251|00:02:50.658 --&gt; 00:02:50.718- Do you think he's dead ?|- He's dead.1252|00:02:50.720 --&gt; 00:02:50.780- Oh, my God.|- He's dead.1253|00:02:51.095 --&gt; 00:02:51.185If you need someone to go|to court, I'll be glad to help.1254|00:02:51.220 --&gt; 00:02:51.280He hit you, then he|crashed into that car.1255|00:02:51.283 --&gt; 00:02:51.343- Who ?|- Him.1256|00:02:51.470 --&gt; 00:02:51.530I'll be damned.1257|00:02:51.877 --&gt; 00:02:51.937- Ohh !1258|00:02:52.001 --&gt; 00:02:52.091- Aaaah ! I'm shot !1259|00:02:52.283 --&gt; 00:02:52.373- Sally ! Sally !1260|00:02:52.502 --&gt; 00:02:52.562- Aaah !1261|00:02:52.627 --&gt; 00:02:52.687Motherfucker !1262|00:02:52.752 --&gt; 00:02:52.842- Can I help you with somethin' ?|- Shut the fuck up.1263|00:02:52.877 --&gt; 00:02:52.937Now you just wait|a goddamn minute, now !1264|00:02:52.939 --&gt; 00:02:52.999What the fuck you up to ?1265|00:02:53.002 --&gt; 00:02:53.091- Come here, motherfucker !1266|00:02:53.095 --&gt; 00:02:53.185- You feel that sting, huh, big boy ?1267|00:02:53.189 --&gt; 00:02:53.249That's pride|fuckin' with you, see ?1268|00:02:53.251 --&gt; 00:02:53.341You gotta fight through that shit !| Huh ?1269|00:02:53.345 --&gt; 00:02:53.435- You'd better kill me--|- Yeah, somebody's gonna get killed.1270|00:02:53.439 --&gt; 00:02:53.499Somebody's gonna get|their motherfuckin' head blown to--1271|00:02:53.533 --&gt; 00:02:53.593- Hold it right there, goddamn it.1272|00:02:53.595 --&gt; 00:02:53.715- This ain't none|of your business, mister.1273|00:02:53.720 --&gt; 00:02:53.780- Toss the weapon.|- You don't understand, man.1274|00:02:53.783 --&gt; 00:02:53.843Toss the weapon.1275|00:02:53.908 --&gt; 00:02:53.998 It's time1276|00:02:54.002 --&gt; 00:02:54.091- To find love|- Take your foot off the nigger,1277|00:02:54.095 --&gt; 00:02:54.155- put your hand behind your head,1278|00:02:54.157 --&gt; 00:02:54.217approach the counter right now.1279|00:02:54.220 --&gt; 00:02:54.280- This motherfucker's trying to...1280|00:02:54.283 --&gt; 00:02:54.313kill me.1281|00:02:54.314 --&gt; 00:02:54.434Shut up.|Keep comin'. Come on.1282|00:02:54.502 --&gt; 00:02:54.592 lf love1283|00:02:54.595 --&gt; 00:02:54.655 ls shelter1284|00:02:55.189 --&gt; 00:02:55.219Zed. Maynard.1285|00:02:55.283 --&gt; 00:02:55.343Yeah, the spider|just caught a couple flies.1286|00:02:55.376 --&gt; 00:02:55.466 Whoa, my angel1287|00:02:55.533 --&gt; 00:02:55.623 Down to you1288|00:02:55.627 --&gt; 00:02:55.627 Down to you1289|00:02:56.783 --&gt; 00:02:56.873Nobody kills anybody|in my place of business...1290|00:02:56.877 --&gt; 00:02:56.967- except me or Zed.1291|00:02:57.033 --&gt; 00:02:57.093That's Zed.1292|00:02:57.470 --&gt; 00:02:57.560- I thought|you said you waited for me.1293|00:02:57.721 --&gt; 00:02:57.781Then how come they're all beat up ?1294|00:02:57.783 --&gt; 00:02:57.933They did that to each other, man.|They came in fightin'.1295|00:02:57.940 --&gt; 00:02:58.060Now, this 'un right here,|he was gonna shoot that one.1296|00:02:58.065 --&gt; 00:02:58.155Is that right ?|You gonna shoot him, boy ?1297|00:02:58.158 --&gt; 00:02:58.247Huh ?1298|00:02:58.314 --&gt; 00:02:58.374Hey, is Grace|all right out front ?1299|00:02:58.408 --&gt; 00:02:58.498- Yeah. It ain't Tuesday, is it ?|- No, it's Thursday.1300|00:02:58.502 --&gt; 00:02:58.562- She oughta be fine.|- Mmm.1301|00:02:58.627 --&gt; 00:02:58.747Well, bring out the Gimp.1302|00:02:58.783 --&gt; 00:02:58.843I think the Gimp's sleepin'.1303|00:02:58.846 --&gt; 00:02:58.966Then I guess you'll just have to go|wake him up now, won't you ?1304|00:03:00.159 --&gt; 00:03:00.219Get up.1305|00:03:00.595 --&gt; 00:03:00.655Get down.1306|00:03:00.971 --&gt; 00:03:01.061Which one of 'em|you wanna do first ?1307|00:03:01.065 --&gt; 00:03:01.155- I ain't for sure yet.1308|00:03:01.284 --&gt; 00:03:01.343Eenie-meenie-minie-mo,1309|00:03:01.345 --&gt; 00:03:01.435catch a nigger...1310|00:03:01.439 --&gt; 00:03:01.499by his toe.1311|00:03:01.502 --&gt; 00:03:01.622If he hollers, let him go.1312|00:03:01.627 --&gt; 00:03:01.747Eenie-meenie-minie-mo.1313|00:03:01.846 --&gt; 00:03:01.936My mother said...1314|00:03:01.940 --&gt; 00:03:02.030pick the perfect one,1315|00:03:02.033 --&gt; 00:03:02.123and... you... are...1316|00:03:02.190 --&gt; 00:03:02.220it.1317|00:03:02.315 --&gt; 00:03:02.404- Guess that means you, big boy.|- Fuck you !1318|00:03:02.408 --&gt; 00:03:02.468- Shh.1319|00:03:02.533 --&gt; 00:03:02.653- You wanna do it in here ?|- No, let's take him back1320|00:03:02.658 --&gt; 00:03:02.748Sounds good to me.1321|00:03:03.470 --&gt; 00:03:03.560You keep an eye on this 'un.1322|00:03:04.346 --&gt; 00:03:04.465Yeah !1323|00:03:04.533 --&gt; 00:03:04.653Now ! Go ! Come on, motherfucker !1324|00:03:04.658 --&gt; 00:03:04.748- Now, motherfucker !|Aaah !1325|00:03:04.752 --&gt; 00:03:04.872- Come on ! Yeah !1326|00:03:05.065 --&gt; 00:03:05.155- Yeah !1327|00:03:05.378 --&gt; 00:03:05.438- Ohh !|- Yeah !1328|00:03:05.503 --&gt; 00:03:05.592- Yeah ! Yeah !1329|00:03:05.658 --&gt; 00:03:05.718Yeee !|Yeeee-hah !1330|00:03:06.346 --&gt; 00:03:06.406Yeah !1331|00:03:07.252 --&gt; 00:03:07.342Come on !|Get down there !1332|00:03:07.440 --&gt; 00:03:07.530Aaah !|Do it ! Yeah !1333|00:03:08.033 --&gt; 00:03:08.123Yeah ! Yeah !1334|00:03:08.597 --&gt; 00:03:08.686- Shut the fuck up !1335|00:03:08.752 --&gt; 00:03:08.812Fuck him !1336|00:03:08.877 --&gt; 00:03:08.937Come on !1337|00:03:09.033 --&gt; 00:03:09.153- Fuck him. Yeah.1338|00:03:09.440 --&gt; 00:03:09.530Aaaaah !1339|00:03:09.659 --&gt; 00:03:09.718- Aaaaah !1340|00:03:10.065 --&gt; 00:03:10.125You want that gun,|don't ya, Zed ?1341|00:03:10.190 --&gt; 00:03:10.250Huh ?1342|00:03:10.284 --&gt; 00:03:10.314Go ahead and pick it up.1343|00:03:10.409 --&gt; 00:03:10.469Go ahead. Pick it up.1344|00:03:10.534 --&gt; 00:03:10.624Come on--|Thatta boy !1345|00:03:10.659 --&gt; 00:03:10.778I want you to pick it up, Zed.1346|00:03:10.908 --&gt; 00:03:10.998- Step aside, Butch.1347|00:03:11.378 --&gt; 00:03:11.468Fuck !1348|00:03:11.534 --&gt; 00:03:11.624- You okay ?1349|00:03:11.659 --&gt; 00:03:11.719No, man.1350|00:03:11.722 --&gt; 00:03:11.811I'm pretty fuckin' far from okay.1351|00:03:12.159 --&gt; 00:03:12.249- What now ?1352|00:03:12.315 --&gt; 00:03:12.375&quot;What now&quot; ?1353|00:03:12.409 --&gt; 00:03:12.499- Let me tell you what now.1354|00:03:12.534 --&gt; 00:03:12.594I'm gonna call a couple of hard,|pipe-hittin' niggers...1355|00:03:12.597 --&gt; 00:03:12.687to go to work|on the homes here...1356|00:03:12.690 --&gt; 00:03:12.780with a pair of pliers|and a blowtorch.1357|00:03:12.846 --&gt; 00:03:12.936You hear me talkin',|hillbilly boy ?1358|00:03:12.971 --&gt; 00:03:13.031I ain't through with you|by a damn sight !1359|00:03:13.033 --&gt; 00:03:13.123I'm gonna get medieval|on your ass.1360|00:03:13.221 --&gt; 00:03:13.311I meant what now|between me and you.1361|00:03:13.471 --&gt; 00:03:13.531Oh, that &quot;what now.&quot;1362|00:03:13.597 --&gt; 00:03:13.687- I tell you what now|between me and you.1363|00:03:13.753 --&gt; 00:03:13.842There is no me and you.1364|00:03:13.877 --&gt; 00:03:13.937Not no more.1365|00:03:14.033 --&gt; 00:03:14.093So, are we cool ?1366|00:03:14.127 --&gt; 00:03:14.187Yeah, we cool.1367|00:03:14.190 --&gt; 00:03:14.250- Two things.1368|00:03:14.315 --&gt; 00:03:14.405Don't tell nobody about this.1369|00:03:14.440 --&gt; 00:03:14.560This shit is between me, you...1370|00:03:14.565 --&gt; 00:03:14.685and Mr. &quot;Soon-To-Be-Livin'|The-Rest-Of-His-Short-Ass-1371|00:03:14.690 --&gt; 00:03:14.750rapist here.1372|00:03:14.784 --&gt; 00:03:14.874It ain't nobody else's business.1373|00:03:14.878 --&gt; 00:03:14.937Two:1374|00:03:14.940 --&gt; 00:03:15.030You leave town tonight.|Right now.1375|00:03:15.096 --&gt; 00:03:15.126And when you gone,1376|00:03:15.127 --&gt; 00:03:15.187you stay gone,1377|00:03:15.190 --&gt; 00:03:15.280- or you be gone.1378|00:03:15.284 --&gt; 00:03:15.374You lost all your L.A. privileges.|Deal ?1379|00:03:15.440 --&gt; 00:03:15.500Deal.1380|00:03:15.534 --&gt; 00:03:15.594Get your ass outta here.1381|00:03:16.378 --&gt; 00:03:16.438Oh, shit.1382|00:03:17.440 --&gt; 00:03:17.500Fabienne !1383|00:03:17.534 --&gt; 00:03:17.624Fabienne !1384|00:03:17.659 --&gt; 00:03:17.719Fabienne !|Come on, baby.1385|00:03:17.722 --&gt; 00:03:17.842- Come on. Get your shit.|We gotta go right now.1386|00:03:17.847 --&gt; 00:03:17.937- What about our bags ?|- Fuck the bags; if we don't split1387|00:03:17.941 --&gt; 00:03:18.001- I'll be downstairs.|- Is everything well ?1388|00:03:18.003 --&gt; 00:03:18.122- Just come on ! No talking now !|- Are we in danger ?1389|00:03:18.221 --&gt; 00:03:18.281Come on, honey !1390|00:03:18.346 --&gt; 00:03:18.406Where did you get|this motorcycle ?1391|00:03:18.409 --&gt; 00:03:18.559- It's not a motorcycle, baby.|It's a chopper. Let's go.1392|00:03:18.565 --&gt; 00:03:18.655I'm sorry, baby,|I had to crash that Honda.1393|00:03:18.659 --&gt; 00:03:18.749Come on. Let's go,|let's go, let's go.1394|00:03:18.878 --&gt; 00:03:18.968- You're hurt ?|- No, no, I might've broken1395|00:03:19.003 --&gt; 00:03:19.062Come on. Hop on.|Baby, please, we--1396|00:03:19.065 --&gt; 00:03:19.155Honey, we gotta hit|the fuckin' road ! Get on !1397|00:03:19.221 --&gt; 00:03:19.311- Oh, baby, I'm sorry.|Come here, come here.1398|00:03:19.315 --&gt; 00:03:19.375I'm sorry. Mmm.1399|00:03:19.378 --&gt; 00:03:19.498- I'm so sorry.|- You were gone so long, I started1400|00:03:19.503 --&gt; 00:03:19.593I didn't mean to worry you.|Everything's fine.1401|00:03:19.597 --&gt; 00:03:19.657- How was your breakfast ?|- It was good.1402|00:03:19.659 --&gt; 00:03:19.719Did you get|the blueberry pancakes ?1403|00:03:19.722 --&gt; 00:03:19.812They didn't have blueberry; I had to get|buttermilk. Are you sure you're okay ?1404|00:03:19.816 --&gt; 00:03:19.906Since I left you,|this has been, without a doubt,1405|00:03:19.909 --&gt; 00:03:19.999the single weirdest|fuckin' day of my life--1406|00:03:20.035 --&gt; 00:03:20.065Gotta go. Come on.1407|00:03:20.066 --&gt; 00:03:20.155Butch, whose motorcycle|is this ?1408|00:03:20.159 --&gt; 00:03:20.249- It's a chopper, baby.|- Whose chopper is this ?1409|00:03:20.253 --&gt; 00:03:20.313- Zed's.|- Who's Zed ?1410|00:03:20.315 --&gt; 00:03:20.375Zed's dead, baby.|Zed's dead.1411|00:03:20.878 --&gt; 00:03:20.938Yes, you did, Brett !1412|00:03:20.941 --&gt; 00:03:21.031You tried to fuck him,|and Marsellus Wallace1413|00:03:21.035 --&gt; 00:03:21.125by anybody except Mrs. Wallace.1414|00:03:21.128 --&gt; 00:03:21.217- Oh, God, please. I don't wanna die.|- You read the Bible, Brett ?1415|00:03:21.221 --&gt; 00:03:21.311- Yes !|- Well, there's this passage1416|00:03:21.315 --&gt; 00:03:21.375Sorta fits the occasion.1417|00:03:21.378 --&gt; 00:03:21.468Ezekiel 25:17.1418|00:03:21.471 --&gt; 00:03:21.621&quot;The path of the righteous man|is beset on all sides...1419|00:03:21.628 --&gt; 00:03:21.688by the inequities|of the selfish...1420|00:03:21.690 --&gt; 00:03:21.780- and the tyranny of evil men.1421|00:03:21.784 --&gt; 00:03:21.904Blessed is he who, in the name|of charity and good will,1422|00:03:21.909 --&gt; 00:03:21.999shepherds the weak|through the valley of darkness,1423|00:03:22.003 --&gt; 00:03:22.093for he is truly|his brother's keeper...1424|00:03:22.097 --&gt; 00:03:22.186and the finder|of lost children.1425|00:03:22.190 --&gt; 00:03:22.310And I will strike down upon thee|with great vengeance...1426|00:03:22.315 --&gt; 00:03:22.375and furious anger...1427|00:03:22.378 --&gt; 00:03:22.498those who attempt to poison|and destroy My brothers.1428|00:03:22.503 --&gt; 00:03:22.623And you will know|My name is the Lord...1429|00:03:22.628 --&gt; 00:03:22.718when I lay My vengeance|upon thee.&quot;1430|00:03:22.972 --&gt; 00:03:23.032I'm fucked.|Oh, fuck. Oh, fuck.1431|00:03:23.035 --&gt; 00:03:23.125- ls he a friend of yours ?|- Oh, goddamn. Goddamn.1432|00:03:23.128 --&gt; 00:03:23.217 Hmm ? Oh.|Vincent, Marvin. Marvin, Vincent.1433|00:03:23.221 --&gt; 00:03:23.311- Better tell him to shut up.|He's gettin' on my nerves.1434|00:03:23.315 --&gt; 00:03:23.405Marvin. Marvin !|I'd knock that shit off if I was you.1435|00:03:23.409 --&gt; 00:03:23.529- Die, you motherfuckers ! Die !1436|00:03:24.378 --&gt; 00:03:24.468Why the fuck didn't you tell us|somebody was in the bathroom ?1437|00:03:24.503 --&gt; 00:03:24.563Slip your mind ? Did you forget|that someone was in there...1438|00:03:24.565 --&gt; 00:03:24.625with a goddamn hand cannon ?1439|00:03:24.628 --&gt; 00:03:24.748You see the size of that gun he fired|at us ? It was bigger than him.1440|00:03:24.909 --&gt; 00:03:24.969We should be fuckin' dead, man.1441|00:03:24.972 --&gt; 00:03:25.032I know.|We was lucky.1442|00:03:25.035 --&gt; 00:03:25.125No, no, no, no.|That shit wasn't luck.1443|00:03:25.128 --&gt; 00:03:25.248- Yeah, maybe.|- This was divine intervention.1444|00:03:25.254 --&gt; 00:03:25.313You know what|divine intervention is ?1445|00:03:25.503 --&gt; 00:03:25.563I think so.1446|00:03:25.565 --&gt; 00:03:25.655That means that God came down|from Heaven and stopped the bullets.1447|00:03:25.659 --&gt; 00:03:25.719That's right.|That's exactly what it means.1448|00:03:25.753 --&gt; 00:03:25.813God came down from Heaven|and stopped these motherfuckin' bullets.1449|00:03:25.878 --&gt; 00:03:25.938I think it's time for us|to leave, Jules.1450|00:03:25.941 --&gt; 00:03:26.001Don't do that.|Don't fuckin' blow this shit off !1451|00:03:26.003 --&gt; 00:03:26.123- What just happened here|was a fuckin' miracle !1452|00:03:26.128 --&gt; 00:03:26.188Wrong ! Wrong.|This shit doesn't &quot;just happen.&quot;1453|00:03:26.222 --&gt; 00:03:26.312Do you want to continue|this theological discussion in a car...1454|00:03:26.316 --&gt; 00:03:26.375or in a jailhouse|with the cops ?1455|00:03:26.378 --&gt; 00:03:26.468We should be fuckin' dead,|my friend !1456|00:03:26.472 --&gt; 00:03:26.592What happened here was a miracle, and I|want you to fucking acknowledge it !1457|00:03:26.597 --&gt; 00:03:26.747All right, it was a miracle.|Can we go now ?1458|00:03:26.941 --&gt; 00:03:27.031Let's go, nigger !|Come on ! Shit.1459|00:03:27.097 --&gt; 00:03:27.157You ever seen that show Cops ?1460|00:03:27.160 --&gt; 00:03:27.250I was watching it one time,|and there was this cop on,1461|00:03:27.254 --&gt; 00:03:27.374and he was talkin' about this|gunfight he had in the hallway1462|00:03:27.379 --&gt; 00:03:27.468He just unloaded on this guy and nothin'|happened. He didn't hit nothin'.1463|00:03:27.472 --&gt; 00:03:27.562Okay ? It was just|him and this guy.1464|00:03:27.565 --&gt; 00:03:27.655I mean, you know, it's,|it's freaky, but it happens.1465|00:03:27.659 --&gt; 00:03:27.809You wanna play blind man,|go walk with the shepherd,1466|00:03:27.816 --&gt; 00:03:27.906- What the fuck does that mean ?|- It means that's it for me.1467|00:03:27.910 --&gt; 00:03:28.000From here on in, you can|consider my ass retired.1468|00:03:28.003 --&gt; 00:03:28.063- Jesus Christ. Goddamn it.|- Don't blaspheme.1469|00:03:28.066 --&gt; 00:03:28.156- I said, don't do that !|- Hey, why are you fuckin'1470|00:03:28.160 --&gt; 00:03:28.250Look, I'm tellin' Marsellus today--|I'm through.1471|00:03:28.254 --&gt; 00:03:28.344- Why don't you tell him|at the same time why ?1472|00:03:28.347 --&gt; 00:03:28.466- And I bet you $10,000|he laughs his ass off.1473|00:03:28.472 --&gt; 00:03:28.562Marvin, what do you make of all this ?1474|00:03:28.565 --&gt; 00:03:28.625Man, I don't even|have an opinion.1475|00:03:28.628 --&gt; 00:03:28.748You gotta have an opinion. You think|God came down from Heaven and stopped--1476|00:03:28.753 --&gt; 00:03:28.813- What the fuck's happenin' ?1477|00:03:28.816 --&gt; 00:03:28.876- Aw, shit, man !|- Aw, man !1478|00:03:28.878 --&gt; 00:03:28.968- Oh, man, I shot Marvin in the face.|- Why the fuck'd you do that ?1479|00:03:28.972 --&gt; 00:03:29.032I didn't mean it.|It was an accident.1480|00:03:29.035 --&gt; 00:03:29.125- Man, I seen some crazy-ass|shit in my time, but this--1481|00:03:29.128 --&gt; 00:03:29.218It was an accident. We probably|went over a bump or somethin'.1482|00:03:29.222 --&gt; 00:03:29.252The car ain't hit|no motherfuckin' bump.1483|00:03:29.285 --&gt; 00:03:29.375I didn't mean to shoot|the son of a bitch. The gun went off.1484|00:03:29.379 --&gt; 00:03:29.468Look at this fuckin' mess ! We're on|a city street in broad daylight here !1485|00:03:29.472 --&gt; 00:03:29.562- I don't believe it !|- Well, believe it now, motherfucker !1486|00:03:29.565 --&gt; 00:03:29.655We gotta get this car off|the road. Cops notice shit1487|00:03:29.659 --&gt; 00:03:29.749- Just take it to|a friendly place, that's all !1488|00:03:29.753 --&gt; 00:03:29.843Marsellus ain't got|no friendly places in the Valley.1489|00:03:29.847 --&gt; 00:03:29.937- Well, Jules, this ain't|my fuckin' town, man !1490|00:03:29.941 --&gt; 00:03:30.001- What you doing ?|- I'm calling my partner in Toluca Lake.1491|00:03:30.003 --&gt; 00:03:30.123-Where's Toluca Lake ?|-Over the hill here, by Burbank Studios.1492|00:03:30.129 --&gt; 00:03:30.219If Jimmie's ass ain't home,|I don't know what the fuck we gonna do,1493|00:03:30.222 --&gt; 00:03:30.312'cause I ain't got|no other partners in 818.1494|00:03:30.316 --&gt; 00:03:30.376Jimmie, how you doin', man ?|It's Jules. Just listen up, man.1495|00:03:30.410 --&gt; 00:03:30.500Me and my homeboy are in a car, and we|gotta get it off the road, pronto.1496|00:03:30.504 --&gt; 00:03:30.593I need to use your garage|for a couple hours.1497|00:03:30.628 --&gt; 00:03:30.718We gotta be real fuckin' delicate|with this Jimmie situation.1498|00:03:30.722 --&gt; 00:03:30.812He's one remark away|from kickin' our asses out the door.1499|00:03:30.816 --&gt; 00:03:30.906- If he does, what do we do ?|- We ain't leavin'1500|00:03:30.910 --&gt; 00:03:31.000but I don't want it to reach|that pitch-- Jimmie's a friend.1501|00:03:31.003 --&gt; 00:03:31.093You don't come into your friend's house|and start tellin' him what's what.1502|00:03:31.097 --&gt; 00:03:31.157Just tell him|not to be abusive.1503|00:03:31.160 --&gt; 00:03:31.220He kinda freaked out back there|when he saw Marvin.1504|00:03:31.222 --&gt; 00:03:31.312Put yourself in his position--|It's 8:00 in the morning,1505|00:03:31.316 --&gt; 00:03:31.376He wasn't expectin' this shit.1506|00:03:31.379 --&gt; 00:03:31.469We gotta remember here|who's doin' who a favor.1507|00:03:31.473 --&gt; 00:03:31.592If that favor means I gotta|take shit, he can stick that1508|00:03:31.597 --&gt; 00:03:31.687- Fuck, nigger, what the fuck'd|you just do to his towel, man ?1509|00:03:31.691 --&gt; 00:03:31.781- You're supposed to wash 'em first !|- You watched me wash 'em.1510|00:03:31.784 --&gt; 00:03:31.904- I watched you get 'em wet.|- I was washin' 'em.1511|00:03:31.910 --&gt; 00:03:31.970Maybe if he'd had Lava|I coulda done a better job.1512|00:03:31.972 --&gt; 00:03:32.032I used the same|fuckin' soap you did,1513|00:03:32.035 --&gt; 00:03:32.095and when I finished, the towel|didn't look like no goddamn maxi-pad !1514|00:03:32.129 --&gt; 00:03:32.189What if he was to come in here|and see his towel like this ?1515|00:03:32.191 --&gt; 00:03:32.311It's shit like this that's gonna bring|this situation to a head, man !1516|00:03:32.316 --&gt; 00:03:32.436Look, I ain't threatenin' you|or nothin', all right ?1517|00:03:32.441 --&gt; 00:03:32.561You know I respect you and all.|But just don't put me1518|00:03:32.566 --&gt; 00:03:32.655All right.|Fine. Fine.1519|00:03:32.659 --&gt; 00:03:32.749Ask me nice like that,|no problem.1520|00:03:32.753 --&gt; 00:03:32.813Just go handle your friend.|Go ahead. I don't care.1521|00:03:32.878 --&gt; 00:03:32.968Mmm ! Goddamn, Jimmie !1522|00:03:32.972 --&gt; 00:03:33.032This some serious|gourmet shit.1523|00:03:33.035 --&gt; 00:03:33.095Me and Vincent|would've been satisfied...1524|00:03:33.097 --&gt; 00:03:33.157with some freeze-dried|Taster's Choice.1525|00:03:33.160 --&gt; 00:03:33.220Right ?1526|00:03:33.222 --&gt; 00:03:33.312And he springs this|serious gourmet shit on us.1527|00:03:33.316 --&gt; 00:03:33.376- What flavor is this ?|- Knock it off, Julie.1528|00:03:33.379 --&gt; 00:03:33.499- What ?|- I don't need you to tell me1529|00:03:33.504 --&gt; 00:03:33.564I'm the one who buys it.|I know how good it is.1530|00:03:33.566 --&gt; 00:03:33.626When Bonnie goes shopping,|she buys shit.1531|00:03:33.629 --&gt; 00:03:33.748I buy the gourmet expensive stuff 'cause|when I drink it, I wanna taste it.1532|00:03:33.753 --&gt; 00:03:33.843But you know what's on|my mind right now ? It ain't1533|00:03:33.847 --&gt; 00:03:33.937It's the dead nigger|in my garage.1534|00:03:33.941 --&gt; 00:03:34.031- Jimmie, don't even worry--|- Don't tell me about anything.1535|00:03:34.035 --&gt; 00:03:34.095When you came pulling in here,1536|00:03:34.097 --&gt; 00:03:34.187did you notice the sign|on the front of my house that said,1537|00:03:34.191 --&gt; 00:03:34.281- You know I ain't seen no--|- Did you notice the sign on1538|00:03:34.285 --&gt; 00:03:34.345that said,|&quot;Dead Nigger Storage&quot; ?1539|00:03:34.348 --&gt; 00:03:34.438No. I didn't.1540|00:03:34.441 --&gt; 00:03:34.531- You know why you didn't|see that sign ?1541|00:03:34.535 --&gt; 00:03:34.655'Cause it ain't there,|'cause storing dead niggers1542|00:03:34.660 --&gt; 00:03:34.749- We're not gonna store|the motherfucker--1543|00:03:34.753 --&gt; 00:03:34.873that if Bonnie comes home and|finds a dead body in her house,1544|00:03:34.910 --&gt; 00:03:35.000No marriage counselor.|No trial separation.1545|00:03:35.003 --&gt; 00:03:35.093Okay ? And I don't wanna|get fuckin' divorced !1546|00:03:35.097 --&gt; 00:03:35.247Man, you know, fuck, I wanna help you,|but I don't wanna lose my wife doin' it.1547|00:03:35.254 --&gt; 00:03:35.314Jimmie, Jimmie,|she ain't gonna leave you.1548|00:03:35.316 --&gt; 00:03:35.436Don't fuckin' &quot;Jimmie&quot; me, Jules !|Okay ? Don't fuckin' &quot;Jimmie&quot; me.1549|00:03:35.441 --&gt; 00:03:35.561There's nothin' you're gonna|say that's gonna make me forget1550|00:03:35.660 --&gt; 00:03:35.779Now, look, you know, she comes home|from work in about an hour and a half.1551|00:03:35.784 --&gt; 00:03:35.874The graveyard shift|at the hospital.1552|00:03:35.878 --&gt; 00:03:35.968You gotta make some phone calls ?|You gotta call some people ?1553|00:03:35.972 --&gt; 00:03:36.092Well, then, do it, and then get the fuck|out of my house before she gets here.1554|00:03:36.097 --&gt; 00:03:36.187That's Kool and the Gang.|We don't wanna fuck your shit up.1555|00:03:36.191 --&gt; 00:03:36.281All I wanna do is call my people|and get 'em to bring us in.1556|00:03:36.285 --&gt; 00:03:36.375You're fucking my shit up|right now !1557|00:03:36.379 --&gt; 00:03:36.469You're gonna fuck my shit up|big time if Bonnie comes home.1558|00:03:36.473 --&gt; 00:03:36.563Do me that favor, all right ?|The phone is in my bedroom.1559|00:03:36.567 --&gt; 00:03:36.657Well, say she comes home.1560|00:03:36.660 --&gt; 00:03:36.720What do you think she'll do ?1561|00:03:36.784 --&gt; 00:03:36.844Oh, no fuckin' shit she'll freak.1562|00:03:36.847 --&gt; 00:03:36.907That ain't no kinda answer.1563|00:03:36.910 --&gt; 00:03:37.000I mean, you know, I don't.|How much ? A lot or a little ?1564|00:03:37.003 --&gt; 00:03:37.093You got to appreciate|what an explosive element...1565|00:03:37.097 --&gt; 00:03:37.157this Bonnie situation is.1566|00:03:37.160 --&gt; 00:03:37.280She comes home from a hard day's work,|finds a bunch of gangsters1567|00:03:37.285 --&gt; 00:03:37.345doing a bunch of gangster shit,1568|00:03:37.348 --&gt; 00:03:37.438there ain't no tellin'|what she's liable to do.1569|00:03:37.504 --&gt; 00:03:37.564Yeah, I grasp that, Jules.1570|00:03:37.567 --&gt; 00:03:37.627All I'm doing is|contemplating the ifs.1571|00:03:37.629 --&gt; 00:03:37.719I don't wanna hear about|no motherfuckin' ifs !1572|00:03:37.723 --&gt; 00:03:37.842All I want to hear from your ass|is, &quot;You ain't got no problem,1573|00:03:37.847 --&gt; 00:03:37.967Chill them niggers out|and wait for the cavalry,1574|00:03:37.972 --&gt; 00:03:38.062You ain't got no problem, Jules.1575|00:03:38.066 --&gt; 00:03:38.126I'm on the motherfucker.1576|00:03:38.129 --&gt; 00:03:38.279Chill them niggers out and wait for|the Wolf, who should be coming directly.1577|00:03:38.285 --&gt; 00:03:38.375You sendin' the Wolf ?1578|00:03:38.379 --&gt; 00:03:38.439Oh, you feel better,|motherfucker ?1579|00:03:38.441 --&gt; 00:03:38.501Shit, yeah, negro !1580|00:03:38.504 --&gt; 00:03:38.594That's all you had to say !1581|00:03:38.598 --&gt; 00:03:38.688- She the hysterical type ?1582|00:03:38.692 --&gt; 00:03:38.782- When is she due ?1583|00:03:38.786 --&gt; 00:03:38.845Mm-hmm.1584|00:03:38.847 --&gt; 00:03:38.907Give me|the principals' names again.1585|00:03:38.910 --&gt; 00:03:38.970Place your bets.1586|00:03:39.003 --&gt; 00:03:39.123- Jules. Mm-hmm.|- Cards, please.1587|00:03:39.129 --&gt; 00:03:39.159Vincent.1588|00:03:39.316 --&gt; 00:03:39.376Jimmie.1589|00:03:39.410 --&gt; 00:03:39.470Bonnie. Mm-hmm.1590|00:03:39.629 --&gt; 00:03:39.719It's thirty minutes away.|I'll be there in ten.1591|00:03:40.222 --&gt; 00:03:40.312You're... Jimmie, right ?|This is your house ?1592|00:03:40.316 --&gt; 00:03:40.436- It sure is.|- I'm Winston Wolf. I solve problems.1593|00:03:40.441 --&gt; 00:03:40.531- Good. We got one.|- So I heard. May I come in ?1594|00:03:40.535 --&gt; 00:03:40.595Uh, yeah. Please do.1595|00:03:40.598 --&gt; 00:03:40.688You must be Jules.|Which would make you... Vincent.1596|00:03:40.692 --&gt; 00:03:40.782Let's get down|to brass tacks, gentlemen.1597|00:03:40.786 --&gt; 00:03:40.846If I was informed correctly, the clock|is ticking. Is that right, Jimmie ?1598|00:03:40.848 --&gt; 00:03:40.908Uh, one hundred percent.1599|00:03:40.911 --&gt; 00:03:41.030- Your wife Bonnie comes home|at 9:30 in the a.m., correct ?1600|00:03:41.035 --&gt; 00:03:41.185I was led to believe if she|comes home and finds us here,1601|00:03:41.191 --&gt; 00:03:41.311- She wouldn't at that.|- That gives us 40 minutes1602|00:03:41.316 --&gt; 00:03:41.406which, if you do what I say,|when I say it, should be plenty.1603|00:03:41.410 --&gt; 00:03:41.530Now, you got a corpse|in a car, minus a head,1604|00:03:41.786 --&gt; 00:03:41.846- Jimmie.|- Uh-huh.1605|00:03:41.848 --&gt; 00:03:41.938Do me a favor, will ya ? Thought I|smelled some coffee back there.1606|00:03:41.942 --&gt; 00:03:42.031- Would you make me a cup ?|- Uh, yeah, sure.1607|00:03:42.097 --&gt; 00:03:42.187Oh, uh, um,|how do you take it ?1608|00:03:42.191 --&gt; 00:03:42.251Lotsa cream, lotsa sugar.1609|00:03:42.316 --&gt; 00:03:42.406About the car, is there anything|I need to know ? Does it stall ?1610|00:03:42.410 --&gt; 00:03:42.530Does it smoke ? Does it make|a lot of noise ? ls there gas in it ?1611|00:03:42.535 --&gt; 00:03:42.625- Aside from how it looks,|the car's cool.1612|00:03:42.629 --&gt; 00:03:42.719Don't get me on the road and I find out|the brake lights don't work.1613|00:03:42.723 --&gt; 00:03:42.843- As far as I know,|the motherfucker's tip-top.1614|00:03:42.848 --&gt; 00:03:42.908Let's go back|to the kitchen.1615|00:03:43.097 --&gt; 00:03:43.187- Here you go, Mr. Wolf.|- Thank you, Jimmie.1616|00:03:43.316 --&gt; 00:03:43.376Mmm.1617|00:03:43.410 --&gt; 00:03:43.470Okay, first thing.|You two.1618|00:03:43.473 --&gt; 00:03:43.563Take the body,|stick it in the trunk.1619|00:03:43.567 --&gt; 00:03:43.657This looks to be|a pretty domesticated house.1620|00:03:43.660 --&gt; 00:03:43.780- That would lead me to believe|you got cleansers and shit.1621|00:03:43.786 --&gt; 00:03:43.876Good. What I need you two fellas to do|is take those cleaning products...1622|00:03:43.879 --&gt; 00:03:43.999and clean the inside of the car--|I'm talkin' fast, fast, fast.1623|00:03:44.005 --&gt; 00:03:44.124Go in the back seat, scoop up all|those little pieces of brain and skull.1624|00:03:44.129 --&gt; 00:03:44.219Get it out of there.|Wipe down the upholstery.1625|00:03:44.222 --&gt; 00:03:44.282It don't need to be spick-and-span.|You don't need to eat off it.1626|00:03:44.316 --&gt; 00:03:44.436Just give it a good once-over.|What you need to take care of1627|00:03:44.441 --&gt; 00:03:44.561The pools of blood that have collected,|you gotta soak that shit up.1628|00:03:44.567 --&gt; 00:03:44.627We need to raid|your linen closet.1629|00:03:44.629 --&gt; 00:03:44.719I need blankets,|I need comforters, quilts, bedspreads.1630|00:03:44.723 --&gt; 00:03:44.843The thicker the better,|the darker the better.1631|00:03:44.848 --&gt; 00:03:44.998We'll need to camouflage the front seat|and back seat and floorboards...1632|00:03:45.005 --&gt; 00:03:45.065with quilts and blankets,1633|00:03:45.067 --&gt; 00:03:45.186so if a cop starts stickin'|his big snout in the car,1634|00:03:45.191 --&gt; 00:03:45.251but at a glance the car|will appear to be normal.1635|00:03:45.254 --&gt; 00:03:45.314Jimmie, lead the way.|Boys, get to work.1636|00:03:45.316 --&gt; 00:03:45.376&quot;Please&quot; would be nice.1637|00:03:45.441 --&gt; 00:03:45.501- Come again ?|- I said, a &quot;please&quot; would be nice.1638|00:03:45.567 --&gt; 00:03:45.687Get it straight, buster.|I'm not here to say please.1639|00:03:45.754 --&gt; 00:03:45.814And if self-preservation|is an instinct you possess,1640|00:03:45.817 --&gt; 00:03:45.907you'd better fuckin' do it|and do it quick.1641|00:03:45.911 --&gt; 00:03:46.031I'm here to help. If my help's|not appreciated, lotsa luck, gentlemen.1642|00:03:46.036 --&gt; 00:03:46.126No, Mr. Wolf, it ain't like that;|your help is definitely appreciated.1643|00:03:46.130 --&gt; 00:03:46.219Mr. Wolf, listen. I don't|mean disrespect, okay ? I respect you.1644|00:03:46.222 --&gt; 00:03:46.312I just don't like people|barkin' orders at me.1645|00:03:46.316 --&gt; 00:03:46.406If I'm curt with you,|it's because time is a factor.1646|00:03:46.410 --&gt; 00:03:46.530I think fast, I talk fast,|and I need you guys to act fast1647|00:03:46.535 --&gt; 00:03:46.625So pretty please, with sugar on top,|clean the fuckin' car.1648|00:03:46.786 --&gt; 00:03:46.876Don't be lookin' at me like that,|all right ? I can feel your look.1649|00:03:46.973 --&gt; 00:03:47.033It's a 1974 Chevy Nova.1650|00:03:47.098 --&gt; 00:03:47.158Green.1651|00:03:47.222 --&gt; 00:03:47.312Nothin' except for|the mess inside.1652|00:03:47.379 --&gt; 00:03:47.439Mmm, about 20 minutes.1653|00:03:47.473 --&gt; 00:03:47.533Nobody who'll be missed.1654|00:03:47.598 --&gt; 00:03:47.688You're a good man, Joe.|Thanks a bunch.1655|00:03:47.723 --&gt; 00:03:47.783- How we comin', Jimmie ?|- Pretty good.1656|00:03:47.786 --&gt; 00:03:47.876- I got it all here, but, uh,1657|00:03:47.879 --&gt; 00:03:47.999- Mr. Wolf,|you gotta understand something.1658|00:03:48.005 --&gt; 00:03:48.095Okay. You gotta|understand something, uh, Winston.1659|00:03:48.098 --&gt; 00:03:48.158Uh-- Uh, no,|thank you.1660|00:03:48.161 --&gt; 00:03:48.250Uh, this is|our best linen here,1661|00:03:48.254 --&gt; 00:03:48.344and it's, uh--|it was a wedding present...1662|00:03:48.348 --&gt; 00:03:48.408from my Uncle Conrad|and my Aunt Ginny.1663|00:03:48.410 --&gt; 00:03:48.560- They're not with us anymore.|I wanna help--1664|00:03:48.567 --&gt; 00:03:48.627- If you don't mind.|- No, no, please. Go ahead.1665|00:03:48.692 --&gt; 00:03:48.842Your Uncle Conrad and Aunt Ginny,|were they millionaires ?1666|00:03:48.879 --&gt; 00:03:48.939No.1667|00:03:48.942 --&gt; 00:03:49.002Well, your Uncle Marsellus is.1668|00:03:49.005 --&gt; 00:03:49.095And I'm positive that if|Uncle Conrad and Aunt...1669|00:03:49.098 --&gt; 00:03:49.188- Ginny.|- Ginny were here,1670|00:03:49.192 --&gt; 00:03:49.311they would furnish you|with a whole bedroom set,1671|00:03:49.316 --&gt; 00:03:49.406which your Uncle Marsellus|is more than happy to do.1672|00:03:49.535 --&gt; 00:03:49.655I like oak myself.|That's what I have in my bedroom.1673|00:03:49.692 --&gt; 00:03:49.752How about you, Jimmie ?1674|00:03:49.786 --&gt; 00:03:49.846You an oak man ?1675|00:03:49.879 --&gt; 00:03:49.939Oak's nice.1676|00:03:50.098 --&gt; 00:03:50.218Oh, man, I will never|forgive your ass for this shit.1677|00:03:50.224 --&gt; 00:03:50.284This is some fucked-up,|repugnant shit.1678|00:03:50.286 --&gt; 00:03:50.405Jules, did you ever hear the philosophy|that once a man admits he is wrong...1679|00:03:50.410 --&gt; 00:03:50.470that he is immediately forgiven|for all wrongdoings ?1680|00:03:50.473 --&gt; 00:03:50.563Get the fuck out my face|with that shit !1681|00:03:50.567 --&gt; 00:03:50.657The motherfucker that said|that shit never had to pick up1682|00:03:50.660 --&gt; 00:03:50.780- on account of your dumb ass.|- I got a threshold, Jules,1683|00:03:50.786 --&gt; 00:03:50.876Right now, I'm a fuckin' race car,|and you got me in the red.1684|00:03:50.879 --&gt; 00:03:50.999I'm just sayin' it's fuckin' dangerous|to have a race car in the fuckin' red.1685|00:03:51.005 --&gt; 00:03:51.065That's all.|I could blow.1686|00:03:51.067 --&gt; 00:03:51.127- Oh, you ready to blow ?|- Yeah.1687|00:03:51.130 --&gt; 00:03:51.190Well, I'm a mushroom-cloud-layin'|motherfucker, motherfucker.1688|00:03:51.192 --&gt; 00:03:51.282Every time my fingers touch brain,|I'm Superfly T.N.T.1689|00:03:51.286 --&gt; 00:03:51.345I'm the Guns of the Navarone.1690|00:03:51.348 --&gt; 00:03:51.438In fact, what the fuck|am I doin' in the back ?1691|00:03:51.441 --&gt; 00:03:51.531You're the motherfucker should be on|brain detail ! We're fuckin' switchin'.1692|00:03:51.535 --&gt; 00:03:51.625I'm washin' windows, and you're|pickin' up this nigger's skull !1693|00:03:51.911 --&gt; 00:03:51.971Fine job, gentlemen.1694|00:03:52.005 --&gt; 00:03:52.065You may get out of this yet.1695|00:03:52.098 --&gt; 00:03:52.158I can't believe|this is the same car.1696|00:03:52.161 --&gt; 00:03:52.251Well, let's not start suckin'|each other's dicks quite yet.1697|00:03:52.255 --&gt; 00:03:52.375Phase one is complete-- Clean the car--|which moves us right along to Phase two:1698|00:03:52.380 --&gt; 00:03:52.439Clean you two.1699|00:03:52.473 --&gt; 00:03:52.533Strip.1700|00:03:52.535 --&gt; 00:03:52.655- All the way ?|- To your bare ass.1701|00:03:52.660 --&gt; 00:03:52.750Quickly, gentlemen.|We got about 15 minutes...1702|00:03:52.754 --&gt; 00:03:52.814before Jimmie's better half|comes pulling into the driveway.1703|00:03:52.848 --&gt; 00:03:52.908Goddamn, this morning air|is some chilly shit.1704|00:03:52.911 --&gt; 00:03:52.971Are you sure this is|absolutely necessary ?1705|00:03:52.973 --&gt; 00:03:53.033- You know what you two look like ?|- What ?1706|00:03:53.036 --&gt; 00:03:53.156Like a couple of guys|who just blew off somebody's head.1707|00:03:53.161 --&gt; 00:03:53.251Strippin' off those bloody rags|is absolutely necessary.1708|00:03:53.380 --&gt; 00:03:53.439Toss 'em in Jimmie's garbage bag.1709|00:03:53.442 --&gt; 00:03:53.592Don't do nothin' stupid,|like leavin' this shit out front1710|00:03:53.598 --&gt; 00:03:53.718Don't worry, we're taking it with us.|Jim, the soap.1711|00:03:53.754 --&gt; 00:03:53.814- Vincent.|- Okay, gentlemen.1712|00:03:53.817 --&gt; 00:03:53.907You both been to County before,|I'm sure. Here it comes.1713|00:03:53.911 --&gt; 00:03:54.001- Goddamn ! The water's fuckin' cold !|- Yo ! Yo ! Yo !1714|00:03:54.005 --&gt; 00:03:54.095Better you than me, gentlemen.1715|00:03:54.130 --&gt; 00:03:54.190- Don't be afraid of the soap.|Spread it around.1716|00:03:54.192 --&gt; 00:03:54.282- Get 'em there a little bit.|Vincent's hair.1717|00:03:54.286 --&gt; 00:03:54.376- Come on. Do it, goddamn it ! Do it !|- Uh, um--1718|00:03:54.411 --&gt; 00:03:54.470Towel.1719|00:03:54.786 --&gt; 00:03:54.876 You're dry enough.|Toss 'em their clothes.1720|00:03:54.879 --&gt; 00:03:54.969Perfect.1721|00:03:54.973 --&gt; 00:03:55.093Perfect. We couldn't have|planned this better.1722|00:03:55.098 --&gt; 00:03:55.158You guys look like--1723|00:03:55.161 --&gt; 00:03:55.221What do they look like,|Jimmie ?1724|00:03:55.224 --&gt; 00:03:55.314- Dorks. They look like|a couple of dorks.1725|00:03:55.349 --&gt; 00:03:55.439- Ha-ha-ha. They're your|clothes, motherfucker.1726|00:03:55.443 --&gt; 00:03:55.532Come on, gentlemen.|We're laughing our way1727|00:03:55.535 --&gt; 00:03:55.565Don't make me beg.1728|00:03:55.661 --&gt; 00:03:55.781Okay, gentlemen, let's get|our rules of the road straight.1729|00:03:55.786 --&gt; 00:03:55.876We're going to a place|called Monster Joe's Truck and Tow.1730|00:03:55.879 --&gt; 00:03:55.969Monster Joe and his daughter Raquel|are sympathetic to our dilemma.1731|00:03:55.973 --&gt; 00:03:56.033The place is North Hollywood,1732|00:03:56.036 --&gt; 00:03:56.156so a few twists and turns aside,|we'll be goin' up Hollywood Way.1733|00:03:56.161 --&gt; 00:03:56.251Now, I'll drive the tainted car.|Jules, you ride with me.1734|00:03:56.286 --&gt; 00:03:56.346Vincent, you follow|in my Acura.1735|00:03:56.349 --&gt; 00:03:56.469Now, if we come across the path|of any John Q. Laws,1736|00:03:56.474 --&gt; 00:03:56.563- nobody does a fuckin' thing|'til I do something.1737|00:03:56.567 --&gt; 00:03:56.657- What did I say ?|- Don't do shit unless.1738|00:03:56.661 --&gt; 00:03:56.721- Unless what ?|- Unless you do it first.1739|00:03:56.723 --&gt; 00:03:56.813Spoken like a true prodigy.1740|00:03:56.817 --&gt; 00:03:56.907How about you, Lash LaRue ?|Can you keep your spurs1741|00:03:56.911 --&gt; 00:03:57.031The gun went off. I don't know why.|I'm cool. I promise you.1742|00:03:57.036 --&gt; 00:03:57.126Fair enough. Now, I drive real|fuckin' fast, so keep up.1743|00:03:57.130 --&gt; 00:03:57.190If get my car back|any different than I gave it,1744|00:03:57.192 --&gt; 00:03:57.282Monster Joe's gonna be|disposing of two bodies.1745|00:03:57.411 --&gt; 00:03:57.471Outta my way, Rex.1746|00:03:57.505 --&gt; 00:03:57.565- We cool ?|- Like it never happened.1747|00:03:57.598 --&gt; 00:03:57.688- All right.|- Boys, this is Raquel.1748|00:03:57.692 --&gt; 00:03:57.782Someday all this will be hers.1749|00:03:57.786 --&gt; 00:03:57.876Hi. So, what's|with the outfits ?1750|00:03:57.880 --&gt; 00:03:57.970- You guys going to|a volleyball game or something ?1751|00:03:57.973 --&gt; 00:03:58.033I'm takin' milady|out for breakfast.1752|00:03:58.036 --&gt; 00:03:58.126Maybe I could drop you two off.|Where do you live ?1753|00:03:58.130 --&gt; 00:03:58.160- Redondo.|- Inglewood.1754|00:03:58.161 --&gt; 00:03:58.281It's--|It's your future. I--1755|00:03:58.286 --&gt; 00:03:58.346I see a--|a cab ride.1756|00:03:58.380 --&gt; 00:03:58.440Move outta the sticks, fellas.|Say good night, Raquel.1757|00:03:58.443 --&gt; 00:03:58.533- Good night, Raquel.|- I'll see you guys around.1758|00:03:58.536 --&gt; 00:03:58.626Stay outta trouble,|you crazy kids.1759|00:03:58.630 --&gt; 00:03:58.719Mr. Wolf, I just wanna tell you it was|a real pleasure watching you work.1760|00:03:58.754 --&gt; 00:03:58.814Yeah, really.|And thank you very much, Mr. Wolf.1761|00:03:58.817 --&gt; 00:03:58.877Call me Winston.1762|00:03:58.942 --&gt; 00:03:59.032- You see that, young lady ? Respect.1763|00:03:59.036 --&gt; 00:03:59.156- Respect for one's elders|shows character.1764|00:03:59.161 --&gt; 00:03:59.281- Because you are a character|doesn't mean that you have character.1765|00:03:59.474 --&gt; 00:03:59.564- Wanna share a cab ?1766|00:03:59.568 --&gt; 00:03:59.687- I'd go for some breakfast.|Feel like havin' breakfast with me ?1767|00:03:59.692 --&gt; 00:03:59.782Cool.1768|00:03:59.911 --&gt; 00:04:00.001I don't know why, I just thought|he'd be European or something.1769|00:04:00.005 --&gt; 00:04:00.095- Yeah, he's about as European|as fuckin' English Bob.1770|00:04:00.099 --&gt; 00:04:00.159- But was he cool or what ?|- Thank you.1771|00:04:00.161 --&gt; 00:04:00.251Totally fuckin' cool,|in control.1772|00:04:00.255 --&gt; 00:04:00.375Didn't even really get pissed when you|were fuckin' with him; I was amazed.1773|00:04:00.380 --&gt; 00:04:00.440- Want some bacon ?1774|00:04:00.443 --&gt; 00:04:00.503No, man, I don't eat pork.1775|00:04:00.505 --&gt; 00:04:00.625- Are you Jewish ?|- I ain't Jewish; I just don't1776|00:04:00.630 --&gt; 00:04:00.690- Why not ?|- Pigs are filthy animals.1777|00:04:00.693 --&gt; 00:04:00.752I don't eat filthy animals.1778|00:04:00.754 --&gt; 00:04:00.874Yeah, but bacon tastes good.|Pork chops taste good.1779|00:04:00.880 --&gt; 00:04:00.970Sewer rat may taste like pumpkin pie,|but I'd never know...1780|00:04:00.973 --&gt; 00:04:01.033'cause I wouldn't eat|the filthy motherfuckers.1781|00:04:01.036 --&gt; 00:04:01.126Pigs sleep and root in shit.|That's a filthy animal.1782|00:04:01.130 --&gt; 00:04:01.250I ain't eatin' nothin' ain't got|sense enough to disregard its own feces.1783|00:04:01.255 --&gt; 00:04:01.375- What about a dog ?|Dog eats its own feces.1784|00:04:01.380 --&gt; 00:04:01.500Yeah, but do you consider|a dog to be a filthy animal ?1785|00:04:01.505 --&gt; 00:04:01.595I wouldn't go so far|as to call a dog filthy,1786|00:04:01.599 --&gt; 00:04:01.629but they're definitely dirty.1787|00:04:01.662 --&gt; 00:04:01.752- But a dog's got personality.|Personality goes a long way.1788|00:04:01.786 --&gt; 00:04:01.876if a pig had a better personality,|he would cease to be a filthy animal.1789|00:04:01.880 --&gt; 00:04:02.000- Is that true ?|- We'd have to be talkin' about1790|00:04:02.005 --&gt; 00:04:02.125I mean, he'd have to be|ten times more charming than1791|00:04:02.286 --&gt; 00:04:02.346Oh, man, that's good.1792|00:04:02.349 --&gt; 00:04:02.469That's good, man.|You're startin' to lighten up.1793|00:04:02.474 --&gt; 00:04:02.564You've been sittin' there,|all serious and shit.1794|00:04:02.568 --&gt; 00:04:02.628- I just been sittin' here, thinkin'.|- About what ?1795|00:04:02.630 --&gt; 00:04:02.720- About the miracle we witnessed.|- Miracle you witnessed.1796|00:04:02.724 --&gt; 00:04:02.813- I witnessed a freak occurrence.|- What is a miracle, Vincent ?1797|00:04:02.880 --&gt; 00:04:02.970- Act of God.|- And what's an act of God ?1798|00:04:03.067 --&gt; 00:04:03.187When, um, God makes|the impossible possible.1799|00:04:03.224 --&gt; 00:04:03.284But this morning...1800|00:04:03.286 --&gt; 00:04:03.376- I don't think qualifies.|- Hey, Vincent.1801|00:04:03.380 --&gt; 00:04:03.470See, that shit don't matter.|You're judging this shit the wrong way.1802|00:04:03.474 --&gt; 00:04:03.624It could be God stopped the bullets,|changed Coke to Pepsi,1803|00:04:03.630 --&gt; 00:04:03.720You don't judge shit like this|based on merit.1804|00:04:03.724 --&gt; 00:04:03.784Now, whether or not|what we experienced...1805|00:04:03.787 --&gt; 00:04:03.876was an according-to-Hoyle miracle|is insignificant.1806|00:04:03.880 --&gt; 00:04:04.000But what is significant is,|I felt the touch of God.1807|00:04:04.005 --&gt; 00:04:04.065God got involved.1808|00:04:04.067 --&gt; 00:04:04.127But why ?1809|00:04:04.130 --&gt; 00:04:04.220Well, that's what's fuckin' with me:|I don't know why.1810|00:04:04.224 --&gt; 00:04:04.314- But I can't go back to sleep.|- You're serious.1811|00:04:04.318 --&gt; 00:04:04.378You're really thinkin'|about quittin'.1812|00:04:04.380 --&gt; 00:04:04.440- For life ? Most definitely.|- Yeah.1813|00:04:04.443 --&gt; 00:04:04.533Fuck.|What you gonna do then ?1814|00:04:04.599 --&gt; 00:04:04.719Well, that's what I been|sitting here contemplating.1815|00:04:04.724 --&gt; 00:04:04.814First I'm gonna deliver|this case to Marsellus.1816|00:04:04.818 --&gt; 00:04:04.907Then, basically, I'm just|gonna walk the Earth.1817|00:04:04.911 --&gt; 00:04:05.031- What you mean, &quot;walk the Earth&quot; ?|- Like Caine in Kung Fu.1818|00:04:05.036 --&gt; 00:04:05.126Walk from place to place,|meet people, get in adventures.1819|00:04:05.130 --&gt; 00:04:05.190And how long do you intend|to walk the Earth ?1820|00:04:05.192 --&gt; 00:04:05.282- 'Til God puts me|where He wants me to be.1821|00:04:05.286 --&gt; 00:04:05.436- If it takes forever,|then I'll walk forever.1822|00:04:05.443 --&gt; 00:04:05.533I'll just be Jules, Vincent.|No more, no less.1823|00:04:05.568 --&gt; 00:04:05.598No, Jules,|you decided to be a bum,1824|00:04:05.599 --&gt; 00:04:05.719just like all those pieces of shit|out there who beg for change,1825|00:04:05.724 --&gt; 00:04:05.814who sleep in garbage bins,|eat what I throw away.1826|00:04:05.818 --&gt; 00:04:05.878They got a name for that, Jules.|It's called a bum.1827|00:04:05.881 --&gt; 00:04:06.000And without a job,|a residence or legal tender,1828|00:04:06.005 --&gt; 00:04:06.065You're gonna be|a fuckin' bum.1829|00:04:06.067 --&gt; 00:04:06.157Look, my friend,|this is just where you and I differ.1830|00:04:06.161 --&gt; 00:04:06.251Gar&#231;on ! Coffee !1831|00:04:06.255 --&gt; 00:04:06.375Jules, look, what happened this morning,|man, I agree it was peculiar.1832|00:04:06.380 --&gt; 00:04:06.470- But water into wine, l--|- All shapes and sizes, Vincent.1833|00:04:06.474 --&gt; 00:04:06.564- Don't fuckin' talk|to me that way, man.1834|00:04:06.568 --&gt; 00:04:06.658then you should cease|asking scary questions.1835|00:04:06.724 --&gt; 00:04:06.784I'm gonna take a shit.1836|00:04:06.881 --&gt; 00:04:07.000Let me ask you something.1837|00:04:07.005 --&gt; 00:04:07.065When did you make this decision ?|When you were sittin' there1838|00:04:07.067 --&gt; 00:04:07.187Yeah. I was sittin' here|eatin' my muffin, drinkin' my coffee,1839|00:04:07.192 --&gt; 00:04:07.252replayin' the incident|in my head,1840|00:04:07.255 --&gt; 00:04:07.345when I had what alcoholics refer to|as a moment of clarity.1841|00:04:07.349 --&gt; 00:04:07.439Fuck. To be continued.1842|00:04:07.818 --&gt; 00:04:07.908- I love you, Pumpkin.|- I love you, Honey Bunny.1843|00:04:07.943 --&gt; 00:04:08.032- Everybody be cool !|This is a robbery !1844|00:04:08.036 --&gt; 00:04:08.186Any one of you fucking pricks move,|and I'll execute every one1845|00:04:08.192 --&gt; 00:04:08.282- You got that ?|You just be quiet over there !1846|00:04:08.286 --&gt; 00:04:08.376Get on the fuckin'--|Get the fuck down !1847|00:04:08.380 --&gt; 00:04:08.530You're in a blind spot.|Take your dames over to that booth,1848|00:04:08.537 --&gt; 00:04:08.657- Mexicans, out of|the fucking kitchen !1849|00:04:08.662 --&gt; 00:04:08.752What the fuck are you doing,|you fucking yuppie ? Get down !1850|00:04:08.756 --&gt; 00:04:08.846- Get down !|- Throw those bags !1851|00:04:08.849 --&gt; 00:04:08.909- Fucking move ! Move !1852|00:04:08.912 --&gt; 00:04:08.972- Move ! Get the fuck--1853|00:04:09.006 --&gt; 00:04:09.065Get down on the fucking floor !1854|00:04:09.067 --&gt; 00:04:09.127Grandpa ! Down !1855|00:04:09.130 --&gt; 00:04:09.250I'm the manager here, and there's|no problem. No problem at all.1856|00:04:09.255 --&gt; 00:04:09.345- You gonna give me a problem ?|- No, sir, I'm not.1857|00:04:09.349 --&gt; 00:04:09.439Thought you said you were gonna|give me a fucking problem !1858|00:04:09.443 --&gt; 00:04:09.593- I think we got|a hero here, Honey Bunny.1859|00:04:09.599 --&gt; 00:04:09.659- I am not a hero.1860|00:04:09.662 --&gt; 00:04:09.752- I'm just a coffee shop manager.|- Get the fuck down !1861|00:04:09.756 --&gt; 00:04:09.816The restaurant's ours !1862|00:04:09.818 --&gt; 00:04:09.908- Just take whatever you want.1863|00:04:09.912 --&gt; 00:04:09.942- You talk to the customers.|- Yeah.1864|00:04:09.974 --&gt; 00:04:10.064You tell them to be fucking cool|and everything will be over.1865|00:04:10.068 --&gt; 00:04:10.097- You understand me ?|- Yes !1866|00:04:10.192 --&gt; 00:04:10.222Listen, everybody.1867|00:04:10.255 --&gt; 00:04:10.285Be calm, cooperate,1868|00:04:10.318 --&gt; 00:04:10.378and this'll all be over|in a minute !1869|00:04:10.380 --&gt; 00:04:10.440Get the fuck down !|Well done.1870|00:04:10.818 --&gt; 00:04:10.908All right, now, people, gonna|come around and collect your wallets !1871|00:04:10.912 --&gt; 00:04:11.032You don't fucking talk. You just|throw 'em in the bag ! Are we clear ?1872|00:04:11.037 --&gt; 00:04:11.097I said, are we fucking clear ?1873|00:04:11.100 --&gt; 00:04:11.189Good !|Now, wallets out !1874|00:04:11.192 --&gt; 00:04:11.282 That's it.|Get the fuck down. In the bag.1875|00:04:11.286 --&gt; 00:04:11.376- In the fucking bag !|- I don't1876|00:04:11.380 --&gt; 00:04:11.440In the bag.1877|00:04:11.443 --&gt; 00:04:11.533What am I waiting for ?|ln the fucking bag.1878|00:04:11.537 --&gt; 00:04:11.627Laura. Laura. Tips.|In the bag.1879|00:04:11.630 --&gt; 00:04:11.690- Is that a cellular phone ?|- Yeah.1880|00:04:11.693 --&gt; 00:04:11.753In the fucking bag.1881|00:04:11.818 --&gt; 00:04:11.908Tidy up, tidy up, that's it.|Now get the fuck down on the floor.1882|00:04:11.912 --&gt; 00:04:11.972In the bag.|In the bag.1883|00:04:12.349 --&gt; 00:04:12.409In the bag.1884|00:04:12.849 --&gt; 00:04:12.939- What's in the case ?|- My boss's dirty laundry.1885|00:04:12.943 --&gt; 00:04:13.033- Your boss makes you do his laundry ?|- When he wants it clean.1886|00:04:13.037 --&gt; 00:04:13.097- Sounds like a shit job.|- Funny, I was thinkin' the same thing.1887|00:04:13.100 --&gt; 00:04:13.190- Open it.|- 'Fraid I can't do that.1888|00:04:13.255 --&gt; 00:04:13.315- I didn't hear you.|- Yes, you did.1889|00:04:13.349 --&gt; 00:04:13.439What's going on ?1890|00:04:13.443 --&gt; 00:04:13.533- Looks like we got|a vigilante in our midst.1891|00:04:13.537 --&gt; 00:04:13.657I hate to shatter your ego,|but this ain't the first time1892|00:04:13.662 --&gt; 00:04:13.752- If you don't take your hand off|that case, it'll be your last.1893|00:04:13.756 --&gt; 00:04:13.846You'll get us all killed ! Give 'em|what you got and get 'em outta here !1894|00:04:13.849 --&gt; 00:04:13.969Shut the fuck up, fat man ! This ain't|none of your goddamn business !1895|00:04:13.975 --&gt; 00:04:14.035Be cool, Honey Bunny, be cool.1896|00:04:14.037 --&gt; 00:04:14.097No problem.|I got it under control.1897|00:04:14.162 --&gt; 00:04:14.222Now, I'm gonna count to three.1898|00:04:14.256 --&gt; 00:04:14.375If you don't open that case,|I'm gonna unload in your fucking face.1899|00:04:14.505 --&gt; 00:04:14.565We clear ?1900|00:04:14.662 --&gt; 00:04:14.722One.1901|00:04:14.787 --&gt; 00:04:14.847Two.1902|00:04:14.849 --&gt; 00:04:14.909- Three.|- Okay, Ringo.1903|00:04:14.912 --&gt; 00:04:14.972You win.1904|00:04:14.975 --&gt; 00:04:15.035It's yours.1905|00:04:15.162 --&gt; 00:04:15.252- Open it.1906|00:04:15.349 --&gt; 00:04:15.409Hey, what is it ?1907|00:04:15.411 --&gt; 00:04:15.501What is it ?1908|00:04:15.505 --&gt; 00:04:15.565Is that what I think it is ?1909|00:04:15.568 --&gt; 00:04:15.658Mm-hmm.1910|00:04:15.693 --&gt; 00:04:15.753It's beautiful.1911|00:04:15.787 --&gt; 00:04:15.847Goddamn it, what is it ?1912|00:04:15.881 --&gt; 00:04:15.971You let him go !|You let him go !1913|00:04:15.975 --&gt; 00:04:16.065- Let go of him, or I'm gonna kill you !|- Tell that bitch to be cool.1914|00:04:16.068 --&gt; 00:04:16.158- Say, &quot;Bitch, be cool !&quot;|Say, &quot;Bitch, be cool !&quot;1915|00:04:16.162 --&gt; 00:04:16.252- Tell that bitch to chill !|- You're gonna die so fuckin' bad !1916|00:04:16.256 --&gt; 00:04:16.345- Chill that fuckin' bitch out !|- Chill out, Honey Bunny !1917|00:04:16.349 --&gt; 00:04:16.379- Let go of him !|- Chill out, Honey Bunny !1918|00:04:16.380 --&gt; 00:04:16.470- Now, promise her|it's gonna be all right !1919|00:04:16.474 --&gt; 00:04:16.534- Tell her to chill !|- Chill out, Honey Bunny !1920|00:04:16.537 --&gt; 00:04:16.597- Now tell me her name.|- Yolanda.1921|00:04:16.599 --&gt; 00:04:16.689All right, now, Yolanda, we're not|gonna do anything stupid, are we ?1922|00:04:16.693 --&gt; 00:04:16.783- Don't you hurt him !|- Nobody's gonna hurt anybody !1923|00:04:16.787 --&gt; 00:04:16.907We're all gonna be like three little|Fonzies here. And what's Fonzie like ?1924|00:04:16.912 --&gt; 00:04:17.002- Come on, Yolanda !|What's Fonzie like ?1925|00:04:17.006 --&gt; 00:04:17.066- What ?|- Cool.1926|00:04:17.068 --&gt; 00:04:17.158Correctamundo.|And that's what we're gonna be.1927|00:04:17.162 --&gt; 00:04:17.222We're gonna be cool.1928|00:04:17.225 --&gt; 00:04:17.375Now, Ringo,|I'm gonna count to three.1929|00:04:17.381 --&gt; 00:04:17.440And when I count three,1930|00:04:17.443 --&gt; 00:04:17.533I want you to|let go of your gun,1931|00:04:17.537 --&gt; 00:04:17.627put your palms flat on the table|and sit your ass down.1932|00:04:17.662 --&gt; 00:04:17.722And when you do it,1933|00:04:17.724 --&gt; 00:04:17.784you do it cool.1934|00:04:17.787 --&gt; 00:04:17.847You ready ?1935|00:04:17.849 --&gt; 00:04:17.909One,1936|00:04:17.943 --&gt; 00:04:18.003two,1937|00:04:18.006 --&gt; 00:04:18.066three.1938|00:04:18.256 --&gt; 00:04:18.346- Okay, now you let him go !|- Yolanda !1939|00:04:18.350 --&gt; 00:04:18.469I thought you were gonna|be cool. Now, when you yell1940|00:04:18.474 --&gt; 00:04:18.534When I get nervous,|I get scared.1941|00:04:18.537 --&gt; 00:04:18.657When motherfuckers get scared,|that's when motherfuckers1942|00:04:18.693 --&gt; 00:04:18.813Just know, you hurt him, you die.1943|00:04:18.818 --&gt; 00:04:18.908Well, that seems to be|the situation.1944|00:04:18.912 --&gt; 00:04:18.972But I don't want that.1945|00:04:18.975 --&gt; 00:04:19.035And you don't want that.1946|00:04:19.037 --&gt; 00:04:19.097And Ringo here definitely|doesn't want that.1947|00:04:19.131 --&gt; 00:04:19.191So let's see what we can do.1948|00:04:19.256 --&gt; 00:04:19.346Now... here's the situation.1949|00:04:19.350 --&gt; 00:04:19.469Normally both your asses would be|dead as fuckin' fried chicken,1950|00:04:19.474 --&gt; 00:04:19.564but you happened to pull this shit|while I'm in a transitional period,1951|00:04:19.568 --&gt; 00:04:19.658and I don't wanna kill you;|I wanna help you.1952|00:04:19.662 --&gt; 00:04:19.782But I can't give you this case,|'cause it don't belong to me.1953|00:04:19.787 --&gt; 00:04:19.877Besides, I been through too much shit|over this case this morning...1954|00:04:19.881 --&gt; 00:04:19.971to just hand it over|to your dumb ass.1955|00:04:19.975 --&gt; 00:04:20.005- Vincent !1956|00:04:20.006 --&gt; 00:04:20.096- Be cool ! Yolanda, it's cool, baby.|- Get back !1957|00:04:20.100 --&gt; 00:04:20.190It's cool !|We still just talkin'.1958|00:04:20.194 --&gt; 00:04:20.314- Come on. Point the gun at me.|Point the gun at me. There you go.1959|00:04:20.319 --&gt; 00:04:20.379Now, Vincent, you just hang back...1960|00:04:20.381 --&gt; 00:04:20.441and don't do|a goddamn thing.1961|00:04:20.444 --&gt; 00:04:20.504Tell her it's still cool.1962|00:04:20.506 --&gt; 00:04:20.595- It's still cool, Honey Bunny.|- How we doin', baby ?1963|00:04:20.630 --&gt; 00:04:20.720I-- I gotta go pee.1964|00:04:20.724 --&gt; 00:04:20.784I wanna go home.1965|00:04:20.787 --&gt; 00:04:20.877Hang in there, baby. I'm proud of you.|And Ringo's proud of you.1966|00:04:20.881 --&gt; 00:04:20.971It's almost over.|Tell her you're proud of her.1967|00:04:20.975 --&gt; 00:04:21.065- I'm proud of you, Honey Bunny.|- I love you.1968|00:04:21.068 --&gt; 00:04:21.158- I love you too, Honey Bunny.|- Now,1969|00:04:21.162 --&gt; 00:04:21.282I want you to go in that bag|and find my wallet.1970|00:04:21.381 --&gt; 00:04:21.471- Which one is it ?|- It's the one that says1971|00:04:21.912 --&gt; 00:04:22.002That's it.|That's my bad motherfucker.1972|00:04:22.006 --&gt; 00:04:22.096Open it up.|Take out the money.1973|00:04:22.225 --&gt; 00:04:22.315Count it.1974|00:04:22.506 --&gt; 00:04:22.566How much is there ?1975|00:04:22.630 --&gt; 00:04:22.690About 1,500 dollars.1976|00:04:22.693 --&gt; 00:04:22.783Okay, put it in your pocket.|It's yours.1977|00:04:22.787 --&gt; 00:04:22.877Now, with the rest|of those wallets and the register,1978|00:04:22.881 --&gt; 00:04:22.941that makes this a pretty successful|little score, huh ?1979|00:04:22.943 --&gt; 00:04:23.063Jules, you give that fuckin'|nimrod 1,500 dollars, and I'll1980|00:04:23.068 --&gt; 00:04:23.158No, Yolanda ! Yolanda ! He ain't gonna|do a goddamn, motherfuckin' thing !1981|00:04:23.162 --&gt; 00:04:23.222Vince, shut the fuck up !1982|00:04:23.225 --&gt; 00:04:23.345- Shut up !|- Come on, Yolanda. Stay with me, baby.1983|00:04:23.350 --&gt; 00:04:23.440Now, I ain't givin' it|to him, Vincent.1984|00:04:23.444 --&gt; 00:04:23.504I'm buyin' something|for my money.1985|00:04:23.538 --&gt; 00:04:23.628- Wanna know what I'm buyin', Ringo ?|- What ?1986|00:04:23.632 --&gt; 00:04:23.781Your life. I'm givin' you that money|so I don't have to kill your ass.1987|00:04:23.787 --&gt; 00:04:23.847You read the Bible, Ringo ?1988|00:04:23.881 --&gt; 00:04:23.941Not regularly, no.1989|00:04:23.943 --&gt; 00:04:24.033Well, there's this passage|I got memorized.1990|00:04:24.037 --&gt; 00:04:24.127Ezekiel 25:17.1991|00:04:24.131 --&gt; 00:04:24.221&quot;The path of the righteous man|is beset on all sides...1992|00:04:24.225 --&gt; 00:04:24.285by the inequities|of the selfish...1993|00:04:24.287 --&gt; 00:04:24.347and the tyranny of evil men.1994|00:04:24.350 --&gt; 00:04:24.440Blessed is he who,|in the name of charity and good will,1995|00:04:24.444 --&gt; 00:04:24.504shepherds the weak|through the valley of darkness,1996|00:04:24.538 --&gt; 00:04:24.628for he is truly his brother's keeper|and the finder of lost children.1997|00:04:24.663 --&gt; 00:04:24.782And I will strike down upon thee with|great vengeance and furious anger...1998|00:04:24.787 --&gt; 00:04:24.877those who attempt to poison|and destroy My brothers.1999|00:04:24.881 --&gt; 00:04:24.971And you will know|I am the Lord...2000|00:04:24.975 --&gt; 00:04:25.065when I lay My vengeance|upon you.&quot;2001|00:04:25.100 --&gt; 00:04:25.160I been sayin' that shit for years,2002|00:04:25.194 --&gt; 00:04:25.284and if you heard it,|that meant your ass.2003|00:04:25.287 --&gt; 00:04:25.347I never gave much thought|to what it meant.2004|00:04:25.381 --&gt; 00:04:25.441I just thought it was some coldblooded|shit to say to a motherfucker...2005|00:04:25.444 --&gt; 00:04:25.534before I popped a cap|in his ass.2006|00:04:25.538 --&gt; 00:04:25.628But I saw some shit this morning|made me think twice.2007|00:04:25.632 --&gt; 00:04:25.721See, now I'm thinkin'|maybe it means...2008|00:04:25.724 --&gt; 00:04:25.874you're the evil man,|and I'm the righteous man,2009|00:04:25.881 --&gt; 00:04:25.971and Mr. 9-millimeter here,|he's the shepherd...2010|00:04:25.975 --&gt; 00:04:26.065protecting my righteous ass|in the valley of darkness.2011|00:04:26.068 --&gt; 00:04:26.128Or it could mean...2012|00:04:26.131 --&gt; 00:04:26.221you're the righteous man,|and I'm the shepherd,2013|00:04:26.225 --&gt; 00:04:26.345and it's the world|that's evil and selfish.2014|00:04:26.350 --&gt; 00:04:26.410Now, I'd like that.2015|00:04:26.444 --&gt; 00:04:26.504But that shit|ain't the truth.2016|00:04:26.506 --&gt; 00:04:26.566The truth is,2017|00:04:26.600 --&gt; 00:04:26.660you're the weak...2018|00:04:26.694 --&gt; 00:04:26.813and I'm the tyranny|of evil men.2019|00:04:26.850 --&gt; 00:04:26.910But I'm tryin', Ringo.2020|00:04:26.943 --&gt; 00:04:27.033I'm tryin' real hard...2021|00:04:27.037 --&gt; 00:04:27.097to be the shepherd.2022|00:04:27.569 --&gt; 00:04:27.629Go.2023|00:04:28.162 --&gt; 00:04:28.222I think we should be|leaving now.2024|00:04:28.225 --&gt; 00:04:28.315- Yeah, that's probably a good idea.
\ No newline at end of file
+{1025}{1115}You always say that.|The same thing every time.
+{1118}{1177}&quot;l'm through, never again,|too dangerous.&quot;
+{1180}{1270}I know that's what I always say.|I'm always right too.
+{1274}{1364}- You forget about it in a day or two.|- The days of me forgetting are over.
+{1368}{1428}The days of me remembering|have just begun.
+{1430}{1490}You know, when you go on like this,|what you sound like ?
+{1493}{1583}- I sound like a sensible fuckin' man.|- You sound like a duck.
+{1587}{1707}- Quack, quack, quack.|- Take heart, 'cause you're never
+{1712}{1802}Since I'm never gonna|do it again, you're never
+{1806}{1956}- After tonight ?|- Correct. I got all tonight to quack.
+{1962}{2022}- Can I get anyone more coffee ?|- Oh, yes !
+{2087}{2176}- Thank you.|- You're welcome.
+{2180}{2270}I mean, the way it is now,
+{2274}{2334}you're takin' the same risk|as when you rob a bank.
+{2336}{2396}Takin' more of a risk.|Banks are easier.
+{2399}{2489}Federal banks ain't supposed to stop you|in any way during a robbery.
+{2493}{2643}They're insured. Why should|they give a fuck ? I don't even
+{2649}{2739}Heard about this one bloke, he walks|into a bank with a portable phone.
+{2743}{2833}He gives the phone to a teller.|The bloke on the other end says,
+{2837}{2927}&quot;We got this guy's little girl.|If you don't give him all your
+{2931}{3021}- Did it work ?|- Fuckin' right it worked.
+{3025}{3204}Knucklehead walks into a bank|with a telephone. Not a pistol,
+{3211}{3331}- Cleans the place out.|They don't lift a fuckin' finger.
+{3336}{3456}There probably never was|a little girl. The point of
+{3462}{3552}The point of the story is they|robbed a bank with a telephone.
+{3555}{3645}- You want to rob banks ?|- I'm not saying I wanna rob banks.
+{3649}{3709}I'm illustrating if we did, it'd be|easier than what we've been doing.
+{3712}{3832}-No more liquor stores ?|-What've we been talkin' about ?
+{3837}{3927}Besides, it ain't the giggle|it used to be. There's too many
+{3931}{3991}Vietnamese, Koreans,|don't even speak fuckin' English.
+{3993}{4053}You tell 'em empty out|the register, they don't know
+{4056}{4116}They make it too personal.
+{4119}{4239}- We keep on, one of these gook|fuckers gonna make us kill him.
+{4244}{4393}I don't want to either.|But they'll probably put us
+{4399}{4429}And if it's not the gooks,
+{4462}{4522}it's these old fuckin' Jews who've owned|the store for 15 fucking generations.
+{4524}{4644}You got Grandpa lrving sitting|behind the counter with
+{4649}{4709}Try walkin' into one of those places|with nothing but a phone.
+{4712}{4772}See how far that gets you.|Forget it.
+{4774}{4864}- We're out of it.|- Well, what then, day jobs ?
+{4868}{4928}- Not in this life.|- What then ?
+{4993}{5053}Gar&#231;on, coffee !
+{5056}{5146}This place.
+{5181}{5271}Gar&#231;on means boy.
+{5368}{5458}This place ?|A coffee shop ?
+{5462}{5552}What's wrong with that ?
+{5555}{5645}Nobody ever robs restaurants.|Why not ?
+{5681}{5741}Bars, liquor stores,
+{5743}{5863}gas stations; you get your head|blown off stickin' up one of them.
+{5868}{5988}Restaurants, on the other hand,|you catch with their pants down.
+{5993}{6083}They're not expectin' to get robbed.|Not as expectin' anyway.
+{6087}{6237}- I bet you could cut down on the|hero factor in a place like this.
+{6244}{6333}Same as banks,|these places are insured.
+{6336}{6396}Manager.|He don't give a fuck.
+{6399}{6489}They're just trying to get you out|before you start pluggin' the diners.
+{6493}{6613}Waitresses. Fuckin' forget it.|No way they're takin' a bullet
+{6618}{6708}Busboys. Some wetback gettin'|paid $1.50 an hour...
+{6712}{6772}really give a fuck|you're stealin' from the owner ?
+{6774}{6864}Customers sittin' there|with food in their mouths,
+{6868}{7018}One minute, they're havin'|a Denver omelet, the next, someone
+{7025}{7175}See, I got the idea the last|liquor store we stuck up, remember ?
+{7181}{7241}- All the customers kept comin' in.|- Yeah.
+{7244}{7364}You got the idea|of takin' their wallets.
+{7369}{7458}- Thank you.|- Made more from the wallets
+{7462}{7552}- Yes, we did.|- A lot of people come to restaurants.
+{7555}{7645}- A lot of wallets.|- Pretty smart, huh ?
+{7649}{7709}Pretty smart.
+{7774}{7864}I'm ready. Let's do it.|Right now, right here.
+{7868}{7988}- Come on.|- All right. Same as
+{7993}{8083}You're crowd control.|I'll handle the employees.
+{8244}{8334}- I love you, Pumpkin.|- I love you, Honey Bunny.
+{8369}{8428}Everybody be cool !|This is a robbery !
+{8430}{8520}Any of you fucking pricks move,
+{8524}{8644}and I'll execute|every motherfuckin' last one of you.
+{8649}{8649}and I'll execute|every motherfuckin' last one of you.
+{11993}{12053}- Jungle boogie|- Get down with the boogie
+{12056}{12116}- Jungle boogie|- Get it on
+{12119}{12179}- Jungle boogie|- Get down with the boogie
+{12181}{12271}- Jungle boogie|- Get it on
+{12275}{12335}- Jungle boogie|- Get up with the boogie
+{12338}{12398}- Jungle boogie|- Get up with the get down
+{12400}{12460}- Jungle boogie|- Get down and boogie
+{12463}{12553}- Jungle boogie|- Shake it around
+{12774}{12894}- Okay, so tell me again|about the hash bars.
+{12900}{12960}- Hash is legal there, right ?|- It's legal, but it ain't 100% legal.
+{12993}{13113}You just can't walk into a restaurant,|roll a joint and start puffin' away.
+{13119}{13209}I mean, they want you to smoke in|your home or certain designated places.
+{13212}{13302}- Those are hash bars ?|- Yeah. It breaks down like this.
+{13306}{13366}It's legal to buy it.|It's legal to own it.
+{13369}{13459}And if you're the proprietor|of a hash bar, it's legal to sell it.
+{13463}{13613}It's illegal to carry it,|but-but that doesn't matter,
+{13619}{13738}If you get stopped by a cop|in Amsterdam, it's illegal
+{13743}{13863}- I mean, that's a right the cops|in Amsterdam don't have.
+{13868}{13928}That's all there is to it.|I'm fuckin' goin'.
+{13931}{14021}I know, baby.|You'd dig it the most.
+{14025}{14115}- But you know what the funniest thing|about Europe is ?
+{14119}{14239}It's the little differences.|I mean, they got the same shit
+{14244}{14334}- but it's just there,|it's a little different.
+{14338}{14428}You can walk into a movie theater|in Amsterdam and buy a beer.
+{14431}{14551}And I don't mean just like no paper cup.|I'm talkin' about a glass of beer.
+{14557}{14647}And in Paris, you can buy|a beer in McDonald's.
+{14681}{14771}a Quarter-Pounder|with Cheese in Paris ?
+{14774}{14834}They don't call it|a Quarter-Pounder with Cheese ?
+{14837}{14927}They got the metric system.|They wouldn't know what the fuck
+{14931}{15051}- What do they call it ?|- They call it a Royale with Cheese.
+{15056}{15086}- Royale with Cheese.|- That's right.
+{15087}{15147}What do they call a Big Mac ?
+{15150}{15240}Big Mac's a Big Mac,|but they call it Le Big Mac.
+{15244}{15334}Le Big Mac.
+{15338}{15458}- What do they call a Whopper ?|- I don't know. I didn't
+{15463}{15583}- You know what they put on French fries|in Holland instead of ketchup ?
+{15588}{15678}- Mayonnaise.|- Goddamn !
+{15682}{15801}- I seen 'em do it, man.|They fuckin' drown 'em in that shit.
+{15868}{15988}We should have shotguns|for this kind of deal.
+{16056}{16146}- How many up there ?|- Three or four.
+{16150}{16270}- That's countin' our guy ?|- Not sure.
+{16275}{16365}- So that means that it could be|up to five guys up there ?
+{16369}{16429}We should have|fuckin' shotguns.
+{16431}{16521}- What's her name ?|- Mia.
+{16525}{16645}- Mia. How did Marsellus and her meet ?|- I don't know.
+{16650}{16769}However people meet people.|She used to be a actress.
+{16774}{16834}Oh, really ?|She do anything I'd have seen ?
+{16837}{16957}- I think her biggest deal|was she starred in a pilot.
+{16962}{17082}- Well, you know the shows on TV ?|- I don't watch TV.
+{17087}{17177}Yeah, but you are aware that there|is an invention called television,
+{17181}{17271}- and on this invention|they show shows, right ?
+{17275}{17425}The way they pick TV shows is they make|one show. That show's called a pilot.
+{17431}{17521}Then they show that one show|to the people who pick shows...
+{17525}{17585}and on the strength of that|one show, they decide if
+{17588}{17738}Some get chosen and|become television programs.
+{17744}{17833}She starred in one of the ones|that became nothing.
+{17837}{17927}You remember|Antwan Rockamora ?
+{17931}{18021}Half-black, half-Samoan.|Used to call him &quot;Tony Rocky Horror.&quot;
+{18056}{18146}- Yeah, maybe. Fat, right ?|- I wouldn't go so far as to
+{18150}{18240}I mean, he got a weight problem.|What's a nigger gonna do ? He's Samoan.
+{18244}{18364}- I think I know who you mean.|What about him ?
+{18369}{18489}Word 'round the campfire is|it was on account of
+{18744}{18863}- So what he'd do ? Fuck her ?|- No, no, no, no, no. Nothin' that bad.
+{18868}{18958}- Well, then what then ?|- He gave her a foot massage.
+{19025}{19115}A foot massage ?
+{19119}{19179}- That's it ?|- Mm-hmm.
+{19181}{19241}Then what'd Marsellus do ?
+{19244}{19334}Sent a couple cats over to his place.|They took him out on his patio.
+{19338}{19458}Threw his ass over the balcony.|Nigger fell four stories.
+{19463}{19583}He had a little garden down|at the bottom enclosed in glass,
+{19588}{19648}Nigger fell through that.
+{19650}{19740}Since then, he kind of|developed a speech impediment.
+{19776}{19866}- That's a damn shame.|- Hmm.
+{19994}{20114}- But still, you play|with matches, you get burned.
+{20119}{20239}You don't be givin' Marsellus Wallace's|new bride a foot massage.
+{20244}{20304}You don't think he overreacted ?
+{20306}{20456}Antwan didn't expect Marsellus|to react the way he did,
+{20463}{20583}It was a foot massage.|A foot massage is nothin'.
+{20588}{20708}It's laying your hands in a familiar way|on Marsellus's new wife.
+{20713}{20833}I mean, is it as bad as eatin'|her pussy out ? No, but it's
+{20838}{20898}Whoa, stop right there.|Eatin' the bitch out...
+{20901}{20990}and givin' the bitch a foot massage|ain't even the same fucking thing.
+{20994}{21114}- It's not. It's the same ballpark.|- Ain't no fuckin' ballpark neither.
+{21119}{21209}Now, look, maybe your method|of massage differs from mine.
+{21212}{21302}But touchin' his wife's feet|and sticking your tongue
+{21306}{21456}ain't the same fuckin' ballpark;|it ain't the same league;
+{21463}{21553}- Foot massages don't mean shit !|- Have you ever given a foot massage ?
+{21557}{21647}Don't be tellin' me about foot massages.
+{21650}{21740}- I'm the foot fuckin' master.|- You given a lot of them ?
+{21744}{21864}Shit, yeah !|Got my technique down and everything.
+{21869}{21958}Would you give a guy|a foot massage ?
+{21994}{22084}- Fuck you.
+{22087}{22177}- You give 'em a lot ?|- Fuck you.
+{22181}{22271}- You know, I'm kind of tired.|I could use a foot massage.
+{22275}{22365}You best back off.|I'm gettin' a little pissed here.
+{22400}{22490}- This is the door.|- Yeah, it is.
+{22557}{22647}What time you got ?
+{22650}{22710}7:22 in the a.m.
+{22713}{22803}No, it ain't quite time yet.|Come on. Let's hang back.
+{23056}{23146}Look, just 'cause I wouldn't give no man|a foot massage don't make it right...
+{23150}{23240}for Marsellus to throw|Antwan off a building into
+{23244}{23334}fuckin' up the way the nigger talks;|that shit ain't right.
+{23338}{23458}Motherfucker do that shit to me,|he better paralyze my ass,
+{23463}{23613}I ain't sayin' it's right,|but you sayin' a massage don't mean
+{23619}{23739}Now, look, I've given a million|ladies a million foot massages,
+{23776}{23866}We act like they don't,|but they do. That's what's
+{23869}{23929}There's a sensuous thing goin' on...
+{23932}{24022}where you don't talk about it,|but you know it and she knows it.
+{24026}{24175}Fuckin' Marsellus knew it. And Antwan|should've fuckin' better known better.
+{24181}{24331}That's his fuckin' wife, man.|This ain't a man with a sense
+{24338}{24398}You know what I'm sayin' ?
+{24400}{24460}It's an interestin' point.
+{24463}{24523}Come on.|Let's get into character.
+{24744}{24804}- What's her name again ?|- Mia.
+{24807}{24897}- Mia.|- Why you so interested
+{24901}{25051}He's goin' out of town, Florida.|And he asked me if I'd take care
+{25057}{25176}- Take care of her ?|- No, man. Just take her out.
+{25181}{25271}Show her a good time.|Make sure she don't get lonely.
+{25275}{25335}You're gonna be takin'|Mia Wallace out on a date ?
+{25369}{25429}It is not a date.
+{25432}{25552}It's just like if you were|gonna take your buddy's wife
+{25557}{25677}- It's just good company, that's all.
+{25776}{25926}- It's not a date.|It's definitely not a date.
+{26120}{26239}Hey, kids.|How you boys doin' ?
+{26244}{26304}Hey, keep chillin'.
+{26494}{26584}You know who we are ?
+{26588}{26708}We're associates of your|business partner, Marsellus Wallace.
+{26713}{26803}You do remember|your business partner, don't you ?
+{26869}{26959}Now, let me take|a wild guess here.
+{27026}{27116}- You're Brett, right ?|- Yeah.
+{27120}{27239}I thought so. You remember|your business partner Marsellus Wallace,
+{27244}{27304}don't ya, Brett ?
+{27306}{27366}Yeah, I remember.
+{27369}{27489}Good. Looks like me and Vincent|caught you boys at breakfast.
+{27494}{27584}Sorry about that.|Whatcha havin' ?
+{27588}{27648}Hamburgers.
+{27650}{27770}Hamburgers ! The cornerstone|of any nutritious breakfast.
+{27807}{27867}What kind of hamburgers ?
+{27869}{27929}- Uh, ch-cheeseburgers.|- No, no, no.
+{27932}{28022}Where'd you get 'em ?|McDonald's, Wendy's, Jack-in-the-Box ?
+{28026}{28116}- Where ?|- Uh, Big Kahuna Burger.
+{28120}{28209}Big Kahuna Burger !|That's that Hawaiian burger joint.
+{28213}{28333}I hear they got some tasty burgers.|I ain't never had one myself.
+{28338}{28398}They're-- They're good.
+{28400}{28490}You mind if I try|one of yours ?
+{28494}{28554}- This is yours here, right ?|- Yeah.
+{28807}{28867}Mmmm.
+{28869}{28959}This is a tasty burger !|Vincent !
+{28963}{29023}You ever had|a Big Kahuna burger ?
+{29057}{29147}Want a bite ?|They're real tasty.
+{29151}{29241}- I ain't hungry.|- Well, if you like burgers,
+{29245}{29364}Me, I can't usually get 'em|'cause my girlfriend's a vegetarian,
+{29369}{29459}which pretty much makes me|a vegetarian.
+{29463}{29553}But I do love the taste|of a good burger. Mmmm.
+{29557}{29677}You know what they call|a Quarter-Pounder with Cheese
+{29713}{29773}- No.|- Tell 'em, Vincent.
+{29776}{29866}- A Royale with Cheese.|- A Royale with Cheese.
+{29901}{29991}You know why they call it that ?
+{29995}{30085}Uh, because of|the metric system ?
+{30120}{30210}Check out the big brain|on Brett !
+{30214}{30303}You're a smart motherfucker.|That's right. The metric system.
+{30400}{30460}- What's in this ?|- Sprite.
+{30463}{30523}Sprite. Good.
+{30525}{30615}You mind if I have some of your|tasty beverage to wash this down with ?
+{30619}{30709}Go right ahead.
+{31057}{31147}That hit the spot.
+{31151}{31271}You. Flock of Seagulls.|You know why we're here ?
+{31276}{31365}- Why don't you tell my man|Vince here where you got the shit hid.
+{31369}{31489}I don't remember askin' you|a goddamned thing !
+{31588}{31648}You were sayin' ?
+{31651}{31711}It's in the cupboard.
+{31807}{31897}N-No, the one|by your kn-knees.
+{32525}{32585}We happy ?
+{32588}{32678}Vincent ?
+{32682}{32742}- We happy ?|- Yeah, we happy.
+{32807}{32927} Look, I'm sorry, uh, l--|I didn't get your name.
+{32932}{33052}I got yours. Vincent. Right ?|B-But I never got yours.
+{33057}{33207}- My name's Pitt, and your ass|ain't talkin' your way outta this shit.
+{33245}{33335}I just want you|to know how--
+{33401}{33520}I just want you to know how sorry we are|th-that things got so fucked up...
+{33525}{33585}with us and Mr. Wallace.
+{33588}{33708}W-We got into this thing with|the best intentions. Really. I never--
+{33713}{33833}Oh, I'm sorry,|did I break your concentration ?
+{33838}{33898}- I didn't mean to do that. Please.
+{33901}{34051}Continue. You were saying something|about &quot;best intentions.&quot;
+{34120}{34210}What's the matter ?|Oh, you were finished !
+{34214}{34304}Oh, well, allow me to retort.
+{34433}{34492}What does Marsellus Wallace|look like ?
+{34494}{34584}What ?
+{34588}{34678}- What country you from ?|- What ?
+{34682}{34802}- &quot;What&quot; ain't no country I ever|heard of. They speak English in What ?
+{34807}{34897}- English, motherfucker !|Do you speak it ?
+{34901}{34931}- Then you know what I'm sayin' !|- Yes.
+{34932}{35052}Describe what Marsellus Wallace|looks like !
+{35057}{35117}- What ? l--|- Say &quot;what&quot; again !
+{35120}{35240}Say &quot;what&quot; again ! I dare ya !|I double dare you, motherfucker !
+{35245}{35365}- Say &quot;what&quot; one more goddamn time !|- H-H-He's black.
+{35370}{35430}- Go on !|- He's bald !
+{35433}{35522}- Does he look like a bitch ?|- What ?
+{35557}{35677}Does he look... Iike a bitch ?
+{35682}{35802}- No !|- Then why you tryin'
+{35807}{35897}- I didn't.|- Yes, you did. Yes, you did, Brett !
+{35901}{35961}- You tried to fuck him.|- No, no.
+{35963}{36113}But Marsellus Wallace don't like to be|fucked by anybody except Mrs. Wallace.
+{36120}{36210}- You read the Bible, Brett ?|- Yes !
+{36214}{36364}Well, there's this passage|I got memorized. Sort of
+{36370}{36430}Ezekiel 25:17.
+{36433}{36523}&quot;The path of the righteous man...
+{36526}{36645}is beset on all sides|by the inequities of the selfish...
+{36651}{36741}and the tyranny of evil men.
+{36744}{36894}Blessed is he who,|in the name of charity and goodwill,
+{36901}{36991}shepherds the weak|through the valley of darkness,
+{36995}{37085}for he is truly|his brother's keeper...
+{37089}{37179}and the finder|of lost children.
+{37182}{37302}And I will strike down upon thee|with great vengeance...
+{37308}{37368}and furious anger...
+{37370}{37490}those who attempt to poison|and destroy My brothers !
+{37495}{37614}And you will know|My name is the Lord...
+{37619}{37709}when I lay My vengeance|upon thee !&quot;
+{38276}{38336}I think you gonna find...
+{38339}{38429}when all this shit|is over and done--
+{38495}{38615}I think you're gonna find yourself|one smilin' motherfucker.
+{38651}{38741}The thing is, Butch,
+{38744}{38834}right now...|you got ability.
+{38901}{38961}But painful as it may be,
+{38963}{39053}ability... don't last.
+{39120}{39240}And your days are just about over.
+{39245}{39365}Now, that's a hard|motherfuckin' fact of life.
+{39370}{39520}But that's a fact of life your ass|is gonna have to get realistic about.
+{39589}{39738}You see, this business is filled to|the brim with unrealistic motherfuckers.
+{39744}{39864}Motherfuckers who thought|their ass would age like wine.
+{39932}{40022}If you mean it turns|to vinegar... it does.
+{40057}{40177}If you mean it gets better|with age... it don't.
+{40245}{40305}Besides, Butch,
+{40370}{40460}how many fights you think|you got in you anyway ?
+{40464}{40524}Hmm ?
+{40527}{40587}Two ?
+{40620}{40739}Boxers don't have|an old-timers' day.
+{40776}{40866}You came close,|but you never made it.
+{40901}{41021}And if you were gonna make it,|you would have made it before now.
+{41527}{41587}You my nigger ?
+{41714}{41803}Certainly appears so.
+{41995}{42085}The night of the fight,|you may feel a slight sting.
+{42182}{42302}That's pride fuckin' with you.
+{42339}{42399}Fuck pride !
+{42464}{42554}Pride only hurts.
+{42558}{42618}It never helps.
+{42652}{42712}You fight through that shit.
+{42746}{42895}'Cause a year from now,|when you kickin' it in the Caribbean,
+{42901}{43051}you gonna say to yourself,|&quot;Marsellus Wallace was right.&quot;
+{43120}{43240}I got no problem|with that, Mr. Wallace.
+{43245}{43365}In the fifth,|your ass goes down.
+{43495}{43525}Say it.
+{43620}{43710}In the fifth,|my ass goes down.
+{43777}{43836}Yo, Vincent Vega.|Our man in Amsterdam.
+{43838}{43988}Jules Winfield, our man in lnglewood.|Get your asses on in here.
+{43995}{44085}- Goddamn, nigger,|what's up with them clothes ?
+{44089}{44179}Where's the big man ?
+{44214}{44274}The big man's right over there|takin' care of some business.
+{44276}{44426}Why don't you hang back a second or two.|You see the white boy leave, go on over.
+{44495}{44585}How ya been ?
+{44589}{44679}- I been doin' pretty good.|How 'bout yourself ?
+{44746}{44836}So I hear you're|takin' Mia out tomorrow.
+{44932}{44992}At Marsellus's request.
+{45026}{45086}- Have you met Mia ?|- Not yet.
+{45089}{45209}- What's so fuckin' funny ?
+{45214}{45274}- Not a goddamn thing.|- I got to piss.
+{45276}{45396}Look, I'm not a fuckin' idiot,|all right ? It's the big man's wife.
+{45401}{45491}I'm gonna sit across from her,|chew my food with my mouth closed,
+{45495}{45555}Iaugh at her fuckin' jokes,|and that's it.
+{45558}{45648}Hey, my name's Paul,|and this shit's between y'all.
+{45652}{45742}Then what'd you fuckin'|ask me about it for ?
+{45746}{45806}Asshole.
+{45995}{46085}- Gimme a pack of Red Apples.|- Filters ?
+{46089}{46119}No.
+{46214}{46334}- You lookin' at somethin', friend ?|- You ain't my friend, palooka.
+{46401}{46491}-What was that ?|-I think you heard me just fine, punchy.
+{46495}{46585}Vincent Vega's in the house ?
+{46589}{46679}My nigger,|get your ass over here.
+{46902}{46991}- What's up ?|- Man, I'm really sorry.
+{46995}{47055}You shouldn't worry about it.
+{47057}{47147}Pack of Red Apples. $1.40.
+{47214}{47304}And some matches.
+{47401}{47461}Thanks.
+{47495}{47615} It's as if it turns every part|of your body into the tip of a penis.
+{47652}{47742}- Whoa.|- I'll lend it to you.
+{47746}{47896}That gun to pierce your ears,|they don't use that to pierce
+{47902}{47992}Forget that gun. That guns goes against|the entire idea behind piercing.
+{47996}{48145}All my piercing, 18 places on my body,|every one of 'em done with a needle.
+{48151}{48241}Five in each ear, one through|the nipple of my left breast,
+{48276}{48366}two in my right nostril,|one in my left eyebrow,
+{48370}{48430}one in my belly,|one in my lip, one in my clit,
+{48433}{48553}- and I wear a stud in my tongue.|- Excuse me.
+{48558}{48618}I was just curious,
+{48620}{48710}but, um... why would you wear|a stud in your tongue ?
+{48746}{48836}Sex thing.|Helps fellatio.
+{48839}{48959}Vincenzo.|Step in my office.
+{49151}{49241}This is Panda from Mexico.|Very good stuff.
+{49245}{49365}Now, that's Bava.|Different, but equally good.
+{49370}{49430}And that is Choco|from the Harz Mountains of Germany.
+{49464}{49584}Now, the first two are the same.|300 a gram. Those are friend prices.
+{49589}{49679}But this one|is a little more expensive.
+{49683}{49743}This is 500 a gram.
+{49746}{49836}But, when you shoot it, you will know|where that extra money went.
+{49839}{49959}There's nothing wrong with these two.|This is real, real, real good shit.
+{49965}{50084}But this one|is a fuckin' madman.
+{50089}{50179}Remember, I just got back|from Amsterdam.
+{50182}{50272}Am I a nigger ?|Are we in lnglewood ? No.
+{50276}{50366}You're in my home. Now, white people|who know the difference...
+{50370}{50460}between good shit and bad shit,|this is the house they come to.
+{50464}{50554}Now, my shit, I'll take the Pepsi|Challenge with that Amsterdam shit...
+{50558}{50648}- any old day of the fuckin' week.|- That's a bold statement.
+{50652}{50772}This ain't Amsterdam, Vince.|This is a seller's market.
+{50777}{50897}Coke is fuckin' dead|as... dead.
+{50902}{51022}Heroin, it's comin' back|in a big fuckin' way.
+{51058}{51147}- All right.|Gimme three grams of madman.
+{51151}{51271}Now, if it's as good as you say it is,|I'll come back and buy another thousand.
+{51276}{51336}I just hope that I still|have some left for ya,
+{51339}{51459}but I'm givin' you some|out of my own private stash.
+{51464}{51584}That is what a nice guy I am.
+{51589}{51679}- I'm outta balloons.|Is a baggie all right ?
+{51714}{51744}All right.|I'll just get one for ya.
+{51777}{51897}Honey, will you get me some baggies|and, uh, twistix from the kitchen ?
+{51902}{51962}Okay.
+{51965}{52085}Hey, uh, what do you think about Trudi ?|She ain't got a boyfriend.
+{52090}{52179}- You wanna hang out and get high ?|- Which one's Trudi ?
+{52182}{52302}-The one with all the shit in her face ?|-No, that's Jody.
+{52308}{52368}That's my wife.
+{52370}{52520}- I'm sorry, man.|- Thank you.
+{52527}{52647}- No, I can't. I gotta be someplace.|- All right, no problemo.
+{52652}{52712}- I'll take a rain check.
+{52714}{52834}- Oh.|- Thank you, Jody.
+{52839}{52929}Still got your Malibu ?
+{52933}{53023}Oh, man, you know what some fucker|did the other day ?
+{53027}{53087}- What ?|- Fuckin' keyed it.
+{53090}{53180}- Oh, man, that's fucked up.|- Tell me about it.
+{53184}{53273}I had it in storage|for three years.
+{53276}{53396}It was out five days, and some|dickless piece of shit fucked with it.
+{53401}{53551}They should be fuckin' killed,|man. No trial, no jury,
+{53558}{53678}I wish I could've caught him|doin' it. I'd have given
+{53683}{53833}- It'd been worth him doin' it|just so I could've caught him.
+{53839}{53899}What's more chicken-shit|than fuckin' with a man's automobile ?
+{53933}{53993}- Don't fuck with another man's vehicle.|- You don't do it.
+{53996}{54086}- It's just against the rules.|- Thank you.
+{54090}{54150}Thank you.
+{54152}{54242}- Mind if I shoot up here ?|- Hey, mi casa es su casa.
+{54246}{54335}Muchas gracias.
+{57433}{57523} Hi, Vincent.|I'm getting dressed. The door's open.
+{57558}{57678}Come inside and make yourself|a drink. Mia.
+{57933}{57993}Hello ?
+{57996}{58116} Billy Raye was a preacher's son|and when his daddy would visit
+{58121}{58181}Vincent.
+{58277}{58337}Vincent.
+{58340}{58400}I'm on the intercom.
+{58403}{58462}Where is--|Where is the intercom ?
+{58464}{58584}It's on the wall|by the two African fellows.
+{58589}{58649}To your right.
+{58746}{58806}Warm.
+{58808}{58868}Warmer.
+{58871}{58931}Disco.
+{58933}{58993}Hello ?
+{58996}{59116}Push the button|if you want to talk.
+{59121}{59181}Hello ?
+{59184}{59274}Go make yourself a drink, and I'll|be down in two shakes of a lamb's tail.
+{59277}{59397}The bar's by the fireplace.
+{59464}{59524}Okay.
+{59527}{59587} When he started|sweet talkin' to me
+{59589}{59679} He come and tell me|everything is all right
+{59683}{59743} He'd kiss me and tell me|everything is all right
+{59746}{59806} Can I get away|again tonight
+{59808}{59898} The only one who could|ever reach me
+{59902}{59962} Was the son|of a preacher man
+{59965}{60055} The only boy|who could ever teach me
+{60058}{60148} Was the son of a preacher man|Yes, he was
+{60152}{60242} He was
+{60246}{60306}- Lord he knows he was|- Yes he was
+{60403}{60463} How will I remember
+{60465}{60554} The look was in his eyes
+{60558}{60618} Stealing kisses from me|on the sly
+{60621}{60711} Taking time to make time
+{60714}{60774} Telling me that|he's all mine
+{60777}{60867}- Learning from each other's knowin'
+{60871}{60931} Looking to see|how much we've grown
+{60933}{61023} And the only one|who could ever reach me
+{61027}{61087} Was the son|of a preacher man
+{61090}{61180} The only boy|who could ever teach me
+{61184}{61244} Was the son of a preacher man|Yes, he was
+{61246}{61336}- Was, was|- He was
+{61340}{61400}- Oh, yes he was
+{61434}{61464}Let's go.
+{61652}{61712}What the fuck is this place ?
+{61714}{61804}This is Jackrabbit Slim's.
+{61808}{61868}- An Elvis man should love it.
+{61871}{61991}- Come on, Mia. Let's go get a steak.|- You can get a steak here, daddy-o.
+{61996}{62086}Don't be a--
+{62090}{62180}Oh, after you, kitty-cat.
+{62777}{62897}Good evening, ladies and gentlemen.|Now, how may I help you ?
+{62902}{62992}- There's a reservation under Wallace.|- Wallace ?
+{62996}{63056}- We reserved a car.
+{63058}{63238}Oh, a car. Why don't you seat 'em|over there in the Chrysler.
+{63246}{63336} School get out, baby|Gonna tell you some news
+{63340}{63400} Sure do look good|in them baby doll shoes
+{63403}{63553} One, two, buckle the shoes|Three, four, get out on the floor
+{63559}{63708} Five, six, come get your kicks down at|the corner of Lincoln and 46th, yeah
+{63808}{63868} All right
+{63965}{64025} I've been waitin' in school|all day long
+{64027}{64087} Waiting on the bell to ring|so I can go home
+{64090}{64150} Throw my books on the table|Pick up the telephone
+{64184}{64244}- Come on, baby|- Coffee, please ? Decaf.
+{64246}{64306}- Just a minute.|- Heading down to the drugstore
+{64309}{64369} Throw a nickel in the jukebox|Then we start to rock
+{64371}{64431} School's out, baby|Gonna tell you some news
+{64434}{64494} You sure do look good|in them baby doll shoes
+{64496}{64586} Well, it's one, two|Buckle the shoes
+{64590}{64650} Three, four|Get out on the floor
+{64653}{64772} Five, six, come get your kicks|down at the corner of Lincoln and 46th
+{64933}{65023} Gonna rock all night|Just wait and see
+{65027}{65117}Ricky, Ricky, Ricky !
+{65184}{65274}Let's hear it for Ricky Nelson !
+{65277}{65367}- Fantastic job, Rick.|Thank you very much.
+{65496}{65586} Just to let you|all know, Ricky will be back
+{65590}{65709}so we hope you enjoy your meals|here at Jackrabbit Slim's.
+{65746}{65806}Thank you.
+{65808}{65898}Call for...
+{65902}{66052}- Phil-lip Mor-ris.|- What do you think ?
+{66059}{66179}I think it's like|a wax museum with a pulse.
+{66184}{66304}Hi, I'm Buddy.|What can I get you ?
+{66371}{66521}Let's see, steak, steak, steak. Oh,|yeah, I'll have the Douglas Sirk steak.
+{66528}{66588}- I'll have that.|- How do you want that cooked ?
+{66590}{66710}- Burned to a crisp or bloody as hell ?|- Bloody as hell, and--
+{66715}{66774}Oh, yeah, look at this--|vanilla Coke.
+{66777}{66837}What about you, Peggy Sue ?
+{66840}{66930}I'll have the...
+{66965}{67085}Durward Kirby burger, bloody.
+{67090}{67180}And... a five-dollar shake.
+{67215}{67275}How do you want that shake,|Martin and Lewis, or Amos 'n Andy ?
+{67278}{67398}- Martin and Lewis.|- Did you just order
+{67403}{67463}Mm-hmm.
+{67465}{67555}That's a shake ?|That's milk and ice cream ?
+{67559}{67709}- Last I heard.|- That's five dollars ? You don't
+{67715}{67775}- No.|- Just checking.
+{67778}{67867}I'll be right back|with your drinks.
+{67871}{67931} To Lonesome Town
+{67933}{68023} To cry my troubles away
+{68090}{68210}Could you, um...|roll me one of those, cowboy ?
+{68215}{68305}You can have this one, cowgirl.
+{68309}{68369}- Thanks.
+{68371}{68431} The streets are filled|with regret
+{68496}{68556}Think nothin' of it.
+{68559}{68679} Lay me down|in Lonesome Town
+{68684}{68774}- I can learn to forget|- So...
+{68778}{68867}Marsellus said|you just got back from Amsterdam.
+{68871}{68961}- Sure did.|- How long were you there ?
+{68965}{69055}Just over three years.
+{69121}{69211}I go there about once a year|to chill out for a month.
+{69215}{69335}No kiddin' ?|I didn't know that.
+{69340}{69430}Why would you ?
+{69559}{69619}I heard you did a pilot.
+{69653}{69773}- That was my 15 minutes.|- What was it ?
+{69778}{69897}It was a show about a team of female|secret agents called Fox Force Five.
+{69902}{69992}- What ?|- Fox Force Five.
+{69996}{70056}Fox, as in were a bunch|of foxy chicks.
+{70059}{70149}Force, as in we're a force|to be reckoned with.
+{70152}{70212}And five, as in there's|one-two-three-four-five of us.
+{70215}{70335}There was a blond one,|Sommerset O'Neal. She was the leader.
+{70340}{70430}The Japanese fox|was a kung fu master.
+{70434}{70554}The black girl|was a demolition expert.
+{70559}{70649}French fox's speciality was sex.
+{70653}{70773}- What was your speciality ?|- Knives.
+{70778}{70838}The character I played,|Raven McCoy,
+{70841}{70960}her background was she grew up|raised by circus performers.
+{70965}{71085}According to the show,|she was the deadliest woman
+{71090}{71180}And she knew|a zillion old jokes.
+{71184}{71304}Her grandfather,|an old vaudevillian, taught her.
+{71309}{71399}And if we would have got picked up,|they would've worked in a gimmick...
+{71403}{71523}where every show|I would've told another joke.
+{71559}{71649}You know any of them old jokes ?
+{71653}{71743}Well, I only got the chance to say one|'cause we only did one show.
+{71747}{71837}- Tell me.|- It's corny.
+{71872}{71932}Don't be that way.|Tell me.
+{71934}{72023}- No, you wouldn't like it,|and I'd be embarrassed.
+{72027}{72147}You told 50 million people,|and you can't tell me ?
+{72152}{72272}- I promise I won't laugh.|- That's what I'm afraid of, Vince.
+{72278}{72338}That's not what I meant.|You know it.
+{72340}{72460}Now I'm definitely not gonna tell you|'cause it's been built up too much.
+{72465}{72525}What a gyp.
+{72559}{72619}Martin and Lewis.
+{72716}{72806}Vanilla Coke.
+{72934}{73023}Mmm. Yummy.
+{73027}{73117}You think I could|have a sip of that ?
+{73152}{73242}Be my guest.
+{73246}{73336}I gotta know what|a five-dollar shake tastes like.
+{73371}{73461}- You can use my straw.|I don't have cooties.
+{73465}{73555}Cooties I can handle.
+{73559}{73619}All right.
+{73809}{73899}Goddamn, that's a pretty|fuckin' good milkshake !
+{73903}{74023}-Told ya.|-I don't know if it was worth $5,
+{75090}{75180}- Don't you hate that ?|- Hate what ?
+{75184}{75244}Uncomfortable silences.
+{75309}{75459}Why do we feel it's necessary|to yak about bullshit
+{75465}{75555}I don't know.|That's a good question.
+{75559}{75709}That's when you know|you found somebody really special.
+{75716}{75866}When you can just shut the fuck up for|a minute and comfortably share silence.
+{75872}{75992}Well, I don't think we're quite|there yet, but don't feel bad.
+{76028}{76118}I'll tell you what.
+{76122}{76211}I'm gonna go to the bathroom|and powder my nose.
+{76215}{76305}You sit here...|and think of something to say.
+{76371}{76401}I'll do that.
+{76497}{76527}Okay.
+{77309}{77369}I said goddamn !
+{77371}{77461}Goddamn !|Goddamn.
+{77528}{77618}I need some hair spray.
+{77809}{77839}Mmmm.
+{77872}{77992}Don't you just love it when you|come back from the bathroom to
+{77997}{78057}We're lucky|we got anything at all.
+{78060}{78150}I don't think Buddy Holly's|much of a waiter.
+{78154}{78243}Maybe we should've sat|in Marilyn Monroe's section.
+{78246}{78336}- Which one ? There's two Monroes.|- No, there's not.
+{78340}{78400}That is Marilyn Monroe.
+{78434}{78494}That is Mamie Van Doren.
+{78497}{78647}I don't see Jayne Mansfield,|so she must have the night off.
+{78653}{78743}- Pretty smart.|- Yeah. I got my moments.
+{78747}{78897}- So did you think of somethin' to say ?|- Actually, I did.
+{78935}{78995}However...
+{79060}{79150}you seem like|a really nice person, and l--
+{79154}{79214}- I don't want to offend you.|- Oooh.
+{79216}{79365}This doesn't sound like|the usual, mindless, boring,
+{79371}{79461}This sounds like you|actually have somethin' to say.
+{79465}{79555}Well, well, I do. I do.
+{79559}{79679}- But you have|to promise not to be offended.
+{79684}{79804}You can't promise somethin' like that.|I have no idea what you're gonna ask me.
+{79809}{79959}You can ask me what you're gonna|ask me, and my natural response
+{79966}{80026}Then, through no fault of my own,|I would have broken my promise.
+{80028}{80118}- Let's just forget it.|- That's an impossibility.
+{80122}{80242}Trying to forget anything|as intriguing as this would be
+{80247}{80306}- Is that a fact ?|- And besides,
+{80309}{80459}- isn't it more, uh, exciting|when you don't have permission ?
+{80465}{80555}Well, here goes.
+{80559}{80649}What did you think about|what happened to Antwan ?
+{80653}{80743}- Who's Antwan ?|- Tony Rocky Horror. You know him.
+{80747}{80837}- He fell out of a window.|- Hmm. Hmm.
+{80841}{80991}Well, that is one way to say it.|Another way to say it would be
+{80997}{81087}Another way would be|he was thrown out by Marsellus.
+{81091}{81241}Yet even another way is to say|he was thrown out of a window
+{81247}{81307}- Is that a fact ?|- No.
+{81310}{81399}No, it's not a fact. It's just what|I heard. That's just what I heard.
+{81403}{81493}- Who told you ?|- They.
+{81497}{81587}&quot;They&quot; talk a lot, don't they ?
+{81653}{81713}They certainly do.|They certainly do.
+{81716}{81866}- Don't be shy, Vincent.|What else did &quot;they&quot; say ?
+{81872}{81932}- Um--|- Did it involve the &quot;F&quot; word ?
+{81935}{82055}No, no, no, no, no.|They just said that Antwan
+{82091}{82181}- And ?|- And-- And nothin'.
+{82185}{82275}That's it.
+{82279}{82339}You heard Marsellus...
+{82341}{82460}threw Tony Rocky Horror|out of a fourth-story window
+{82465}{82525}- Mm-hmm.|- And you believe that ?
+{82528}{82648} Well, at the time|I was told it sounded reasonable.
+{82684}{82774}Marsellus throwing Tony out|of a fourth-story window...
+{82778}{82868}for massaging my feet|seemed reasonable ?
+{82872}{82962}No, it seemed excessive,|but that doesn't mean it didn't happen.
+{82966}{83056}I understand that Marsellus|is very protective of you.
+{83060}{83180}A husband being protective|of his wife is one thing.
+{83185}{83305}A husband almost killing|another man for touching
+{83310}{83370}But did it happen ?
+{83373}{83552}Only thing Antwan ever touched|of mine was my hand when he
+{83559}{83619}Really ?
+{83622}{83742}Truth is, nobody knows why Marsellus|threw Tony out that window...
+{83747}{83777}except Marsellus and Tony.
+{83809}{83899}When you little scamps get together,|you're worse than a sewing circle.
+{83935}{84025}Ladies and gentlemen. Now the moment|you've all been waiting for.
+{84028}{84178}The world-famous|Jackrabbit Slim's twist contest.
+{84247}{84397}Now, this is where|one lucky couple...
+{84404}{84523}will win this handsome trophy|that Marilyn here is holding.
+{84528}{84618}Now, who will be|our first contestants ?
+{84622}{84712}- Right here !|- All right !
+{84716}{84806}- I wanna dance.|- No, no, no, no, no.
+{84809}{84929}No, no, no, no, no. I do believe|Marsellus, my husband, your boss,
+{84935}{85055}told you to take me out|and do whatever I wanted.
+{85060}{85150}Now I wanna dance;|I wanna win; I want that trophy.
+{85154}{85184}- So dance good.|- All right. You asked for it.
+{85185}{85245}- So dance good.|- All right. You asked for it.
+{85247}{85337}Let's hear it|for our first contestants.
+{85466}{85615}Now let's meet our first|contestants here this evening.
+{85622}{85682}Mrs. Mia Wallace.
+{85684}{85774}And how 'bout your fella here ?
+{85778}{85808}Vincent Vega.
+{85841}{85931}All right, let's see what you can do.|Take it away !
+{85935}{86025}- Go for it.|- Come on !
+{86559}{86679} It was a teenage wedding|and the old folks wished them well
+{86747}{86867} You could see that Pierre|did truly love the mademoiselle
+{86935}{87055} And now the young monsieur|and madame have rung the chapel bell
+{87122}{87242} C'est la vie say the old folks|It goes to show you never can tell
+{87310}{87430} They furnished off an apartment|with a two-room Roebucks sale
+{87466}{87585} The 'coolerador was crammed|with TV dinners and ginger ale
+{87653}{87773} But when Pierre found work|the little money comin'
+{87841}{87961} C'est la vie say the old folks|It goes to show you never can tell
+{88028}{88148} They had a hi-fi phono|and boy did they let it blast
+{88216}{88336} Seven hundred little records|all rock, rhythm and jazz
+{88404}{88524} But when the sun went down|the rapid tempo of the music fell
+{88560}{88709} C'est la vie say the old folks|It goes to show you never can tell
+{89498}{89618} They had a teenage wedding|and the old folks wished them well
+{89684}{89774} You could see that Pierre|did truly love the mademoiselle
+{90841}{90931}Is that what you call|an uncomfortable silence ?
+{90935}{91055}I don't know|what you call that.
+{91060}{91120}- Drinks ! Music !
+{91154}{91214}I'm gonna take a piss.
+{91216}{91366}That's a little bit more information|than I needed, but go right ahead.
+{91778}{91838} Girl
+{91841}{91871} Bomp, bomp, bom
+{91872}{91992} You'll be a woman soon
+{92091}{92151} I love you so much|Can't count all the ways
+{92154}{92244} I'd die for you, girl|and all they can say is
+{92247}{92337} He's not your kind
+{92341}{92491} You never get tired of putting me down|and I never know when I come around
+{92498}{92588} What I'm gonna find
+{92592}{92712} Don't let them|make up your mind
+{92717}{92806} Don't you know, girl
+{92841}{92931} You'll be a woman soon
+{92935}{93025}One drink, and that's it.
+{93028}{93148}Don't be rude.|Drink your drink, but do it quickly.
+{93216}{93276}Say good night...|and go home.
+{93341}{93461} You'll be a woman soon
+{93498}{93558} Soon
+{93623}{93713} You'll be a woman
+{93748}{93837} I've been misunderstood|for all of my life
+{93841}{93901} But what they're sayin', girl|it cuts like a knife
+{93903}{93993} The boy's no good
+{93997}{94057} Well, I've finally have found|what I been lookin' for
+{94060}{94210} But if they get a chance|they'll end it for sure
+{94216}{94276} Baby, I've done|all I could
+{94279}{94429} You see, this is|a moral test of oneself.
+{94435}{94525}Whether or not|you can maintain loyalty.
+{94529}{94619}Because... being loyal|is very important.
+{94623}{94773} You never get tired of putting me down|and I never know when I come around
+{94779}{94839} What I'm gonna find
+{94842}{94961} Don't let them|make up your mind
+{94966}{95056} Don't you know, girl
+{95091}{95211} You'll be a woman soon
+{95279}{95339} Please
+{95373}{95463} Come take my hand
+{95529}{95589} Girl
+{95623}{95743} You'll be a woman soon
+{95779}{95839} Please
+{95873}{95962} Come take my hand
+{96029}{96059}- Hello.|- Girl
+{96122}{96242}So, you're gonna go out there|and you're gonna say, &quot;Good night.
+{96248}{96308}I've had a very lovely evening.&quot;
+{96310}{96460}Walk out the door, get in|the car, go home, jerk off,
+{96623}{96713} Now it's up to you, girl
+{96748}{96868} You'll be a woman soon
+{96936}{96995}- Please
+{96997}{97087} Come take my hand
+{97154}{97274}- Girl
+{97279}{97369}- You'll be a woman soon
+{97435}{97495} Soon
+{97529}{97619} You'll be a woman
+{97904}{97964}All right, Mia.
+{97967}{98056}So listen, I gotta go,|all right ?
+{98154}{98244}Oh, Jesus fucking Christ.
+{98279}{98339}You fu--|Oh, Jesus Christ !
+{98341}{98401}Oh, fuck me.|Fuck me !
+{98404}{98554}Oh-- Come on, girl. We're gettin'|outta here. We gotta walk now.
+{98842}{98932}Don't fuckin' die on me, Mia !
+{98936}{98996}Fuck !
+{99216}{99276}Answer.
+{99279}{99339}Have you got the ring ?
+{99341}{99461}- Why, certainly.|- Join hands, you two lovebirds.
+{99467}{99557}- Please ! Please !
+{99560}{99620}Yes, yes.|Hold hands, you lovebirds.
+{99811}{99871}Fuck you, Lance !|Answer !
+{100030}{100089}Now what do you say ?
+{100091}{100181} I give up !|I'll marry you !
+{100185}{100305}- Lance !|The goddamn phone's ringing !
+{100373}{100433}I can hear it.
+{100435}{100525}I thought you told those|fuckin' assholes never to
+{100529}{100589}Yeah, I told them.
+{100592}{100682}And that is exactly what I'm going|to tell this fucking asshole right now.
+{100748}{100838}Don't you dare strike me !|- Hello.
+{100842}{100902}Lance ! Vincent.
+{100904}{100994}I'm in big fuckin' trouble, man.|I'm coming to your house.
+{100998}{101118}W-Whoa. Whoa. Hold your horses, man.|W-What's the problem ?
+{101123}{101212}- I got this chick,|she's fuckin' O.D.in' on me !
+{101216}{101336}I'm not even joking with you !|Do not be bringing some
+{101341}{101401}- No choice.|- Wh-- She's O.D.in' ?
+{101404}{101494}- She's fuckin' dyin' on me, man !|- Just dandy.
+{101498}{101618}Okay, then you bite|the fuckin' bullet, take her
+{101623}{101713}- Negative !|- This is not my fuckin' problem, man !
+{101717}{101807}You fucked her up,|you fuckin' deal with this !
+{101811}{101901}Uh, are you talkin' to me|on a cellular phone ?
+{101904}{101994}I don't know you.|Who is this ? Don't come here !
+{101998}{102088}I'm hanging up the phone !|Prank caller ! Prank caller !
+{102341}{102401}- What the hell was that ?
+{102467}{102557}Have you lost|your fucking mind ?
+{102560}{102650}- You were talking about drug|shit on a cellular phone !
+{102654}{102714}- You crashed your car|into my fucking house !
+{102717}{102837}Are you deaf ? You are not bringing|this fucked-up bitch into my house !
+{102842}{102932}This &quot;fucked-up bitch&quot;|is Marsellus Wallace's wife.
+{102936}{102996}- Do you know who Marsellus Wallace is ?|- Yeah.
+{102998}{103088}If she croaks on me,|I am a fucking grease spot !
+{103092}{103211}I will be forced to tell him|that you did not help and
+{103216}{103306}Now, come on. Help me, help me.|Pick her up.
+{103341}{103401}- Shit.
+{103467}{103527}Lance !
+{103529}{103589}Shit.
+{103592}{103682}It's 1:30 in the goddamn morning.
+{103686}{103776}What the fuck's going on out here ?
+{103779}{103839}Who's she ?
+{103842}{103932}Go to the fridge and get the thing|with the adrenalin shot.
+{103936}{103996}- What's wrong with her ?|- She's O.D.ing !
+{103998}{104058}- Get her outta here !|- Get the shot !
+{104061}{104151}- Fuck you ! Fuck you too !|- What a fuckin' bitch.
+{104155}{104215}Just keep talking to her,|all right ?
+{104217}{104306}She's gettin' the shot. I'm going|to go get my little black medical book.
+{104310}{104370}What the fuck you need|a medical book for ?
+{104373}{104433}I've never had to give|an adrenalin shot before !
+{104435}{104525}I don't go joy-poppin'|with bubble-gummers !
+{104529}{104619}- Get the shot !|- I am, if you'll let me !
+{104623}{104713}- I ain't stopping you !|- Stop talking to me.
+{104717}{104777}- Get the shot !|- All right !
+{104873}{104963}Hurry up. We're losing her !|- I'm looking as fast as I can !
+{104967}{105027}What's he looking for ?
+{105030}{105120}I don't know. Some book.|- What are you looking for ?
+{105123}{105213}- A little black medical book.|- What are you looking for ?
+{105217}{105336}My little black medical book ! It's|like a textbook they give to nurses.
+{105341}{105401}- I never saw no medical book.|- Trust me. I have one.
+{105435}{105495}- If it's so important,|why don't you keep it with the shot ?
+{105498}{105618}- Stop bothering me !|- While you're looking, that girl's
+{105623}{105683}You're never gonna find|anything in this mess !
+{105686}{105806}- I'm gonna fucking kill you|if you don't shut up !
+{105811}{105931}- Right ? Pig.|- Get the fuck outta my way.
+{105936}{106026}- Quit fuckin' around|and give her the shot.
+{106061}{106151}you take off her shirt|and find her heart.
+{106155}{106245}- Does it gotta be exact ?|- We're giving her a shot in the heart,
+{106249}{106338}I don't know exactly where her heart is.|I think it's right here.
+{106341}{106461}- That's it.|- All right, what I need is
+{106467}{106527}- You got it ?|- What ?
+{106529}{106589}A magic marker.|A felt pen !
+{106592}{106682}A fuckin' black magic marker !|Christ.
+{106686}{106836}- Come on, man. Hurry up !|- Fuck ! Okay, okay.
+{106936}{106996}- Hurry up, man.|- I'll tell you what to do.
+{106998}{107088}- You're gonna give her the shot.|- No, you're gonna give her the shot.
+{107092}{107182}- I ain't giving her the shot.|I never done this before.
+{107186}{107276}I ain't starting now !|You brought her here.
+{107280}{107370}The day I bring an O.D.ing bitch|to your house, then I give her the shot.
+{107374}{107433}Give it to me.|Give me that.
+{107435}{107525}All right, tell me what to do.
+{107529}{107619}Okay, you're giving her an injection|of adrenalin straight to her heart.
+{107623}{107713}- But she's got a breastplate--|You gotta pierce through that.
+{107717}{107807}You gotta bring the needle|down in a stabbing motion.
+{107811}{107901}- I gotta-- I gotta|stab her three times ?
+{107905}{107995}But it's gotta be hard enough to get|through her breastplate into her heart.
+{108030}{108090}Once you do that,|you p-press down on the p-plunger.
+{108092}{108182}- Okay. Then what happens ?|- Kinda curious about that myself.
+{108186}{108276}This ain't no fuckin' joke !|Am I gonna kill her ?
+{108280}{108370}- She's supposed to come out|of it like that. It's--
+{108374}{108433}- All right. Ready ?|- One.
+{108592}{108652}Two.
+{108873}{108933}Three !
+{109374}{109463}If you're all right,|then say something.
+{109467}{109557}Something.
+{109560}{109620}That was fuckin' trippy.
+{109717}{109807}- Ohh.|- Oh, man.
+{110560}{110590}Mia. Mia.
+{110686}{110746}What's--
+{110748}{110838}What's your thoughts on-- on--
+{110842}{110902}on how to handle this ?
+{110905}{110965}What's yours ?
+{111061}{111151}Well, I'm of the opinion|that if Marsellus lived his whole life,
+{111155}{111275}he doesn't need to know|nothing about this incident.
+{111280}{111370}If Marsellus knew|about this incident,
+{111374}{111434}I'd be in as much trouble as you.
+{111436}{111496}I seriously doubt that.
+{111530}{111589}I can keep a secret if you can.
+{111654}{111714}Shake on it ?
+{111873}{111933}Mum's the word ?
+{111936}{111996}Cool.
+{111998}{112148}Now, if you'll excuse me, I'm going|to go home and have a heart attack.
+{112217}{112277}Vincent.
+{112343}{112433}Do you wanna hear|my Fox Force Five joke ?
+{112468}{112528}Sure.
+{112530}{112619}Except I think I'm still|a little too petrified to laugh.
+{112623}{112683}No, you won't laugh|'cause it's not funny.
+{112686}{112806}But if you still wanna hear it,|I'll tell it.
+{112811}{112871}- I can't wait.|- Okay.
+{112873}{112963}Three tomatoes|are walkin' down the street.
+{112967}{113027}Papa Tomato, Mama Tomato|and Baby Tomato.
+{113030}{113150}Baby Tomato starts lagging behind,|and Papa Tomato gets really angry.
+{113155}{113245}Goes back and squishes him|and says,
+{113249}{113309}&quot;Ketchup.&quot;
+{113405}{113465}Ketchup.
+{113593}{113652}See you around.
+{114280}{114370}Oh, that Paddlefoot.|He funny, silly dog.
+{114405}{114465}He think totem pole alive !
+{114468}{114558}He arctic tenderfoot !
+{114562}{114681}That totem pole been here forever !
+{114686}{114746}- Butch ?
+{114748}{114808}One more thing, and we'll start for--
+{114811}{114901}- Butch, stop watching TV for a second.|- Yeah ?
+{114905}{115025}- You've got a special visitor.|- Stand up. Stand up.
+{115092}{115242}Now, do you remember when I told you|your daddy died in a P.O.W. camp ?
+{115249}{115369}Well, this here is Captain Koons.
+{115374}{115464}He was in the P.O.W. camp|with Daddy.
+{115624}{115684}Hello, little man.
+{115687}{115806}Boy, I sure heard|a bunch about you.
+{115811}{115901}See, I was a good friend|of your dad's.
+{115905}{115995}We were in that Hanoi|pit of hell together...
+{115998}{116058}over five years.
+{116061}{116121}Hopefully...
+{116124}{116214}you'll never have to|experience this yourself,
+{116217}{116307}but when two men are in a situation|like me and your dad were...
+{116311}{116401}for as long as we were,
+{116405}{116525}you take on certain responsibilities|of the other.
+{116530}{116590}If it'd been me who'd--
+{116655}{116685}not made it,
+{116687}{116836}Major Coolidge'd be talking right now|to my son Jim.
+{116842}{116932}But the way it turned out,|I'm talking to you.
+{116967}{117027}Butch...
+{117092}{117152}I got something for ya.
+{117343}{117403}This watch I got here...
+{117405}{117555}was first purchased|by your great-grandfather
+{117562}{117682}It was bought in a little general store|in Knoxville, Tennessee.
+{117687}{117806}Made by the first company|to ever make wristwatches.
+{117811}{117871}Up 'til then, people just|carried pocket watches.
+{117905}{117995}It was bought|by Private Doughboy Erine Coolidge...
+{117998}{118058}on the day he set sail for Paris.
+{118061}{118151}This was your|great-grandfather's war watch,
+{118155}{118245}and he wore it every day|he was in that war, and...
+{118249}{118369}when he'd done his duty,|he went home to your great-grandmother,
+{118374}{118494}took the watch off,|put it in an old coffee can,
+{118499}{118619}until your granddad, Dane Coolidge,|was called upon by his country...
+{118624}{118744}to go overseas and fight|the Germans once again.
+{118749}{118838}This time they called it|World War ll.
+{118842}{118992}Your great-grandfather gave this watch|to your granddad for good luck.
+{118998}{119088}Unfortunately, Dane's luck|wasn't as good as his old man's.
+{119092}{119182}Dane was a Marine,|and he was killed...
+{119186}{119306}along with all the other Marines|at the battle of Wake lsland.
+{119311}{119401}Your granddad was facing death.
+{119405}{119465}He knew it.
+{119468}{119588}None of those boys ever|had any illusions about
+{119593}{119683}so three days before the Japanese|took the island,
+{119687}{119837}your granddad asked|a gunner on an Air Force transport,
+{119843}{119932}a man he'd never met before|in his life--
+{119936}{120026}to deliver to his infant son,
+{120030}{120150}who he'd never seen in the flesh,|his gold watch.
+{120155}{120275}Three days later, your granddad|was dead, but Winocki kept his word.
+{120280}{120400}After the war was over,|he paid a visit to your grandmother,
+{120405}{120555}delivering to your infant father|his dad's gold watch.
+{120562}{120592}This watch.
+{120781}{120930}This watch was on your daddy's wrist|when he was shot down over Hanoi.
+{120936}{121056}He was captured,|put in a Vietnamese prison camp.
+{121061}{121181}He knew if the gooks|ever saw the watch,
+{121186}{121276}it'd be confiscated,|taken away.
+{121280}{121400}The way your dad looked at it,|this watch was your birthright.
+{121405}{121525}He'd be damned if any slope's|gonna put their greasy, yellow
+{121530}{121620}so he hid it in one place he knew|he could hide something-- his ass.
+{121624}{121744}Five long years|he wore this watch up his ass.
+{121749}{121869}Then he died of dysentery--|He give me the watch.
+{121874}{121993}I hid this uncomfortable|hunk of metal up my ass two years.
+{121998}{122058}Then...
+{122061}{122181}after seven years,|I was sent home to my family and...
+{122186}{122216}now...
+{122311}{122401}Iittle man,|I give the watch to you.
+{123092}{123122}It's time, Butch.
+{123374}{123464}ln the heavyweight division,
+{123468}{123558}- in the right corner|wearing the blue trunks,
+{123562}{123652}weighing 210 pounds,
+{123655}{123745}Floyd Ray Wilson !
+{123843}{123903}It's official. It's official.
+{123906}{123996}- Wilson is dead !|- Well, Dan,
+{124000}{124059}hands down, the most brutal fight|this city's ever seen.
+{124061}{124181}Coolidge was out of there|faster than I've ever seen
+{124186}{124246}- Do you think he knew Wilson was dead ?|- My guess would be yes.
+{124280}{124370}I could see the frenzy in his|eyes give way to the realization
+{124374}{124464}- I think any man would've|left the ring that fast.
+{124468}{124528}is gonna affect|the world of boxing ?
+{124530}{124650}A tragedy like this can't help|but shake the world of boxing
+{124655}{124775}It's of paramount importance,|during the sad weeks ahead,
+{125812}{125872}Man, you know I didn't--
+{125906}{125966}- Marsellus.|- No, it wasn't. I didn't do it.
+{125968}{126028}I didn't do it.
+{126031}{126121}- How you doing ?|- Great.
+{126125}{126184}I never thanked you|for dinner.
+{126249}{126309}- What you got ?|- He booked.
+{126311}{126401}- His trainer ?|- Says he don't know nothin'.
+{126405}{126495}- I think Butch surprised|his ass same as us.
+{126499}{126619}We wanna know. Take him to|the kennel, sic the dogs on his ass.
+{126624}{126714}We'll find out for goddamn sure|what he knows and what he don't.
+{126718}{126778}Butch's search--|How do you want it done ?
+{126781}{126871}I'm prepared to scour the Earth|for that motherfucker.
+{126874}{126964}If Butch goes to lndochina, I want|a nigger hiding in a bowl of rice...
+{126968}{127028}ready to pop a cap in his ass.
+{127031}{127091}I will take care of it.
+{127405}{127465}Mister.
+{127562}{127622}- Hey, mister.|- What ?
+{127624}{127774}You were in that fight,|the fight on the radio.
+{127781}{127871}- You're the fighter ?|- Whatever gave you that idea ?
+{127874}{127964}No, come on.
+{127968}{128028}You're him.
+{128031}{128091}I know you're him.
+{128156}{128215}Tell me you're him.
+{128218}{128278}I'm him.
+{128311}{128371}You killed the other boxing man.
+{128499}{128559}He's dead ?
+{128562}{128622}The radio said he was dead.
+{128718}{128778}Sorry about that, Floyd.
+{128812}{128872}What does it feel like ?
+{128906}{128936}What does what feel like ?
+{128937}{128997}Killing a man.
+{129062}{129182}Beating another man to death|with your bare hands.
+{129187}{129247}What are you, a weirdo ?
+{129250}{129309}No.
+{129311}{129401}It is a subject|I have much interest in.
+{129468}{129558}You are the first person|I have ever met who has killed somebody.
+{129655}{129715}So ?
+{129718}{129808}- What does it feel like to kill a man ?
+{129843}{129903}I'll tell you what.
+{129906}{130026}Give me one of them cigarettes|you got up there, and I'll
+{130562}{130652}So, Esmarelda...
+{130687}{130807}Villa Lobos--|Is that Mexican ?
+{130812}{130902}The name is Spanish,|but I am Colombian.
+{130906}{130996}- That's some handle|you got there, honey.
+{131000}{131060}And what is your name ?
+{131062}{131122}Butch.
+{131125}{131185}Butch.
+{131187}{131336}- What does it mean ?|- I'm an American, honey.
+{131343}{131403}So, moving right along,
+{131405}{131465}Esmarelda,
+{131468}{131558}what is it you want to know ?
+{131562}{131682}- I want to know what it|feels like to kill a man.
+{131874}{131994}Didn't know he was dead|'til you told me he was dead.
+{132000}{132150}Now that I know he's dead,|you wanna know how I feel about it ?
+{132250}{132370}I don't feel|the least bit bad about it.
+{132687}{132747}What the fuck'd I tell ya ?|Huh ?
+{132749}{132869}As soon as the word got out|the fix was in, man, the odds
+{132874}{132934}I know. I know.|Unbelievable.
+{132937}{133057}Hey, fuck him, Scotty. If he was|a better boxer, he'd still be alive.
+{133062}{133122}If he never|laced up his gloves,
+{133125}{133185}which he never shoulda done in the first|fuckin' place, he'd still be alive.
+{133250}{133370}Yeah, well, who gives a fuck ?|It's over now.
+{133375}{133434}Yeah, well, enough about the poor,|unfortunate Mr. Floyd.
+{133437}{133557}Let's talk about the rich|and prosperous Mr. Butch.
+{133562}{133652}How many bookies did you|lay it around on ?
+{133656}{133716}All eight ?|How long to collect ?
+{133781}{133871}So you'll have it all|by tomorrow night ? No, I understand.
+{133875}{133965}A few stragglers aside.|Oh, fuck, Scotty, that is good news.
+{133968}{134028}That is great news, man.
+{134031}{134151}Yeah. Mm-hmm. No, me and Fabienne|are gonna leave in the morning.
+{134156}{134246}It'll probably take us|a couple days to get down to Knoxville.
+{134250}{134310}Okay, my brother.
+{134312}{134372}You're right.
+{134375}{134435}You're goddamn right.
+{134468}{134558}All right, Scotty, next time I see you,|it'll be on Tennessee time.
+{134562}{134622}Cool, brother.
+{135093}{135153}$45.60.
+{135250}{135310}And, uh,
+{135312}{135432}here's a little something|for the effort.
+{135438}{135527}Now, if anybody asks you who your fare|was tonight, what are you gonna say ?
+{135530}{135590}The truth.
+{135593}{135713}Three well-dressed,|slightly toasted Mexicans.
+{135781}{135841}Bonsoir,|Esmarelda Villa Lobos.
+{135843}{135903}Buenas Noches, Butch.
+{136250}{136310}Whew.
+{136344}{136404}Keep the light off.
+{136406}{136496}- Is that better, Sugar Pop ?|- Oui.
+{136624}{136684}Hard day at the office ?
+{136687}{136747}Pretty hard.
+{136749}{136809}Got in a fight.
+{136812}{136872}Poor baby.
+{136875}{136965}Can you make spoons ?
+{136968}{137058}You know what ?|I was thinkin' about takin' a shower.
+{137062}{137182}- I'm stinkin' like a dog over here.|- I like the way you stink.
+{137187}{137247}Let me take this jacket off.
+{137312}{137432}- I was looking at myself in the mirror.|- Uh-huh.
+{137438}{137468}I wish I had a pot.
+{137531}{137650}You were looking|at yourself in the mirror,
+{137656}{137746}A pot.|A pot belly.
+{137749}{137809}Pot bellies are sexy.
+{137812}{137872}Well, you should be happy,
+{137875}{137935}'cause you have one.
+{137937}{138057}Shut up, fatso.|I don't have a pot.
+{138062}{138152}I have a bit of a tummy,|like Madonna when she did &quot;Lucky Star.&quot;
+{138156}{138216}It's not the same thing.
+{138219}{138339}I didn't know there was|such a difference between
+{138344}{138404}The difference is huge.
+{138406}{138496}Would you like it if I had a pot belly ?
+{138500}{138560}No.
+{138563}{138712}Pot bellies make a man|look either oafish or like a gorilla.
+{138718}{138808}But on a woman|a pot belly's very sexy.
+{138812}{138962}The rest of you is normal-- normal face,|normal legs, normal hips, normal ass--
+{138968}{139088}but with a big,|perfectly round pot belly.
+{139094}{139184}If I had one, I'd wear a T-shirt|two sizes too small...
+{139187}{139247}to accentuate it.
+{139250}{139310}You think men|would find that attractive ?
+{139312}{139402}I don't give a damn|what men find attractive.
+{139406}{139526}It's unfortunate what we find pleasing|to the touch and pleasing to the eye...
+{139531}{139561}is seldom the same.
+{139687}{139777}If you had a pot belly,|I would punch you in it.
+{139781}{139871}- You'd punch me in the belly ?|- Right in the belly.
+{139875}{139935}Ohh ! I'd smother you !
+{139937}{140057}- I'd drop it right on your face|'til you couldn't breathe !
+{140062}{140122}- You'd do that ?|- Yeah.
+{140125}{140185}- Promise ?|- Yeah.
+{140281}{140341}- Mmm.|- Mmm.
+{140406}{140466}Oh.
+{140594}{140654}Did you get everything ?
+{140657}{140716}- Yes, I did.|- Good job, Sugar Pop.
+{140749}{140779}Did everything|go as planned ?
+{140781}{140871}- You didn't listen to the-- Ow !
+{140875}{140935}You didn't listen to the radio ?
+{140937}{141027}I never listen to your fights.|Were you the winner ?
+{141031}{141121}I won, all right.
+{141125}{141185}- Are you still retiring ?|- Sure am.
+{141219}{141279}So it all worked out|in the finish.
+{141313}{141403}We're not at the finish yet, baby.
+{141657}{141747}We're in a lot of danger,|aren't we ?
+{141781}{141871}If they find us,|they'll kill us, won't they ?
+{141937}{142027}But they won't find us,|will they ?
+{142125}{142215}Do you still want me|to go with you ?
+{142250}{142370}I don't want to be a burden|or a nuisance. It's--
+{142563}{142623}Say it.
+{142625}{142715}- Fabienne,
+{142719}{142808}I want you to be with me.
+{142812}{142902}- Forever ?|- Forever and ever.
+{142968}{143028}Do you love me ?
+{143031}{143091}Very, very much.
+{143250}{143340}- Butch.|- Yes ?
+{143375}{143435}Will you give me|oral pleasure ?
+{143500}{143560}Will you kiss it ?
+{143625}{143685}But you first.
+{143688}{143778}- Okay.|- Okay.
+{144062}{144152}Butch.
+{144156}{144246}Mon amour.|L'aventure commence.
+{144719}{144779}I think I cracked a rib.
+{144782}{144901}- Giving me oral pleasure ?|- No, retard, from the fight.
+{144906}{144996}- Don't call me &quot;retard.&quot;|- My name is Fabby.
+{145000}{145060}- My name is Fabienne !|- Stop it.
+{145062}{145122}- Stop it !|- My name is Fabi--
+{145125}{145215}Shut up, fuckhead !|I hate that mongoloid voice.
+{145219}{145309}Okay, okay.|Sorry, sorry, sorry.
+{145313}{145403}- I take it back.
+{145469}{145559}Will you hand me a dry towel,|Miss Beautiful Tulip ?
+{145563}{145683}- Oh, I like that.|I like being called a tulip.
+{145688}{145748}&quot;Tulip&quot; is much better|than &quot;mongoloid.&quot;
+{145751}{145841}I didn't call you a mongoloid.|I called you a retard.
+{145844}{145904}And I took it back.
+{145907}{145966}- Butch ?
+{145968}{146028}Yes, Lemon Pie ?
+{146031}{146121}- Where are we going to go ?|- Well, I'm not sure yet.
+{146156}{146216}Wherever you want.
+{146219}{146279}We're gonna get a lot|of money from this,
+{146313}{146373}but it ain't gonna be|the kind of money...
+{146375}{146465}that we can live like hogs|in the fathouse forever.
+{146469}{146589}I was thinking maybe we could go|down someplace in the South Pacific.
+{146594}{146684}Kind of money we're gonna have's gonna|carry us a long way down there.
+{146688}{146778}- If we wanted,|we could live in Bora Bora ?
+{146782}{146902}And if after a while you didn't|dig that, we could go someplace else.
+{146907}{146966}Maybe Tahiti, Mexico.
+{146968}{146998}But I do not speak Spanish.
+{147031}{147091}Well, you do not speak|Bora-Boran either.
+{147094}{147154}Besides, Mexican's easy.
+{147156}{147246}- &#191; Donde esta el zapateria ?|- What does that mean ?
+{147250}{147310}Where is the shoe store?
+{147313}{147373}- &#191; Donde esta--|- Spit, please.
+{147438}{147528}- &#191; Donde esta el zapateria ?|- Excellent pronunciation.
+{147532}{147592}- Mmm.
+{147594}{147684}You'll be my little mamacita|in no time.
+{147719}{147779}- &#191; Que hora es ?|- &#191; Que hora es ?
+{147782}{147842}- What time is it ?|- What time is it ?
+{147844}{147934}Time for bed.
+{147938}{147998}Sweet dreams, jellybean.
+{148219}{148279}Butch ?
+{148438}{148498}Never mind.
+{148719}{148809}Aah !
+{148813}{148933}Merde ! You startled me.|Did you have a bad dream ?
+{149250}{149370}- What is this you're watching ?|- A motorcycle movie.
+{149375}{149435}I'm not sure the name.
+{149469}{149559}- Are you watching it ?|- In a way.
+{149625}{149745}It's a little early in the morning|for explosions and war.
+{149844}{149964}- What was it about ?|- How should I know ?
+{149970}{150089}- No, imbecile,|what was your dream about ?
+{150094}{150154}I don't remember.
+{150156}{150246}It's really rare|that I remember my dreams.
+{150250}{150340}Well, let's look|at the grumpy man in the morning.
+{150406}{150466} Why don't you get up|and we'll get some breakfast.
+{150469}{150559}One more kiss,|and I'll get up.
+{150625}{150715}- Satisfied ?|- Yep.
+{150719}{150839}- Get up, lazy bones !|- Ohh !
+{150844}{150934}- Ohh. God.
+{150970}{151060}- What time is it ?|- Almost nine in the morning.
+{151063}{151182}- What time does our train arrive ?|- Eleven.
+{151187}{151307}- You know what I'm gonna|have for breakfast ?
+{151313}{151433}I'm gonna order a big plate|of blueberry pancakes...
+{151438}{151498}with maple syrup,
+{151500}{151590}eggs over easy|and five sausages.
+{151594}{151684}Anything to drink with that ?
+{151688}{151778}Wow, that looks nice.
+{151782}{151872}To drink-- A tall glass|of orange juice...
+{151876}{151966}and a black cup of coffee.
+{151970}{152090}- After that, I'm going to|have a slice of pie.
+{152095}{152214}- Any time of the day|is a good time for pie.
+{152219}{152309}Blueberry pie|to go with the pancakes.
+{152313}{152403}And on top, a thin slice|of melted cheese.
+{152406}{152466}Where's my watch ?
+{152594}{152654}It's there.
+{152657}{152747}- No, it's not.|- Have you looked ?
+{152751}{152871}Yes, I've fuckin' looked.|What the fuck do you think I'm doin' ?
+{152876}{152936}You sure you got it ?
+{152938}{152998}Yes.|Bedside table drawer.
+{153001}{153121}- On the little kangaroo ?|- Yes, it was on the little kangaroo.
+{153126}{153215}Yeah, well,|it's not here now.
+{153219}{153279}- Well, it should be.
+{153313}{153403}Yes, it most definitely should be,|but it's not here now !
+{153563}{153683}Fabienne,|where's my father's fucking watch ?
+{153719}{153869}Do you have any idea what he had|to go through to get me that watch ?
+{153876}{153966}I don't have time to go into it,|but he went through a lot.
+{153970}{154120}All this other shit you could've set|on fire, but I specifically reminded
+{154126}{154156}Now think.
+{154157}{154276}- Did you get it ?|- I believe so.
+{154281}{154371}&quot;You believe so&quot; ?|What the fuck does that mean ?
+{154406}{154466}Then I did.
+{154500}{154560}Are you sure ?
+{154594}{154654}No.
+{154719}{154779}Fuck ! Fuck ! Fuck !
+{154782}{154842}Motherfucker !|Motherfuckin'--
+{154907}{154997}Do you know how fucking stupid|you fucking are ?
+{155001}{155061}No !
+{155126}{155186}It's not your fault.
+{155344}{155404}You left it at the apartment.
+{155563}{155683}If you left it at the apartment,|it's not your fault.
+{155751}{155841}I had you bring|a bunch of stuff.
+{155907}{155967}I reminded you about it,
+{155970}{156090}but I didn't illustrate|how personal the watch was to me.
+{156095}{156215}If all I gave a fuck about was|the watch, I shoulda told you that.
+{156220}{156310}You're not a mind reader.
+{156314}{156343}Are you ?
+{156657}{156717}I-- I'm sorry.
+{156719}{156839}Don't be. Just means|I can't have breakfast with you.
+{156844}{156904}Why does it mean that ?
+{157001}{157091}Because I gotta go back to my apartment|and get my watch.
+{157126}{157186}Won't the gangsters|be looking for you there ?
+{157220}{157340}Well, that's what|I'm gonna find out.
+{157345}{157434}If they are, and I don't think|I can handle it,
+{157438}{157498}then I'll split.
+{157500}{157620}I saw your watch. I thought|I brought it. I'm so sorry.
+{157782}{157872}Here's some money.|Go out and get those pancakes.
+{157876}{157936}Have a nice breakfast.
+{157938}{158028}I'll take your Honda. I'll be back|before you can say &quot;blueberry pie.&quot;
+{158032}{158122}Blueberry pie.
+{158126}{158186}Maybe not that fast.
+{158189}{158279}- But pretty fast. Okay ?|- Okay.
+{158282}{158342}- Bye.|- Bye.
+{158345}{158434}Shit ! Of all the fuckin' things|she could fuckin' forget,
+{158438}{158498}she forgets my father's watch !
+{158500}{158560}I specifically reminded her--
+{158563}{158623}bedside table, on the kangaroo.
+{158625}{158715}I said the words:|&quot;Don't forget my father's watch.&quot;
+{159189}{159279}Visit the Jackrabbit Slim's|nearest you...
+{159594}{159714}i EI burro !
+{163439}{163469}Lookin' good, Butch.
+{168564}{168624} lf I were walkin'|in your shoes
+{168845}{168995} Countin' flowers on the wall|That don't bother me at all
+{169001}{169121} Playin' solitaire 'til dawn|with a deck of fifty-one
+{169126}{169216}That's how you're gonna|beat 'em, Butch.
+{169220}{169310}- Smokin' cigarettes and|watchin' Captain Kangaroo
+{169314}{169374} Now don't tell me
+{169439}{169529} Countin' flowers on the wall
+{169533}{169653} That don't bother me at all
+{169658}{169808} Playin' solitaire 'til dawn|with a deck of fifty-one
+{169814}{169963} Smokin' cigarettes|and watchin' Captain Kangaroo
+{169970}{170030} Now don't tell me
+{170032}{170122} I've nothin' to do
+{170126}{170186} It's good to see you|I must go
+{170189}{170249} I know I look a fright
+{170251}{170341}- Anyway my eyes|- Motherfucker.
+{170345}{170405}- Are not accustomed--|- Uhh !
+{170658}{170718}- Do you think he's dead ?|- He's dead.
+{170720}{170780}- Oh, my God.|- He's dead.
+{171095}{171185}If you need someone to go|to court, I'll be glad to help.
+{171220}{171280}He hit you, then he|crashed into that car.
+{171283}{171343}- Who ?|- Him.
+{171470}{171530}I'll be damned.
+{171877}{171937}- Ohh !
+{172001}{172091}- Aaaah ! I'm shot !
+{172283}{172373}- Sally ! Sally !
+{172502}{172562}- Aaah !
+{172627}{172687}Motherfucker !
+{172752}{172842}- Can I help you with somethin' ?|- Shut the fuck up.
+{172877}{172937}Now you just wait|a goddamn minute, now !
+{172939}{172999}What the fuck you up to ?
+{173002}{173091}- Come here, motherfucker !
+{173095}{173185}- You feel that sting, huh, big boy ?
+{173189}{173249}That's pride|fuckin' with you, see ?
+{173251}{173341}You gotta fight through that shit !| Huh ?
+{173345}{173435}- You'd better kill me--|- Yeah, somebody's gonna get killed.
+{173439}{173499}Somebody's gonna get|their motherfuckin' head blown to--
+{173533}{173593}- Hold it right there, goddamn it.
+{173595}{173715}- This ain't none|of your business, mister.
+{173720}{173780}- Toss the weapon.|- You don't understand, man.
+{173783}{173843}Toss the weapon.
+{173908}{173998} It's time
+{174002}{174091}- To find love|- Take your foot off the nigger,
+{174095}{174155}- put your hand behind your head,
+{174157}{174217}approach the counter right now.
+{174220}{174280}- This motherfucker's trying to...
+{174283}{174313}kill me.
+{174314}{174434}Shut up.|Keep comin'. Come on.
+{174502}{174592} lf love
+{174595}{174655} ls shelter
+{175189}{175219}Zed. Maynard.
+{175283}{175343}Yeah, the spider|just caught a couple flies.
+{175376}{175466} Whoa, my angel
+{175533}{175623} Down to you
+{175627}{175627} Down to you
+{176783}{176873}Nobody kills anybody|in my place of business...
+{176877}{176967}- except me or Zed.
+{177033}{177093}That's Zed.
+{177470}{177560}- I thought|you said you waited for me.
+{177721}{177781}Then how come they're all beat up ?
+{177783}{177933}They did that to each other, man.|They came in fightin'.
+{177940}{178060}Now, this 'un right here,|he was gonna shoot that one.
+{178065}{178155}Is that right ?|You gonna shoot him, boy ?
+{178158}{178247}Huh ?
+{178314}{178374}Hey, is Grace|all right out front ?
+{178408}{178498}- Yeah. It ain't Tuesday, is it ?|- No, it's Thursday.
+{178502}{178562}- She oughta be fine.|- Mmm.
+{178627}{178747}Well, bring out the Gimp.
+{178783}{178843}I think the Gimp's sleepin'.
+{178846}{178966}Then I guess you'll just have to go|wake him up now, won't you ?
+{180159}{180219}Get up.
+{180595}{180655}Get down.
+{180971}{181061}Which one of 'em|you wanna do first ?
+{181065}{181155}- I ain't for sure yet.
+{181284}{181343}Eenie-meenie-minie-mo,
+{181345}{181435}catch a nigger...
+{181439}{181499}by his toe.
+{181502}{181622}If he hollers, let him go.
+{181627}{181747}Eenie-meenie-minie-mo.
+{181846}{181936}My mother said...
+{181940}{182030}pick the perfect one,
+{182033}{182123}and... you... are...
+{182190}{182220}it.
+{182315}{182404}- Guess that means you, big boy.|- Fuck you !
+{182408}{182468}- Shh.
+{182533}{182653}- You wanna do it in here ?|- No, let's take him back
+{182658}{182748}Sounds good to me.
+{183470}{183560}You keep an eye on this 'un.
+{184346}{184465}Yeah !
+{184533}{184653}Now ! Go ! Come on, motherfucker !
+{184658}{184748}- Now, motherfucker !|Aaah !
+{184752}{184872}- Come on ! Yeah !
+{185065}{185155}- Yeah !
+{185378}{185438}- Ohh !|- Yeah !
+{185503}{185592}- Yeah ! Yeah !
+{185658}{185718}Yeee !|Yeeee-hah !
+{186346}{186406}Yeah !
+{187252}{187342}Come on !|Get down there !
+{187440}{187530}Aaah !|Do it ! Yeah !
+{188033}{188123}Yeah ! Yeah !
+{188597}{188686}- Shut the fuck up !
+{188752}{188812}Fuck him !
+{188877}{188937}Come on !
+{189033}{189153}- Fuck him. Yeah.
+{189440}{189530}Aaaaah !
+{189659}{189718}- Aaaaah !
+{190065}{190125}You want that gun,|don't ya, Zed ?
+{190190}{190250}Huh ?
+{190284}{190314}Go ahead and pick it up.
+{190409}{190469}Go ahead. Pick it up.
+{190534}{190624}Come on--|Thatta boy !
+{190659}{190778}I want you to pick it up, Zed.
+{190908}{190998}- Step aside, Butch.
+{191378}{191468}Fuck !
+{191534}{191624}- You okay ?
+{191659}{191719}No, man.
+{191722}{191811}I'm pretty fuckin' far from okay.
+{192159}{192249}- What now ?
+{192315}{192375}&quot;What now&quot; ?
+{192409}{192499}- Let me tell you what now.
+{192534}{192594}I'm gonna call a couple of hard,|pipe-hittin' niggers...
+{192597}{192687}to go to work|on the homes here...
+{192690}{192780}with a pair of pliers|and a blowtorch.
+{192846}{192936}You hear me talkin',|hillbilly boy ?
+{192971}{193031}I ain't through with you|by a damn sight !
+{193033}{193123}I'm gonna get medieval|on your ass.
+{193221}{193311}I meant what now|between me and you.
+{193471}{193531}Oh, that &quot;what now.&quot;
+{193597}{193687}- I tell you what now|between me and you.
+{193753}{193842}There is no me and you.
+{193877}{193937}Not no more.
+{194033}{194093}So, are we cool ?
+{194127}{194187}Yeah, we cool.
+{194190}{194250}- Two things.
+{194315}{194405}Don't tell nobody about this.
+{194440}{194560}This shit is between me, you...
+{194565}{194685}and Mr. &quot;Soon-To-Be-Livin'|The-Rest-Of-His-Short-Ass-
+{194690}{194750}rapist here.
+{194784}{194874}It ain't nobody else's business.
+{194878}{194937}Two:
+{194940}{195030}You leave town tonight.|Right now.
+{195096}{195126}And when you gone,
+{195127}{195187}you stay gone,
+{195190}{195280}- or you be gone.
+{195284}{195374}You lost all your L.A. privileges.|Deal ?
+{195440}{195500}Deal.
+{195534}{195594}Get your ass outta here.
+{196378}{196438}Oh, shit.
+{197440}{197500}Fabienne !
+{197534}{197624}Fabienne !
+{197659}{197719}Fabienne !|Come on, baby.
+{197722}{197842}- Come on. Get your shit.|We gotta go right now.
+{197847}{197937}- What about our bags ?|- Fuck the bags; if we don't split
+{197941}{198001}- I'll be downstairs.|- Is everything well ?
+{198003}{198122}- Just come on ! No talking now !|- Are we in danger ?
+{198221}{198281}Come on, honey !
+{198346}{198406}Where did you get|this motorcycle ?
+{198409}{198559}- It's not a motorcycle, baby.|It's a chopper. Let's go.
+{198565}{198655}I'm sorry, baby,|I had to crash that Honda.
+{198659}{198749}Come on. Let's go,|let's go, let's go.
+{198878}{198968}- You're hurt ?|- No, no, I might've broken
+{199003}{199062}Come on. Hop on.|Baby, please, we--
+{199065}{199155}Honey, we gotta hit|the fuckin' road ! Get on !
+{199221}{199311}- Oh, baby, I'm sorry.|Come here, come here.
+{199315}{199375}I'm sorry. Mmm.
+{199378}{199498}- I'm so sorry.|- You were gone so long, I started
+{199503}{199593}I didn't mean to worry you.|Everything's fine.
+{199597}{199657}- How was your breakfast ?|- It was good.
+{199659}{199719}Did you get|the blueberry pancakes ?
+{199722}{199812}They didn't have blueberry; I had to get|buttermilk. Are you sure you're okay ?
+{199816}{199906}Since I left you,|this has been, without a doubt,
+{199909}{199999}the single weirdest|fuckin' day of my life--
+{200035}{200065}Gotta go. Come on.
+{200066}{200155}Butch, whose motorcycle|is this ?
+{200159}{200249}- It's a chopper, baby.|- Whose chopper is this ?
+{200253}{200313}- Zed's.|- Who's Zed ?
+{200315}{200375}Zed's dead, baby.|Zed's dead.
+{200878}{200938}Yes, you did, Brett !
+{200941}{201031}You tried to fuck him,|and Marsellus Wallace
+{201035}{201125}by anybody except Mrs. Wallace.
+{201128}{201217}- Oh, God, please. I don't wanna die.|- You read the Bible, Brett ?
+{201221}{201311}- Yes !|- Well, there's this passage
+{201315}{201375}Sorta fits the occasion.
+{201378}{201468}Ezekiel 25:17.
+{201471}{201621}&quot;The path of the righteous man|is beset on all sides...
+{201628}{201688}by the inequities|of the selfish...
+{201690}{201780}- and the tyranny of evil men.
+{201784}{201904}Blessed is he who, in the name|of charity and good will,
+{201909}{201999}shepherds the weak|through the valley of darkness,
+{202003}{202093}for he is truly|his brother's keeper...
+{202097}{202186}and the finder|of lost children.
+{202190}{202310}And I will strike down upon thee|with great vengeance...
+{202315}{202375}and furious anger...
+{202378}{202498}those who attempt to poison|and destroy My brothers.
+{202503}{202623}And you will know|My name is the Lord...
+{202628}{202718}when I lay My vengeance|upon thee.&quot;
+{202972}{203032}I'm fucked.|Oh, fuck. Oh, fuck.
+{203035}{203125}- ls he a friend of yours ?|- Oh, goddamn. Goddamn.
+{203128}{203217} Hmm ? Oh.|Vincent, Marvin. Marvin, Vincent.
+{203221}{203311}- Better tell him to shut up.|He's gettin' on my nerves.
+{203315}{203405}Marvin. Marvin !|I'd knock that shit off if I was you.
+{203409}{203529}- Die, you motherfuckers ! Die !
+{204378}{204468}Why the fuck didn't you tell us|somebody was in the bathroom ?
+{204503}{204563}Slip your mind ? Did you forget|that someone was in there...
+{204565}{204625}with a goddamn hand cannon ?
+{204628}{204748}You see the size of that gun he fired|at us ? It was bigger than him.
+{204909}{204969}We should be fuckin' dead, man.
+{204972}{205032}I know.|We was lucky.
+{205035}{205125}No, no, no, no.|That shit wasn't luck.
+{205128}{205248}- Yeah, maybe.|- This was divine intervention.
+{205254}{205313}You know what|divine intervention is ?
+{205503}{205563}I think so.
+{205565}{205655}That means that God came down|from Heaven and stopped the bullets.
+{205659}{205719}That's right.|That's exactly what it means.
+{205753}{205813}God came down from Heaven|and stopped these motherfuckin' bullets.
+{205878}{205938}I think it's time for us|to leave, Jules.
+{205941}{206001}Don't do that.|Don't fuckin' blow this shit off !
+{206003}{206123}- What just happened here|was a fuckin' miracle !
+{206128}{206188}Wrong ! Wrong.|This shit doesn't &quot;just happen.&quot;
+{206222}{206312}Do you want to continue|this theological discussion in a car...
+{206316}{206375}or in a jailhouse|with the cops ?
+{206378}{206468}We should be fuckin' dead,|my friend !
+{206472}{206592}What happened here was a miracle, and I|want you to fucking acknowledge it !
+{206597}{206747}All right, it was a miracle.|Can we go now ?
+{206941}{207031}Let's go, nigger !|Come on ! Shit.
+{207097}{207157}You ever seen that show Cops ?
+{207160}{207250}I was watching it one time,|and there was this cop on,
+{207254}{207374}and he was talkin' about this|gunfight he had in the hallway
+{207379}{207468}He just unloaded on this guy and nothin'|happened. He didn't hit nothin'.
+{207472}{207562}Okay ? It was just|him and this guy.
+{207565}{207655}I mean, you know, it's,|it's freaky, but it happens.
+{207659}{207809}You wanna play blind man,|go walk with the shepherd,
+{207816}{207906}- What the fuck does that mean ?|- It means that's it for me.
+{207910}{208000}From here on in, you can|consider my ass retired.
+{208003}{208063}- Jesus Christ. Goddamn it.|- Don't blaspheme.
+{208066}{208156}- I said, don't do that !|- Hey, why are you fuckin'
+{208160}{208250}Look, I'm tellin' Marsellus today--|I'm through.
+{208254}{208344}- Why don't you tell him|at the same time why ?
+{208347}{208466}- And I bet you $10,000|he laughs his ass off.
+{208472}{208562}Marvin, what do you make of all this ?
+{208565}{208625}Man, I don't even|have an opinion.
+{208628}{208748}You gotta have an opinion. You think|God came down from Heaven and stopped--
+{208753}{208813}- What the fuck's happenin' ?
+{208816}{208876}- Aw, shit, man !|- Aw, man !
+{208878}{208968}- Oh, man, I shot Marvin in the face.|- Why the fuck'd you do that ?
+{208972}{209032}I didn't mean it.|It was an accident.
+{209035}{209125}- Man, I seen some crazy-ass|shit in my time, but this--
+{209128}{209218}It was an accident. We probably|went over a bump or somethin'.
+{209222}{209252}The car ain't hit|no motherfuckin' bump.
+{209285}{209375}I didn't mean to shoot|the son of a bitch. The gun went off.
+{209379}{209468}Look at this fuckin' mess ! We're on|a city street in broad daylight here !
+{209472}{209562}- I don't believe it !|- Well, believe it now, motherfucker !
+{209565}{209655}We gotta get this car off|the road. Cops notice shit
+{209659}{209749}- Just take it to|a friendly place, that's all !
+{209753}{209843}Marsellus ain't got|no friendly places in the Valley.
+{209847}{209937}- Well, Jules, this ain't|my fuckin' town, man !
+{209941}{210001}- What you doing ?|- I'm calling my partner in Toluca Lake.
+{210003}{210123}-Where's Toluca Lake ?|-Over the hill here, by Burbank Studios.
+{210129}{210219}If Jimmie's ass ain't home,|I don't know what the fuck we gonna do,
+{210222}{210312}'cause I ain't got|no other partners in 818.
+{210316}{210376}Jimmie, how you doin', man ?|It's Jules. Just listen up, man.
+{210410}{210500}Me and my homeboy are in a car, and we|gotta get it off the road, pronto.
+{210504}{210593}I need to use your garage|for a couple hours.
+{210628}{210718}We gotta be real fuckin' delicate|with this Jimmie situation.
+{210722}{210812}He's one remark away|from kickin' our asses out the door.
+{210816}{210906}- If he does, what do we do ?|- We ain't leavin'
+{210910}{211000}but I don't want it to reach|that pitch-- Jimmie's a friend.
+{211003}{211093}You don't come into your friend's house|and start tellin' him what's what.
+{211097}{211157}Just tell him|not to be abusive.
+{211160}{211220}He kinda freaked out back there|when he saw Marvin.
+{211222}{211312}Put yourself in his position--|It's 8:00 in the morning,
+{211316}{211376}He wasn't expectin' this shit.
+{211379}{211469}We gotta remember here|who's doin' who a favor.
+{211473}{211592}If that favor means I gotta|take shit, he can stick that
+{211597}{211687}- Fuck, nigger, what the fuck'd|you just do to his towel, man ?
+{211691}{211781}- You're supposed to wash 'em first !|- You watched me wash 'em.
+{211784}{211904}- I watched you get 'em wet.|- I was washin' 'em.
+{211910}{211970}Maybe if he'd had Lava|I coulda done a better job.
+{211972}{212032}I used the same|fuckin' soap you did,
+{212035}{212095}and when I finished, the towel|didn't look like no goddamn maxi-pad !
+{212129}{212189}What if he was to come in here|and see his towel like this ?
+{212191}{212311}It's shit like this that's gonna bring|this situation to a head, man !
+{212316}{212436}Look, I ain't threatenin' you|or nothin', all right ?
+{212441}{212561}You know I respect you and all.|But just don't put me
+{212566}{212655}All right.|Fine. Fine.
+{212659}{212749}Ask me nice like that,|no problem.
+{212753}{212813}Just go handle your friend.|Go ahead. I don't care.
+{212878}{212968}Mmm ! Goddamn, Jimmie !
+{212972}{213032}This some serious|gourmet shit.
+{213035}{213095}Me and Vincent|would've been satisfied...
+{213097}{213157}with some freeze-dried|Taster's Choice.
+{213160}{213220}Right ?
+{213222}{213312}And he springs this|serious gourmet shit on us.
+{213316}{213376}- What flavor is this ?|- Knock it off, Julie.
+{213379}{213499}- What ?|- I don't need you to tell me
+{213504}{213564}I'm the one who buys it.|I know how good it is.
+{213566}{213626}When Bonnie goes shopping,|she buys shit.
+{213629}{213748}I buy the gourmet expensive stuff 'cause|when I drink it, I wanna taste it.
+{213753}{213843}But you know what's on|my mind right now ? It ain't
+{213847}{213937}It's the dead nigger|in my garage.
+{213941}{214031}- Jimmie, don't even worry--|- Don't tell me about anything.
+{214035}{214095}When you came pulling in here,
+{214097}{214187}did you notice the sign|on the front of my house that said,
+{214191}{214281}- You know I ain't seen no--|- Did you notice the sign on
+{214285}{214345}that said,|&quot;Dead Nigger Storage&quot; ?
+{214348}{214438}No. I didn't.
+{214441}{214531}- You know why you didn't|see that sign ?
+{214535}{214655}'Cause it ain't there,|'cause storing dead niggers
+{214660}{214749}- We're not gonna store|the motherfucker--
+{214753}{214873}that if Bonnie comes home and|finds a dead body in her house,
+{214910}{215000}No marriage counselor.|No trial separation.
+{215003}{215093}Okay ? And I don't wanna|get fuckin' divorced !
+{215097}{215247}Man, you know, fuck, I wanna help you,|but I don't wanna lose my wife doin' it.
+{215254}{215314}Jimmie, Jimmie,|she ain't gonna leave you.
+{215316}{215436}Don't fuckin' &quot;Jimmie&quot; me, Jules !|Okay ? Don't fuckin' &quot;Jimmie&quot; me.
+{215441}{215561}There's nothin' you're gonna|say that's gonna make me forget
+{215660}{215779}Now, look, you know, she comes home|from work in about an hour and a half.
+{215784}{215874}The graveyard shift|at the hospital.
+{215878}{215968}You gotta make some phone calls ?|You gotta call some people ?
+{215972}{216092}Well, then, do it, and then get the fuck|out of my house before she gets here.
+{216097}{216187}That's Kool and the Gang.|We don't wanna fuck your shit up.
+{216191}{216281}All I wanna do is call my people|and get 'em to bring us in.
+{216285}{216375}You're fucking my shit up|right now !
+{216379}{216469}You're gonna fuck my shit up|big time if Bonnie comes home.
+{216473}{216563}Do me that favor, all right ?|The phone is in my bedroom.
+{216567}{216657}Well, say she comes home.
+{216660}{216720}What do you think she'll do ?
+{216784}{216844}Oh, no fuckin' shit she'll freak.
+{216847}{216907}That ain't no kinda answer.
+{216910}{217000}I mean, you know, I don't.|How much ? A lot or a little ?
+{217003}{217093}You got to appreciate|what an explosive element...
+{217097}{217157}this Bonnie situation is.
+{217160}{217280}She comes home from a hard day's work,|finds a bunch of gangsters
+{217285}{217345}doing a bunch of gangster shit,
+{217348}{217438}there ain't no tellin'|what she's liable to do.
+{217504}{217564}Yeah, I grasp that, Jules.
+{217567}{217627}All I'm doing is|contemplating the ifs.
+{217629}{217719}I don't wanna hear about|no motherfuckin' ifs !
+{217723}{217842}All I want to hear from your ass|is, &quot;You ain't got no problem,
+{217847}{217967}Chill them niggers out|and wait for the cavalry,
+{217972}{218062}You ain't got no problem, Jules.
+{218066}{218126}I'm on the motherfucker.
+{218129}{218279}Chill them niggers out and wait for|the Wolf, who should be coming directly.
+{218285}{218375}You sendin' the Wolf ?
+{218379}{218439}Oh, you feel better,|motherfucker ?
+{218441}{218501}Shit, yeah, negro !
+{218504}{218594}That's all you had to say !
+{218598}{218688}- She the hysterical type ?
+{218692}{218782}- When is she due ?
+{218786}{218845}Mm-hmm.
+{218847}{218907}Give me|the principals' names again.
+{218910}{218970}Place your bets.
+{219003}{219123}- Jules. Mm-hmm.|- Cards, please.
+{219129}{219159}Vincent.
+{219316}{219376}Jimmie.
+{219410}{219470}Bonnie. Mm-hmm.
+{219629}{219719}It's thirty minutes away.|I'll be there in ten.
+{220222}{220312}You're... Jimmie, right ?|This is your house ?
+{220316}{220436}- It sure is.|- I'm Winston Wolf. I solve problems.
+{220441}{220531}- Good. We got one.|- So I heard. May I come in ?
+{220535}{220595}Uh, yeah. Please do.
+{220598}{220688}You must be Jules.|Which would make you... Vincent.
+{220692}{220782}Let's get down|to brass tacks, gentlemen.
+{220786}{220846}If I was informed correctly, the clock|is ticking. Is that right, Jimmie ?
+{220848}{220908}Uh, one hundred percent.
+{220911}{221030}- Your wife Bonnie comes home|at 9:30 in the a.m., correct ?
+{221035}{221185}I was led to believe if she|comes home and finds us here,
+{221191}{221311}- She wouldn't at that.|- That gives us 40 minutes
+{221316}{221406}which, if you do what I say,|when I say it, should be plenty.
+{221410}{221530}Now, you got a corpse|in a car, minus a head,
+{221786}{221846}- Jimmie.|- Uh-huh.
+{221848}{221938}Do me a favor, will ya ? Thought I|smelled some coffee back there.
+{221942}{222031}- Would you make me a cup ?|- Uh, yeah, sure.
+{222097}{222187}Oh, uh, um,|how do you take it ?
+{222191}{222251}Lotsa cream, lotsa sugar.
+{222316}{222406}About the car, is there anything|I need to know ? Does it stall ?
+{222410}{222530}Does it smoke ? Does it make|a lot of noise ? ls there gas in it ?
+{222535}{222625}- Aside from how it looks,|the car's cool.
+{222629}{222719}Don't get me on the road and I find out|the brake lights don't work.
+{222723}{222843}- As far as I know,|the motherfucker's tip-top.
+{222848}{222908}Let's go back|to the kitchen.
+{223097}{223187}- Here you go, Mr. Wolf.|- Thank you, Jimmie.
+{223316}{223376}Mmm.
+{223410}{223470}Okay, first thing.|You two.
+{223473}{223563}Take the body,|stick it in the trunk.
+{223567}{223657}This looks to be|a pretty domesticated house.
+{223660}{223780}- That would lead me to believe|you got cleansers and shit.
+{223786}{223876}Good. What I need you two fellas to do|is take those cleaning products...
+{223879}{223999}and clean the inside of the car--|I'm talkin' fast, fast, fast.
+{224005}{224124}Go in the back seat, scoop up all|those little pieces of brain and skull.
+{224129}{224219}Get it out of there.|Wipe down the upholstery.
+{224222}{224282}It don't need to be spick-and-span.|You don't need to eat off it.
+{224316}{224436}Just give it a good once-over.|What you need to take care of
+{224441}{224561}The pools of blood that have collected,|you gotta soak that shit up.
+{224567}{224627}We need to raid|your linen closet.
+{224629}{224719}I need blankets,|I need comforters, quilts, bedspreads.
+{224723}{224843}The thicker the better,|the darker the better.
+{224848}{224998}We'll need to camouflage the front seat|and back seat and floorboards...
+{225005}{225065}with quilts and blankets,
+{225067}{225186}so if a cop starts stickin'|his big snout in the car,
+{225191}{225251}but at a glance the car|will appear to be normal.
+{225254}{225314}Jimmie, lead the way.|Boys, get to work.
+{225316}{225376}&quot;Please&quot; would be nice.
+{225441}{225501}- Come again ?|- I said, a &quot;please&quot; would be nice.
+{225567}{225687}Get it straight, buster.|I'm not here to say please.
+{225754}{225814}And if self-preservation|is an instinct you possess,
+{225817}{225907}you'd better fuckin' do it|and do it quick.
+{225911}{226031}I'm here to help. If my help's|not appreciated, lotsa luck, gentlemen.
+{226036}{226126}No, Mr. Wolf, it ain't like that;|your help is definitely appreciated.
+{226130}{226219}Mr. Wolf, listen. I don't|mean disrespect, okay ? I respect you.
+{226222}{226312}I just don't like people|barkin' orders at me.
+{226316}{226406}If I'm curt with you,|it's because time is a factor.
+{226410}{226530}I think fast, I talk fast,|and I need you guys to act fast
+{226535}{226625}So pretty please, with sugar on top,|clean the fuckin' car.
+{226786}{226876}Don't be lookin' at me like that,|all right ? I can feel your look.
+{226973}{227033}It's a 1974 Chevy Nova.
+{227098}{227158}Green.
+{227222}{227312}Nothin' except for|the mess inside.
+{227379}{227439}Mmm, about 20 minutes.
+{227473}{227533}Nobody who'll be missed.
+{227598}{227688}You're a good man, Joe.|Thanks a bunch.
+{227723}{227783}- How we comin', Jimmie ?|- Pretty good.
+{227786}{227876}- I got it all here, but, uh,
+{227879}{227999}- Mr. Wolf,|you gotta understand something.
+{228005}{228095}Okay. You gotta|understand something, uh, Winston.
+{228098}{228158}Uh-- Uh, no,|thank you.
+{228161}{228250}Uh, this is|our best linen here,
+{228254}{228344}and it's, uh--|it was a wedding present...
+{228348}{228408}from my Uncle Conrad|and my Aunt Ginny.
+{228410}{228560}- They're not with us anymore.|I wanna help--
+{228567}{228627}- If you don't mind.|- No, no, please. Go ahead.
+{228692}{228842}Your Uncle Conrad and Aunt Ginny,|were they millionaires ?
+{228879}{228939}No.
+{228942}{229002}Well, your Uncle Marsellus is.
+{229005}{229095}And I'm positive that if|Uncle Conrad and Aunt...
+{229098}{229188}- Ginny.|- Ginny were here,
+{229192}{229311}they would furnish you|with a whole bedroom set,
+{229316}{229406}which your Uncle Marsellus|is more than happy to do.
+{229535}{229655}I like oak myself.|That's what I have in my bedroom.
+{229692}{229752}How about you, Jimmie ?
+{229786}{229846}You an oak man ?
+{229879}{229939}Oak's nice.
+{230098}{230218}Oh, man, I will never|forgive your ass for this shit.
+{230224}{230284}This is some fucked-up,|repugnant shit.
+{230286}{230405}Jules, did you ever hear the philosophy|that once a man admits he is wrong...
+{230410}{230470}that he is immediately forgiven|for all wrongdoings ?
+{230473}{230563}Get the fuck out my face|with that shit !
+{230567}{230657}The motherfucker that said|that shit never had to pick up
+{230660}{230780}- on account of your dumb ass.|- I got a threshold, Jules,
+{230786}{230876}Right now, I'm a fuckin' race car,|and you got me in the red.
+{230879}{230999}I'm just sayin' it's fuckin' dangerous|to have a race car in the fuckin' red.
+{231005}{231065}That's all.|I could blow.
+{231067}{231127}- Oh, you ready to blow ?|- Yeah.
+{231130}{231190}Well, I'm a mushroom-cloud-layin'|motherfucker, motherfucker.
+{231192}{231282}Every time my fingers touch brain,|I'm Superfly T.N.T.
+{231286}{231345}I'm the Guns of the Navarone.
+{231348}{231438}In fact, what the fuck|am I doin' in the back ?
+{231441}{231531}You're the motherfucker should be on|brain detail ! We're fuckin' switchin'.
+{231535}{231625}I'm washin' windows, and you're|pickin' up this nigger's skull !
+{231911}{231971}Fine job, gentlemen.
+{232005}{232065}You may get out of this yet.
+{232098}{232158}I can't believe|this is the same car.
+{232161}{232251}Well, let's not start suckin'|each other's dicks quite yet.
+{232255}{232375}Phase one is complete-- Clean the car--|which moves us right along to Phase two:
+{232380}{232439}Clean you two.
+{232473}{232533}Strip.
+{232535}{232655}- All the way ?|- To your bare ass.
+{232660}{232750}Quickly, gentlemen.|We got about 15 minutes...
+{232754}{232814}before Jimmie's better half|comes pulling into the driveway.
+{232848}{232908}Goddamn, this morning air|is some chilly shit.
+{232911}{232971}Are you sure this is|absolutely necessary ?
+{232973}{233033}- You know what you two look like ?|- What ?
+{233036}{233156}Like a couple of guys|who just blew off somebody's head.
+{233161}{233251}Strippin' off those bloody rags|is absolutely necessary.
+{233380}{233439}Toss 'em in Jimmie's garbage bag.
+{233442}{233592}Don't do nothin' stupid,|like leavin' this shit out front
+{233598}{233718}Don't worry, we're taking it with us.|Jim, the soap.
+{233754}{233814}- Vincent.|- Okay, gentlemen.
+{233817}{233907}You both been to County before,|I'm sure. Here it comes.
+{233911}{234001}- Goddamn ! The water's fuckin' cold !|- Yo ! Yo ! Yo !
+{234005}{234095}Better you than me, gentlemen.
+{234130}{234190}- Don't be afraid of the soap.|Spread it around.
+{234192}{234282}- Get 'em there a little bit.|Vincent's hair.
+{234286}{234376}- Come on. Do it, goddamn it ! Do it !|- Uh, um--
+{234411}{234470}Towel.
+{234786}{234876} You're dry enough.|Toss 'em their clothes.
+{234879}{234969}Perfect.
+{234973}{235093}Perfect. We couldn't have|planned this better.
+{235098}{235158}You guys look like--
+{235161}{235221}What do they look like,|Jimmie ?
+{235224}{235314}- Dorks. They look like|a couple of dorks.
+{235349}{235439}- Ha-ha-ha. They're your|clothes, motherfucker.
+{235443}{235532}Come on, gentlemen.|We're laughing our way
+{235535}{235565}Don't make me beg.
+{235661}{235781}Okay, gentlemen, let's get|our rules of the road straight.
+{235786}{235876}We're going to a place|called Monster Joe's Truck and Tow.
+{235879}{235969}Monster Joe and his daughter Raquel|are sympathetic to our dilemma.
+{235973}{236033}The place is North Hollywood,
+{236036}{236156}so a few twists and turns aside,|we'll be goin' up Hollywood Way.
+{236161}{236251}Now, I'll drive the tainted car.|Jules, you ride with me.
+{236286}{236346}Vincent, you follow|in my Acura.
+{236349}{236469}Now, if we come across the path|of any John Q. Laws,
+{236474}{236563}- nobody does a fuckin' thing|'til I do something.
+{236567}{236657}- What did I say ?|- Don't do shit unless.
+{236661}{236721}- Unless what ?|- Unless you do it first.
+{236723}{236813}Spoken like a true prodigy.
+{236817}{236907}How about you, Lash LaRue ?|Can you keep your spurs
+{236911}{237031}The gun went off. I don't know why.|I'm cool. I promise you.
+{237036}{237126}Fair enough. Now, I drive real|fuckin' fast, so keep up.
+{237130}{237190}If get my car back|any different than I gave it,
+{237192}{237282}Monster Joe's gonna be|disposing of two bodies.
+{237411}{237471}Outta my way, Rex.
+{237505}{237565}- We cool ?|- Like it never happened.
+{237598}{237688}- All right.|- Boys, this is Raquel.
+{237692}{237782}Someday all this will be hers.
+{237786}{237876}Hi. So, what's|with the outfits ?
+{237880}{237970}- You guys going to|a volleyball game or something ?
+{237973}{238033}I'm takin' milady|out for breakfast.
+{238036}{238126}Maybe I could drop you two off.|Where do you live ?
+{238130}{238160}- Redondo.|- Inglewood.
+{238161}{238281}It's--|It's your future. I--
+{238286}{238346}I see a--|a cab ride.
+{238380}{238440}Move outta the sticks, fellas.|Say good night, Raquel.
+{238443}{238533}- Good night, Raquel.|- I'll see you guys around.
+{238536}{238626}Stay outta trouble,|you crazy kids.
+{238630}{238719}Mr. Wolf, I just wanna tell you it was|a real pleasure watching you work.
+{238754}{238814}Yeah, really.|And thank you very much, Mr. Wolf.
+{238817}{238877}Call me Winston.
+{238942}{239032}- You see that, young lady ? Respect.
+{239036}{239156}- Respect for one's elders|shows character.
+{239161}{239281}- Because you are a character|doesn't mean that you have character.
+{239474}{239564}- Wanna share a cab ?
+{239568}{239687}- I'd go for some breakfast.|Feel like havin' breakfast with me ?
+{239692}{239782}Cool.
+{239911}{240001}I don't know why, I just thought|he'd be European or something.
+{240005}{240095}- Yeah, he's about as European|as fuckin' English Bob.
+{240099}{240159}- But was he cool or what ?|- Thank you.
+{240161}{240251}Totally fuckin' cool,|in control.
+{240255}{240375}Didn't even really get pissed when you|were fuckin' with him; I was amazed.
+{240380}{240440}- Want some bacon ?
+{240443}{240503}No, man, I don't eat pork.
+{240505}{240625}- Are you Jewish ?|- I ain't Jewish; I just don't
+{240630}{240690}- Why not ?|- Pigs are filthy animals.
+{240693}{240752}I don't eat filthy animals.
+{240754}{240874}Yeah, but bacon tastes good.|Pork chops taste good.
+{240880}{240970}Sewer rat may taste like pumpkin pie,|but I'd never know...
+{240973}{241033}'cause I wouldn't eat|the filthy motherfuckers.
+{241036}{241126}Pigs sleep and root in shit.|That's a filthy animal.
+{241130}{241250}I ain't eatin' nothin' ain't got|sense enough to disregard its own feces.
+{241255}{241375}- What about a dog ?|Dog eats its own feces.
+{241380}{241500}Yeah, but do you consider|a dog to be a filthy animal ?
+{241505}{241595}I wouldn't go so far|as to call a dog filthy,
+{241599}{241629}but they're definitely dirty.
+{241662}{241752}- But a dog's got personality.|Personality goes a long way.
+{241786}{241876}if a pig had a better personality,|he would cease to be a filthy animal.
+{241880}{242000}- Is that true ?|- We'd have to be talkin' about
+{242005}{242125}I mean, he'd have to be|ten times more charming than
+{242286}{242346}Oh, man, that's good.
+{242349}{242469}That's good, man.|You're startin' to lighten up.
+{242474}{242564}You've been sittin' there,|all serious and shit.
+{242568}{242628}- I just been sittin' here, thinkin'.|- About what ?
+{242630}{242720}- About the miracle we witnessed.|- Miracle you witnessed.
+{242724}{242813}- I witnessed a freak occurrence.|- What is a miracle, Vincent ?
+{242880}{242970}- Act of God.|- And what's an act of God ?
+{243067}{243187}When, um, God makes|the impossible possible.
+{243224}{243284}But this morning...
+{243286}{243376}- I don't think qualifies.|- Hey, Vincent.
+{243380}{243470}See, that shit don't matter.|You're judging this shit the wrong way.
+{243474}{243624}It could be God stopped the bullets,|changed Coke to Pepsi,
+{243630}{243720}You don't judge shit like this|based on merit.
+{243724}{243784}Now, whether or not|what we experienced...
+{243787}{243876}was an according-to-Hoyle miracle|is insignificant.
+{243880}{244000}But what is significant is,|I felt the touch of God.
+{244005}{244065}God got involved.
+{244067}{244127}But why ?
+{244130}{244220}Well, that's what's fuckin' with me:|I don't know why.
+{244224}{244314}- But I can't go back to sleep.|- You're serious.
+{244318}{244378}You're really thinkin'|about quittin'.
+{244380}{244440}- For life ? Most definitely.|- Yeah.
+{244443}{244533}Fuck.|What you gonna do then ?
+{244599}{244719}Well, that's what I been|sitting here contemplating.
+{244724}{244814}First I'm gonna deliver|this case to Marsellus.
+{244818}{244907}Then, basically, I'm just|gonna walk the Earth.
+{244911}{245031}- What you mean, &quot;walk the Earth&quot; ?|- Like Caine in Kung Fu.
+{245036}{245126}Walk from place to place,|meet people, get in adventures.
+{245130}{245190}And how long do you intend|to walk the Earth ?
+{245192}{245282}- 'Til God puts me|where He wants me to be.
+{245286}{245436}- If it takes forever,|then I'll walk forever.
+{245443}{245533}I'll just be Jules, Vincent.|No more, no less.
+{245568}{245598}No, Jules,|you decided to be a bum,
+{245599}{245719}just like all those pieces of shit|out there who beg for change,
+{245724}{245814}who sleep in garbage bins,|eat what I throw away.
+{245818}{245878}They got a name for that, Jules.|It's called a bum.
+{245881}{246000}And without a job,|a residence or legal tender,
+{246005}{246065}You're gonna be|a fuckin' bum.
+{246067}{246157}Look, my friend,|this is just where you and I differ.
+{246161}{246251}Gar&#231;on ! Coffee !
+{246255}{246375}Jules, look, what happened this morning,|man, I agree it was peculiar.
+{246380}{246470}- But water into wine, l--|- All shapes and sizes, Vincent.
+{246474}{246564}- Don't fuckin' talk|to me that way, man.
+{246568}{246658}then you should cease|asking scary questions.
+{246724}{246784}I'm gonna take a shit.
+{246881}{247000}Let me ask you something.
+{247005}{247065}When did you make this decision ?|When you were sittin' there
+{247067}{247187}Yeah. I was sittin' here|eatin' my muffin, drinkin' my coffee,
+{247192}{247252}replayin' the incident|in my head,
+{247255}{247345}when I had what alcoholics refer to|as a moment of clarity.
+{247349}{247439}Fuck. To be continued.
+{247818}{247908}- I love you, Pumpkin.|- I love you, Honey Bunny.
+{247943}{248032}- Everybody be cool !|This is a robbery !
+{248036}{248186}Any one of you fucking pricks move,|and I'll execute every one
+{248192}{248282}- You got that ?|You just be quiet over there !
+{248286}{248376}Get on the fuckin'--|Get the fuck down !
+{248380}{248530}You're in a blind spot.|Take your dames over to that booth,
+{248537}{248657}- Mexicans, out of|the fucking kitchen !
+{248662}{248752}What the fuck are you doing,|you fucking yuppie ? Get down !
+{248756}{248846}- Get down !|- Throw those bags !
+{248849}{248909}- Fucking move ! Move !
+{248912}{248972}- Move ! Get the fuck--
+{249006}{249065}Get down on the fucking floor !
+{249067}{249127}Grandpa ! Down !
+{249130}{249250}I'm the manager here, and there's|no problem. No problem at all.
+{249255}{249345}- You gonna give me a problem ?|- No, sir, I'm not.
+{249349}{249439}Thought you said you were gonna|give me a fucking problem !
+{249443}{249593}- I think we got|a hero here, Honey Bunny.
+{249599}{249659}- I am not a hero.
+{249662}{249752}- I'm just a coffee shop manager.|- Get the fuck down !
+{249756}{249816}The restaurant's ours !
+{249818}{249908}- Just take whatever you want.
+{249912}{249942}- You talk to the customers.|- Yeah.
+{249974}{250064}You tell them to be fucking cool|and everything will be over.
+{250068}{250097}- You understand me ?|- Yes !
+{250192}{250222}Listen, everybody.
+{250255}{250285}Be calm, cooperate,
+{250318}{250378}and this'll all be over|in a minute !
+{250380}{250440}Get the fuck down !|Well done.
+{250818}{250908}All right, now, people, gonna|come around and collect your wallets !
+{250912}{251032}You don't fucking talk. You just|throw 'em in the bag ! Are we clear ?
+{251037}{251097}I said, are we fucking clear ?
+{251100}{251189}Good !|Now, wallets out !
+{251192}{251282} That's it.|Get the fuck down. In the bag.
+{251286}{251376}- In the fucking bag !|- I don't
+{251380}{251440}In the bag.
+{251443}{251533}What am I waiting for ?|ln the fucking bag.
+{251537}{251627}Laura. Laura. Tips.|In the bag.
+{251630}{251690}- Is that a cellular phone ?|- Yeah.
+{251693}{251753}In the fucking bag.
+{251818}{251908}Tidy up, tidy up, that's it.|Now get the fuck down on the floor.
+{251912}{251972}In the bag.|In the bag.
+{252349}{252409}In the bag.
+{252849}{252939}- What's in the case ?|- My boss's dirty laundry.
+{252943}{253033}- Your boss makes you do his laundry ?|- When he wants it clean.
+{253037}{253097}- Sounds like a shit job.|- Funny, I was thinkin' the same thing.
+{253100}{253190}- Open it.|- 'Fraid I can't do that.
+{253255}{253315}- I didn't hear you.|- Yes, you did.
+{253349}{253439}What's going on ?
+{253443}{253533}- Looks like we got|a vigilante in our midst.
+{253537}{253657}I hate to shatter your ego,|but this ain't the first time
+{253662}{253752}- If you don't take your hand off|that case, it'll be your last.
+{253756}{253846}You'll get us all killed ! Give 'em|what you got and get 'em outta here !
+{253849}{253969}Shut the fuck up, fat man ! This ain't|none of your goddamn business !
+{253975}{254035}Be cool, Honey Bunny, be cool.
+{254037}{254097}No problem.|I got it under control.
+{254162}{254222}Now, I'm gonna count to three.
+{254256}{254375}If you don't open that case,|I'm gonna unload in your fucking face.
+{254505}{254565}We clear ?
+{254662}{254722}One.
+{254787}{254847}Two.
+{254849}{254909}- Three.|- Okay, Ringo.
+{254912}{254972}You win.
+{254975}{255035}It's yours.
+{255162}{255252}- Open it.
+{255349}{255409}Hey, what is it ?
+{255411}{255501}What is it ?
+{255505}{255565}Is that what I think it is ?
+{255568}{255658}Mm-hmm.
+{255693}{255753}It's beautiful.
+{255787}{255847}Goddamn it, what is it ?
+{255881}{255971}You let him go !|You let him go !
+{255975}{256065}- Let go of him, or I'm gonna kill you !|- Tell that bitch to be cool.
+{256068}{256158}- Say, &quot;Bitch, be cool !&quot;|Say, &quot;Bitch, be cool !&quot;
+{256162}{256252}- Tell that bitch to chill !|- You're gonna die so fuckin' bad !
+{256256}{256345}- Chill that fuckin' bitch out !|- Chill out, Honey Bunny !
+{256349}{256379}- Let go of him !|- Chill out, Honey Bunny !
+{256380}{256470}- Now, promise her|it's gonna be all right !
+{256474}{256534}- Tell her to chill !|- Chill out, Honey Bunny !
+{256537}{256597}- Now tell me her name.|- Yolanda.
+{256599}{256689}All right, now, Yolanda, we're not|gonna do anything stupid, are we ?
+{256693}{256783}- Don't you hurt him !|- Nobody's gonna hurt anybody !
+{256787}{256907}We're all gonna be like three little|Fonzies here. And what's Fonzie like ?
+{256912}{257002}- Come on, Yolanda !|What's Fonzie like ?
+{257006}{257066}- What ?|- Cool.
+{257068}{257158}Correctamundo.|And that's what we're gonna be.
+{257162}{257222}We're gonna be cool.
+{257225}{257375}Now, Ringo,|I'm gonna count to three.
+{257381}{257440}And when I count three,
+{257443}{257533}I want you to|let go of your gun,
+{257537}{257627}put your palms flat on the table|and sit your ass down.
+{257662}{257722}And when you do it,
+{257724}{257784}you do it cool.
+{257787}{257847}You ready ?
+{257849}{257909}One,
+{257943}{258003}two,
+{258006}{258066}three.
+{258256}{258346}- Okay, now you let him go !|- Yolanda !
+{258350}{258469}I thought you were gonna|be cool. Now, when you yell
+{258474}{258534}When I get nervous,|I get scared.
+{258537}{258657}When motherfuckers get scared,|that's when motherfuckers
+{258693}{258813}Just know, you hurt him, you die.
+{258818}{258908}Well, that seems to be|the situation.
+{258912}{258972}But I don't want that.
+{258975}{259035}And you don't want that.
+{259037}{259097}And Ringo here definitely|doesn't want that.
+{259131}{259191}So let's see what we can do.
+{259256}{259346}Now... here's the situation.
+{259350}{259469}Normally both your asses would be|dead as fuckin' fried chicken,
+{259474}{259564}but you happened to pull this shit|while I'm in a transitional period,
+{259568}{259658}and I don't wanna kill you;|I wanna help you.
+{259662}{259782}But I can't give you this case,|'cause it don't belong to me.
+{259787}{259877}Besides, I been through too much shit|over this case this morning...
+{259881}{259971}to just hand it over|to your dumb ass.
+{259975}{260005}- Vincent !
+{260006}{260096}- Be cool ! Yolanda, it's cool, baby.|- Get back !
+{260100}{260190}It's cool !|We still just talkin'.
+{260194}{260314}- Come on. Point the gun at me.|Point the gun at me. There you go.
+{260319}{260379}Now, Vincent, you just hang back...
+{260381}{260441}and don't do|a goddamn thing.
+{260444}{260504}Tell her it's still cool.
+{260506}{260595}- It's still cool, Honey Bunny.|- How we doin', baby ?
+{260630}{260720}I-- I gotta go pee.
+{260724}{260784}I wanna go home.
+{260787}{260877}Hang in there, baby. I'm proud of you.|And Ringo's proud of you.
+{260881}{260971}It's almost over.|Tell her you're proud of her.
+{260975}{261065}- I'm proud of you, Honey Bunny.|- I love you.
+{261068}{261158}- I love you too, Honey Bunny.|- Now,
+{261162}{261282}I want you to go in that bag|and find my wallet.
+{261381}{261471}- Which one is it ?|- It's the one that says
+{261912}{262002}That's it.|That's my bad motherfucker.
+{262006}{262096}Open it up.|Take out the money.
+{262225}{262315}Count it.
+{262506}{262566}How much is there ?
+{262630}{262690}About 1,500 dollars.
+{262693}{262783}Okay, put it in your pocket.|It's yours.
+{262787}{262877}Now, with the rest|of those wallets and the register,
+{262881}{262941}that makes this a pretty successful|little score, huh ?
+{262943}{263063}Jules, you give that fuckin'|nimrod 1,500 dollars, and I'll
+{263068}{263158}No, Yolanda ! Yolanda ! He ain't gonna|do a goddamn, motherfuckin' thing !
+{263162}{263222}Vince, shut the fuck up !
+{263225}{263345}- Shut up !|- Come on, Yolanda. Stay with me, baby.
+{263350}{263440}Now, I ain't givin' it|to him, Vincent.
+{263444}{263504}I'm buyin' something|for my money.
+{263538}{263628}- Wanna know what I'm buyin', Ringo ?|- What ?
+{263632}{263781}Your life. I'm givin' you that money|so I don't have to kill your ass.
+{263787}{263847}You read the Bible, Ringo ?
+{263881}{263941}Not regularly, no.
+{263943}{264033}Well, there's this passage|I got memorized.
+{264037}{264127}Ezekiel 25:17.
+{264131}{264221}&quot;The path of the righteous man|is beset on all sides...
+{264225}{264285}by the inequities|of the selfish...
+{264287}{264347}and the tyranny of evil men.
+{264350}{264440}Blessed is he who,|in the name of charity and good will,
+{264444}{264504}shepherds the weak|through the valley of darkness,
+{264538}{264628}for he is truly his brother's keeper|and the finder of lost children.
+{264663}{264782}And I will strike down upon thee with|great vengeance and furious anger...
+{264787}{264877}those who attempt to poison|and destroy My brothers.
+{264881}{264971}And you will know|I am the Lord...
+{264975}{265065}when I lay My vengeance|upon you.&quot;
+{265100}{265160}I been sayin' that shit for years,
+{265194}{265284}and if you heard it,|that meant your ass.
+{265287}{265347}I never gave much thought|to what it meant.
+{265381}{265441}I just thought it was some coldblooded|shit to say to a motherfucker...
+{265444}{265534}before I popped a cap|in his ass.
+{265538}{265628}But I saw some shit this morning|made me think twice.
+{265632}{265721}See, now I'm thinkin'|maybe it means...
+{265724}{265874}you're the evil man,|and I'm the righteous man,
+{265881}{265971}and Mr. 9-millimeter here,|he's the shepherd...
+{265975}{266065}protecting my righteous ass|in the valley of darkness.
+{266068}{266128}Or it could mean...
+{266131}{266221}you're the righteous man,|and I'm the shepherd,
+{266225}{266345}and it's the world|that's evil and selfish.
+{266350}{266410}Now, I'd like that.
+{266444}{266504}But that shit|ain't the truth.
+{266506}{266566}The truth is,
+{266600}{266660}you're the weak...
+{266694}{266813}and I'm the tyranny|of evil men.
+{266850}{266910}But I'm tryin', Ringo.
+{266943}{267033}I'm tryin' real hard...
+{267037}{267097}to be the shepherd.
+{267569}{267629}Go.
+{268162}{268222}I think we should be|leaving now.
+{268225}{268315}- Yeah, that's probably a good idea.</diff>
      <filename>spec/fixtures/pulpfiction.sub</filename>
    </modified>
    <modified>
      <diff>@@ -22,4 +22,8 @@ module SubFixtures
   def yml_fixture
     File.open(File.expand_path(File.dirname(__FILE__) + '/fixtures/sincity.yml')) 
   end
+  
+  def rsb_fixture
+    File.open(File.expand_path(File.dirname(__FILE__) + '/fixtures/pseudo.rsb')) 
+  end 
 end
\ No newline at end of file</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
    <modified>
      <diff>@@ -36,7 +36,7 @@ describe Formats, &quot;.srt&quot; do
     end  
   
     it &quot;should dump the object as a SRT&quot; do
-      @sub.to_srt.should eql(&quot;0\n00:05:26.500 --&gt; 00:05:28.500\nworth killing for...\n1\n00:06:00.400 --&gt; 00:06:03.400\nworth dying for...\n2\n00:07:00.300 --&gt; 00:07:03.300\nworth going to the hell for...\n&quot;)
+      @sub.to_srt.should eql(&quot;0\n00:05:26.500 --&gt; 00:05:28.500\nworth killing for...\n1\n00:06:00.400 --&gt; 00:06:03.400\nworth dying for...\n2\n00:07:00.300 --&gt; 00:07:03.300\nworth going to the hell for...&quot;)
     end
   end
 end
\ No newline at end of file</diff>
      <filename>spec/subtitle_it/formats/srt_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -1,19 +1,18 @@
 Gem::Specification.new do |s|
   s.name = %q{subtitle_it}
-  s.version = &quot;0.4.0&quot;
+  s.version = &quot;0.5.1&quot;
 
   s.required_rubygems_version = Gem::Requirement.new(&quot;&gt;= 0&quot;) if s.respond_to? :required_rubygems_version=
-  s.authors = [&quot;FIXME full name&quot;]
-  s.cert_chain = [&quot;/Users/nofxx/.gem/gem-public_cert.pem&quot;]
+  s.authors = [&quot;Marcos Piccinini&quot;, &quot;Warlley Rezende&quot;]
   s.date = %q{2008-09-08}
   s.default_executable = %q{subtitle_it}
   s.description = %q{description of gem}
-  s.email = [&quot;FIXME email&quot;]
+  s.email = [&quot;x@nofxx.com&quot;]
   s.executables = [&quot;subtitle_it&quot;]
-  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;PostInstall.txt&quot;, &quot;README.txt&quot;, &quot;website/index.txt&quot;]
-  s.files = [&quot;.autotest&quot;, &quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;PostInstall.txt&quot;, &quot;README.markdown&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;bin/subtitle_it&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;lib/subtitle_it.rb&quot;, &quot;lib/subtitle_it/delay.rb&quot;, &quot;lib/subtitle_it/formats/pseudo.rb&quot;, &quot;lib/subtitle_it/formats/srt.rb&quot;, &quot;lib/subtitle_it/formats/sub.rb&quot;, &quot;lib/subtitle_it/formats/yml.rb&quot;, &quot;lib/subtitle_it/subline.rb&quot;, &quot;lib/subtitle_it/subtime.rb&quot;, &quot;lib/subtitle_it/subtitle.rb&quot;, &quot;lib/subtitle_it/version.rb&quot;, &quot;script/console&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;spec/fixtures/godfather.srt&quot;, &quot;spec/fixtures/pulpfiction.sub&quot;, &quot;spec/fixtures/sincity.yml&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/subtitle_it/formats/pseudo_spec.rb&quot;, &quot;spec/subtitle_it/formats/srt_spec.rb&quot;, &quot;spec/subtitle_it/formats/sub_spec.rb&quot;, &quot;spec/subtitle_it/formats/yml_spec.rb&quot;, &quot;spec/subtitle_it/subline_spec.rb&quot;, &quot;spec/subtitle_it/subtime_spec.rb&quot;, &quot;spec/subtitle_it/subtitle_spec.rb&quot;, &quot;spec/subtitle_it_spec.rb&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/rspec.rake&quot;, &quot;tasks/website.rake&quot;, &quot;website/index.html&quot;, &quot;website/index.txt&quot;, &quot;website/javascripts/rounded_corners_lite.inc.js&quot;, &quot;website/stylesheets/screen.css&quot;, &quot;website/template.html.erb&quot;]
+  s.extra_rdoc_files = [&quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;,  &quot;README.txt&quot;]
+  s.files = [&quot;.autotest&quot;, &quot;History.txt&quot;, &quot;License.txt&quot;, &quot;Manifest.txt&quot;, &quot;README.markdown&quot;, &quot;README.txt&quot;, &quot;Rakefile&quot;, &quot;bin/subtitle_it&quot;, &quot;config/hoe.rb&quot;, &quot;config/requirements.rb&quot;, &quot;lib/subtitle_it.rb&quot;, &quot;lib/subtitle_it/delay.rb&quot;, &quot;lib/subtitle_it/formats/rsb.rb&quot;, &quot;lib/subtitle_it/formats/srt.rb&quot;, &quot;lib/subtitle_it/formats/sub.rb&quot;, &quot;lib/subtitle_it/formats/yml.rb&quot;, &quot;lib/subtitle_it/subline.rb&quot;, &quot;lib/subtitle_it/subtime.rb&quot;, &quot;lib/subtitle_it/subtitle.rb&quot;, &quot;lib/subtitle_it/version.rb&quot;, &quot;script/console&quot;, &quot;script/destroy&quot;, &quot;script/generate&quot;, &quot;script/txt2html&quot;, &quot;setup.rb&quot;, &quot;spec/fixtures/godfather.srt&quot;, &quot;spec/fixtures/pseudo.rsb&quot;, &quot;spec/fixtures/pulpfiction.sub&quot;, &quot;spec/fixtures/sincity.yml&quot;, &quot;spec/spec.opts&quot;, &quot;spec/spec_helper.rb&quot;, &quot;spec/subtitle_it/formats/rsb_spec.rb&quot;, &quot;spec/subtitle_it/formats/srt_spec.rb&quot;, &quot;spec/subtitle_it/formats/sub_spec.rb&quot;, &quot;spec/subtitle_it/formats/yml_spec.rb&quot;, &quot;spec/subtitle_it/subline_spec.rb&quot;, &quot;spec/subtitle_it/subtime_spec.rb&quot;, &quot;spec/subtitle_it/subtitle_spec.rb&quot;, &quot;spec/subtitle_it_spec.rb&quot;, &quot;subtitle_it.gemspec&quot;, &quot;tasks/deployment.rake&quot;, &quot;tasks/environment.rake&quot;, &quot;tasks/rspec.rake&quot;]
   s.has_rdoc = true
-  s.homepage = %q{http://subtitle_it.rubyforge.org}
+  s.homepage = %q{http://github.com/nofxx/subtitle_it}
   s.post_install_message = %q{
 For more information on subtitle_it, see http://github.com/nofxx/subtitle_it
 </diff>
      <filename>subtitle_it.gemspec</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>PostInstall.txt</filename>
    </removed>
    <removed>
      <filename>lib/subtitle_it/formats/pseudo.rb</filename>
    </removed>
    <removed>
      <filename>spec/subtitle_it/formats/pseudo_spec.rb</filename>
    </removed>
    <removed>
      <filename>tasks/website.rake</filename>
    </removed>
    <removed>
      <filename>website/index.html</filename>
    </removed>
    <removed>
      <filename>website/index.txt</filename>
    </removed>
    <removed>
      <filename>website/javascripts/rounded_corners_lite.inc.js</filename>
    </removed>
    <removed>
      <filename>website/stylesheets/screen.css</filename>
    </removed>
    <removed>
      <filename>website/template.html.erb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>7c1ca4e4d547ec6f51beab9c68ea49a791ab4638</id>
    </parent>
  </parents>
  <author>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </author>
  <url>http://github.com/nofxx/subtitle_it/commit/21db29fd0255a62e4d8900a39c45cd43fdd02577</url>
  <id>21db29fd0255a62e4d8900a39c45cd43fdd02577</id>
  <committed-date>2008-09-07T23:40:43-07:00</committed-date>
  <authored-date>2008-09-07T23:40:43-07:00</authored-date>
  <message>&quot;rsb&quot; ruby subtitle .. hehe
clean up..
and version doesnt work.. darn</message>
  <tree>8ddea1a7432a5782b114afd84bd097149eca33e8</tree>
  <committer>
    <name>Marcos Augusto</name>
    <email>x@nofxx.com</email>
  </committer>
</commit>
