-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbs2baud.oxt
3215 lines (3215 loc) · 109 KB
/
bs2baud.oxt
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
Version 2 30
{
0x001DD8FF = 1102100
0x0022B2D1 = 100
0x002BF9B8 = 1000000
0x002FEFCE = 1000100
0x004D7914 = BS2B_KCAA
0x005AB8C5 = ~z~Here! Up these stairs!
0x0082F184 = ~z~Don't do this!
0x008579E6 = ~z~No new cars.
0x0085ACEB = ~z~They're on me!
0x00B26D8F = BS2B_FEAA
0x00BE1919 = 1000000
0x00C31D90 = BS2B_MLAA
0x00E8C0F6 = BS2B_BFAA
0x00EAF3E6 = ~z~Don't be dumb!
0x00EEA081 = ~z~Hey, you ain't seen nothin' yet!
0x00F0753E = ~z~The wall's there, you see it?
0x01142982 = BS2B_GRAA
0x011A791C = 1000100
0x01400542 = 100
0x014F5AFA = ~z~I'm going, alright?
0x016A194A = ~z~We're meeting F at the Alta Street footbridge.
0x017E1631 = 1100000
0x019B9A51 = BS2B_LYAA
0x019D636D = ~z~That'll take us back to Alta Street. Go this way.
0x01C65184 = 100
0x01DA76BD = 100
0x01E53A6C = ~z~Let's action this!
0x02426841 = 401
0x02579CB9 = 11000001100000
0x025BC395 = BS2B_ELAA
0x0266119A = 1002100
0x0267FD6A = ~z~Stay on Taliana.
0x026F047C = 091
0x0270AA96 = BS2B_ELAE
0x027E0664 = ~z~have we?
0x02AB9FC1 = 100000010000001000000
0x02CC0A1C = BS2B_DGBH
0x02DFC14E = ~z~We're in a vehicle, on the way to getting clear. You doing alright?
0x02FFA91E = 100
0x03009D43 = 1102100
0x03052FDD = ~z~Half of it's more gold that you could ever dream of.
0x0308C57C = 110010011001001100000
0x03153E56 = ~z~Lester baby! ~n~~c~Yeah?
0x03168AC9 = ~z~we send in a team of modded cars.
0x0323B813 = 622
0x03396C55 = BS2B_IUAA
0x0361EE69 = 490
0x0377AC8C = BS2B_PQAA
0x037B93F3 = 411
0x039742F2 = 492
0x03A5B233 = 191
0x03BB772A = ~z~Oh wow - chopper!
0x03BE4906 = ~z~You gonna turn on the drill bit?
0x03EC04DD = 100
0x03F57A5D = BS2B_NQAD
0x0438696E = BS2B_DHAO
0x046AD443 = ~z~Utilize your gray matter - it's over there.
0x049447E7 = 410
0x04B3EA47 = ~z~Roads are locked down. We gotta keep high, stay away from the cops!
0x04C3588F = 410
0x04D61D84 = 1000000
0x04DC57AB = ~z~You're a part of the system!
0x05394016 = ~z~Hold it here, I'll take the shot.
0x05443D50 = 191
0x05529E73 = 1000000
0x05610E05 = 1000000
0x057BB538 = ~z~We open the can, and we take out the beans, okay?
0x05830BAD = ~z~Let's go!
0x05BAD712 = 401
0x05F1D358 = 292
0x06127FF6 = 110000011000001100000
0x062B1B29 = ~z~I'm visualising your end, pal!
0x063CD313 = ~z~The metal is ready to move!
0x0647FAFA = 091
0x064BD07B = 100
0x065819CC = 1000100
0x065E19E9 = 100
0x067522A5 = ~z~If we'd got the choppers off his ass earlier, he'd still be flying!
0x06A5D525 = ~z~Ahhh, can we move faster?
0x06B5A730 = 1100000
0x06DB7B5A = 1002000
0x071802C1 = 100
0x0724205E = ~z~Move, you idiots!
0x072C0F0E = ~z~Hey, cops'll be here soon. We gotta blow these cages fast.
0x073B4BD9 = ~z~We can't afford to wait around. Come on.
0x073F0063 = ~z~Get that drill going.
0x07A345E8 = ~z~I'm using my toolset!
0x07D4BA31 = BS2B_OHAA
0x07EAA3DC = ~z~Come on.
0x07F905E4 = 100
0x07FDDE23 = ~z~Where you going? It's back here.
0x081ECB78 = 1102100
0x0838D1FF = ~z~You got some bombs to fit.
0x08408DE4 = BS2B_DRAA
0x08523F5C = ~z~I will put you down!
0x08D6ED35 = ~z~You only got one door, rig the second one and blow it.
0x08D87EFC = ~z~Bring me round, so I can get the shot!
0x08EC9400 = ~z~It's important that I'm not killed while doing this.
0x08F28BA1 = BS2B_NYAA
0x0913FD86 = ~z~Come on!
0x091CCFB8 = ~z~Down these stairs!
0x093DE8EB = BS2B_QRAB
0x0940B4BF = ~z~More dudes flying in! Take down the chopper!
0x094756D1 = 411
0x0947AFD8 = BS2B_FLAA
0x095B73F0 = BS2B_PMAA
0x096414C6 = 410
0x09A252DE = 191
0x09BF8078 = ~z~You missed!
0x09C0C839 = BS2B_LMAA
0x09D4E723 = 100
0x09E53811 = ~z~and done the gig yourself.
0x0A0B6F23 = BS2B_LRAA
0x0A62BD61 = 100
0x0A68E688 = 1102100
0x0A80A5EB = 100
0x0A24067B = 411
0x0A500848 = BS2B_KIAA
0x0AAC521F = ~z~This is getting hairy - can you get rid of them?
0x0ADE1F9A = ~z~I see 'em. Three choppers.
0x0AE20B5E = BS2B_NQAA
0x0AF2F84C = 622
0x0B2F746A = 1000100
0x0B5C01D3 = 100
0x0B5DE9F8 = 1102100
0x0B801525 = BS2B_FQAA
0x0BA18D1E = ~z~Gain on them! I need to be closer!
0x0BB59ABD = ~z~Back the hell up!
0x0BC4C141 = 490
0x0BD69363 = 1100000
0x0BF2ED01 = 410
0x0BF60360 = 100
0x0C05BA51 = BS2B_FNAA
0x0C0FB14C = 100
0x0C1C46D7 = ~z~Whoo! Damn, Merryweather's here!
0x0C8F150A = 262
0x0C57DC2B = ~z~Let's go up a level! Stairs right here!
0x0C777E86 = ~z~LSPD chopper!
0x0C8742A9 = BS2B_PLAA
0x0CA0D48E = ~z~I'm here for the bullion! Cough it up!
0x0CA5D17F = ~z~We did it!
0x0CC87CFD = 100
0x0CDA89F3 = ~z~Very funny, but I can do a little better than that.
0x0D077B89 = BS2B_DIAA
0x0D3A9274 = ~z~Wow!
0x0D7F3884 = 410
0x0D9C4E2A = ~z~Hey, I see you coming towards the train. Set the cargo down, and I'll haul it to the warehouse.
0x0D34C3CB = 100
0x0D304A88 = 192
0x0D413C82 = ~z~Hey, you guys cool? We picked up a new car, and we almost to the airfield.
0x0D2550B3 = 1000100
0x0D3795A1 = ~z~Blow 'em.
0x0D16085E = 100
0x0D58672E = ~z~Alright, set it down.
0x0D959783 = BS2B_FKAF
0x0DA75D87 = 1000000
0x0DCF5526 = 100
0x0DD2DE5D = 1100000
0x0DDF5A02 = ~z~If you can't handle the cops, I'll step in!
0x0DE79322 = ~z~I'm here. You can ask me.
0x0DF6BE94 = 100
0x0E5D9DB3 = 490
0x0E5DC58A = ~z~I can't get it in position with you there.
0x0E8AC33B = 1102100
0x0E17CEDE = ~z~Over here, down the steps!
0x0E46A317 = BS2B_NQAG
0x0E206C27 = ~z~They got a chopper!
0x0E293C3D = ~z~On me!
0x0E808A59 = ~z~You gonna set the charges?
0x0E43640E = ~z~Here he is - F!
0x0E860039 = ~z~You only got one door, genius. Get the other.
0x0EA84C0A = BS2B_KLAA
0x0EA3249D = 492
0x0ECE888B = ~z~I'm visualising these stairs.
0x0F09833F = 1100000
0x0F1F6850 = 100
0x0F6B00F3 = BS2B_PZAA
0x0F6C36C8 = BS2B_BSAA
0x0F6DCA4A = ~z~Wall's right there, my boy!
0x0F8A9848 = ~z~Come with me.
0x0F9E3F59 = ~z~If I get popped, I can't push the trolley.
0x0F18DF25 = BS2B_DKAO
0x0F79DAFF = ~z~First one's in place!
0x0F9871A3 = 100
0x0FA5463B = BS2B_LOAA
0x0FAF07EC = 120212
0x0FBAA5CD = ~z~Let's just go!
0x0FDABE75 = ~z~The bricks are gone, right?
0x1A1FFC09 = BS2B_ABAA
0x1A7EFF40 = 100
0x1A8CE3B8 = ~z~Oh shit, that's Merryweather!
0x1A64B0AB = ~z~Whoa! They're through the vault door - look in the bank!
0x1A92FBF5 = BS2B_GSAA
0x1A142FA8 = 100
0x1A923C88 = BS2B_OJAA
0x1A7032E8 = ~z~me show you the board.
0x1A8293B4 = ~z~Go, go, go - we gotta go!
0x1AB8690D = ~z~Trolley one is in the collection zone.
0x1AE2EBC1 = ~z~You've got to get through the cages now, so rig them with the bombs.
0x1AE21E4E = 1102100
0x1B2A0FCB = 100
0x1B2B752E = 292
0x1B7CD585 = ~z~Plant the charges already.
0x1B68A608 = 622262622262622
0x1B78B013 = ~z~He's gone.
0x1B77621F = BS2B_HDAA
0x1B533943 = 100
0x1BB0628D = BS2B_DGBO
0x1BC40C35 = BS2B_DGBA
0x1BCDB5BA = 1102100
0x1BE09BB0 = 100
0x1BE16C04 = 1100000
0x1BF61BD3 = 1000000
0x1BFFC137 = BS2B_QCAA
0x1C0FC190 = 1000000
0x1C4C6167 = ~z~Gold coming through - can I get by?
0x1C11A568 = ~z~Please, just keep 'em back!
0x1C96BAF3 = BS2B_KWAA
0x1C676B7D = ~z~We're taking these steps!
0x1C93452A = 401
0x1CB5CA0D = BS2B_JMAA
0x1CEF3D30 = ~z~Y'all don't wanna come over here!
0x1D2B9F37 = 412
0x1D8AD265 = ~z~I'm gonna take my chances on my own. I done what I was paid to do.
0x1D9E2696 = ~z~Over here!
0x1D21ADD0 = ~z~I'm taking fire!
0x1D69F06D = BS2B_ODAA
0x1D95B6DA = 492
0x1DDA6794 = ~z~They're all over me!
0x1DE45EFF = ~z~On the other side! More cops!
0x1DE72F83 = ~z~Yes, it will come,
0x1DEEF809 = 1000000
0x1E0E341B = ~z~Alright?
0x1E1C4237 = 490
0x1E5B61C6 = 401
0x1E9FFCCD = BS2B_GAAA
0x1E195AF2 = ~z~Get back in the bank!
0x1E506A5E = BS2B_QMAA
0x1EA67580 = ~z~Oh!
0x1EAA9958 = BS2B_NVAA
0x1EC006F0 = 1102100
0x1ED7AA90 = ~z~You're sure you can use that thing?
0x1EF74CF1 = ~z~You're being objectionable!
0x1F09E1B6 = ~z~What's wrong with you - move!
0x1F1B19B2 = ~z~Man, we clear! Oh shit.
0x1F2BC59F = 401
0x1F5C223B = 100
0x1F7B67DE = 100
0x1F8B8BDE = 100
0x1F61D597 = ~z~I don't wanna get shot when I'm pushing this!
0x1F69A5D4 = ~z~Are you sure?
0x1F80F6FD = 1100100
0x1F5736A9 = BS2B_DKAA
0x1F55084C = ~z~Through the hole - the got in the vault door!
0x1F76970F = 1002100
0x1F185859 = 091
0x1F442035 = 1000000
0x1F814939 = 401
0x1FABA284 = ~z~If I'm not mistaken, we got to blow two cages.
0x1FD9FC27 = 622
0x1FE7C9E3 = ~z~Cops got in on the other side, dickwad!
0x1FE53C3B = ~z~Mikey? Mike! How you doin'?
0x1FE211A8 = ~z~You mind if I take my chances? I'll cover your run, then try to get out alone!
0x2A4D8B23 = BS2B_LNAA
0x2A45BA64 = ~z~To me, to me, to me.
0x2A779AC2 = ~z~Think of the metal! Let's go!
0x2AC8493E = 401
0x2AE7E229 = 100
0x2AE967A4 = BS2B_KNAA
0x2B3DEDFD = ~z~I'm feeling a strong pull from this direction.
0x2B45C9D9 = ~z~I think... I think we're clear!
0x2B9485E0 = ~z~I'll drop you, you ass!
0x2B476561 = ~z~I don't doubt we're getting out of here!
0x2BB72829 = ~z~Damn , another wagon!
0x2BBA3600 = ~z~I'm taking fire, you dick!
0x2BC28E73 = ~z~Move, come on, homie.
0x2BCF1B10 = ~z~Cops coming from the other way! That side of the tunnel!
0x2BCF4F8F = 191
0x2BCF76CD = 100
0x2BDA3226 = 401
0x2BF078B2 = BS2B_OBAF
0x2C6CBEB6 = ~z~Back, back, back.
0x2C32B2F0 = ~z~What happened to my cover!?
0x2C57D6DD = ~z~I work for Trevor - I'm used to it.
0x2C572E31 = BS2B_DHAI
0x2C208226 = ~z~Hey, let's drill a hole in this damn thing.
0x2CAD6C0C = 490
0x2CDECC56 = ~z~F, you're on our flank, I'll take anything in front of us!
0x2CED5DEA = BS2B_MCAA
0x2CF95C51 = ~z~The noob tube? You hold us steady, get me an angle, they're gone.
0x2D041E66 = ~z~That's the police - they're in the tunnel behind me!
0x2D0FD71B = 1102100
0x2D4B750F = 1100000
0x2D7DC89A = 100
0x2D8A5D3B = ~z~I really don't want to die... in this dimension.
0x2D317F06 = 1002000
0x2D712FF3 = ~z~Don't give 'em a stationary target!
0x2D5355A1 = 100
0x2D42348B = BS2B_PHAA
0x2D69635E = BS2B_DLAQ
0x2D681297 = ~z~Eh, is the metal safe? Merryweather ain't gonna jack your ass?
0x2DA7130B = 191
0x2DAA91E2 = BS2B_JRAA
0x2DB2C80A = ~z~I don't want those cops anywhere near me!
0x2DB52302 = ~z~That's all of it - ready for collection.
0x2DBA5496 = ~z~We got contact!
0x2DCA3E06 = ~z~I been in this situation before!
0x2DD6D1F4 = 1000100
0x2DDBCC4F = 1000000
0x2DFA8E89 = BS2B_DKAH
0x2E3D1E96 = 100
0x2E306FC9 = 492
0x2E676DE7 = 1100100
0x2E1718F4 = ~z~I'm carrying half the metal - get them off me!
0x2E7479D4 = 1100000
0x2E39092B = 1000100
0x2E909374 = 100
0x2EB72C0E = 100
0x2ECCD0CF = ~z~F 's right here!
0x2ECF7EB7 = BS2B_DLAS
0x2ED4B852 = ~z~You know I'd go to war with you, man.
0x2EDB6945 = ~z~We're inside the vault.
0x2EE8A664 = 1000000
0x2EE44056 = ~z~Can we do this!?
0x2EF8DCFD = 100
0x2EF81BC2 = ~z~Now they're in the vault - past the rubble!
0x2EFAB138 = 100
0x2EFC3181 = 1002000
0x2F027FE4 = ~z~another few hours you'll never have to talk about me again, Trevor.
0x2F0DD45B = 1100000
0x2F9BB553 = ~z~Back off! Back off!
0x2F578020 = ~z~You know what I'm saying, let's go.
0x2FA607A2 = 100
0x2FD42D8A = 100
0x2FF10F48 = 100
0x3A5F551D = 100
0x3A35F180 = BS2B_EJAA
0x3A82D869 = ~z~I gotta come through!
0x3A733CFF = ~z~I'm taking fire, bro!
0x3A122052 = 100
0x3ABB801A = BS2B_KUAA
0x3ABE753D = 091
0x3ADC7A58 = 100
0x3AEE330F = 1100000
0x3B7C454A = 410
0x3B562F62 = 11000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000
0x3BAFF986 = ~z~Use your entire mental toolset to ensure I'm not killed.
0x3BB8DE72 = ~z~I don't like leaving men behind.
0x3BBF2BEE = BS2B_IDAA
0x3BC5D4DB = ~z~There ain't goin' be room in the getaway car. I'll cover your run, then I'll try to duck out solo.
0x3C0E0494 = 1100100
0x3C4A0FE0 = ~z~You sure you can handle an RPG?
0x3C4B75B5 = 100
0x3C5A07BA = ~z~Here's your limitation!
0x3C8B3F24 = ~z~What is it?
0x3C9B9F1D = 100
0x3C27BAD1 = 100
0x3C69F544 = ~z~It's about to get pretty hairy, now that you mention it.
0x3C86C5B3 = BS2B_OYAA
0x3C91D4FA = 1100000
0x3C102F0E = ~z~What's the de-lay?
0x3C346FBB = ~z~Some rent-a-hood ain't going to be able to handle logistics, T.
0x3C3381DE = 1000100
0x3CA0354B = ~z~That's half of it, ready to go!
0x3CADCA14 = ~z~They're fine. We head for the city limits.
0x3CAFF790 = 1000000
0x3CC59229 = ~z~Fit that second cage, dog.
0x3CD5377C = ~z~Look, they got the vault open, they're coming out the bank!
0x3CF6C624 = BS2B_OSAA
0x3D1BFD52 = 1100000
0x3D6C9E7B = ~z~You're in the way!
0x3D7E34A3 = 410
0x3D8C6A6E = ~z~Drop altitude - quick!
0x3D9C35AF = BS2B_JSAB
0x3D9E2A32 = BS2B_AOAA
0x3D86FD38 = ~z~With the right training, we could have done this with our minds.
0x3D1088F7 = ~z~Don't mess with me - my share's going to a charity slash religion.
0x3D40013A = BS2B_DHAL
0x3D585914 = 1002000
0x3D593778 = ~z~I can't shake 'em! You gotta do something!
0x3DB4E146 = ~z~Stick it in reverse.
0x3DB6AD59 = BS2B_EOAA
0x3DC0F3EE = 1002100
0x3DCFF9D6 = BS2B_KQAA
0x3DD551C6 = ~z~What's your problem?
0x3DE6F1A8 = ~z~I'm not going to hit 'em from back here!
0x3E064074 = ~z~Looks like F made it.
0x3E0CD686 = 492
0x3E4BEF17 = 400
0x3E6FDA99 = ~z~Other side? I'm on it! Get the trolleys where we need 'em.
0x3E7C8724 = ~z~Stick with me, boss!
0x3E9B0F21 = 492
0x3E393A7E = 1002100
0x3E879490 = ~z~This way!
0x3E992554 = BS2B_DDAF
0x3EBB2E3B = 412
0x3ECCAD7C = BS2B_BLAA
0x3EDE837C = 1100100
0x3F1B6B2F = BS2B_EMAA
0x3F5AD1AE = 422
0x3F7C5461 = 100
0x3F8DFFBE = 1002100
0x3F88DC97 = 492
0x3F402B58 = ~z~We're the only bird left flying, I'm going for the train.
0x3F421F6B = ~z~Fuck you...
0x3F2775D8 = BS2B_HLAA
0x3F7649C8 = 1102100
0x3F288429 = BS2B_HSAA
0x3FA9B71A = ~z~We're outside town, waiting on the train. No Merryweather on the horizon.
0x3FBD2CEE = BS2B_DGAS
0x3FBE8480 = ~z~What do you mean the gold is in the vault? This is the Union Depository ain't it?
0x3FCFB57F = ~z~Get out here and let's blow 'em!
0x3FF59ED0 = BS2B_EQAA
0x4A03E39A = BS2B_NRAD
0x4A053869 = BS2B_MOAA
0x4A3A1FFF = BS2B_CBAA
0x4A4DB33E = ~z~You gonna keep your mouth shut?
0x4A9AD3B6 = ~z~Let's go.
0x4A99C275 = BS2B_DFAA
0x4A176A4A = ~z~Shoot those clowns first!
0x4A7351F4 = BS2B_JUAA
0x4AAB409D = ~z~Get in there and plant the charges.
0x4AAF4B94 = ~z~Let's do this thing! Crossing!
0x4AD0FA5B = 100
0x4ADC1EA3 = ~z~Both cages!
0x4AF69F83 = 1100100
0x4AF73B47 = 490
0x4AF78ED6 = BS2B_FKAA
0x4B2A9C6C = BS2B_IJAA
0x4B3B42F0 = 100
0x4B77FA5D = 090
0x4B627366 = ~z~We ready to go in the tunnel. When you drawing heat in the foyer, man, give us word.
0x4B941514 = ~z~It's levelled out! Getaway car, let's go.
0x4BA23AE6 = ~z~I can't push this through you!
0x4BA594A9 = 412
0x4BAD56E1 = 1002100
0x4BCC394B = BS2B_DLAJ
0x4BD9C42B = BS2B_DGAQ
0x4BEA681D = BS2B_DGCD
0x4BF2DB84 = 411
0x4C00D02C = ~z~Good...
0x4C4D301B = ~z~Do you feel it? This way!
0x4C6AD142 = ~z~You gonna trigger them?
0x4C97A4C7 = BS2B_ELAS
0x4C300AE9 = 1100000
0x4CA19F8E = BS2B_DLAM
0x4CB67C6B = 091
0x4CC43813 = ~z~Come on, fit the bombs.
0x4CD2C4E2 = 092
0x4CE087B2 = ~z~We need to get inside both cages. Blow the other door.
0x4D7EBBE4 = ~z~Fuck you?
0x4D9F91FE = ~z~I think it's this way!
0x4D10F77E = 100
0x4D233DFE = 100
0x4D720B4F = 492
0x4D865CCA = ~z~Stairs - here!
0x4D6083CC = ~z~On the right! Shit, they coming!
0x4D574242 = 411
0x4DEC3893 = ~z~Wow.
0x4E3F370C = ~z~This altitude ain't helping, is it?
0x4E4BD591 = BS2B_KTAA
0x4E8D8E2D = 100
0x4E9B8F85 = ~z~Horizon's clear! We're out!
0x4E26EC12 = BS2B_CTAA
0x4E79B26E = 411
0x4E337B5A = ~z~Over here!
0x4E513BE7 = 1000100
0x4EA29A57 = BS2B_DAAA
0x4EA40F5B = ~z~Y'all stupid? Move!
0x4ECA2C6A = ~z~Action them!
0x4EDBA26B = 100
0x4EE91F31 = ~z~Hit go.
0x4EF4ADF2 = ~z~We got to clear this garage, dog, if we goin' drive out of here.
0x4F3C6F33 = ~z~Another big cop car!
0x4F6A903B = 492
0x4F69BC9F = 1000000
0x4F84B117 = BS2B_LPAC
0x4F158C25 = BS2B_DKAC
0x4F806FB9 = ~z~You heard him. Go.
0x4F113708 = 411
0x4F868969 = 490
0x4FB1C016 = 1000000
0x4FBB0ECB = ~z~Quick - we gotta drop altitude!
0x4FD0F5C5 = ~z~You think I'm a joke!
0x4FD51C46 = 1000000
0x4FD56F48 = BS2B_DGBK
0x4FF7133B = ~z~Shit, I think we're clear!
0x5A3C4096 = ~z~That's the wall we want a hole in!
0x5A4D9DF5 = ~z~Team of cops coming down the tunnel behind me!
0x5A9FB78D = 110010011001001100100110010011000001100000
0x5A58FE66 = 622
0x5A59A59A = 100
0x5A163A97 = 100
0x5A974C1C = BS2B_GIAA
0x5A6022B1 = ~z~We've only got access to half the gold. Hit the other cage.
0x5A28654C = BS2B_DJAA
0x5AA2D7A3 = BS2B_MRAA
0x5ABDBB1A = 1000000
0x5ABE0D38 = ~z~Come to a safe distance, and detonate them.
0x5AF7BE37 = 410
0x5B0FDF08 = 100
0x5B8C0460 = BS2B_LGAA
0x5B771147 = 1100000
0x5BF1A9F6 = ~z~Stand aside!
0x5C097545 = 100
0x5C5DCC21 = BS2B_LPAB
0x5C98C36A = 1100000
0x5C791B7F = ~z~You moving in slow motion, come on.
0x5C2814BC = 1002100
0x5CAFB28A = 262622692092192292092292092192092
0x5CBB7999 = ~z~Public law enforcement's doing just fine trying to kill us, so tell 'em not to bother.
0x5CC9FE56 = ~z~We just lost half the score.
0x5CDB90D6 = BS2B_CXAA
0x5CF7BD26 = 1100000
0x5D1FA572 = ~z~Merryweather - no one mentioned Merryweather!
0x5D3E9340 = BS2B_LRAC
0x5D6CBD1C = BS2B_DGBI
0x5D7CE90B = 622
0x5D7DE642 = ~z~You're supposed to be in there, planting charges.
0x5D52A2FE = BS2B_BBAA
0x5D63DE8F = ~z~Get down! Get down on the floor! You're being robbed!
0x5D73E164 = 100
0x5D75E189 = BS2B_QNAA
0x5D333AB3 = 100
0x5D1707F9 = ~z~All the gold is ready for pickup.
0x5D2224A2 = ~z~M said all the gold, hit the other one.
0x5D63174F = 1100000
0x5DDCEA70 = ~z~Run and gun!
0x5DE9601D = 1000000
0x5DF4ED97 = 1102100
0x5E1A7322 = ~z~M's in the bank. Let's go.
0x5E5AAD29 = 490
0x5E6A80AF = ~z~What would the Mike Townley do in this situation? He'd run off on his own, so that's what I'm doing.
0x5E7F6DBE = ~z~Flick the switch on the drill bit - get it going.
0x5E258C1A = 490
0x5E840E20 = 1102100
0x5E1830FF = ~z~There are two cages - we need two explosions.
0x5E36279C = 100
0x5E47198E = ~z~Boss, boss - a chopper!
0x5EA66175 = 190
0x5EBBC13F = 191
0x5EC781EC = ~z~You hear that? Police in the tunnel behind me!
0x5ED78833 = 100
0x5EE3E7B8 = 100
0x5EF78889 = BS2B_BEAA
0x5F33DD02 = BS2B_DGAA
0x5F95E371 = ~z~Fucking glory seeker.
0x5F431A4B = ~z~Activate the drill bit.
0x5FC2C17D = 1100000
0x5FC986E5 = ~z~You gonna move!?
0x5FCAA617 = 1102100
0x5FD0FEAC = ~z~Metal's there - radio T.
0x5FE8C866 = 1000000
0x6A0016E9 = ~z~We did it! ~n~~c~We did it!
0x6A1ADBB4 = ~z~Ummm - it's over there.
0x6A3AF36E = 100
0x6A3CB07C = 091
0x6A3D17B8 = BS2B_CSAA
0x6A4A921E = 411
0x6A4CA264 = ~z~Both trolleys are ready for pickup!
0x6A6EE7C7 = BS2B_EWAA
0x6A10C9C9 = BS2B_IKAA
0x6A929A2F = 492
0x6A7952AE = 410
0x6A481088 = ~z~We can't chance a drop here.
0x6AA2BAF3 = BS2B_ONAA
0x6ACCDA15 = 1102100
0x6AEF73A7 = ~z~Hey! They didn't give us the gold!
0x6B9F8685 = BS2B_NRAA
0x6B20E2D5 = BS2B_ELAM
0x6B865874 = 1000000
0x6BB1EF17 = 100
0x6BC7CF3B = ~z~I said to Michael, "get a good driver"... he went cheap!
0x6BC824C7 = 1100000
0x6BD14008 = 411
0x6BEC7B02 = BS2B_DDAH
0x6C5FA4C1 = 490
0x6C8A0ADE = 410
0x6C8B3A73 = BS2B_AIAA
0x6C17F88D = 100
0x6C75F234 = BS2B_BPAA
0x6C180DD6 = ~z~Steady! Steady, I'm firing!
0x6C7677AB = ~z~Hey, the vault's empty already, punks.
0x6C94486C = BS2B_ELAG
0x6CB37809 = ~z~And Franklin?
0x6D094568 = ~z~Perfect! A chopper!
0x6D3E1587 = 100
0x6D9A6037 = ~z~I don't care how far underground you gotta go to get it, I ain't leaving the Union Depository without some gold!
0x6D36D661 = 1100000
0x6D64ACF3 = BS2B_QKAA
0x6DE37A5D = BS2B_BTAA
0x6DFA046B = BS2B_BVAB
0x6E6C2A7A = 1102100
0x6E8D010E = BS2B_FIAA
0x6E40C9B7 = ~z~I'm picking up three Merryweather choppers over the hill. Only way to the train is through them.
0x6E83B079 = ~z~I'll show you what you need.
0x6E349AF9 = ~z~Gold ain't ours yet, but we are this close.
0x6E837497 = ~z~Steady. Hold it steady.
0x6EAD8CED = 212120
0x6EC7E302 = 1100000
0x6ECB0110 = 100
0x6EE23152 = BS2B_PRAA
0x6EFFBA39 = BS2B_HQAA
0x6F03315A = ~z~We need to throw them off - I'm going through the windmill field!
0x6F0FC09C = ~z~I don't got nothing against you!
0x6F1C85C2 = ~z~Advance on them!
0x6F86D721 = 1102100
0x6F172DCC = 092
0x6F553D35 = ~z~I'm in the shit here!
0x6F7093CB = 100
0x6F8552C2 = ~z~and we both know we pull this off,
0x6F92606C = BS2B_GEAA
0x6F512484 = BS2B_GSAB
0x6FB3B601 = ~z~Passageway! Left side! Come on!
0x6FB7A57C = ~z~A little faster, okay?
0x6FD37D8A = ~z~Stay away from the back there. I'm pulling out.
0x6FDB354A = BS2B_MAAA
0x6FFA9DAA = 1100100
0x7A0BBB69 = ~z~I kinda need to get through here with the bricks.
0x7A3ADA06 = BS2B_ITAA
0x7A8CC519 = 1100000
0x7A52C314 = 490
0x7A886CF2 = ~z~You are one serious fuckin' buzzkill.
0x7AA4C4EB = 100
0x7AA29248 = 401
0x7AC63A0E = BS2B_GSAC
0x7ACCF1E0 = 100
0x7ADC1922 = 1000100
0x7ADF5F9A = 212
0x7AE82454 = 1002000
0x7B0A5CFC = 10000001000000
0x7B6BBDF9 = BS2B_QSAA
0x7B7A5565 = ~z~Checking the Merryweather channel... they don't know what happened. We're clear.
0x7B8DBEB5 = 1100100
0x7B25EA02 = 090
0x7BB50E48 = ~z~I'm gonna get the car up out of here, alright?
0x7BBB3132 = 401
0x7BC0F398 = ~z~We got some room. Boost a car, let's go!
0x7BD7ABC1 = ~z~I need a status report, T, you doing alright?
0x7BD87F2F = ~z~If the boss could see you now... where you going?
0x7C3AEA48 = 412
0x7C4E00FF = BS2B_ELAP
0x7C59CF5F = BS2B_DOAA
0x7C61AE69 = ~z~Letting go! Hold it steady!
0x7C404F2A = 1102100
0x7C97893E = ~z~Where're all the cops going? It's almost like you guys aren't taking this seriously!
0x7CA337BE = ~z~You're unstable, man, you know that?
0x7CC3C019 = 1100000
0x7CDE1EBF = BS2B_KVAA
0x7CEB3866 = ~z~Alright, I'm gonna meet my guy at the bank.
0x7CFEB5F5 = ~z~Give it a minute. We can't drop here.
0x7D1D00E5 = BS2B_LFAA
0x7D2F9BC4 = 1100000
0x7D4F04C4 = ~z~The seismic activity detectors've locked down the vault's main door.
0x7D4F3980 = 141
0x7D5C6D06 = ~z~Clear skies. We did it!
0x7D6186EE = BS2B_PGAA
0x7D9298F5 = ~z~We're clean! Let us walk away!
0x7DA3D9D2 = ~z~Get the cops off me!
0x7DA8CC7F = 100
0x7DB4EF14 = BS2B_KHAA
0x7DC64032 = 100
0x7DCED03B = BS2B_JLAA
0x7DDA79A0 = ~z~Now's the time! Let's get the escape ride and go!
0x7E4CA304 = BS2B_ELAF
0x7E8D0630 = 100
0x7E21F450 = ~z~I think you're supposed to be blowing open those cages.
0x7E45BE5C = ~z~There's just a wall between us and all the brick. You going to do something about that?
0x7E49EA5A = 100
0x7E67BD40 = BS2B_DGBZ
0x7E6989D8 = ~z~I believe that is the vault wall.
0x7E15755D = 100
0x7EBEC6DB = ~z~So, we're going through the vault wall, bringing out the metal, right?
0x7ECDEB25 = 100
0x7EDB882E = 412
0x7EE0890F = ~z~Mission accomplished!
0x7EE23293 = BS2B_DKBB
0x7EF1F004 = 490
0x7EF705F3 = ~z~Make 'em go boom.
0x7F0E4429 = ~z~Pick up the pace, or I tell Michael.
0x7F5DD8C5 = 1002100
0x7F6E70EF = ~z~Eh! Don't die today!
0x7F9DAAEA = ~z~There's a limit to your limitations - come on.
0x7F613E8D = 1100000
0x7F832DD3 = ~z~Lot one is in position!
0x7F984C57 = 1102100
0x7F5210E2 = 401
0x7FA861CA = ~z~Package one is down.
0x7FC9C511 = BS2B_IPAA
0x7FD88331 = BS2B_FMAA
0x7FF59AA8 = 1100000
0x8A1A2D2A = BS2B_DGCJ
0x8A7ADF59 = 100
0x8A8D41E7 = ~z~I ain't doing time, for Trevor.
0x8A8F0E22 = BS2B_NQAB
0x8A31C35C = 1000000
0x8A15621F = ~z~You're lizards - don't pretend to be human!
0x8A687215 = 091
0x8ACF9017 = ~z~Where are we going?
0x8AD431F7 = BS2B_LKAA
0x8AEC7902 = 100
0x8B021B55 = BS2B_DHAD
0x8B1CF684 = 191
0x8B1E017C = ~z~Just shoot the right chopper, okay?
0x8B5E0509 = 1100000
0x8B5F28C0 = BS2B_PPAA
0x8B29BA1A = ~z~Get on the floor! This is a robbery! Get on the damn floor!
0x8B35CA07 = 1100000
0x8B53AE3D = BS2B_DGCK
0x8B57C773 = ~z~Too many cops at street level! Stay above 'em.
0x8B63D9B3 = ~z~They got through the vault door! They coming from the bank!
0x8B68AAD6 = ~z~Always moving! Don't give 'em room.
0x8B83BE76 = ~z~T - I think we're in the clear. You doing alright?
0x8B546FB7 = 100
0x8B768E77 = 100
0x8B3054C0 = 491
0x8B4519DE = ~z~These dudes ain't getting near you.
0x8B6395FD = 1000000
0x8B29313D = ~z~We moving through you!
0x8BA0B3F7 = ~z~You probably knew about it!
0x8BCE9FD4 = BS2B_EUAA
0x8BCEB36A = BS2B_NAAA
0x8BE109BE = 1000100
0x8BF55C48 = 100
0x8BFCF997 = 1100000
0x8C1C0BEF = ~z~So, uh...
0x8C5CF434 = ~z~We in the free, man.
0x8C46DA96 = 1102100
0x8C76E2D7 = 11000001100000
0x8C745AB9 = ~z~There's a bunch of gold brick with our name on 'em on the other side of that wall.
0x8C6053EA = 1100000
0x8CA84046 = 1002100
0x8CBC9EE3 = BS2B_DLAX
0x8CD6CA01 = BS2B_OBAJ
0x8CD75A33 = ~z~They got through the vault door - they're coming from the UD!
0x8CD468D4 = BS2B_DGCE
0x8CDD8F46 = ~z~You really wanna die for these assholes?
0x8CE35D44 = ~z~Stairs on the right. Let's go.
0x8CEBA18C = 1102100
0x8CEBDD65 = 100
0x8D1E334C = ~z~Help me out here, man!
0x8D7D4414 = 1002100
0x8D24F5A6 = ~z~The metal's in place, ready for collection.
0x8D26B4A0 = BS2B_DLBB
0x8D90B501 = 100
0x8D292F17 = 100
0x8DBCE186 = ~z~I got to tell the boss you're slow?
0x8DC1037A = 411
0x8DD1C752 = ~z~Unlimit your limitations, okay!?
0x8DEC7A82 = 492
0x8E0C6576 = ~z~Little recap - you're drilling through that wall to get at the metal, you follow?
0x8E1D77FF = ~z~I think you're supposed to start the drill bit.
0x8E3AEE5C = ~z~It's a risk, I'll cover you run, get out this way!
0x8E9D17F8 = ~z~Deal with them quick, eh!? Come on!
0x8E21C98D = 100
0x8E87CCCB = 490
0x8E231CE2 = ~z~Get out and we'll blow it.
0x8E269D44 = ~z~A student of patterns would say I'm fucked!
0x8E40683A = 091
0x8EA2EDEA = 1102100
0x8EA50C47 = BS2B_JDAA
0x8EAC7B95 = ~z~Nice to meet you too, homie.
0x8EB5FFF8 = ~z~Let's go.
0x8EB93D35 = 1102100
0x8EB4422E = BS2B_DLAK
0x8EE605D5 = 1100000
0x8F1FA462 = BS2B_ELAO
0x8F7F12CC = BS2B_GVAA
0x8F38CD99 = ~z~Well, shit, the gold's out of here, so let's bust too, dog.
0x8F61C1BE = 100
0x8F77B7F7 = ~z~Come on, man! You gotta do something!
0x8F96FC2D = ~z~Chopper, boss - look out!
0x8F669C54 = 190190190190390390190190190
0x8F968A44 = BS2B_DHAN
0x8F1878D5 = 191
0x8F8961F0 = ~z~We call 'em noob tubes for a reason. You hold us steady, and get me in line, choppers are bye bye.
0x8F20804B = ~z~It's down these stairs.
0x8F606484 = BS2B_MJAA
0x8FA14FA8 = BS2B_NTAA
0x8FB0A208 = 1102100
0x8FB5C318 = ~z~Eh, where you going? We keep off the roads!
0x8FC7AE6B = BS2B_BOAA
0x8FCD18CB = ~z~but until then, I want you to keep it on the down low.
0x8FF5D794 = 100
0x8FF33956 = BS2B_LDAA
0x9A087697 = ~z~We need a window! Drop these guys, then we can get a car and go.
0x9A3D51E5 = ~z~Rentahood? You mind if I use that? You might have to sign a release or something.
0x9A5DE734 = BS2B_BNAA
0x9A9C90C6 = 100
0x9A26B309 = BS2B_NIAA
0x9A35CB29 = 1002100
0x9A71A23D = 1100000
0x9A75AB72 = BS2B_KJAA
0x9A817EBD = 100
0x9A8388F5 = 1100000
0x9A29261E = 100
0x9A33390E = ~z~Good times!
0x9AA13959 = 401
0x9ABFCC35 = BS2B_DGBE
0x9AE96036 = 091
0x9AEFD7D9 = ~z~M, F, you there? You make it out?
0x9AFCD9B2 = ~z~Stick together! Stay off the roads!
0x9B0C5D09 = 1100000
0x9B2D8AD4 = 491
0x9B3AA75D = 100
0x9B5C0900 = 1100000
0x9B39E2B6 = BS2B_DGAK
0x9B55ECF1 = 100
0x9B67C4A5 = ~z~Pick it up.
0x9B92B2BD = ~z~Cops! Incoming!
0x9B290B65 = ~z~Don't stop!
0x9BAC0D4B = BS2B_DGBC
0x9BFE5289 = ~z~Gimme a second and I'll get us down to their level.
0x9C08FAEA = 490
0x9C0E6214 = 100
0x9C6A5A93 = ~z~You see them?
0x9C57C711 = BS2B_DGAP
0x9C85C3EE = 191
0x9C305F16 = 1100100
0x9C2763FD = ~z~Urgency is key here!
0x9CB8C11B = BS2B_DLAP
0x9CF17CCE = ~z~Cops in the vault now! They coming from the bank!
0x9CFEBD51 = ~z~I'm holding 'em down!
0x9D0B880F = ~z~Come on, this is a game to me!
0x9D5C81C5 = BS2B_DGCC
0x9D22CC65 = ~z~Can we pick it up!?
0x9D689C2D = BS2B_IRAA
0x9D7989B6 = ~z~Down here. Let's get across the bridge!
0x9D944191 = ~z~Stay with me, pal!
0x9DA135BA = ~z~We're going to miss the train!
0x9DABEBED = 100
0x9DB0912F = 100
0x9DB5E631 = 100
0x9DB6F9B8 = 411
0x9DC6B8D8 = BS2B_DGBD
0x9DC57F20 = 110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000110000011000001100000
0x9DD83624 = ~z~Follow the chopper!
0x9E1D9D0B = ~z~This the way!
0x9E7CE6E1 = ~z~Alright, man, I'm going through the vault wall.
0x9E8BAB73 = ~z~Hey, hey, there's F!
0x9E81E4D9 = 1000000
0x9E271D2C = ~z~Ramp right here! Let's try the street!
0x9E3373B8 = 692692692
0x9E60926A = BS2B_KFAA
0x9EAE5645 = BS2B_PNAA
0x9EB5514C = 090190190090090190290190190190390090090190390390390190190190
0x9EBCB6F0 = 1100000
0x9EDB797A = 1100000
0x9EF5B5E8 = ~z~You two.
0x9F050C7B = 1100000
0x9F1AF46A = ~z~Crossing! Let's go!
0x9F2F2BA7 = ~z~Okay, now bring me round so I can fire it.
0x9F4C8129 = ~z~First half is where we need it!
0x9F5EDE41 = BS2B_OBAE
0x9F7CBF4F = 1000000
0x9F8B55F4 = ~z~You two come with me.
0x9F16C2C7 = ~z~Okay, option one.
0x9F26C258 = ~z~
0x9F35DD78 = 100
0x9F42AD59 = BS2B_HOAA
0x9F46C8C3 = 1100000
0x9F96DF9D = 490
0x9F178363 = ~z~Where'd they find you, man? You're going the wrong way.
0x9FE8FC9B = 1102100
0x9FEB14C1 = ~z~Let's go! Come on!
0x9FF98218 = BS2B_DKAQ
0x9FFB581B = BS2B_JHAA
0x9FFD636D = 1002000
0x10CF58F0 = 1000000
0x10D1DC65 = ~z~Coming through.
0x10F2E7E5 = ~z~It's just a little heat - you can handle this.
0x10F419F6 = ~z~Are you gonna go in the vault and rig up those cages?
0x10F764CA = 100
0x11C29EAF = 100
0x12A06009 = 411
0x12A73C6D = 1102100
0x12B3CCF6 = ~z~Punch through them!
0x12CC67FF = ~z~Lester Crest!
0x12D1FA2B = BS2B_PBAA
0x12E1FA31 = BS2B_AKAA
0x12F9F65B = BS2B_LJAA
0x13BCAC4A = BS2B_MMAA
0x13CB9EBD = 1000000
0x13F59B0F = ~z~We got a schedule, dog.
0x13F135A6 = ~z~I see three choppers - three serious looking choppers!
0x13FB7B5C = BS2B_HZAA
0x14EAE682 = 100
0x14F1A603 = 100
0x14FCC839 = BS2B_DQAA
0x15A34978 = 191
0x15D2DB1F = 1100000
0x15DD63E6 = ~z~Ah, Franklin! ~n~~c~Huh?
0x15E58472 = ~z~T, L, we in a vehicle. We're getting the fuck out of here, man. You doing alright?
0x15EB4FF8 = ~z~In all my days with Trevor, it's never got that bad. Let's go!
0x16A51D4E = ~z~More police in the tunnel - coming from the other way this time!
0x16C34025 = 410
0x16ED3FFC = 1102100
0x17A7CDF3 = ~z~'Cause I've squealed like a bitch so far?
0x17C6A7F2 = BS2B_CKAA
0x17C48B6C = BS2B_JOAA
0x17D207FF = ~z~Are we going?
0x17E8BEA4 = ~z~Move, you OPs!
0x17F71352 = ~z~Hey, out the way!
0x18BBA2AE = BS2B_DKAE
0x18C8AD7C = BS2B_DTAA
0x18CE55E3 = ~z~I mean, what kind of vain asshole decides that the best way to rob
0x18CF75BD = ~z~They're coming down the tunnel behind - cops!
0x18DA7DEA = ~z~Move out the way!
0x18E76A84 = ~z~Let's go!
0x19CB57F1 = ~z~and him personally,
0x19D01BA5 = 100
0x19F2E1F6 = ~z~Perfect. Merryweather, too!
0x20BA5237 = 410
0x20D06581 = 290
0x20D0DF94 = BS2B_LPAA
0x20D2E28D = ~z~That's all I'm saying...
0x20D9D945 = ~z~I thought I had it!
0x20DBF274 = ~z~The drill bit - you gotta turn it on.
0x20F381AB = 1102100
0x21AFB683 = ~z~You know what I'm saying, let's go.
0x21DF5307 = 100
0x21FD2970 = 091
0x22A3917C = ~z~I got to get these bricks to the pickup site. Move.
0x22B91775 = 091
0x22BCB273 = 100
0x22CD29D0 = ~z~Come on, we got a lot of heat here.
0x22D6D9B4 = ~z~Let's go.
0x23B89B81 = 1000000
0x23D2742F = ~z~Set 'em off.
0x23DDA7BE = ~z~You see that?
0x24AA3264 = ~z~To the right there! One time!
0x24BACDB4 = 100
0x24C2C7E5 = ~z~The gold's there! It's ready to go!
0x24C7262A = BS2B_AZAA
0x24E90306 = ~z~Another chopper on the left!
0x25E1671C = BS2B_OBAA
0x25EDD461 = 1002100
0x25F02968 = 191
0x25F7D08B = ~z~You load up, you get out.
0x26A7A154 = BS2B_PDAA
0x26B37894 = BS2B_DKAS
0x26C3F3F1 = BS2B_IXAA
0x26D9CF1B = ~z~Make 'em think we're dumb.
0x26D414FB = ~z~Whole load of metal, coming through.
0x26DB7DC7 = ~z~Turn on the drill bit.
0x26E2E48A = ~z~Keep on Eddie.
0x26FC41AD = ~z~let each other move on in peace.
0x27A09B8E = ~z~Put her down.
0x27AD1773 = ~z~They heating me up!
0x27C24D8C = ~z~let...
0x27C656FE = 100
0x27D47323 = 100
0x27F74788 = ~z~F's over here.
0x27FB4653 = 100
0x28AFC1CE = 422
0x28B73305 = ~z~Yeah! It's done!
0x28CD59E0 = ~z~Cops in on the bridge! Make an opening!
0x28EDA539 = 100
0x29BBE7EB = 1000000
0x29CDEC39 = 411
0x29D57454 = ~z~I'm visualising another way out over here - if you-you don't make it, an infinite number of other you's have.
0x30A2F819 = ~z~Don't worry about the bricks, just handle the police.
0x30A332EE = 1100000
0x30ACB96B = BS2B_DVAA
0x30B69050 = 100
0x30D65CDE = ~z~Flick the switch.
0x30E5F879 = 411
0x30EC0097 = ~z~Dudes had to get through that door.
0x31ABEC7C = 411
0x31DF987F = 1000100
0x31EE9990 = ~z~We gotta drill through this wall, get in the vault, you know what I'm saying?
0x32ADAB92 = 410
0x32C3F734 = 622
0x32CCB563 = ~z~There's a chopper on us!
0x32F83FC8 = 622
0x33A2FCC2 = 1000000
0x33AE82A0 = 411
0x33B91E1F = ~z~Cloud city - here we come.
0x33DD4DC9 = BS2B_POAA
0x33F1ED55 = BS2B_NQAF
0x34A9F1DF = ~z~Back it up.
0x34B45D9F = 411
0x34DA0B51 = BS2B_IAAA
0x34DDFB62 = 191
0x35A45EDF = BS2B_QGAA
0x35AC28BA = ~z~We don't got time for this. Let's go.
0x35BD87AD = ~z~Wall's right there, pal.
0x35BDE315 = ~z~I found F for you!
0x35F4829E = BS2B_BKAA
0x36A0F97D = ~z~
0x36A469BB = 1100000
0x36D8E393 = 100
0x37AAACF8 = 1102100
0x37BF0BBD = 100
0x37BF71DD = ~z~You sure you can handle an RPG?
0x37E3CF12 = BS2B_MIAA
0x37E8D9AC = 1100000
0x37E9CC27 = ~z~Let's get to the other side!