-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.xml
3244 lines (3242 loc) · 211 KB
/
data.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8" ?>
<timedtext format="3">
<head>
<pen id="1" fc="#E5E5E5" />
<pen id="2" fc="#CCCCCC" />
<ws id="0" />
<ws id="1" mh="2" ju="0" sd="3" />
<wp id="0" />
<wp id="1" ap="6" ah="20" av="100" rc="2" cc="40" />
</head>
<body>
<w t="0" id="1" wp="1" ws="1" />
<p t="30" d="5729" w="1" p="2"><s ac="63">ah</s><s t="30" ac="64"> scuse</s><s p="1" t="600" ac="210"> me</s><s p="1"
t="1730" ac="218"> is</s><s p="1" t="2730" ac="226"> there</s><s p="1" t="2970" ac="252"> a</s><s p="1" t="3000"
ac="252"> toilet</s><s p="1" t="3240" ac="252"> nearby</s></p>
<p t="3619" d="2140" w="1" a="1">
</p>
<p t="3629" d="4111" w="1"><s ac="252">quickly</s><s t="571" ac="252"> do</s><s t="630" ac="252"> you</s><s p="2" t="721"
ac="127"> mine</s><s p="1" t="841" ac="217"> I've</s><s p="1" t="960" ac="214"> got</s><s p="2" t="1170" ac="71">
it</s><s t="1321" ac="220"> is</s><s t="2011" ac="220"> it</s></p>
<p t="5749" d="1991" w="1" a="1">
</p>
<p t="5759" d="4760" w="1"><s ac="244">nearby</s><s p="1" t="181" ac="205"> there's</s><s t="870" ac="243">
right</s><s t="1231" ac="250"> into</s><s t="1441" ac="240"> the</s><s t="1560" ac="252"> green</s><s p="2" t="1741"
ac="87"> room</s></p>
<p t="7730" d="2789" w="1" a="1">
</p>
<p t="7740" d="2779" w="1"><s ac="247">right</s><s p="2" t="150" ac="175"> into</s><s t="449" ac="252"> the</s><s t="540"
ac="227"> green</s><s t="750" ac="252"> room</s></p>
<p t="11650" w="1" a="1">
</p>
<p t="11660" d="10180" w="1">[Music]</p>
<p t="19970" d="1870" w="1" a="1">
</p>
<p t="19980" d="3180" w="1"><s ac="252">hey</s><s t="540" ac="252"> what's</s><s t="690" ac="252"> going</s><s
p="2" t="720" ac="142"> on</s><s t="960" ac="228"> everybody</s><s p="1" t="1260" ac="207"> for</s><s t="1620"
ac="255"> first</s></p>
<p t="21830" d="1330" w="1" a="1">
</p>
<p t="21840" d="2940" w="1"><s ac="252">we</s><s t="150" ac="252"> feast</s><s t="330" ac="244"> I'm</s><s t="570"
ac="244"> Sean</s><s t="810" ac="244"> Evans</s><s t="930" ac="226"> and</s><s t="1170" ac="255"> you're</s></p>
<p t="23150" d="1630" w="1" a="1">
</p>
<p t="23160" d="3270" w="1"><s p="2" ac="186">watching</s><s t="360" ac="252"> hot</s><s t="510" ac="236"> ones</s><s
p="2" t="780" ac="165"> it's</s><s t="1200" ac="252"> the</s><s t="1350" ac="252"> show</s><s t="1500" ac="252">
with</s></p>
<p t="24770" d="1660" w="1" a="1">
</p>
<p t="24780" d="3660" w="1"><s p="1" ac="216">hack</s><s t="150" ac="247"> questions</s><s t="570" ac="255"> and</s><s
t="720" ac="252"> even</s><s p="1" t="780" ac="201"> hotter</s><s t="1050" ac="242"> wings</s><s p="2" t="1350"
ac="183"> and</s></p>
<p t="26420" d="2020" w="1" a="1">
</p>
<p t="26430" d="3540" w="1"><s ac="251">it's</s><s t="360" ac="252"> a</s><s t="420" ac="252"> banner</s><s p="2"
t="690" ac="146"> day</s><s t="990" ac="234"> in</s><s t="1140" ac="239"> internet</s><s t="1560" ac="227">
history</s><s t="1770" ac="252"> as</s></p>
<p t="28430" d="1540" w="1" a="1">
</p>
<p t="28440" d="3210" w="1"><s ac="252">we</s><s t="120" ac="252"> open</s><s t="450" ac="252"> up</s><s t="540" ac="246">
season</s><s p="2" t="930" ac="165"> eight</s><s t="1050" ac="252"> with</s><s t="1200" ac="246"> Gordon</s></p>
<p t="29960" d="1690" w="1" a="1">
</p>
<p t="29970" d="3450" w="1"><s ac="241">Ramsay</s><s p="2" t="60" ac="144"> he's</s><s p="1" t="1020" ac="201">
one</s><s t="1260" ac="252"> of</s><s t="1290" ac="226"> the</s><s t="1410" ac="252"> world's</s><s p="2" t="1500"
ac="82"> most</s></p>
<p t="31640" d="1780" w="1" a="1">
</p>
<p t="31650" d="3180" w="1"><s p="1" ac="207">decorated</s><s t="629" ac="246"> and</s><s t="690" ac="246">
successful</s><s t="1230" ac="255"> chefs</s><s t="1500" ac="249"> with</s><s t="1680" ac="252"> an</s></p>
<p t="33410" d="1420" w="1" a="1">
</p>
<p t="33420" d="2880" w="1"><s ac="252">empire</s><s p="2" t="360" ac="134"> that</s><s p="2" t="540" ac="126">
includes</s><s p="2" t="840" ac="252"> more</s><s p="1" t="1020" ac="205"> than</s><s p="2" t="1080" ac="186">
a</s><s t="1200" ac="252"> dozen</s></p>
<p t="34820" d="1480" w="1" a="1">
</p>
<p t="34830" d="3150" w="1"><s ac="228">restaurants</s><s t="300" ac="240"> countless</s><s t="1020" ac="252">
best-selling</s></p>
<p t="36290" d="1690" w="1" a="1">
</p>
<p t="36300" d="3509" w="1"><s ac="252">cookbooks</s><s t="480" ac="252"> and</s><s p="1" t="630" ac="217"> seven</s><s
t="990" ac="252"> hit</s><s t="1140" ac="252"> TV</s><s t="1320" ac="226"> shows</s></p>
<p t="37970" d="1839" w="1" a="1">
</p>
<p t="37980" d="3990" w="1"><s ac="252">including</s><s p="1" t="320" ac="218"> MasterChef</s><s t="1320" ac="248">
junior</s><s t="1560" ac="252"> which</s></p>
<p t="39799" d="2171" w="1" a="1">
</p>
<p t="39809" d="3541" w="1"><s ac="252">returns</s><s p="1" t="331" ac="201"> to</s><s t="511" ac="252"> Fox</s><s
t="691" ac="252"> this</s><s t="961" ac="241"> February</s><s t="1471" ac="226"> Gordon</s></p>
<p t="41960" d="1390" w="1" a="1">
</p>
<p t="41970" d="4050" w="1" p="1"><s ac="211">Ramsay</s><s t="330" ac="214"> welcome</s><s t="780" ac="252"> to</s><s
t="900" ac="252"> the</s><s t="990" ac="252"> show</s></p>
<p t="43340" d="2680" w="1" a="1">
</p>
<p t="43350" d="4650" w="1"><s ac="235">great</s><s t="450" ac="252"> to</s><s p="1" t="600" ac="200"> see</s><s t="750"
ac="248"> you</s><s t="810" ac="231"> so</s><s t="1470" ac="252"> we</s><s t="1560" ac="234"> started</s><s t="2190"
ac="252"> hot</s><s t="2400" ac="241"> ones</s></p>
<p t="46010" d="1990" w="1" a="1">
</p>
<p t="46020" d="3690" w="1"><s p="1" ac="209">about</s><s t="240" ac="252"> four</s><s t="570" ac="252"> years</s><s
p="1" t="780" ac="207"> ago</s><s p="1" t="900" ac="201"> and</s><s p="2" t="1170" ac="187"> shortly</s><s t="1650"
ac="241"> after</s></p>
<p t="47990" d="1720" w="1" a="1">
</p>
<p t="48000" d="3990" w="1"><s p="1" ac="207">we</s><s t="90" ac="252"> put</s><s t="270" ac="252"> up</s><s p="1"
t="360" ac="208"> our</s><s t="480" ac="247"> first</s><s t="780" ac="220"> episode</s><s p="2" t="989" ac="86">
we're</s></p>
<p t="49700" d="2290" w="1" a="1">
</p>
<p t="49710" d="4440" w="1"><s p="1" ac="203">bombarded</s><s t="720" ac="252"> with</s><s t="870" ac="247">
requests</s><s p="1" t="1529" ac="204"> to</s><s t="1740" ac="252"> get</s><s t="1860" ac="232"> Gordon</s></p>
<p t="51980" d="2170" w="1" a="1">
</p>
<p t="51990" d="4050" w="1"><s ac="255">Ramsay</s><s p="2" t="390" ac="161"> on</s><s t="480" ac="251"> the</s><s t="570"
ac="252"> show</s><s t="810" ac="222"> and</s><s t="1080" ac="252"> as</s><s t="1530" ac="252"> the</s><s t="1710"
ac="252"> show</s><s t="1920" ac="252"> has</s></p>
<p t="54140" d="1900" w="1" a="1">
</p>
<p t="54150" d="4350" w="1"><s p="1" ac="200">grown</s><s t="300" ac="222"> so</s><s p="1" t="630" ac="219"> too</s><s
t="690" ac="252"> has</s><s t="1050" ac="230"> that</s><s t="1230" ac="222"> albatross</s><s t="1860" ac="252">
around</s></p>
<p t="56030" d="2470" w="1" a="1">
</p>
<p t="56040" d="5250" w="1"><s ac="237">our</s><s t="570" ac="252"> necks</s><s t="870" ac="252"> which</s><s t="1110"
ac="252"> has</s><s t="1260" ac="252"> followed</s><s t="1740" ac="252"> me</s><s p="1" t="1770" ac="200"> from</s><s
p="1" t="2370" ac="200"> the</s></p>
<p t="58490" d="2800" w="1" a="1">
</p>
<p t="58500" d="5040" w="1" p="2"><s ac="130">Internet</s><s p="1" t="570" ac="216"> to</s><s p="1" t="1079" ac="200">
the</s><s p="1" t="1170" ac="226"> airport</s><s p="1" t="1800" ac="226"> to</s><s p="1" t="2250" ac="252"> my</s><s
p="1" t="2370" ac="249"> family</s></p>
<p t="61280" d="2260" w="1" a="1">
</p>
<p t="61290" d="3630" w="1"><s ac="227">get-togethers</s><s p="1" t="750" ac="203"> so</s><s t="1320" ac="252">
this</s><s t="1560" ac="252"> one</s><s t="1740" ac="252"> is</s><s p="2" t="1860" ac="166"> very</s><s t="2100"
ac="227"> much</s></p>
<p t="63530" d="1390" w="1" a="1">
</p>
<p t="63540" d="3000" w="1"><s p="1" ac="201">for</s><s p="2" t="750" ac="194"> the</s><s t="930" ac="252"> fans</s></p>
<p t="64910" d="1630" w="1" a="1">
</p>
<p t="64920" d="3150" w="1"><s ac="233">I'm</s><s t="89" ac="252"> nervous</s><s p="1" t="449" ac="200"> in</s><s
t="750" ac="252"> a</s><s t="839" ac="252"> good</s><s t="1050" ac="252"> way</s><s t="1199" ac="252"> but</s><s
p="1" t="1260" ac="217"> at</s><s t="1500" ac="252"> the</s></p>
<p t="66530" d="1540" w="1" a="1">
</p>
<p t="66540" d="3210" w="1"><s ac="252">same</s><s p="1" t="180" ac="216"> time</s><s p="2" t="420" ac="182"> I</s><s
t="480" ac="248"> feel</s><s p="1" t="719" ac="200"> like</s><s p="1" t="810" ac="216"> a</s><s p="1" t="870"
ac="252"> weight</s><s p="2" t="1200" ac="145"> has</s><s t="1500" ac="252"> been</s></p>
<p t="68060" d="1690" w="1" a="1">
</p>
<p t="68070" d="3630" w="1"><s ac="252">lifted</s><s t="150" ac="252"> off</s><s p="2" t="570" ac="177"> my</s><s p="1"
t="780" ac="206"> shoulder</s><s t="1140" ac="227"> so</s><s t="1290" ac="251"> I</s><s t="1320" ac="252"> just</s><s
t="1500" ac="227"> want</s><s t="1650" ac="252"> to</s></p>
<p t="69740" d="1960" w="1" a="1">
</p>
<p t="69750" d="3060" w="1"><s p="1" ac="207">say</s><s t="180" ac="252"> thank</s><s t="780" ac="252"> you</s><s p="1"
t="840" ac="201"> for</s><s p="1" t="1020" ac="202"> coming</s><s p="2" t="1080" ac="144"> in</s><s t="1380" ac="228">
today</s><s p="1" t="1500" ac="207"> you're</s></p>
<p t="71690" d="1120" w="1" a="1">
</p>
<p t="71700" d="2760" w="1"><s ac="252">welcome</s><s p="2" t="59" ac="78"> good</s><s p="1" t="330" ac="203"> to</s><s
t="449" ac="252"> see</s><s t="570" ac="248"> you</s><s t="630" ac="226"> Congrats</s><s t="930" ac="252"> by</s><s
t="1050" ac="252"> the</s></p>
<p t="72800" d="1660" w="1" a="1">
</p>
<p t="72810" d="5850" w="1"><s ac="252">way</s><s t="120" ac="227"> thank</s><s p="1" t="630" ac="203"> you</s><s t="720"
ac="252"> very</s><s t="870" ac="227"> season</s><s p="1" t="1199" ac="204"> eight</s><s t="1320" ac="239">
amazing</s></p>
<p t="74450" d="4210" w="1" a="1">
</p>
<p t="74460" d="5880" w="1"><s p="2" ac="166">and</s><s t="390" ac="236"> I</s><s t="570" ac="234"> have</s><s t="750"
ac="244"> four</s><s t="990" ac="228"> kids</s><s p="2" t="1730" ac="156"> there</s><s t="2730" ac="226"> pay</s><s
t="3689" ac="252"> me</s><s t="3960" ac="247"> to</s></p>
<p t="78650" d="1690" w="1" a="1">
</p>
<p t="78660" d="3239" w="1"><s ac="252">come</s><s p="2" t="120" ac="150"> on</s><s p="1" t="270" ac="214"> this</s><s
t="420" ac="242"> dad</s><s p="2" t="720" ac="148"> I</s><s t="959" ac="251"> want</s><s t="1200" ac="226"> to</s><s
t="1260" ac="252"> see</s><s t="1349" ac="252"> how</s><s p="1" t="1470" ac="205"> good</s></p>
<p t="80330" d="1569" w="1" a="1">
</p>
<p t="80340" d="3510" w="1"><s ac="252">your</s><s p="1" t="150" ac="206"> palate</s><s p="1" t="450" ac="218"> is</s><s
p="1" t="540" ac="226"> or</s><s p="1" t="750" ac="252"> how</s><s p="2" t="840" ac="92"> strong</s><s t="1169"
ac="252"> your</s><s t="1320" ac="249"> palate</s></p>
<p t="81889" d="1961" w="1" a="1">
</p>
<p t="81899" d="3181" w="1"><s ac="252">is</s><s p="1" t="61" ac="207"> you've</s><s t="241" ac="252"> got</s><s
t="330" ac="252"> a</s><s t="360" ac="252"> big</s><s t="541" ac="252"> mouth</s><s p="2" t="591" ac="141"> you</s><s
t="1591" ac="252"> shout</s><s t="1830" ac="252"> and</s></p>
<p t="83840" d="1240" w="1" a="1">
</p>
<p t="83850" d="1799" w="1"><s p="1" ac="200">scream</s><s t="90" ac="226"> all</s><s p="2" t="329" ac="131"> day</s><s
t="420" ac="252"> long</s><s t="600" ac="252"> but</s><s t="719" ac="227"> can</s><s t="900" ac="252"> you</s><s
t="1019" ac="222"> take</s><s t="1200" ac="252"> a</s></p>
<p t="85070" d="579" w="1" a="1">
</p>
<p t="85080" d="3480" w="1"><s ac="252">hot</s><s t="179" ac="252"> wing</s></p>
<p t="85639" d="2921" w="1" a="1">
</p>
<p t="85649" d="4951" w="1"><s ac="252">so</s><s t="420" ac="220"> finally</s><s t="901" ac="255"> under</s><s t="1771"
ac="252"> immense</s><s t="2371" ac="252"> pressure</s><s t="2461" ac="252"> from</s></p>
<p t="88550" d="2050" w="1" a="1">
</p>
<p t="88560" d="4140" w="1"><s ac="252">the</s><s t="89" ac="248"> family</s><s p="2" t="240" ac="100"> and</s><s t="690"
ac="255"> a</s><s t="1350" ac="238"> lot</s><s t="1500" ac="252"> of</s><s p="1" t="1530" ac="201"> supporters</s><s
p="1" t="1949" ac="208"> out</s></p>
<p t="90590" d="2110" w="1" a="1">
</p>
<p t="90600" d="4230" w="1"><s ac="252">there</s><s p="2" t="30" ac="186"> I'm</s><s t="299" ac="252"> here</s><s
p="1" t="510" ac="203"> the</s><s t="960" ac="252"> world</s><s t="1379" ac="252"> has</s><s t="1590" ac="252">
pressured</s></p>
<p t="92690" d="2140" w="1" a="1">
</p>
<p t="92700" d="3449" w="1"><s ac="252">us</s><s t="180" ac="243"> into</s><s t="630" ac="252"> this</s><s t="779"
ac="252"> room</s><s t="1080" ac="241"> Gordon</s><s t="1529" ac="227"> that</s><s p="1" t="1710" ac="204"> is</s><s
t="1830" ac="252"> it</s><s t="2010" ac="255"> if</s></p>
<p t="94820" d="1329" w="1" a="1">
</p>
<p t="94830" d="3780" w="1"><s ac="252">it</s><s t="120" ac="252"> all</s><s t="179" ac="245"> goes</s><s t="330"
ac="245"> tits</s><s t="629" ac="245"> up</s><s t="720" ac="226"> after</s><s t="989" ac="255"> this</s><s p="1"
t="1140" ac="210"> it</s></p>
<p t="96139" d="2471" w="1" a="1">
</p>
<p t="96149" d="23101" w="1"><s ac="252">doesn't</s><s p="1" t="181" ac="217"> matter</s><s p="2" t="330" ac="171">
we</s><s p="2" t="720" ac="142"> may</s><s p="2" t="1021" ac="102"> be</s><s t="1351" ac="252"> hot</s><s t="1591"
ac="241"> ones</s><s t="1830" ac="231"> okay</s></p>
<p t="98600" d="20650" w="1" a="1">
</p>
<p t="98610" d="20640" w="1">[Music]</p>
<p t="120279" w="1" a="1">
</p>
<p t="120289" d="5970" w="1"><s ac="224">okay</s><s p="1" t="1000" ac="212"> so</s><s t="1571" ac="252"> how</s><s
t="1961" ac="252"> long</s><s t="2080" ac="226"> were</s><s p="1" t="2141" ac="207"> these</s><s t="2260" ac="252">
wings</s><s t="2440" ac="252"> cook</s></p>
<p t="122929" d="3330" w="1" a="1">
</p>
<p t="122939" d="6031" w="1"><s ac="252">for</s><s t="180" ac="226"> oh</s><s t="710" ac="245"> I</s><s t="1710" ac="252">
knew</s><s t="1921" ac="252"> that</s><s p="2" t="1951" ac="142"> this</s><s t="2191" ac="252"> was</s><s p="1"
t="2311" ac="206"> gonna</s><s t="2430" ac="237"> happen</s></p>
<p t="126249" d="2721" w="1" a="1">
</p>
<p t="126259" d="4901" w="1"><s ac="252">damn</s><s t="1000" ac="222"> yeah</s><s t="1301" ac="222"> yeah</s><s p="2"
t="2140" ac="123"> cuz</s><s t="2381" ac="252"> a</s><s t="2411" ac="252"> bit</s><s t="2560" ac="252"> fucking</s></p>
<p t="128960" d="2200" w="1" a="1">
</p>
<p t="128970" d="4490" w="1"><s ac="252">overcooked</s><s p="1" t="620" ac="206"> fly</s><s t="1620" ac="240">
eating</s><s t="1830" ac="252"> a</s><s t="1860" ac="252"> mouthful</s><s t="2099" ac="252"> of</s></p>
<p t="131150" d="2310" w="1" a="1">
</p>
<p t="131160" d="4820" w="1" p="1"><s ac="203">fucking</s><s t="240" ac="218"> sand</s></p>
<p t="133450" d="2530" w="1" a="1">
</p>
<p t="133460" d="6359" w="1">[Music]</p>
<p t="135970" d="3849" w="1" a="1">
</p>
<p t="135980" d="5009" w="1"><s ac="252">a</s><s t="860" ac="252"> good</s><s t="1860" ac="252"> wing</s><s p="2" t="2040"
ac="166"> look</s><s t="2369" ac="248"> at</s><s t="2490" ac="252"> your</s><s t="2580" ac="252"> arms</s><s p="2"
t="2790" ac="199"> that's</s><s p="2" t="3750" ac="177"> a</s></p>
<p t="139809" d="1180" w="1" a="1">
</p>
<p t="139819" d="3030" w="1"><s ac="252">good</s><s t="151" ac="252"> wing</s><s p="1" t="301" ac="214"> right</s><s
t="450" ac="227"> there</s><s t="601" ac="252"> yeah</s><s t="661" ac="252"> yeah</s><s p="1" t="871" ac="208">
but</s><s t="1051" ac="252"> so</s></p>
<p t="140979" d="1870" w="1" a="1">
</p>
<p t="140989" d="4890" w="1"><s ac="252">it</s><s t="61" ac="252"> needs</s><s t="241" ac="252"> a</s><s t="301" ac="252">
bit</s><s p="1" t="451" ac="214"> meat</s><s t="631" ac="252"> on</s><s p="2" t="780" ac="154"> them</s><s p="1"
t="991" ac="200"> things</s><s p="2" t="1681" ac="153"> like</s></p>
<p t="142839" d="3040" w="1" a="1">
</p>
<p t="142849" d="5401" w="1"><s ac="252">a</s><s t="30" ac="252"> quail</s><s p="1" t="1161" ac="205"> so</s><s p="1"
t="2161" ac="207"> Gordon</s><s p="1" t="2401" ac="207"> as</s><s t="2521" ac="252"> we</s><s t="2610" ac="252">
mentioned</s><s t="2970" ac="252"> in</s></p>
<p t="145869" d="2381" w="1" a="1">
</p>
<p t="145879" d="4201" w="1"><s ac="252">your</s><s t="121" ac="252"> intro</s><s t="541" ac="236"> MasterChef</s><s
t="1201" ac="255"> junior</s><s p="1" t="1470" ac="201"> comes</s><s p="1" t="2041" ac="213"> back</s></p>
<p t="148240" d="1840" w="1" a="1">
</p>
<p t="148250" d="3569" w="1"><s ac="252">next</s><s t="390" ac="221"> month</s><s t="690" ac="255"> one</s><s t="930"
ac="252"> of</s><s p="1" t="959" ac="201"> your</s><s t="1140" ac="252"> many</s><s t="1349" ac="252"> shows</s><s
p="1" t="1620" ac="214"> that</s></p>
<p t="150070" d="1749" w="1" a="1">
</p>
<p t="150080" d="3210" w="1"><s ac="252">become</s><s t="180" ac="252"> a</s><s t="210" ac="252"> global</s><s p="2"
t="600" ac="166"> phenomenon</s><s p="1" t="1080" ac="201"> when</s><s t="1650" ac="252"> you</s></p>
<p t="151809" d="1481" w="1" a="1">
</p>
<p t="151819" d="3571" w="1"><s ac="238">think</s><s p="2" t="271" ac="136"> back</s><s t="481" ac="247"> and</s><s
t="691" ac="226"> all</s><s t="811" ac="252"> the</s><s t="931" ac="248"> times</s><s t="1200" ac="252">
you've</s><s t="1441" ac="252"> been</s></p>
<p t="153280" d="2110" w="1" a="1">
</p>
<p t="153290" d="3510" w="1"><s ac="252">wowed</s><s t="390" ac="252"> by</s><s t="419" ac="252"> the</s><s t="690"
ac="252"> raw</s><s p="1" t="960" ac="208"> talent</s><s t="1440" ac="252"> of</s><s t="1529" ac="252"> a</s><s
t="1620" ac="252"> child</s><s t="1919" ac="252"> on</s></p>
<p t="155380" d="1420" w="1" a="1">
</p>
<p t="155390" d="4860" w="1"><s ac="252">that</s><s p="1" t="30" ac="202"> show</s><s p="2" t="360" ac="146"> is</s><s
t="540" ac="252"> there</s><s t="690" ac="252"> a</s><s t="720" ac="252"> story</s><s t="1050" ac="252"> that</s><s
t="1200" ac="252"> stands</s></p>
<p t="156790" d="3460" w="1" a="1">
</p>
<p t="156800" d="5939" w="1"><s ac="252">out</s><s p="2" t="210" ac="132"> I</s><s t="710" ac="252"> think</s><s p="2"
t="1710" ac="149"> of</s><s t="1920" ac="252"> some</s><s t="2040" ac="221"> of</s><s t="2130" ac="252"> the</s><s
t="2240" ac="252"> earlier</s><s t="3240" ac="252"> kids</s></p>
<p t="160240" d="2499" w="1" a="1">
</p>
<p t="160250" d="5250" w="1"><s ac="252">now</s><s t="209" ac="235"> you're</s><s t="1200" ac="252"> back</s><s
t="1380" ac="236"> on</s><s t="1500" ac="252"> season</s><s p="1" t="1799" ac="200"> one</s><s t="1950" ac="226">
the</s><s t="2340" ac="227"> other</s></p>
<p t="162729" d="2771" w="1" a="1">
</p>
<p t="162739" d="5131" w="1"><s ac="255">into</s><s p="1" t="151" ac="200"> the</s><s t="271" ac="252"> 18</s><s t="511"
ac="252"> 19</s><s p="2" t="541" ac="157"> year</s><s t="1021" ac="227"> old</s><s p="1" t="1640" ac="201">
Alexander</s><s p="1" t="2640" ac="208"> from</s></p>
<p t="165490" d="2380" w="1" a="1">
</p>
<p t="165500" d="5010" w="1"><s p="1" ac="204">season</s><s p="2" t="390" ac="101"> 1</s><s p="1" t="569" ac="207">
and</s><s p="2" t="900" ac="169"> yeah</s><s p="1" t="1230" ac="218"> this</s><s p="1" t="1379" ac="207"> guy</s><s
p="1" t="1560" ac="218"> is</s><s t="1830" ac="244"> a</s><s p="1" t="1860" ac="202"> prolific</s></p>
<p t="167860" d="2650" w="1" a="1">
</p>
<p t="167870" d="4229" w="1"><s ac="248">chef</s><s t="270" ac="252"> he's</s><s t="420" ac="255"> barely</s><s
t="929" ac="241"> 19</s><s t="1320" ac="252"> years</s><s t="1470" ac="252"> of</s><s t="1530" ac="220"> age</s><s
t="1679" ac="227"> and</s><s p="1" t="2190" ac="214"> for</s></p>
<p t="170500" d="1599" w="1" a="1">
</p>
<p t="170510" d="3750" w="1"><s p="2" ac="162">the</s><s t="59" ac="227"> last</s><s t="180" ac="227"> five</s><s p="2"
t="330" ac="141"> years</s><s p="2" t="390" ac="140"> he</s><s p="2" t="720" ac="252"> spent</s><s p="2" t="809"
ac="236"> weekends</s></p>
<p t="172089" d="2171" w="1" a="1">
</p>
<p t="172099" d="4021" w="1"><s ac="252">and</s><s t="151" ac="252"> holidays</s><s p="1" t="601" ac="206"> in</s><s
t="1140" ac="247"> some</s><s t="1711" ac="252"> of</s><s t="1771" ac="252"> the</s><s t="1831" ac="227"> most</s><s
t="1950" ac="252"> amazing</s></p>
<p t="174250" d="1870" w="1" a="1">
</p>
<p t="174260" d="4500" w="1"><s ac="252">restaurants</s><s t="420" ac="252"> across</s><s p="1" t="539" ac="217">
the</s><s p="1" t="630" ac="205"> world</s><s p="1" t="839" ac="252"> so</s><s p="1" t="1020" ac="244"> I</s><s
p="1" t="1199" ac="252"> say</s></p>
<p t="176110" d="2650" w="1" a="1">
</p>
<p t="176120" d="3959" w="1"><s ac="245">them</s><s t="179" ac="236"> no</s><s p="2" t="449" ac="110"> mom</s><s t="660"
ac="252"> no</s><s p="2" t="810" ac="105"> dad</s><s p="1" t="990" ac="208"> no</s><s p="1" t="1589" ac="215">
school</s><s p="1" t="1800" ac="237"> teacher</s><s p="1" t="2010" ac="200"> you</s></p>
<p t="178750" d="1329" w="1" a="1">
</p>
<p t="178760" d="2400" w="1"><s ac="247">love</s><s t="240" ac="231"> me</s><s p="1" t="360" ac="202"> gonna</s><s
t="539" ac="247"> hate</s><s t="690" ac="246"> me</s><s t="870" ac="236"> it's</s><s t="1050" ac="252">
gonna</s><s t="1140" ac="236"> be</s><s t="1229" ac="252"> the</s></p>
<p t="180069" d="1091" w="1" a="1">
</p>
<p t="180079" d="3121" w="1"><s p="1" ac="200">best</s><s t="151" ac="252"> football</s><s p="1" t="240" ac="207">
coach</s><s t="511" ac="246"> you</s><s t="630" ac="247"> ever</s><s t="750" ac="250"> met</s><s p="1" t="961"
ac="207"> in</s><s t="1051" ac="252"> your</s></p>
<p t="181150" d="2050" w="1" a="1">
</p>
<p t="181160" d="4200" w="1" p="1"><s ac="218">life</s><s p="2" t="90" ac="177"> but</s><s p="2" t="630" ac="197">
you'll</s><s p="2" t="780" ac="252"> come</s><s t="900" ac="217"> out</s><s t="1049" ac="206"> of</s><s t="1169"
ac="252"> this</s><s t="1290" ac="231"> a</s><s t="1530" ac="252"> much</s></p>
<p t="183190" d="2170" w="1" a="1">
</p>
<p t="183200" d="3569" w="1"><s p="1" ac="201">better</s><s t="210" ac="252"> cook</s><s p="2" t="539" ac="186">
and</s><s t="840" ac="252"> they</s><s t="990" ac="252"> do</s><s t="1170" ac="226"> what's</s><s t="1920"
ac="252"> been</s><s p="1" t="2069" ac="207"> the</s></p>
<p t="185350" d="1419" w="1" a="1">
</p>
<p t="185360" d="3900" w="1"><s ac="252">most</s><s t="90" ac="239"> disturbing</s><s p="1" t="540" ac="202"> thing</s><s
t="1020" ac="252"> that</s><s t="1170" ac="252"> you've</s><s t="1290" ac="252"> ever</s></p>
<p t="186759" d="2501" w="1" a="1">
</p>
<p t="186769" d="5131" w="1" p="1"><s ac="219">seen</s><s t="411" ac="206"> unnoticed</s><s t="1411" ac="252"> or</s><s
t="1530" ac="231"> uncared-for</s><s t="2041" ac="227"> at</s><s t="2401" ac="227"> a</s></p>
<p t="189250" d="2650" w="1" a="1">
</p>
<p t="189260" d="5729" w="1"><s ac="226">restaurant</s><s p="1" t="360" ac="218"> and</s><s t="660" ac="234">
Kitchen</s><s t="990" ac="241"> Nightmares</s><s p="2" t="1640" ac="79"> that's</s></p>
<p t="191890" d="3099" w="1" a="1">
</p>
<p t="191900" d="5820" w="1"><s ac="239">a</s><s p="1" t="30" ac="219"> really</s><s p="1" t="179" ac="201"> good</s><s
p="2" t="300" ac="166"> question</s><s p="2" t="419" ac="175"> so</s><s p="2" t="960" ac="252"> I</s><s p="2" t="1830"
ac="252"> went</s><s p="2" t="2490" ac="246"> into</s><s p="2" t="2610" ac="243"> a</s></p>
<p t="194979" d="2741" w="1" a="1">
</p>
<p t="194989" d="4891" w="1"><s ac="252">refrigeration</s><s t="810" ac="252"> unit</s><s t="961" ac="252"> once</s><s
t="1351" ac="236"> and</s><s p="1" t="1651" ac="218"> saw</s><s t="2161" ac="252"> a</s><s t="2191" ac="244">
tartar</s></p>
<p t="197710" d="2170" w="1" a="1">
</p>
<p t="197720" d="4739" w="1"><s ac="252">sauce</s><s p="2" t="200" ac="122"> three</s><s t="1200" ac="252"> and</s><s
t="1290" ac="252"> a</s><s p="1" t="1320" ac="207"> half</s><s t="1410" ac="255"> years</s><s t="1680" ac="252">
out</s><s t="1859" ac="252"> of</s><s t="1890" ac="252"> date</s></p>
<p t="199870" d="2589" w="1" a="1">
</p>
<p t="199880" d="5130" w="1"><s ac="252">how</s><s t="960" ac="244"> fucking</s><s t="1380" ac="241"> dumb</s><s t="1590"
ac="252"> must</s><s t="1800" ac="252"> you</s><s t="1919" ac="252"> be</s><s t="2130" ac="252"> to</s><s p="1"
t="2160" ac="204"> use</s><s t="2460" ac="252"> this</s></p>
<p t="202449" d="2561" w="1" a="1">
</p>
<p t="202459" d="4261" w="1"><s ac="248">tartar</s><s t="391" ac="252"> sauce</s><s p="2" t="421" ac="164">
that's</s><s t="991" ac="249"> stank</s><s p="2" t="1351" ac="198"> to</s><s t="2340" ac="252"> use</s><s t="2521"
ac="252"> a</s></p>
<p t="205000" d="1720" w="1" a="1">
</p>
<p t="205010" d="2849" w="1"><s ac="252">source</s><s p="1" t="360" ac="216"> that's</s><s t="629" ac="249">
festering</s><s t="1140" ac="248"> bubbling</s><s p="1" t="1590" ac="207"> like</s></p>
<p t="206710" d="1149" w="1" a="1">
</p>
<p t="206720" d="5609" w="1"><s ac="252">something</s><s t="299" ac="252"> out</s><s t="389" ac="243"> of</s><s p="1"
t="419" ac="203"> fucking</s><s t="690" ac="243"> Harry</s><s t="870" ac="243"> Potter</s></p>
<p t="207849" d="4480" w="1" a="1">
</p>
<p t="207859" d="6361" w="1"><s ac="224">that</s><s t="690" ac="224"> was</s><s t="931" ac="250"> off</s><s p="1" t="1201"
ac="212"> three</s><s p="2" t="1891" ac="188"> years</s><s t="2100" ac="255"> ago</s><s t="3470" ac="249">
several</s></p>
<p t="212319" d="1901" w="1" a="1">
</p>
<p t="212329" d="4380" w="1"><s ac="227">Stuart</s><s t="541" ac="248"> littles</s><s p="1" t="810" ac="215">
spotted</s><s t="1410" ac="252"> in</s><s t="1530" ac="252"> the</s><s p="2" t="1591" ac="113"> corner</s><s p="1"
t="1801" ac="218"> the</s></p>
<p t="214210" d="2499" w="1" a="1">
</p>
<p t="214220" d="4470" w="1"><s ac="250">kitchen</s><s t="299" ac="240"> yeah</s><s t="1109" ac="236"> big</s><s t="1560"
ac="251"> motherfuckers</s><s p="2" t="2070" ac="167"> not</s><s t="2370" ac="252"> like</s></p>
<p t="216699" d="1991" w="1" a="1">
</p>
<p t="216709" d="3451" w="1"><s ac="226">cats</s><s p="2" t="211" ac="117"> I</s><s t="631" ac="252"> didn't</s><s
t="1291" ac="252"> know</s><s t="1351" ac="247"> they</s><s t="1471" ac="250"> only</s><s p="1" t="1560" ac="218">
have</s><s p="1" t="1650" ac="201"> cats</s></p>
<p t="218680" d="1480" w="1" a="1">
</p>
<p t="218690" d="2100" w="1"><s ac="242">they</s><s t="269" ac="252"> didn't</s><s t="570" ac="234"> resemble</s><s
p="1" t="1109" ac="218"> hey</s><s t="1290" ac="227"> it</s><s t="1350" ac="252"> was</s><s t="1440" ac="241">
a</s></p>
<p t="220150" d="640" w="1" a="1">
</p>
<p t="220160" d="3470" w="1"><s p="1" ac="206">fucking</s><s t="299" ac="252"> rats</s></p>
<p t="220780" d="2850" w="1" a="1">
</p>
<p t="220790" d="7319" w="1"><s ac="252">yeah</s><s t="449" ac="249"> pretty</s><s p="1" t="660" ac="213"> shocking</s><s
p="1" t="960" ac="216"> from</s><s p="1" t="1560" ac="252"> rats</s><s p="1" t="1949" ac="204"> to</s><s t="2250"
ac="244"> mold</s></p>
<p t="223620" d="4489" w="1" a="1">
</p>
<p t="223630" d="7449" w="1"><s p="2" ac="140">to</s><s t="1000" ac="244"> recently</s><s t="2880" ac="243"> come</s><s
t="3880" ac="252"> across</s><s t="3910" ac="252"> the</s><s t="4240" ac="252"> restaurant</s></p>
<p t="228099" d="2980" w="1" a="1">
</p>
<p t="228109" d="4831" w="1" p="1"><s ac="207">with</s><s t="241" ac="218"> plastic</s><s t="600" ac="249"> cheese</s><s
t="841" ac="233"> over</s><s t="1681" ac="252"> nachos</s><s t="2071" ac="235"> covered</s></p>
<p t="231069" d="1871" w="1" a="1">
</p>
<p t="231079" d="4051" w="1"><s ac="252">in</s><s t="331" ac="252"> mold</s><s p="2" t="660" ac="64"> you</s><s t="1051"
ac="252"> have</s><s p="2" t="1081" ac="156"> any</s><s t="1261" ac="255"> idea</s><s t="1530" ac="252"> how</s><s
t="1681" ac="252"> long</s></p>
<p t="232930" d="2200" w="1" a="1">
</p>
<p t="232940" d="5419" w="1"><s ac="227">cheese</s><s t="510" ac="252"> needs</s><s t="690" ac="236"> to</s><s t="810"
ac="252"> sit</s><s t="1049" ac="252"> in</s><s t="1199" ac="252"> a</s><s t="1290" ac="252"> fridge</s><s t="1500"
ac="249"> that's</s></p>
<p t="235120" d="3239" w="1" a="1">
</p>
<p t="235130" d="6229" w="1"><s p="1" ac="218">plastic</s><s t="329" ac="248"> cheese</s><s t="750" ac="255"> to</s><s
t="990" ac="252"> get</s><s p="1" t="1079" ac="214"> mold</s><s p="1" t="1520" ac="215"> fucking</s><s p="1" t="2520"
ac="252"> years</s></p>
<p t="238349" d="3010" w="1" a="1">
</p>
<p t="238359" d="3000" w="1"><s ac="226">yes</s></p>
<p t="243030" w="1" a="1">
</p>
<p t="243040" d="3580" w="1"><s p="2" ac="0">hippie-dippie</s><s t="1000" ac="240"> green</s><s p="1" t="1210" ac="219">
while</s><s t="1480" ac="252"> they</s><s p="1" t="1630" ac="202"> smoke</s><s p="1" t="1840" ac="202"> you</s></p>
<p t="244990" d="1630" w="1" a="1">
</p>
<p t="245000" d="3080" w="1"><s p="1" ac="217">might</s><s t="120" ac="243"> come</s><s t="270" ac="227"> up</s><s
p="1" t="330" ac="200"> with</s><s t="420" ac="252"> these</s><s t="480" ac="252"> names</s><s p="1" t="660" ac="215">
probably</s></p>
<p t="246610" d="1470" w="1" a="1">
</p>
<p t="246620" d="4770" w="1" p="1"><s ac="202">opium</s><s p="2" t="450" ac="84"> okay</s></p>
<p t="248070" d="3320" w="1" a="1">
</p>
<p t="248080" d="5350" w="1"><s ac="231">hmm</s><s t="1090" ac="238"> okay</s><s p="1" t="1570" ac="218"> so</s><s
t="2320" ac="252"> the</s><s t="2410" ac="228"> restaurant</s><s t="2770" ac="252"> business</s><s p="1" t="2980"
ac="205"> is</s></p>
<p t="251380" d="2050" w="1" a="1">
</p>
<p t="251390" d="3780" w="1"><s ac="223">notoriously</s><s t="630" ac="252"> difficult</s><s p="1" t="750" ac="217">
with</s><s t="1590" ac="252"> these</s><s t="1740" ac="221"> thin</s></p>
<p t="253420" d="1750" w="1" a="1">
</p>
<p t="253430" d="3779" w="1"><s ac="252">margins</s><s t="600" ac="252"> and</s><s p="1" t="750" ac="216"> then</s><s
p="1" t="840" ac="204"> of</s><s p="1" t="960" ac="252"> course</s><s p="1" t="1050" ac="201"> infinite</s></p>
<p t="255160" d="2049" w="1" a="1">
</p>
<p t="255170" d="4110" w="1"><s ac="252">space</s><s t="240" ac="252"> for</s><s t="510" ac="252"> human</s><s t="900"
ac="223"> error</s><s p="2" t="1200" ac="143"> and</s><s p="2" t="1470" ac="148"> then</s><s p="2" t="1860" ac="252">
when</s></p>
<p t="257199" d="2081" w="1" a="1">
</p>
<p t="257209" d="3901" w="1"><s ac="252">you're</s><s p="1" t="211" ac="210"> a</s><s t="361" ac="233"> chef</s><s
t="780" ac="248"> who's</s><s t="1081" ac="252"> famous</s><s p="1" t="1381" ac="210"> and</s><s t="1771"
ac="252"> has</s><s t="1861" ac="252"> this</s></p>
<p t="259270" d="1840" w="1" a="1">
</p>
<p t="259280" d="4680" w="1"><s ac="252">large</s><s t="269" ac="226"> empire</s><s t="900" ac="252"> that</s><s t="1110"
ac="231"> goes</s><s t="1320" ac="252"> across</s><s t="1410" ac="252"> several</s></p>
<p t="261100" d="2860" w="1" a="1">
</p>
<p t="261110" d="4980" w="1"><s ac="252">continents</s><s p="2" t="450" ac="143"> you</s><s t="1050" ac="252"> end</s><s
t="1290" ac="249"> up</s><s t="1650" ac="236"> being</s><s t="2040" ac="252"> a</s><s t="2100" ac="252"> target</s><s
p="1" t="2400" ac="206"> for</s></p>
<p t="263950" d="2140" w="1" a="1">
</p>
<p t="263960" d="4020" w="1"><s p="1" ac="209">the</s><s t="120" ac="252"> type</s><s t="300" ac="252"> of</s><s p="2"
t="330" ac="168"> Yelper</s><s t="1320" ac="231"> or</s><s t="1530" ac="237"> TripAdvisor</s></p>
<p t="266080" d="1900" w="1" a="1">
</p>
<p t="266090" d="3570" w="1"><s p="1" ac="214">comment</s><s t="510" ac="227"> or</s><s t="660" ac="250">
there's</s><s t="870" ac="252"> like</s><s p="2" t="930" ac="196"> this</s><s t="1410" ac="228"> place</s><s
t="1650" ac="252"> is</s><s t="1860" ac="252"> a</s></p>
<p t="267970" d="1690" w="1" a="1">
</p>
<p t="267980" d="3570" w="1"><s p="1" ac="216">total</s><s t="360" ac="252"> ripoff</s><s p="2" t="510" ac="143"> I</s><s
t="960" ac="252"> could</s><s t="1140" ac="246"> have</s><s t="1230" ac="235"> made</s><s p="1" t="1380" ac="200">
it</s><s t="1500" ac="252"> for</s></p>
<p t="269650" d="1900" w="1" a="1">
</p>
<p t="269660" d="4350" w="1"><s p="2" ac="159">three</s><s p="2" t="240" ac="126"> dollars</s><s p="1" t="390" ac="203">
can</s><s t="1260" ac="252"> you</s><s p="1" t="1290" ac="217"> explain</s><s t="1710" ac="252"> in</s></p>
<p t="271540" d="2470" w="1" a="1">
</p>
<p t="271550" d="4170" w="1"><s ac="252">layman's</s><s t="30" ac="252"> terms</s><s p="2" t="510" ac="161">
the</s><s t="1050" ac="252"> basic</s><s t="1500" ac="252"> math</s><s p="1" t="1740" ac="201"> behind</s><s t="2220"
ac="252"> how</s></p>
<p t="274000" d="1720" w="1" a="1">
</p>
<p t="274010" d="3030" w="1"><s ac="249">a</s><s p="1" t="270" ac="215"> twenty</s><s p="1" t="540" ac="215"> five</s><s
p="1" t="690" ac="239"> dollar</s><s p="1" t="720" ac="236"> cheeseburger</s><s p="1" t="1530" ac="252"> might</s></p>
<p t="275710" d="1330" w="1" a="1">
</p>
<p t="275720" d="4710" w="1"><s ac="252">end</s><s t="150" ac="252"> up</s><s p="2" t="270" ac="197"> on</s><s t="420"
ac="252"> a</s><s t="450" ac="252"> menu</s><s p="2" t="690" ac="107"> mmm</s></p>
<p t="277030" d="3400" w="1" a="1">
</p>
<p t="277040" d="4800" w="1"><s ac="238">I've</s><s t="270" ac="249"> seen</s><s t="600" ac="233"> chefs</s><s
t="1410" ac="252"> with</s><s p="1" t="1940" ac="201"> freaking</s><s t="2940" ac="252"> gold</s><s t="3180" ac="234">
leaf</s></p>
<p t="280420" d="1420" w="1" a="1">
</p>
<p t="280430" d="3180" w="1"><s ac="231">on</s><s t="210" ac="250"> a</s><s t="240" ac="251"> burger</s><s p="2" t="600"
ac="159"> ready</s><s p="1" t="930" ac="207"> to</s><s t="1080" ac="227"> get</s><s t="1230" ac="224"> to</s><s
t="1290" ac="240"> a</s><s t="1320" ac="240"> hundred</s></p>
<p t="281830" d="1780" w="1" a="1">
</p>
<p t="281840" d="2940" w="1"><s ac="240">dollar</s><s t="270" ac="244"> mark</s><s t="510" ac="255"> which</s><s p="2"
t="750" ac="61"> is</s><s t="900" ac="252"> a</s><s t="930" ac="252"> bit</s><s t="1140" ac="252"> stupid</s><s
t="1380" ac="224"> really</s></p>
<p t="283600" d="1180" w="1" a="1">
</p>
<p t="283610" d="4350" w="1"><s ac="236">because</s><s t="180" ac="252"> you</s><s t="270" ac="234"> don't</s><s
t="450" ac="252"> go</s><s p="2" t="690" ac="121"> near</s><s p="2" t="930" ac="72"> a</s><s p="1" t="1050" ac="218">
fucking</s></p>
<p t="284770" d="3190" w="1" a="1">
</p>
<p t="284780" d="6300" w="1"><s p="2" ac="145">burger</s><s t="300" ac="252"> with</s><s t="540" ac="248"> gold</s><s
t="690" ac="248"> leaf</s><s p="1" t="840" ac="201"> and</s><s p="2" t="1880" ac="159"> white</s><s t="2880" ac="238">
ain't</s></p>
<p t="287950" d="3130" w="1" a="1">
</p>
<p t="287960" d="5310" w="1"><s ac="245">that</s><s t="180" ac="224"> flavor</s><s t="510" ac="228"> so</s><s p="2"
t="1430" ac="102"> 25</s><s p="1" t="2430" ac="219"> dollar</s><s t="2610" ac="252"> burger</s><s p="1" t="2760"
ac="200"> it's</s><s t="3030" ac="252"> all</s></p>
<p t="291070" d="2200" w="1" a="1">
</p>
<p t="291080" d="4020" w="1"><s ac="252">about</s><s t="120" ac="252"> the</s><s t="300" ac="229"> patty</s><s p="1"
t="810" ac="206"> the</s><s t="1290" ac="236"> thickness</s><s p="1" t="1680" ac="201"> the</s><s t="1950" ac="252">
blend</s></p>
<p t="293260" d="1840" w="1" a="1">
</p>
<p t="293270" d="3990" w="1"><s ac="236">it</s><s t="540" ac="234"> depends</s><s t="870" ac="252"> on</s><s t="930"
ac="234"> whether</s><s t="1290" ac="228"> it's</s><s p="1" t="1470" ac="204"> a</s><s p="2" t="1530" ac="140">
chuck</s><s t="1740" ac="248"> for</s></p>
<p t="295090" d="2170" w="1" a="1">
</p>
<p t="295100" d="4890" w="1"><s p="1" ac="215">the</s><s t="90" ac="255"> short</s><s t="330" ac="252"> rib</s><s p="2"
t="480" ac="187"> a</s><s t="690" ac="252"> great</s><s t="1080" ac="252"> brioche</s><s t="1380" ac="252"> bun</s><s
p="1" t="1710" ac="200"> and</s></p>
<p t="297250" d="2740" w="1" a="1">
</p>
<p t="297260" d="4590" w="1"><s ac="233">how</s><s t="810" ac="252"> you</s><s t="870" ac="252"> lay</s><s t="1020"
ac="252"> that</s><s t="1170" ac="252"> up</s><s p="1" t="1230" ac="207"> with</s><s p="1" t="1710" ac="214">
here</s><s p="1" t="2430" ac="252"> all</s><s p="1" t="2640" ac="227"> the</s></p>
<p t="299980" d="1870" w="1" a="1">
</p>
<p t="299990" d="3540" w="1"><s ac="251">trappings</s><s t="210" ac="252"> of</s><s t="480" ac="252"> a</s><s t="570"
ac="252"> luxurious</s><s t="900" ac="239"> burger</s><s p="1" t="1230" ac="201"> is</s><s t="1620" ac="252">
there</s></p>
<p t="301840" d="1690" w="1" a="1">
</p>
<p t="301850" d="4080" w="1"><s ac="252">a</s><s t="30" ac="252"> hidden</s><s p="1" t="450" ac="200"> cost</s><s t="810"
ac="252"> and</s><s t="1140" ac="252"> running</s><s t="1410" ac="252"> a</s><s t="1500" ac="252"> restaurant</s></p>
<p t="303520" d="2410" w="1" a="1">
</p>
<p t="303530" d="4980" w="1"><s p="1" ac="204">that</s><s t="360" ac="223"> most</s><s t="720" ac="252"> diners</s><s
t="1110" ac="252"> are</s><s t="1260" ac="252"> unaware</s><s t="1500" ac="252"> of</s><s p="1" t="1710" ac="206">
yeah</s></p>
<p t="305920" d="2590" w="1" a="1">
</p>
<p t="305930" d="3570" w="1"><s ac="228">it's</s><s t="330" ac="243"> called</s><s t="510" ac="247"> rent</s><s
p="1" t="690" ac="207"> and</s><s t="1110" ac="246"> labor</s><s p="2" t="1290" ac="143"> costs</s><s p="2" t="1680"
ac="187"> two</s><s p="2" t="2310" ac="252"> big</s></p>
<p t="308500" d="1000" w="1" a="1">
</p>
<p t="308510" d="2540" w="1"><s ac="252">key</s><s t="180" ac="252"> factors</s><s t="570" ac="252"> in</s><s t="690"
ac="252"> running</s><s t="930" ac="252"> a</s><s t="960" ac="252"> successful</s></p>
<p t="309490" d="1560" w="1" a="1">
</p>
<p t="309500" d="5580" w="1" p="1"><s ac="201">business</s></p>
<p t="311040" d="4040" w="1" a="1">
</p>
<p t="311050" d="5200" w="1"><s ac="245">landlords</s><s t="1350" ac="249"> they</s><s t="2350" ac="252"> win</s><s
t="2500" ac="252"> either</s><s t="2620" ac="252"> way</s><s p="1" t="2710" ac="212"> so</s><s t="3550" ac="250">
the</s></p>
<p t="315070" d="1180" w="1" a="1">
</p>
<p t="315080" d="4290" w="1"><s ac="252">more</s><s t="150" ac="252"> successful</s><s p="1" t="420" ac="215"> you</s><s
t="600" ac="252"> are</s><s t="660" ac="252"> the</s><s t="720" ac="252"> more</s><s t="870" ac="252"> rent</s></p>
<p t="316240" d="3130" w="1" a="1">
</p>
<p t="316250" d="5790" w="1"><s p="1" ac="207">they</s><s t="660" ac="243"> ask</s><s t="840" ac="248"> for</s><s t="930"
ac="241"> the</s><s t="1890" ac="252"> less</s><s t="2130" ac="252"> successful</s><s t="2730" ac="252"> you</s><s
t="3090" ac="252"> are</s></p>
<p t="319360" d="2680" w="1" a="1">
</p>
<p t="319370" d="4320" w="1"><s ac="249">the</s><s t="660" ac="252"> more</s><s t="780" ac="249"> demanding</s><s t="1200"
ac="227"> of</s><s t="1350" ac="228"> the</s><s t="1590" ac="227"> rent</s><s t="1830" ac="235"> so</s><s t="1980"
ac="252"> the</s></p>
<p t="322030" d="1660" w="1" a="1">
</p>
<p t="322040" d="3450" w="1"><s ac="252">great</s><s t="240" ac="252"> way</s><s p="2" t="420" ac="164"> of</s><s t="570"
ac="252"> identifying</s><s t="1050" ac="252"> a</s><s t="1200" ac="227"> classy</s></p>
<p t="323680" d="1810" w="1" a="1">
</p>
<p t="323690" d="4110" w="1"><s ac="252">restaurant</s><s p="2" t="150" ac="182"> is</s><s t="570" ac="239"> being</s><s
t="1170" ac="252"> full</s><s t="1380" ac="252"> on</s><s p="1" t="1500" ac="209"> a</s><s t="1530" ac="235">
Monday</s></p>
<p t="325480" d="2320" w="1" a="1">
</p>
<p t="325490" d="3210" w="1"><s p="2" ac="165">night</s><s t="179" ac="233"> Friday</s><s t="1020" ac="226">
Saturday</s><s p="1" t="1380" ac="202"> we'll</s><s t="1500" ac="252"> look</s><s t="1590" ac="246">
that'll</s></p>
<p t="327790" d="910" w="1" a="1">
</p>
<p t="327800" d="2310" w="1"><s ac="240">take</s><s p="2" t="150" ac="81"> care</s><s p="1" t="330" ac="203"> of</s><s
p="1" t="390" ac="216"> itself</s></p>
<p t="328690" d="1420" w="1" a="1">
</p>
<p t="328700" d="3060" w="1"><s p="1" ac="202">naturally</s><s t="600" ac="252"> if</s><s t="719" ac="252"> you</s><s
t="810" ac="252"> can</s><s t="930" ac="252"> fill</s><s t="1110" ac="252"> it</s><s t="1200" ac="251"> Monday</s></p>
<p t="330100" d="1660" w="1" a="1">
</p>
<p t="330110" d="2270" w="1"><s ac="251">Tuesday</s><s t="270" ac="251"> Wednesday</s><s t="300" ac="232">
you'll</s><s t="1170" ac="252"> not</s><s t="1320" ac="252"> depend</s><s t="1590" ac="252"> of</s></p>
<p t="331750" d="630" w="1" a="1">
</p>
<p t="331760" d="2150" w="1"><s p="2" ac="191">the</s><s t="60" ac="252"> way</s><s t="150" ac="252"> there</s></p>
<p t="332370" d="1540" w="1" a="1">
</p>
<p t="332380" d="4450" w="1">[Music]</p>
<p t="333900" d="2930" w="1" a="1">
</p>
<p t="333910" d="5290" w="1"><s p="1" ac="219">fucking</s><s t="1000" ac="226"> grapefruit</s><s p="2" t="1420" ac="86">
in</s><s p="2" t="1540" ac="192"> hot</s><s p="2" t="1690" ac="240"> sauce</s><s p="2" t="1930" ac="138"> few</s></p>
<p t="336820" d="2380" w="1" a="1">
</p>
<p t="336830" d="4050" w="1"><s p="2" ac="165">series</s><s p="2" t="300" ac="124"> I</s><s p="2" t="590" ac="252">
know</s><s p="2" t="1590" ac="255"> that</s><s p="2" t="1770" ac="252"> you</s><s p="2" t="1830" ac="228">
spent</s><s p="1" t="2010" ac="200"> your</s><s t="2100" ac="240"> early</s></p>
<p t="339190" d="1690" w="1" a="1">
</p>
<p t="339200" d="3480" w="1"><s ac="252">years</s><s p="1" t="30" ac="204"> studying</s><s t="510" ac="252">
classic</s><s t="990" ac="252"> French</s><s t="1230" ac="252"> technique</s></p>
<p t="340870" d="1810" w="1" a="1">
</p>
<p t="340880" d="3870" w="1"><s p="2" ac="152">you're</s><s t="360" ac="252"> bouncing</s><s t="720" ac="252">
around</s><s p="1" t="780" ac="209"> restaurants</s><s t="1650" ac="236"> and</s></p>
<p t="342670" d="2080" w="1" a="1">
</p>
<p t="342680" d="3360" w="1"><s ac="250">London</s><s p="1" t="420" ac="208"> and</s><s p="1" t="600" ac="212">
Paris</s><s p="1" t="780" ac="218"> working</s><s t="1410" ac="249"> alongside</s><s t="1680" ac="252"> some</s></p>
<p t="344740" d="1300" w="1" a="1">
</p>
<p t="344750" d="3240" w="1"><s ac="252">of</s><s p="1" t="30" ac="201"> the</s><s p="1" t="90" ac="216"> most</s><s
p="1" t="240" ac="239"> influential</s><s p="1" t="690" ac="252"> chefs</s><s p="1" t="840" ac="252"> in</s><s
p="1" t="1200" ac="252"> the</s></p>
<p t="346030" d="1960" w="1" a="1">
</p>
<p t="346040" d="3240" w="1"><s ac="252">world</s><s p="2" t="30" ac="126"> so</s><s t="840" ac="252"> at</s><s p="1"
t="930" ac="208"> that</s><s p="1" t="1110" ac="216"> in</s><s p="1" t="1290" ac="252"> mind</s><s p="1" t="1590"
ac="233"> I</s><s p="1" t="1740" ac="208"> want</s><s t="1890" ac="234"> to</s></p>
<p t="347980" d="1300" w="1" a="1">
</p>
<p t="347990" d="3480" w="1"><s p="1" ac="218">bounce</s><s t="210" ac="252"> some</s><s t="420" ac="252"> of</s><s
t="510" ac="252"> the</s><s t="570" ac="239"> people</s><s t="930" ac="252"> some</s><s p="1" t="1110" ac="217">
of</s><s p="1" t="1170" ac="208"> the</s></p>
<p t="349270" d="2200" w="1" a="1">
</p>
<p t="349280" d="4110" w="1"><s ac="252">mentors</s><s p="2" t="390" ac="173"> that</s><s p="1" t="660" ac="207">
helped</s><s p="1" t="930" ac="217"> shape</s><s p="1" t="1020" ac="211"> Gordon</s><s t="1710" ac="255">
Ramsay</s></p>
<p t="351460" d="1930" w="1" a="1">
</p>
<p t="351470" d="3660" w="1"><s ac="252">into</s><s t="210" ac="252"> this</s><s t="330" ac="248"> battle-hardened</s><s
t="1320" ac="252"> perfectionist</s></p>
<p t="353380" d="1750" w="1" a="1">
</p>
<p t="353390" d="2910" w="1"><s ac="252">that</s><s p="1" t="90" ac="206"> we</s><s t="210" ac="252"> see</s><s t="390"
ac="252"> today</s><s p="2" t="510" ac="164"> and</s><s t="870" ac="220"> just</s><s t="1350" ac="237"> curious</s><s
t="1620" ac="246"> what</s></p>
<p t="355120" d="1180" w="1" a="1">
</p>
<p t="355130" d="2520" w="1"><s ac="252">you</s><s t="90" ac="252"> learned</s><s t="270" ac="252"> about</s><s p="1"
t="390" ac="206"> cooking</s><s t="900" ac="252"> what</s><s t="1080" ac="252"> you</s></p>
<p t="356290" d="1360" w="1" a="1">
</p>
<p t="356300" d="2940" w="1"><s ac="252">learned</s><s p="2" t="180" ac="147"> about</s><s t="330" ac="252">
business</s><s p="1" t="570" ac="213"> maybe</s><s t="990" ac="221"> even</s><s t="1230" ac="252"> what</s></p>
<p t="357640" d="1600" w="1" a="1">
</p>
<p t="357650" d="4130" w="1"><s ac="252">you</s><s t="90" ac="252"> learned</s><s p="2" t="270" ac="187"> about</s><s
t="480" ac="252"> life</s><s t="720" ac="228"> from</s><s p="1" t="930" ac="211"> each</s><s t="1230" ac="252">
okay</s></p>
<p t="359230" d="2550" w="1" a="1">
</p>
<p t="359240" d="5820" w="1"><s ac="252">we'll</s><s t="570" ac="252"> start</s><s t="750" ac="252"> with</s><s
t="840" ac="252"> Marco</s><s t="1230" ac="252"> Pierre</s><s t="1440" ac="252"> White</s><s p="1" t="1560" ac="216">
mhm</s></p>
<p t="361770" d="3290" w="1" a="1">
</p>
<p t="361780" d="4360" w="1"><s p="2" ac="187">fucking</s><s t="1000" ac="249"> phenomenon</s><s p="1" t="1390" ac="200">
a</s><s t="1620" ac="228"> nut</s><s p="2" t="2620" ac="167"> buster</s><s p="2" t="3070" ac="166"> a</s></p>
<p t="365050" d="1090" w="1" a="1">
</p>
<p t="365060" d="3360" w="1" p="2"><s ac="122">ballbreaker</s></p>
<p t="366130" d="2290" w="1" a="1">
</p>
<p t="366140" d="4050" w="1"><s p="2" ac="198">super</s><s t="510" ac="252"> talented</s><s t="660" ac="252"> chef</s><s
p="1" t="1080" ac="201"> if</s><s p="1" t="1710" ac="214"> you</s><s p="1" t="1830" ac="252"> thought</s><s p="1"
t="2010" ac="248"> my</s></p>
<p t="368410" d="1780" w="1" a="1">
</p>
<p t="368420" d="3180" w="1"><s ac="230">performance</s><s p="2" t="660" ac="159"> sometimes</s><s p="1" t="1080"
ac="215"> was</s><s t="1290" ac="252"> shocking</s><s t="1680" ac="252"> in</s></p>
<p t="370180" d="1420" w="1" a="1">
</p>
<p t="370190" d="3840" w="1"><s ac="252">the</s><s t="90" ac="252"> kitchen</s><s p="1" t="450" ac="212"> that</s><s
p="2" t="600" ac="117"> was</s><s p="2" t="780" ac="117"> a</s><s p="2" t="960" ac="170"> fucking</s><s t="1290"
ac="252"> Hollywood</s></p>
<p t="371590" d="2440" w="1" a="1">
</p>
<p t="371600" d="3810" w="1"><s p="1" ac="206">blockbuster</s><s p="2" t="720" ac="188"> right</s><s t="990" ac="252">
there</s><s p="2" t="1170" ac="171"> Oscar</s><s p="2" t="1680" ac="127"> nominated</s></p>
<p t="374020" d="1390" w="1" a="1">
</p>
<p t="374030" d="3900" w="1" p="2"><s ac="79">Marc</s><s t="390" ac="105"> appear</s><s p="1" t="630" ac="214">
wine</s></p>
<p t="375400" d="2530" w="1" a="1">
</p>
<p t="375410" d="4620" w="1"><s ac="252">that</s><s t="870" ac="252"> guy</s><s t="990" ac="252"> had</s><s t="1140"
ac="252"> finesse</s><s t="1440" ac="237"> he</s><s t="2010" ac="252"> could</s><s t="2160" ac="227"> close</s><s
t="2340" ac="252"> his</s></p>
<p t="377920" d="2110" w="1" a="1">
</p>
<p t="377930" d="3570" w="1"><s ac="248">eyes</s><s p="2" t="120" ac="162"> and</s><s t="300" ac="239"> dress</s><s
t="480" ac="246"> a</s><s t="510" ac="233"> play</s><s p="1" t="720" ac="217"> beautifully</s><s p="1" t="1200"
ac="216"> and</s><s p="1" t="2010" ac="252"> he</s></p>
<p t="380020" d="1480" w="1" a="1">
</p>
<p t="380030" d="1830" w="1"><s ac="252">could</s><s t="150" ac="252"> come</s><s t="300" ac="252"> out</s><s t="390"
ac="233"> looking</s><s t="750" ac="252"> like</s><s p="1" t="780" ac="207"> a</s><s t="930" ac="252"> Gucci</s></p>
<p t="381490" d="370" w="1" a="1">
</p>
<p t="381500" d="2310" w="1"><s ac="252">handbag</s></p>
<p t="381850" d="1960" w="1" a="1">
</p>
<p t="381860" d="3960" w="1"><s ac="248">I</s><s t="120" ac="252"> mean</s><s t="270" ac="223"> stunning</s><s t="780"
ac="252"> how</s><s t="1230" ac="252"> about</s><s t="1350" ac="252"> geese</s><s t="1590" ac="252"> of</s><s t="1770"
ac="252"> what</s></p>
<p t="383800" d="2020" w="1" a="1">
</p>
<p t="383810" d="4110" w="1"><s ac="236">he</s><s t="780" ac="249"> said</s><s t="990" ac="252"> what</s><s t="1110"
ac="233"> was</s><s t="1230" ac="252"> amazing</s><s p="2" t="1440" ac="143"> it</s><s t="1830" ac="252"> was</s><s
p="1" t="1860" ac="216"> like</s></p>
<p t="385810" d="2110" w="1" a="1">
</p>
<p t="385820" d="4320" w="1"><s ac="252">this</s><s t="120" ac="252"> perfect</s><s p="1" t="360" ac="202">
Frenchman</s><s t="1200" ac="252"> that</s><s t="1350" ac="226"> was</s><s p="2" t="1620" ac="171"> your</s></p>
<p t="387910" d="2230" w="1" a="1">
</p>
<p t="387920" d="3540" w="1"><s ac="252">hardest</s><s p="1" t="240" ac="213"> fuck</s><s t="600" ac="252"> on</s><s
p="1" t="750" ac="204"> the</s><s t="810" ac="252"> outside</s><s p="1" t="1200" ac="219"> and</s><s t="1710"
ac="235"> then</s><s p="1" t="2160" ac="200"> you</s></p>
<p t="390130" d="1330" w="1" a="1">
</p>
<p t="390140" d="2820" w="1"><s ac="252">look</s><s t="150" ac="252"> at</s><s p="1" t="270" ac="202"> him</s><s t="390"
ac="252"> it's</s><s t="600" ac="252"> the</s><s t="660" ac="227"> kind</s><s t="870" ac="252"> of</s><s t="960"
ac="225"> guy</s><s t="1110" ac="252"> that</s></p>
<p t="391450" d="1510" w="1" a="1">
</p>
<p t="391460" d="1950" w="1"><s ac="252">your</s><s t="270" ac="252"> grandma</s><s t="630" ac="223"> would</s><s t="810"
ac="252"> take</s><s p="2" t="1080" ac="140"> the</s><s p="2" t="1230" ac="0"> fucking</s></p>
<p t="392950" d="460" w="1" a="1">
</p>
<p t="392960" d="2160" w="1"><s ac="248">bingo</s></p>
<p t="393400" d="1720" w="1" a="1">
</p>
<p t="393410" d="3870" w="1"><s ac="252">we</s><s t="450" ac="252"> had</s><s t="630" ac="255"> one</s><s p="1" t="1050"
ac="201"> and</s><s p="2" t="1170" ac="119"> a</s><s p="2" t="1200" ac="119"> half</s><s p="2" t="1290" ac="252">
days</s><s p="2" t="1440" ac="227"> off</s><s p="2" t="1590" ac="252"> a</s><s p="2" t="1620" ac="252"> week</s></p>
<p t="395110" d="2170" w="1" a="1">
</p>
<p t="395120" d="4500" w="1"><s p="1" ac="209">that</s><s t="750" ac="226"> half</s><s t="1080" ac="252"> a</s><s t="1230"
ac="252"> day</s><s t="1380" ac="252"> if</s><s t="1530" ac="223"> you</s><s t="1620" ac="252"> took</s><s p="2"
t="1800" ac="125"> that</s><s t="1980" ac="246"> half</s></p>
<p t="397270" d="2350" w="1" a="1">
</p>
<p t="397280" d="6840" w="1"><s p="2" ac="180">day</s><s p="2" t="300" ac="179"> you're</s><s p="2" t="780" ac="252">
fucked</s><s p="1" t="1170" ac="202"> so</s><s t="1890" ac="252"> he</s><s t="1980" ac="252"> had</s><s t="2100"
ac="252"> to</s><s p="1" t="2190" ac="200"> be</s><s t="2310" ac="252"> in</s></p>
<p t="399610" d="4510" w="1" a="1">
</p>
<p t="399620" d="6510" w="1"><s p="1" ac="202">there</s><s p="1" t="360" ac="206"> no</s><s p="1" t="960" ac="246">
pay</s><s p="2" t="1490" ac="167"> and</s><s t="2510" ac="252"> shown</s><s t="3510" ac="252"> willingness</s><s
p="1" t="3780" ac="209"> you</s></p>
<p t="404110" d="2020" w="1" a="1">
</p>
<p t="404120" d="3180" w="1"><s ac="252">have</s><s t="120" ac="252"> to</s><s t="210" ac="252"> learn</s><s p="1"
t="450" ac="219"> and</s><s t="720" ac="252"> as</s><s t="1110" ac="242"> an</s><s t="1650" ac="239"> English</s><s
t="1830" ac="252"> cook</s></p>
<p t="406120" d="1180" w="1" a="1">
</p>
<p t="406130" d="3570" w="1" p="1"><s ac="217">enough</s><s t="240" ac="200"> education</s><s t="660" ac="231"> I</s><s
t="720" ac="252"> had</s><s t="840" ac="252"> to</s><s t="900" ac="228"> bust</s><s t="1050" ac="252"> my</s><s
t="1140" ac="252"> ass</s></p>
<p t="407290" d="2410" w="1" a="1">
</p>
<p t="407300" d="5040" w="1"><s ac="252">off</s><s t="270" ac="252"> twice</s><s t="450" ac="223"> as</s><s t="630"
ac="221"> hard</s><s p="1" t="780" ac="210"> now</s><s p="1" t="1470" ac="202"> yeah</s><s p="1" t="2010" ac="252">
one</s><s p="1" t="2250" ac="252"> of</s><s p="1" t="2280" ac="207"> the</s></p>
<p t="409690" d="2650" w="1" a="1">
</p>
<p t="409700" d="4620" w="1"><s ac="229">best</s><s t="180" ac="252"> chefs</s><s t="330" ac="226"> living</s><s p="2"
t="990" ac="147"> today</s><s p="1" t="1260" ac="211"> and</s><s t="2010" ac="252"> still</s><s t="2400" ac="224">
a</s></p>
<p t="412330" d="1990" w="1" a="1">
</p>
<p t="412340" d="3810" w="1"><s ac="252">prominent</s><s p="2" t="360" ac="166"> figure</s><s p="2" t="570" ac="125">
nada</s><s p="2" t="1290" ac="247"> cuisine</s><s p="2" t="1620" ac="159"> how</s><s t="1890" ac="252"> about</s></p>
<p t="414310" d="1840" w="1" a="1">
</p>
<p t="414320" d="6410" w="1"><s ac="227">Joel</s><s t="240" ac="252"> Robuchon</s><s p="1" t="470" ac="202"> Robert</s><s
p="2" t="1470" ac="167"> Sean</s><s t="1650" ac="252"> was</s><s t="1800" ac="252"> a</s></p>
<p t="416140" d="4590" w="1" a="1">
</p>
<p t="416150" d="6750" w="1"><s ac="239">taskmaster</s><s p="1" t="590" ac="202"> combined</s><s p="1" t="2060" ac="203">
Marco</s><s p="2" t="3060" ac="172"> Tony</s><s t="3570" ac="252"> Bourdain</s></p>
<p t="420720" d="2180" w="1" a="1">
</p>
<p t="420730" d="3820" w="1" p="2"><s ac="0">geesa</s><s t="1000" ac="78"> wah</s><s t="1210" ac="241"> Alvaro</s></p>
<p t="422890" d="1660" w="1" a="1">
</p>
<p t="422900" d="4500" w="1"><s ac="252">all</s><s t="240" ac="252"> together</s><s p="2" t="510" ac="165"> and</s><s
p="1" t="840" ac="212"> you've</s><s t="990" ac="252"> got</s><s t="1020" ac="252"> durable</s><s p="1" t="1410"
ac="207"> shop</s></p>
<p t="424540" d="2860" w="1" a="1">
</p>
<p t="424550" d="5460" w="1"><s p="1" ac="216">because</s><s t="900" ac="224"> you</s><s t="1500" ac="237"> know</s><s
p="1" t="1590" ac="215"> and</s><s t="2250" ac="252"> the</s><s p="1" t="2370" ac="214"> outside</s><s t="2670"
ac="238"> world</s></p>
<p t="427390" d="2620" w="1" a="1">
</p>
<p t="427400" d="5490" w="1"><s p="1" ac="207">it</s><s t="240" ac="252"> was</s><s t="330" ac="252"> this</s><s t="420"
ac="242"> incredible</s><s t="1220" ac="227"> successful</s><s t="2220" ac="252"> genius</s></p>
<p t="430000" d="2890" w="1" a="1">
</p>
<p t="430010" d="4560" w="1"><s ac="247">but</s><s t="690" ac="252"> behind</s><s p="1" t="990" ac="215"> the</s><s
t="1170" ac="252"> scenes</s><s p="2" t="1200" ac="91"> oh</s><s t="1590" ac="252"> my</s><s t="1980" ac="222">
god</s><s t="2280" ac="252"> you</s><s t="2760" ac="252"> know</s></p>
<p t="432880" d="1690" w="1" a="1">
</p>
<p t="432890" d="3660" w="1"><s ac="252">from</s><s t="330" ac="252"> raviolis</s><s t="810" ac="252"> flying</s><s
t="1080" ac="236"> over</s><s t="1290" ac="236"> your</s><s p="1" t="1350" ac="204"> head</s><s p="1" t="1410"
ac="208"> to</s></p>
<p t="434560" d="1990" w="1" a="1">
</p>
<p t="434570" d="3990" w="1"><s ac="231">fucking</s><s t="270" ac="252"> copper</s><s t="450" ac="252"> pans</s><s
p="1" t="720" ac="200"> to</s><s t="960" ac="236"> I</s><s t="1170" ac="252"> used</s><s t="1740" ac="252"> to</s><s
p="1" t="1800" ac="212"> see</s></p>
<p t="436540" d="2020" w="1" a="1">
</p>
<p t="436550" d="3360" w="1"><s ac="252">ducks</s><s t="270" ac="252"> flying</s><s t="600" ac="239"> from</s><s t="1470"
ac="251"> one</s><s p="2" t="1500" ac="137"> end</s><s t="1680" ac="242"> of</s><s t="1710" ac="223"> the</s><s
t="1800" ac="252"> case</s><s t="1890" ac="245"> of</s></p>
<p t="438550" d="1360" w="1" a="1">
</p>
<p t="438560" d="1890" w="1"><s p="1" ac="216">the</s><s t="60" ac="226"> other</s><s p="1" t="180" ac="214">
thinking</s><s t="510" ac="227"> that</s><s p="1" t="660" ac="207"> just</s><s p="2" t="870" ac="146"> reborn</s><s
t="1230" ac="243"> the</s></p>
<p t="439900" d="550" w="1" a="1">
</p>
<p t="439910" d="1980" w="1"><s ac="234">fucking</s><s p="1" t="270" ac="217"> wings</s></p>
<p t="440440" d="1450" w="1" a="1">
</p>
<p t="440450" d="3240" w="1"><s ac="252">the</s><s t="630" ac="252"> only</s><s t="750" ac="222"> thing</s><s p="2"
t="900" ac="167"> was</s><s t="1020" ac="252"> missing</s><s p="2" t="1110" ac="183"> with</s><s t="1380" ac="255">
the</s></p>
<p t="441880" d="1810" w="1" a="1">
</p>
<p t="441890" d="2880" w="1"><s ac="248">feathers</s><s p="1" t="300" ac="209"> I</s><s t="480" ac="252"> remember</s><s
t="1080" ac="255"> me</s><s p="1" t="1140" ac="204"> telling</s><s t="1530" ac="252"> me</s><s p="2" t="1650"
ac="184"> that</s></p>
<p t="443680" d="1090" w="1" a="1">
</p>
<p t="443690" d="2220" w="1"><s ac="252">the</s><s t="60" ac="252"> best</s><s p="1" t="180" ac="203"> thing</s><s
p="2" t="300" ac="147"> ever</s><s p="1" t="540" ac="205"> happened</s><s p="1" t="660" ac="204"> to</s><s p="1"
t="870" ac="220"> was</s><s p="1" t="1050" ac="252"> a</s></p>
<p t="444760" d="1150" w="1" a="1">
</p>
<p t="444770" d="2790" w="1"><s ac="252">shit</s><s p="2" t="240" ac="127"> that</s><s t="360" ac="252"> ran</s><s
t="480" ac="252"> down</s><s p="2" t="510" ac="147"> my</s><s t="690" ac="252"> mother's</s><s t="900" ac="252">
leg</s><s t="1020" ac="252"> when</s></p>
<p t="445900" d="1660" w="1" a="1">
</p>
<p t="445910" d="2910" w="1"><s ac="252">she</s><s p="1" t="30" ac="207"> gave</s><s t="150" ac="228"> birth</s><s
p="2" t="210" ac="140"> to</s><s p="1" t="420" ac="212"> me</s><s t="600" ac="226"> how</s><s t="1260" ac="236">
did</s><s p="1" t="1380" ac="207"> you</s><s t="1440" ac="241"> get</s><s t="1560" ac="244"> up</s></p>
<p t="447550" d="1270" w="1" a="1">
</p>
<p t="447560" d="3600" w="1"><s ac="247">in</s><s t="90" ac="252"> the</s><s t="120" ac="232"> morning</s><s t="420"
ac="236"> concentrate</s><s p="2" t="870" ac="167"> and</s><s t="990" ac="241"> work</s><s t="1140" ac="236">
the</s></p>
<p t="448810" d="2350" w="1" a="1">
</p>
<p t="448820" d="3480" w="1"><s ac="252">next</s><s p="1" t="120" ac="206"> day</s><s p="1" t="240" ac="201"> on</s><s
p="1" t="420" ac="255"> that</s><s p="1" t="570" ac="252"> one</s><s p="1" t="720" ac="252"> then</s><s p="1" t="930"
ac="229"> so</s><s p="1" t="1650" ac="252"> for</s><s p="1" t="2280" ac="232"> all</s></p>
<p t="451150" d="1150" w="1" a="1">
</p>
<p t="451160" d="3210" w="1"><s p="1" ac="206">those</s><s t="150" ac="252"> beautiful</s><s t="450" ac="223">
Millennials</s><s p="1" t="960" ac="216"> and</s></p>
<p t="452290" d="2080" w="1" a="1">
</p>
<p t="452300" d="3870" w="1"><s ac="227">snowflakes</s><s p="1" t="390" ac="216"> out</s><s t="540" ac="252"> there</s><s
p="1" t="690" ac="213"> trust</s><s p="1" t="960" ac="218"> me</s><s p="1" t="1080" ac="203"> the</s><s p="2" t="1860"
ac="196"> more</s></p>
<p t="454360" d="1810" w="1" a="1">
</p>
<p t="454370" d="2820" w="1"><s ac="252">you</s><s p="1" t="150" ac="204"> get</s><s t="300" ac="252"> pushed</s><s
t="570" ac="231"> the</s><s t="1140" ac="252"> thicker</s><s t="1380" ac="252"> your</s><s t="1530" ac="236">
skin</s></p>
<p t="456160" d="1030" w="1" a="1">
</p>
<p t="456170" d="3320" w="1"><s ac="238">they're</s><s t="150" ac="248"> picking</s><s p="1" t="420" ac="201">
your</s><s t="510" ac="252"> skin</s></p>
<p t="457180" d="2310" w="1" a="1">
</p>
<p t="457190" d="4470" w="1"><s ac="252">trust</s><s t="510" ac="252"> me</s><s t="690" ac="251"> the</s><s t="840"
ac="252"> higher</s><s t="1020" ac="252"> you</s><s t="1140" ac="247"> go</s></p>
<p t="459480" d="2180" w="1" a="1">
</p>
<p t="459490" d="4460" w="1">[Music]</p>
<p t="461650" d="2300" w="1" a="1">
</p>
<p t="461660" d="4900" w="1"><s ac="240">cheaver</s><s p="2" t="1000" ac="85"> goal</s><s p="1" t="1240" ac="216">
from</s><s p="2" t="1390" ac="148"> where</s><s t="1600" ac="240"> out</s><s t="1990" ac="245"> of</s><s p="2"
t="2050" ac="143"> New</s></p>
<p t="463940" d="2620" w="1" a="1">
</p>
<p t="463950" d="4020" w="1"><s ac="252">Jersey</s><s p="2" t="60" ac="0"> rights</s><s t="720" ac="250"> to</s><s
t="1050" ac="248"> a</s><s t="1080" ac="249"> gold</s><s t="1320" ac="227"> and</s><s t="1680" ac="236"> you</s><s
t="2340" ac="255"> mind</s><s t="2520" ac="237"> if</s></p>
<p t="466550" d="1420" w="1" a="1">
</p>
<p t="466560" d="2730" w="1"><s p="1" ac="200">I</s><s t="90" ac="248"> sponsor</s><s t="480" ac="251"> the</s><s t="570"
ac="251"> wings</s><s t="750" ac="249"> getting</s><s t="1020" ac="225"> forwarded</s><s t="1350" ac="245"> is</s></p>
<p t="467960" d="1330" w="1" a="1">
</p>
<p t="467970" d="3360" w="1"><s ac="252">like</s><s t="120" ac="252"> pay</s><s t="360" ac="252"> for</s><s t="540"
ac="252"> some</s><s p="1" t="660" ac="201"> fucking</s><s t="900" ac="252"> decent</s><s t="1140" ac="225">
meat</s><s t="1230" ac="252"> on</s></p>
<p t="469280" d="2050" w="1" a="1">
</p>
<p t="469290" d="5280" w="1"><s ac="240">those</s><s t="230" ac="236"> that</s><s t="1230" ac="252"> would</s><s t="1290"
ac="230"> be</s><s t="1410" ac="252"> a</s><s t="1440" ac="233"> dream</s><s t="1650" ac="230"> come</s><s p="2"