-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcredit.oxt
2167 lines (2167 loc) · 135 KB
/
credit.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
{
0x000F9316 = Published by Far Out Music Inc./ BMG Gold Songs (ASCAP)
0x00136C03 = Published by Yaslina Music Publishing, Inc. Administered by Kobalt Music Publishing America, Inc.;
0x00313FE8 = Published by Da Box Publishing
0x00431BCE = By arrangement with The Orchard
0x0049CEF1 = Published by Orlando Blair de Almeida Designee (PRS); Carl Brown Designee (PRS)
0x005F5CE1 = Published by Crash Course Bug Music
0x00818FD6 = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x00860951 = materials provided with the distribution.
0x008723CB = Courtesy of Unidisc Music Inc.
0x00BAF36A = Published by Almo Music Corp. (ASCAP)
0x010D03AC = BMG Chrysalis, WB Music Corp. OBO Suge Publishing
0x0115189C = Lead Physics Programmer
0x0121564B = and use in source and binary forms, with or without modification, are permitted
0x013B8B2C = Courtesy of Universal Music Enterprises
0x015A8F66 = Published by Sony/ATV Songs LLC (BMI)
0x018F4588 = Senior Producer
0x01E6584A = Build Engineers
0x01FB6216 = Scripters
0x021D13ED = Courtesy of N.O.I.A. Records
0x02758B1D = Published by WB Music Corp. (ASCAP) OBO Chappell Music Ltd. and Tayminster Ltd.
0x0291A375 = Special Thanks
0x02B10355 = Published by Tashif Turner Designee (BMI); Mahogani Music o/b/o Conolia Publishing (ASCAP)
0x02BD9B5C = Published by Rockstar Games Tunes LLC (ASCAP)
0x02D0DBE9 = Courtesy of Universal Music Enterprises
0x02FF79B2 = Kobalt Songs Music Publishing (ASCAP); Leon Brice Designee (PRS); Michael Phantom Designee (PRS)
0x030A1F23 = Courtesy of Terrible Records
0x0319D40E = Courtesy of CMG
0x0323C427 = Includes interpolation of Sweet Tears
0x03330F90 = Published by WB Music Corp. (ASCAP)
0x03607FFA = the following conditions are met:
0x03639957 = Courtesy of Estação Music Records
0x0369B818 = Little Dragon appears courtesy of Loma Vista Recordings and Because Music
0x0388BDDA = Cutscene Artists
0x03A14889 = Los Angeles Scan Sessions
0x03AE2D9F = Courtesy of Trax Records
0x03B3B07D = Courtesy of Wild Oats Music
0x03BBCB27 = Courtesy of Anjunadeep
0x03CFE164 = Published by Songs of Universal Inc. OBO Itself and Kenoe Music Publishing/
0x03DDE512 = Published by Jolly Discs (NS)
0x03E2E6DF = Courtesy of Universal Music Enterprises
0x0415C1AD = Published by Geed Up Music, Straight Hangin Em Music, BMG Chrysalis obo R2M Music and Rubber Band Music
0x042DEC0C = Courtesy of Universal Music Enterprises
0x0480B842 = Courtesy of Movementt
0x04959E63 = Music Producer
0x04C96A14 = Courtesy of Universal Music Enterprises
0x04F510E5 = Courtesy of Universal Music Enterprises
0x051A6D54 = OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
0x0534C84F = Courtesy of Emotional Rescue
0x0543C2CC = Courtesy of The Bicycle Music Company
0x054476E6 = Published by EMI Blackwood Music Inc. (BMI)
0x05D8D0BF = Published by Grandma's Hands Music
0x05D4026E = Published by Apodictic Arts, LLC
0x05E1AB4E = UI Developers
0x0606153A = Published by Arpa Music LLC
0x0631AF0A = Lead Test Analysts
0x06BFCE5A = WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
0x06D67262 = CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0x06DDE654 = PA/Office Manager
0x06E3D2EA = Published by Sony/ATV Tunes LLC (ASCAP) o/b/o Sony/ATV Music Publishing Ltd. (PRS); BMG Gold Songs (ASCAP) o/b/o Neo Songs Ltd. (PRS); Erron Williams Designee (ASCAP); Songs of Universal, Inc. (BMI)
0x06F0D0A3 = Online Heists Original Score by
0x0721D078 = Universal Songs Of PolyGram (BMI), Zomba Songs Inc (BMI)
0x07277FC7 = ROCKSTAR NORTH
0x07425E69 = Published by Rockstar Games Tunes LLC (ASCAP)
0x074C5B2E = Dam-Funk appears courtesy of Stones Throw
0x07503FBE = Additional Programming
0x07694236 = Courtesy of LYAM
0x076C8326 = Technical Directors
0x076CE8FF = Grand Theft Auto Online Senior Content Creators
0x078A14A3 = Courtesy of Dead Oceans, Inc.
0x07967CBE = Audio Director
0x07E00D1B = UK IT Director
0x07F83A71 = Published by Pastorius Music adm. by Jaco Pastorius Inc., Universal Music Corp obo itself and A Stolen Peoples Music (ASCAP)
0x07FA82A1 = Published by Imagen
0x0825BC5F = Courtesy of Beggars Music
0x08310046 = Published by Jimmy Giorsetti Designee (BMI); Kobalt Songs Music Publishing o/b/o Ariel Pink (ASCAP)
0x083D60FC = TA Director
0x085220F3 = Published by Jimmy Edgar Designee
0x0859F976 = Gameplay Programmers
0x085AF389 = Courtesy of Polydor Records under license from Universal Music Operations Ltd.
0x08A1D172 = Physics Programmer
0x08B31170 = Courtesy of DWA Records (Extravaganza)
0x092095C3 = Published by Velocity Future Collections, R. Ann's Son Music,
0x0947F128 = or without modification, are permitted provided that the following conditions are met:
0x09800FB6 = Hosted by
0x09F92B87 = Grand Theft Auto Online Mission Scripters
0x0A5C2F96 = Imaging Voice & Production
0x0A7DD46F = & Lamar Edwards Music (ASCAP)
0x0A8A899A = Online Development Assistants
0x0A4051FB = Published by Future Classic Pty Ltd. Administered by Kobalt Music Publishing America Inc.
0x0A411159 = Published by La Disco Music
0x0AAEB0F5 = Courtesy of Charly Records
0x0AC0F254 = Published by Jobete Music Co Inc
0x0AD94311 = Published by BMG Platinum Songs (BMI) o/b/o Perfect Songs Ltd. (PRS/MCPS) and Unforgettable Songs Ltd. (PRS/MCPS)
0x0AFCD6E5 = Theme songs & jingles scored by
0x0B4CBDC6 = Senior Physics Programmers
0x0B6F44BF = Lead AI Programmers
0x0B8C10C0 = Courtesy of Derek Schklar and 1017 Bricksquad
0x0B68B72B = Published by Fondue Music
0x0B8999DA = Published by Rebirth (PRS); Oyez! Srl (SIAE); Downtown DLJ Songs (ASCAP) o/b/o Keinemusik Edition (GEMA)
0x0BC2758E = Courtesy of 1017 Bricksquad and Atlantic Recording Corp.
0x0BF47B79 = Published by Phoenix Music International Ltd. (ASCAP); The Royalty Network Inc. o/b/o David Platz Music (BMI) and Omakase (BMI); WC Music Corp. (ASCAP) o/b/o Warner Chappell Edicoes Musicais LTDA (SACEM); Zero Telles Designee (NS); SATV
0x0C37E3E1 = Courtesy of SST Records & The Orchard
0x0C987AC2 = Animation Programmers
0x0C7397E7 = Published by Sony/ATV Music Pub. UK & Sony/ATV tunes
0x0CBD11A2 = THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
0x0CBFB738 = Lead Programmers
0x0CE6E2BD = Courtesy of Far Out Recordings
0x0CEC210D = Lead Technical Artist
0x0CF1342E = Published by Ruthless Attack Muzick
0x0D0AAABA = Courtesy of Planet Mu
0x0D6E1294 = Published by Knekelhuis
0x0D488D47 = Published by American Gramaphone Partnership
0x0D998D83 = Published by Origami Sound
0x0D664951 = Principal Online Character Artist
0x0DAF8DE2 = Lead Testers
0x0DD2F17A = Cutscenes & Dialogue
0x0DEB5131 = Additional guitar and Wurlitzer piano by Woody Jackson
0x0E0CC176 = Stunt Coordinator
0x0E1BD7D1 = Test Team
0x0E4D2B6D = Published by Rockstar Games Tunes LLC (ASCAP)
0x0E7DBC0B = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x0E22F4F1 = Published by Warner-Tamerlane Publishing Corp. (BMI) obo Todd Mayfield Publishing and Warner-Tamerlane Publishing Corp.
0x0E79F0D7 = Courtesy of Black Butter Ltd. & Sony Music Entertainment UK Ltd., by arrangement with Sony Music Entertainment
0x0E665B04 = Courtesy of Dark Entries Records
0x0E5491E2 = IT Manager
0x0EFEE645 = Published by AP Artist Management
0x0F7EC199 = Contains a sample of Synthetic Bass
0x0F418C69 = Published by Sentric Music
0x0F3509A4 = Published by Rockstar Games Tunes LLC (ASCAP)
0x0F9918A6 = OF SUCH DAMAGE.
0x0FA57022 = Published by Public Possession; Downtown DLJ Songs (ASCAP) o/b/o Keinemusik Edition (GEMA)
0x0FACA270 = Published by BMG Music Rights, Universal Music Corp.
0x0FD9491A = Courtesy of Keinemusik GmbH
0x1A2ED7D3 = Courtesy of Atlantic Recording Corp./Bad Boy Records
0x1A3AD39D = Senior Animator & Editor
0x1A7E981C = THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0x1A8B6901 = Horns
0x1A322D8B = Character Rigging & Technical Art
0x1A5524F7 = Principal Lighting Artist
0x1A62799D = Courtesy of The Leaf Label
0x1AA1E298 = Courtesy of R&B Division Ltd.
0x1AB2A968 = Courtesy of ESGN
0x1ADDA8EB = Courtesy of AP Artist Management
0x1AE14092 = Courtesy of Unidisc
0x1AEA85BD = Courtesy of Rockstar Games, Inc.
0x1B2A14AF = Published by Universal Music – Z Songs obo itself, B Legit Music Publishing Co., E. Forty Music Publishing Co.,
0x1B7AD202 = Published by Curious City Music (ASCAP)
0x1B8A59E2 = Published by WB Music Corp. (ASCAP) obo itself, Hardworking Black Folks Inc., Top Dawg Music and R. Riera Music; Sony/ATV Ballad (BMI)
0x1B10BF7D = Published by Ameniia Records
0x1B73AFCB = Published by Universal Greensleeves
0x1BA43057 = Published by Bicycle Music; Pacific Electric Music Publishing Inc. obo Lockwood Valley Music
0x1BBCAA46 = "NaturalMotion", "euphoria" and the NaturalMotion and euphoria logos are trademarks of NaturalMotion. All Rights Reserved. Used under license.
0x1C0FBF3F = Published by Domino Publishing Company USA (ASCAP)
0x1C3F0B51 = Recorded at
0x1C67CD92 = Courtesy of Day + Night Recordings
0x1C2810C1 = Irving Music Inc. on behalf of itself and Nayvadius Maximus Music/Songs of Universal, Inc. on behalf of itself, We The Best Music, Cash Flow Publishing
0x1CA2208D = Courtesy of 23 Formation Ltd.
0x1CB891BD = Produced by Oh No
0x1CD30982 = Mixed & engineered by Matt Nordstrom
0x1CECF837 = Published by MXM Music AB, Prescription Songs LLC and Lotzah Matzah Songs LLC
0x1CF1B45B = (administered by The Royalty Network, Inc.)(ASCAP), Kobalt Music Publishing America, Inc. (ASCAP)
0x1D0590CD = Published by Songs of Universal Inc. OBO New Line Music Corp. (BMI), X-men Music (BMI)
0x1D0B60E2 = Published by BMG Gold Songs (ASCAP) o/b/o Defected Music Ltd. (PRS); Jonathan Mendelsohn Designee (ASCAP); Money Cologne Tone Publishing (ASCAP)
0x1D4CB768 = Published by KMFH Music Works (BMI)
0x1D7FCC7A = Data Engineer
0x1D8BE32C = Christian Campbell Designee (PRS)
0x1D56E4B5 = Produced by The Alchemist, Josh Werner and Sinkane
0x1D121BCF = Published by Copyright Control, Terrordome Music Publishing (BMI)
0x1D1271D7 = Published by Irving Music, Inc.
0x1D27007B = Published by Warner-Tamerlane Publishing Corp. & Screen Gems-EMI Music, Inc. All Rights Reserved
0x1DB36C85 = Production Associate
0x1DE40468 = Motion Capture
0x1DEA733F = Universal Music – MGB Songs OBO Itself and Divine Pimp Publishing
0x1DEE5810 = Courtesy of PIAS
0x1DF0AFC1 = Motion Captured Shows
0x1E02C167 = Universal PolyGram International Publishing, Inc.
0x1E1CE4FC = Environment Art
0x1E3D3D6D = Courtesy of Jamie Lidell
0x1E22934B = A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
0x1E529735 = Published by Music by Kofi LLC (BMI)
0x1EA852C4 = Courtesy of Rykodisc
0x1EBD6767 = Systems Admin
0x1F1F1CDE = Google Inc. All rights reserved. Redistribution and use in source and binary forms, with
0x1F9E71A1 = AI Programmers
0x1F6058A0 = Courtesy of NYX
0x1FBE8F8D = Published by Jobete Music Co Inc. (ASCAP)
0x1FBFC48D = (P) 2010 State of Emergency Ltd
0x1FC9E57F = Art Director
0x1FCAB5E0 = Courtesy of Innervisions
0x2A4C63B0 = Published by Irving Music, Inc. (BMI)
0x2A7B5D2B = Courtesy of Trax Records
0x2A57EF35 = Published by Peer Music (BMI), EMI Blackwood Music, Inc (BMI)
0x2A79023A = Published by Ttuff Ttony Music (BMI)
0x2A279161 = By arrangement with Fade to Mind
0x2AD6B816 = Curren$y appears courtesy of Atlantic Records
0x2AE2CB8C = Published by Ampliphonic Music (BMI)
0x2B0536BF = Published by BMG Gold Songs o/b/o Julian Casablancas Publishing (ASCAP)
0x2B6EDC51 = Published by Rockstar Games, Inc., Disruption Productions (ASCAP), Spirit Two Music, Inc. (ASCAP)
0x2B7F184D = VP of Quality Assurance
0x2B23A581 = Administered by Bucks Music Group Limited/The Royalty Network, Inc; Copyright Control
0x2B470122 = Courtesy of Express Records
0x2BAF1EE5 = Performed by Dee Dee Sharp
0x2BC89756 = Published by WC Music Corp. (ASCAP) o/b/o Warner Chappell Music Ltd. (PRS); Santino Sounds (NS)
0x2BEA4F40 = Courtesy of Warner Music Group Videogame Licensing
0x2BFF8872 = Audio Programmers
0x2C6492D5 = Uses Simplygon®, Copyright © 2011 Donya® Labs AB.
0x2CC6E4DC = Online Production Coordinator
0x2CF2D567 = Universal Polygram Int. Publishing, Inc. on behalf of INXS Publishing Pty. Ltd.;
0x2D09D751 = Courtesy of Sony Music Entertainment
0x2D1B5298 = Published by Chrysalis Music Ltd (PRS)
0x2D4A4233 = All Rights OBO Itself and Ain't Nothing But Funkin Music
0x2D36F6AB = Office Coordinator
0x2D86F7FD = Lead UI Developer
0x2D8032CA = Map Support
0x2DADB19F = Courtesy of Stones Throw Records
0x2DD1024D = Published by TPYGE Music (BMI)
0x2DDAD07E = Published by Universal Music MGB Songs (ASCAP) o/b/o Complete Music Ltd. (PRS); Kobalt Songs Music Publishing o/b/o Lazarus Ltd. (PRS)
0x2DF89E5F = Senior UI Developer
0x2E4DCDE0 = UI Designer
0x2E9ACD3C = Graphics Programmer
0x2E24C276 = Reach Music, Wliyyuddin Al Haqq Music
0x2EA7F89B = INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
0x2EA748BD = Published by Toby Reynolds Designee (NS)
0x2EBAE946 = Published by Alexander Stevenson Designee (NS); Robert Gallagher Designee (PRS)
0x2EC61771 = Published by Songs of PolyGram International, Inc.
0x2F1B6EEA = Published by Universal PolyGram International Publishing, Inc. (ASCAP) o/b/o Vitalturn Co. Ltd. (PRS)
0x2F2EFB5E = Neet Noise/Imagem Music; RMM 416 Publishing obo Danjahandz Musik (SESAC)
0x2F4FCABC = DJ
0x2F8AE6C6 = itself and obo Shugar Diamond Music Publishing (BMI)
0x2F41317E = OBO Universal Music Publ. SAS. (ASCAP), Sony/ATV Songs, LLC (BMI)
0x2F69216B = Published by Warner-Tamerlane Publishing Corp. o/b/o Eardrummers Music Publishing (BMI) and Matthew Day Pub Designee (BMI);
0x2FA86F1A = Published by Canciones Nacionales
0x2FAB7738 = Wixen Music OBO Primary Wave
0x2FB86D2A = Published by TuneCore Publishing (ASCAP)
0x2FCB7A8F = Produced by James Curd
0x2FDA440D = Published by EMI Unart Catalog Inc., Notting Hill Music Inc.
0x3A6A8C90 = Published by Sony/ATV Smash Hits Music Publishing (GMR); Reservoir 416 o/b/o Young Stoner Life Publishing LLC (BMI);
0x3A8F1E2B = Published by Warner-Tamerlane Publishing Corp. (BMI) OBO Itself,
0x3A26A5BB = Assistant Technical Directors
0x3A680E01 = Senior Animators
0x3A575652 = Courtesy of Deep Medi Musik
0x3A966596 = Courtesy of Universal Music Enterprises
0x3AA2907D = Courtesy of Los Tigres Del Norte, Inc.
0x3AEC59BC = Published by Rye-Boy Music (ASCAP) & Joel Turtle
0x3AF1CCE9 = IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR
0x3B091500 = Courtesy of Atlantic Recording Corp. by arrangement with Warner Music Group Film & TV Licensing
0x3B1A75D5 = Published by "A" Side Music LLC OBO Rubber Band Music
0x3B2FB762 = Courtesy of Text Records
0x3B4FB047 = Published by Third Side America (ASCAP) o/b/o Just Isn't Music Ltd. (PRS); Fidnadu Music (ASCAP); Universal PolyGram International Publishing, Inc. (ASCAP) o/b/o Universal Music Publishing Ltd. (PRS)
0x3B4387BB = OBO Incense Prod., Inc. (BMI), N The Water Publishing (ASCAP)
0x3BEEC9E1 = Published by Kaytradamus Music & Publishing
0x3BFE0044 = 1. Redistributions of source code must retain the above copyright notice,
0x3C027D59 = Courtesy of Lench Mob
0x3C0B0CA1 = be used to endorse or promote products derived from this software without
0x3C7E0A35 = Courtesy of Sudden Death
0x3C141BCB = Animation Director
0x3C683930 = Courtesy of Warner Music UK, by arrangement with Warner Music Group Film & TV Licensing
0x3CA175F9 = Published by Sony/ATV
0x3CAFF876 = Casting
0x3CDD0EA2 = Courtesy of SST Records
0x3CFA6F01 = Games Analysts
0x3D30DCCC = Published by Kauf aka Kaufaudio
0x3D9101F2 = Administered in NA by Third Side America (ASCAP)/
0x3D525615 = Chief Software Architect
0x3DBC1515 = obo Third Spirit Music obo Global Entertainment Songs (SESAC), BMG Bumblebee (BMI) obo Heavens Research (BMI),
0x3DF0B5E4 = Senior Character Rigging & Pipeline
0x3DF76DC1 = Motion capture cutscenes directed by
0x3DF50422 = Administered worldwide by Supreme Songs Ltd. (PRS)
0x3E01C898 = obo Albert & Son Pty. Ltd., Earl Stevens Publishing Designee
0x3E6CC2E6 = Courtesy of Universal Music Enterprises
0x3E34BD24 = Lead Online Programmer
0x3E112BC3 = Published by RFC Publishing (NS)
0x3E241A8F = Lead Social Club Developer
0x3E564A6F = RADIO STATIONS
0x3F35FEF7 = Courtesy of Ice Cold Ivory
0x3F310B23 = Courtesy of Warner Music UK
0x3FA2D558 = Guitars by Matt Sweeney
0x3FD26ECC = Courtesy of Fools Gold Inc. and Sony Music Entertainment
0x3FDE77E8 = Principal Story Artists
0x3FE0A04A = Art Department Director
0x3FE4E2C6 = Senior QA Testers
0x3FF9903C = Published by D Block o/b/o Ricky Banton Designee (BMI), Adam Williams Designee (BMI), and Team Hitz Music Group (ASCAP)
0x4A069A47 = Published by Greensleeves Publishing Ltd.
0x4A7AFF1A = Courtesy of Kompact Records
0x4A8A0969 = Design Director
0x4A24AF94 = specific prior written permission.
0x4A28B11D = Courtesy of Soundz Limited/Cevin Fisher Music Corp.
0x4A724BAA = Editor and Capture
0x4A3426B4 = by arrangement with Warner Music Group Film & TV Licensing
0x4AB17E42 = Courtesy of Atlantic Recording Corp. by arrangement with Warner Music Group Video Game Licensing
0x4ABF4FD1 = Published by EMI April Music Inc. (ASCAP)/ Songs Music Publishing(ASCAP)
0x4AD3BB10 = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x4AD9502B = Senior Map Artists
0x4AF03E71 = Primary Wave Def Lepp Ruminating Music c/o Wixen Music Pub.
0x4B62F9FE = A Maman Music (administered by The Royalty Network, Inc.)(ASCAP),
0x4B7943C9 = Senior Technical Artist
0x4B11497B = Courtesy of Domino
0x4B90948B = Published by BMG Chrysalis
0x4BA1FC2A = Published by Ruthless Attack Muzick, Chapter Eight and Woodsongs
0x4BB215AB = Randal McNeil Designee (NS); William Knighton Designee (PRS); Bucks Music Group Ltd. (PRS)
0x4BF84172 = Courtesy of Domino Recording Company
0x4C1C6C63 = Courtesy of Railer Sounds
0x4C26DE96 = Producer & Game Designer
0x4C88D2CF = Courtesy of Captain Murphy
0x4CA5F3A0 = Grand Theft Auto Online Content Creation
0x4CC23DDB = Kjack Publishing administered by South Hudson Music (BMI)
0x4CE57CE9 = AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
0x4CEB0C08 = Lead Sound Designers
0x4D0B647F = Published by Third Side America (ASCAP) o/b/o Antinote (SACEM)
0x4D1C7067 = Mixed by Anthony Kilhoffer
0x4D5DAF20 = Senior Designers
0x4D119F14 = Published by Downtown DLJ Songs (ASCAP) o/b/o Keinemusik Edition (GEMA); WhoMadeWho Designee (ASCAP)
0x4D72679F = Published by Sony/ATV Songs, LLC (BMI), Peas and Carrots International
0x4DC80504 = Courtesy of Blonded
0x4E5F10CE = Published by D.E.F. Ltd.
0x4E68F8E4 = Principal Environment Artist
0x4E88F82A = Data Scientist
0x4EA7AFB4 = Animators
0x4EB3D196 = Courtesy of Verse Music Group LLC
0x4ED84EA7 = Published by Sexy Sax Publishing Co. (BMI); BMG Monarch (ASCAP) o/b/o Ayers Roy Ubiquity Inc. (ASCAP)
0x4EDE0EB4 = Technical Animation
0x4F0807FE = Courtesy of Warner Music UK
0x4F7D02A6 = Performed by Chic
0x4F15C1C9 = ℗ 2020 Rockstar Games, Inc. under license to Cult Records, LLC
0x4F54CEB8 = Courtesy of Steel Synch obo Mom & Pop Music Co.
0x4F761DED = Sony/ATV Music Publishing LLC (ASCAP); Hot Girl Music (BMI)
0x4FA5DF63 = OBO Itself and Keriokey Music, BMG Music Rights, Yaslina Music Publishing Inc.,
0x4FB2B720 = Courtesy of Atlantic Recording Corp., by arrangement with Warner Music Group Film & TV Licensing
0x4FC996D7 = Courtesy of Blonded
0x4FD291CE = Published by Mahogani Music o/b/o Conolia Publishing (ASCAP); Warner-Tamerlane Publishing Corp. o/b/o Bernard's Other Music (BMI); Sony/ATV Melody (BMI)
0x4FE68BF8 = Courtesy of Cacophony Ltd.
0x5A0C3E4B = Courtesy of Ninja Tunes
0x5A8CCD2C = IT Manager
0x5A239D08 = Published by Rockstar Games Tunes LLC (ASCAP)
0x5AB2F6C1 = Ideas for Housecrafts (administered by House of Hassle Publishing LLC), Sony/ATV Music Publishing, LLC (ASCAP)
0x5AC0CF74 = Courtesy of Avenue Records
0x5AC6FD8B = Published by TN Ediciones Musicales/Bello Musical Editorial
0x5AC86F6E = By arrangement with Bank Robber Music
0x5AE40AA8 = Published by BMG Gold Songs o/b/o The Strokes Band Music (ASCAP)
0x5AEB6E74 = Lead In-Game Animator
0x5B3D51C5 = AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0x5B7D3006 = Published by Intersong Music Ltd. (PRS), Bug Music
0x5B8D94DF = Published by Top Dawg Music
0x5B36DC7F = Courtesy of Audiophonic Limited
0x5B92A099 = Published by Joe Thornalley Designee, Heaven's Research/BMG Bumblebee (BMI) Universal Music Corp. (ASCAP)
0x5B126CD4 = Courtesy of Sony Music Entertainment
0x5B515A15 = Courtesy of Warp Records
0x5B864B97 = THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
0x5B57139E = Ambient World Lead
0x5BB71AFE = Sub-published in U.S. and Canada by Raleigh Music Publishing LLC (BMI)
0x5BCCD804 = Courtesy of Warriors Dance Records
0x5BD204B8 = Published by Sub Pop Publishing (ASCAP); Georgios Bakalakos Designee (PRS); Downtown DLJ Songs (ASCAP) o/b/o Rolf Budde Musikverlag GmbH (GEMA)
0x5BEBBB19 = Courtesy of Tin Angel Records
0x5C0B1927 = Published by Rockstar Games Tunes LLC (ASCAP)
0x5C817CBC = Published by WB Music Corp. (ASCAP) obo Artemis Muziekuitgeverij B.V. and Artemis Muziekuitgeverij B.V.; BMG Rights Management UK (PRS)
0x5C9108ED = Courtesy of Warp Records Ltd.
0x5C19407A = 2. Redistributions in binary form must reproduce the above copyright notice, this
0x5C716502 = Courtesy of Jazz Refreshed
0x5CA4E691 = Additional programming by Kevin McKay
0x5CAD1C58 = Published by BMG Platinum Songs US (BMI); Bank Robber Music LLC o/b/o Compositions of Rough Trade Publishing (ASCAP) and Mute Song (ASCAP); Peter Terrell Designee (PRS)
0x5CDA97C9 = Published by Roynet Music obo Bullet Loce Music (ASCAP), Jaim Three Music LLC obo
0x5D06C099 = Translators
0x5D1D49E2 = Published by Black Man Music Courtesy of Arista/Sony
0x5D6EB9DE = DaBaby appears courtesy of 1501 Certified Entertainment/300 Entertainment
0x5D7FC726 = Courtesy of Big Beat Productions
0x5D9BC4A7 = Published by Greensleeves Music Publishing Ltd./Universal Music – MGB Songs on behalf of Biddah Muzik, Inc. (ASCAP)
0x5D78A2F6 = Published by Mured Music, Golden Fleece Music, Six Strings Music
0x5D80E3AD = Grand Theft Auto Online QA Supervisor
0x5D791C21 = Localization Manager
0x5D9705D3 = Published by Heaven's Research/BMG Bumblebee (BMI), In Thee Face Music Publishing/BMG Firefly (ASCAP)
0x5D835254 = Lead Sound Designer
0x5DB62071 = Published by Third Side America (ASCAP) o/b/o Just Isn't Music Ltd. (PRS); Gregory Shorter Jr. Designee (NS)
0x5DBB438B = Courtesy of Astralwerks under license from Universal Music Enterprises
0x5DE1D249 = Published by Somerset Songs Publishing, Inc.
0x5DE73CAC = Courtesy of Hospital Records
0x5DED5395 = Gunna appears courtesy of 300 Entertainment; Travis Scott appears courtesy of Epic Records
0x5DF986F5 = Published by Phantasy Sound
0x5E63CE49 = Disruption Productions (ASCAP), Kobalt Music Publishing America, Inc. (ASCAP)
0x5E92A97D = Published by Brownswood Recordings (NS); Domino Publishing Company of America, Inc. (BMI)
0x5E183701 = Courtesy of Super Disco Edits
0x5EA0B05A = Internal Code QA
0x5EDFE1D5 = Published by Street Knowledge Music Publishing (ASCAP) OBO Cube's Lench Mob (ASCAP)
0x5F1D2381 = Senior Online Community Designer
0x5F8A9DB0 = materials provided with the distribution.
0x5F9F2DE8 = Published by Lilla Draken Touring AB Administered by Kobalt Music Publishing America, Inc.
0x5F33E560 = Courtesy of Glassnote Music
0x5F237D05 = Courtesy of Fader Label
0x5F7748B2 = By arrangement with Michelle Cable
0x5F85079D = Courtesy of Warp Records
0x5FD341C7 = Courtesy of Sony/ATV
0x6A09A76E = Published by Universal - PolyGram Int. Publ., Inc. OBO Out-Of-Pocket-Prod. Ltd. (ASCAP),
0x6A0ADC61 = WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
0x6A3D7161 = Published by Third Side America (ASCAP) o/b/o Just Isn't Music Ltd. (PRS); Universal PolyGram International Publishing Inc. (ASCAP) o/b/o Universal Music Publishing Ltd. (PRS)
0x6A8F282F = Published by Universal Music – MGB Songs (ASCAP)
0x6A33DF9C = Courtesy of We Still Believe
0x6A71C9AD = and Warner-Tamerlane Publishing Corp. (ASCAP) obo Old River Music
0x6AA484F2 = Published by WB Music Corp. (ASCAP) obo Story Songs, Ltd.
0x6AB1AF3F = Published by Wise Music o/b/o Embassy Music Corp. (BMI)
0x6AB8A3BF = Dialogue Supervisor
0x6AB65210 = IT Systems Engineers
0x6AD1B933 = Courtesy of Trax Records
0x6B6B913C = Associate Art Director
0x6B8BECFB = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x6B9E4224 = Published by DJ Plugg Publishing (BMI), For We R Perfexion (BMI) WB Music Corp. (ASCAP)
0x6B69E2EF = Director of Operations
0x6B81235A = Senior Localization Testers
0x6BBAE1B4 = This software uses TinyXml. Thank you to Lee Thomason, Yves Berquin, Andrew Ellerton, and the TinyXml community.
0x6BDB78A9 = Rook Flair Publishing, Colionejl Publishing, WB Music Corp. (ASCAP)
0x6BE65C23 = Courtesy of Rashad Harden
0x6C07186F = Published by Kobalt Songs Music Publishing o/b/o Year0001 AB (ASCAP); Martin Vogul Designee (NS)
0x6C2A32A4 = Published by Alltudemic
0x6C4C1DEE = Courtesy of Jolly Discs
0x6C7F83B2 = Loot on Loose Leaf Music (ASCAP). All Rights OBO Itself
0x6CCC9568 = Contains interpolations from High Pressure Days, Written by Scott Carl Ryser
0x6CD430E7 = NaturalMotion Behaviour Tuning
0x6D0C3119 = Localization Testers
0x6D1CF84E = Courtesy of Red Light Management
0x6D2C75DF = Published by Chappell & Co., Inc. (ASCAP) WB Music Corp. (ASCAP) OBO Don Robertson Music Corp.
0x6D34EEF4 = specific prior written permission.
0x6D93D6BE = Published by Maxwood Music Ltd. Obo New Town Sound Ltd. (PRS)
0x6D2373BE = Published by Oje Ken Ollivierre
0x6D7335C5 = Courtesy of Cybonix
0x6D973161 = Published by Universal Tunes (SESAC); Omoniyi Temidayo Raphael Designee (BMI); Fairchild Light Publishing (ASCAP)
0x6DA5F696 = THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0x6DC60256 = Image Metrics, Inc. Uses Simplygon®, Copyright © 2011 Donya® Labs AB.
0x6DCA7F99 = Courtesy of Far Out Productions, Inc Exclusively administered by BMG Rights Management (US) LLC
0x6DCD14E2 = Published by Rockstar Games Tunes LLC (ASCAP)
0x6DFCE9B1 = Courtesy of Awesome Tapes from Africa
0x6E4A1A29 = Lead QA/Dev Support
0x6EBEE924 = Published by Solar Langevin Designee (ASCAP)
0x6ED4BEBA = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x6EDDD2DD = Published by Edimusica Ltda. (ASCAP) c/o Jamarco Music (ASCAP),
0x6EF8EACB = Published by Abitare Music o/b/o Hooj Choons (ASCAP)
0x6F1F0104 = Courtesy of MTM Music and Atlantic Recording Corp. by arrangement with Warner Music Group Video Game Licensing
0x6F60B257 = Courtesy of Black Strobe Records
0x6F91AD94 = Published by Minds on Fire (PRS)
0x6F675FB7 = Producer
0x6F31069E = Courtesy of Rogue Agency
0x6F233761 = Reservoir Media Music/Ty Epps Music (ASCAP); Irving Music Inc.; Julian Gramma; Travis Scott
0x6FA49C9B = Courtesy of Ed Banger
0x6FA98BE6 = Emergency Music administered by Shapiro Bernstein and Chutney Music
0x6FABAFB5 = Published for USA and Canada by Taking Care of Business Music (BMI) and for the Rest of the World by Minder Music Ltd.
0x6FBE654F = Courtesy of Warp Records
0x6FD82FCC = Courtesy of Sony Music Entertainment (UK) Ltd.
0x7A07321B = Courtesy of Cr203 Records
0x7A6DF447 = OBO Itself and Kashif Music
0x7A7F82A9 = Wavves appears courtesy of Warner Bros. Records
0x7A8CFB57 = Published by UKW Publishing administered by Downtown Music
0x7A89420D = Published by Rush Hour Music (BUMA)
0x7AC30560 = Published by Carter Boys Music. Administered by Warner Chappell (ASCAP), Universal - Songs Of PolyGram Int., Inc.
0x7AD058DC = GTA Media
0x7AE12593 = Senior Online Programmers
0x7AEFF294 = Lead Environment Artists
0x7B3CCB7E = Lead Information Systems Programmer
0x7B4CD762 = Courtesy of Atlantic Recording Corp., by arrangement with Warner Music Group Film & TV Licensing
0x7B5EF291 = Published by Gregory Shorter Jr. Designee (NS)
0x7B83F183 = Published by 1983 Unichappell Music Inc. (BMI) and Hot Cha Music Co. (BMI),
0x7BBE6F00 = Published by Universal Music Corp. o/b/o American Def Tune (ASCAP); WC Music Corp. o/b/o LL Cool J Music (ASCAP)
0x7BE3E9B8 = Courtesy of Cocoon Records
0x7BF5177F = Published by Records Are My Pillow
0x7C4A304D = OBO Blue Sky Rider Songs (BMI), Warner-Tamerlane Music (BMI)
0x7C4DE1DC = Published by BMG Monarch (ASCAP) o/b/o Chrysalis Music Holdings GmbH (GEMA) o/b/o Fanfare Musikverlag, Edition (GEMA); Brownswood Recordings o/b/o Richard M. Bull Designee (PRS)
0x7C24D59A = Published by Sony/ATV Songs (BMI); Sony/ATV Tunes (ASCAP); Universal Music Corp. on behalf of itself and Glostream Music Publishing;
0x7C39B9CE = Earl Sweatshirt appears courtesy of Tan Cressida/Columbia Records, a division of Sony Music Entertainment
0x7C784C43 = Courtesy of Toolroom Records
0x7C2122E7 = Published by Universal-PolyGram International Publishing, Inc. obo Universal Music Publishing Ltd.
0x7CB46D78 = Courtesy of D.E.F. Ltd.
0x7CE99480 = Production Associates
0x7CEAB42A = Assistant Art Director
0x7CF07207 = provided with the distribution.
0x7CFC3128 = Courtesy of Future Classic
0x7CFFCA8F = Published by Benfel Music (BMI)
0x7D1E1B2E = OBO Itself, Hard Working Black Folks Inc. and Top Dawg Music
0x7D2D058E = Published by Curious City Music (ASCAP)
0x7D4CB363 = Courtesy of Well Street Records
0x7D59FB54 = Courtesy of VP Records
0x7D71CD33 = Produced by Alex Metric & Ten Ven
0x7DA96B6E = Published by 1999 WB Music Corp. (ASCAP), Big Yacht Music (ASCAP),
0x7DBDA94D = Tools Director
0x7DDE8088 = Published by Sony/ATV Music Publishing o/b/o EMI Blackwood Music, Inc. (BMI) and Oakfield Avenue Music Ltd. (BMI)
0x7DF63651 = Art Director: Character, Vehicle, Props
0x7E2B96F2 = Published by Songs of Kobalt Music Publishing o/b/o Boys Cry 2 Ltd. (BMI); BMG Platinum Songs US (BMI); Sony/ATV Songs LLC (BMI)
0x7E4DA0AB = Published by Sound 2020 Publishing Ltd. (PRS)
0x7E5B9394 = Lead Mission Scripters
0x7E7BE3B3 = PLACEHOLDER
0x7E52AA88 = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x7E66AB64 = Stunts performed by
0x7E72B77A = Courtesy of Warner Records by arrangement with Warner Music Group Video Game Licensing
0x7E8277CB = Silent Assassin YRN (ASCAP), Universal Music
0x7EC285D0 = in the documentation and/or other materials provided with the distribution.
0x7ED06A34 = RAGE Technology Group
0x7ED73E64 = Certain facial animations generated with FaceFX. © 2002-2010, OC3 Entertainment, Inc. and its licensors. All rights reserved.
0x7EE98417 = Published by Tony Castles
0x7EF00B50 = QA Testers
0x7F039EE0 = Published by Rockstar Games Tunes LLC (ASCAP)
0x7F2B19A6 = Courtesy of Don Corleon Records
0x7F2B171A = Universal-Songs of Polygram International, Inc. on behalf of Better Days Music (ASCAP/BMI)
0x7F30A52B = All rights reserved. Certain facial animations generated with FACEWARE. © 2002-2012.
0x7F781AE5 = Courtesy of Believe Music America
0x7F220631 = Published by Far Out Recordings (BMI)
0x7F301502 = Lead Cutscene Animator
0x7FD3051A = Senior Graphics Programmers
0x7FE9921E = Universal Music Corp. o/b/o Southcoast Music Group LLC (ASCAP) and Baby Jesus Publishing (ASCAP);
0x7FFC6759 = Courtesy of The Echo Label Limited
0x8A2C2628 = HR Advisor
0x8A2CBFA0 = Published by Bravo And Encore Music c/o Bicycle Music (BMI) and The Music Goes Round, B.V. d/b/a Music In Three (BMI)
0x8A64DCF0 = Production
0x8A920B62 = Published by Screen Gems-EMI Music Inc. and Earmark Music Inc.
0x8AB0CF3F = Courtesy of Detroit Bass Classics
0x8ADEB5E7 = Courtesy of Rockstar Games, Inc.
0x8AF8726C = IT Systems Analysts
0x8AFE277D = Published by Adidja Azim Palmer (BMI), Rockstar Games, Inc.,
0x8B2C7A41 = Published by Curious City Music (ASCAP)
0x8B4B6613 = Published by Shelly Bay Music LLC o/b/o Madlib Invazion Music (BMI); Missing Link Music o/b/o Mister Link Music (ASCAP) and Karriem Riggins Music (ASCAP)
0x8B8BB0B3 = Courtesy of Blonded
0x8B9D3415 = HR Coordinator
0x8B13B928 = Published by Dream City Music (BMI)
0x8B40650B = Interactive Music Developers
0x8BBE8F52 = Published by Cak Music Publishing Inc. (ASCAP)
0x8BDFF285 = Mastered by Emily Lazar at The Lodge, assisted by Chris Allgood
0x8BE48906 = Published by Loss Leader Music (ASCAP)/Keith Morris (BMI)
0x8C015BEE = Mixed by Ben Baptie
0x8C0327EB = Published by Copyright Control, Westbury Music
0x8C073D74 = Mixed by Ben Baptie and Segal
0x8C1F699B = Senior Build Engineer
0x8C5AC1EC = Administered by Coinfish Publishing, Mario Rubalcaba Publisher Designee
0x8C7B8580 = Sony/ATV Tunes LLC (ASCAP) o/b/o Sony/ATV Music Publishing Allegro UK (PRS); BMG Platinum Songs US (BMI)
0x8C7D6B3E = Published by Copyright Control
0x8C9B3A0F = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x8C78B957 = Published by Ripl Music/Dimitri Grimm
0x8C795A4D = Samuel T. Herring appears courtesy of 4AD
0x8C9394B5 = Dolby Laboratories. CyaSSL Copyright © 2012 Sawtooth Consulting Ltd.
0x8C220811 = Published by Linton Charles Music (PRS), EMI April Music Inc. (ASCAP)
0x8CB08D45 = Published by Sharif Laffrey Music (BMI)
0x8CB284BB = Senior UI Programmer
0x8CC6D54A = Courtesy of Universal Music Group
0x8CD54708 = Radio
0x8CE4EDD6 = Production/Personal Assistant
0x8CE27BCD = Published by Universal Music Corp. o/b/o Quality Control QC Pro (ASCAP);
0x8D0A0FB2 = Sony/ATV Ballad (BMI), Top Dawg Music, Universal Music Corp. on behalf of itself and Elementary Particle Music (ASCAP),
0x8D2D2C84 = Courtesy of Mom and Pop Music
0x8D4EFE2D = Administered worldwide by Supreme Songs Ltd. (PRS)
0x8D5C25D4 = ORIGINAL COMMISSIONED SONG
0x8D6F2329 = IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
0x8D128EFC = Published by 24 Carat Brown Music (ASCAP); Bleedy Eyes Music (ASCAP); The Fairview Music Group Titles (ASCAP)
0x8DE5F94D = Published by Rob Glassett Designee (NS)
0x8DEF34C3 = Courtesy of Electric Unicorn Music
0x8DF5752F = Character Rigging
0x8E6D0004 = Additional Bass and Guitar performed by Surahn Sidhu
0x8E9BB0FE = Published by Turn First Ltd.
0x8E79E3EC = Courtesy of Sony Music Entertainment
0x8E30857B = Published by EMI Blackwood Music Inc. (BMI)
0x8E81036B = Published by Warner-Tamerlane Publishing Corp. (BMI) OBO Goddard and Taylor Limited
0x8E856207 = Senior Vehicle Artist
0x8EA07F0F = Published by Milk Money Music, Snug Music
0x8ECB1813 = Published by The Royalty Network, Inc. o/b/o David Platz Music (BMI)
0x8ED70AE2 = Published by Rockstar Games Tunes LLC (ASCAP)
0x8F0AB779 = Published by EMI Music Publishing LTD, Nyan King Music Inc, Sam Fam Beats, Spirit One Music
0x8F7E5A5D = Published by YSL Enterprises (Gunna), Cash Carti Music ASCAP
0x8F69C475 = Courtesy of EMI Music
0x8F75B2F1 = ROCKSTAR LINCOLN
0x8F677A76 = Published by Planet E Communications Inc. (ASCAP)
0x8F4998B8 = Mark Adler madler@alumni.caltech.edu
0x8FB151AB = Courtesy of The Beggars Group, Ethan Silverman, Terrible Records
0x8FDEC0FD = Courtesy of Rhino Entertainment Co., by arrangement with Warner Music Group Film & TV Licensing
0x8FF45B24 = Published by Ghostly Songs, LLC admin by Kobalt Music Publishing
0x9A9BD34A = Courtesy of Old Flame Records
0x9A1468F3 = Courtesy of A-A Distributioners dba Beer City Skateboards and Records
0x9A27701D = Health Noise LLC/Rockstar Games.
0x9B1A1056 = Courtesy of Top Dawg Entertainment
0x9B7D3F41 = and use in source and binary forms, with or without modification, are permitted
0x9B28BD74 = Published by Downtown DLJ Songs (ASCAP) o/b/o Keinemusik Edition (GEMA)
0x9BA6CA9B = Contains a sample of I Really Love You
0x9BAAF230 = Published by Ultra Empire Music, EMI April Music
0x9BE5B57B = Published by Big Deal Music LLC o/b/o Big Deal Beats (BMI) and Grateful Bat Songs (BMI); Raleigh Music Publishing LLC d/b/a Steve Peter Music (ASCAP) o/b/o Budde Music France (SACEM)
0x9C083B28 = Courtesy of Eskimo Recordings
0x9C2DC05B = Published by Universal-Songs of Polygram International Inc. (BMI)
0x9C976C3C = Recorded at Dean's List House of Hits Soho. Recording engineer Stuart Innis. Mixed by Mike Dean
0x9C576706 = Published by Future Classic Party Ltd Administered by Kobalt Music Publishing America, Inc.
0x9C592512 = Courtesy of Death Row
0x9CB4C170 = VFX Artists
0x9CC8CE6E = Problem appears courtesy of Diamond Lane Music Group.
0x9CC8EFC5 = Published by Guerrilla Funk Music
0x9CD20DAE = - Redistributions of source code must retain the above copyright notice, this list
0x9CDB6B1A = Additional dialogue by
0x9D4A84FD = Published by Shelly Bay Music LLC o/b/o Madlib Invazion Music (BMI)
0x9D62A5A7 = Published by Lastrada
0x9D78E3BB = Mixed by Ben Baptie
0x9D768FA6 = Published by B Music, Kobalt Music, Warp Music Publishing US o/b/o Warp Music Ltd. (ASCAP)
0x9D5263BA = Courtesy of DJ Mustard and YG
0x9D700786 = Level Design
0x9DA7FF4E = By arrangement with R. Insinna
0x9DAB2641 = Courtesy of Swindle Ltd.
0x9DABF8A2 = Published by Songs of Universal, Inc. OBO Interior Music Corp.
0x9DCE81F3 = Published by EMI April Music, Sony/ATV Tunes LLC, Universal Polydor
0x9E07510F = Published by Bryan James Sledge (ASCAP), Frederick Jamel Tipton (ASCAP)
0x9E0DD10C = Bass
0x9E3D1F2C = Imaging Production
0x9E8CF3E3 = Courtesy of Nacional Records
0x9E17A577 = Courtesy of Ghostly International
0x9E80E362 = Senior AI Programmers
0x9EB9668E = Published by EMI April Music, Inc. (ASCAP)
0x9F064BB6 = Kobalt Music Publishing America, Inc., Joel Williams Publishing Designee,
0x9F080A14 = Courtesy of Castle Face Records
0x9F12D339 = Courtesy of Full Cycle Records
0x9F94B866 = Published by The Royalty Network Inc. o/b/o David Platz Music Inc. (BMI)
0x9F84384C = Grand Theft Auto Online Script Leads
0x9FB24552 = Courtesy of Concord Music Group, Inc.
0x9FDBDD52 = Senior Network Programmers
0x9FF5C250 = Lead IT Systems Engineer
0x9FF928E2 = Published by Fort Knox Music Inc., Trio Music Co.
0x10C5BE18 = Published by Universal Music-MGB Songs (ASCAP) o/b/o Universal Music Publishing Ricordi Srl (SIAE) and Warner Music Publishing Italy Srl (SIAE)
0x10D4E975 = Published by Gil Cang Designee (PRS)
0x10D13D3D = Courtesy of Rhino Entertainment Company
0x11B12239 = Studio
0x11BABEC8 = Courtesy of Cutter Records
0x11F21375 = Art Director
0x12A64C1C = zlib © 1995-2012. Thank you to Jean-loup Gailly and Mark Adler. Jean-loup Gailly
0x12BC7871 = Published by Warner-Tamerlane Publishing Corp. (BMI)
0x12C172E4 = Published by Sony/ATV Songs LLC o/b/o Old Ideas, LLC (SOCAN) and Two Word Music (BMI);
0x12F58B39 = Courtesy of Budde Music France
0x13AB69C0 = Network Administration
0x13B8B093 = Published by Thomas Bush Designee (NS)
0x13C83A96 = Courtesy of Nueva Nation
0x13D07F6D = Cutscene Animation Coordination
0x13DEC642 = Published by Jack Russell Music Ltd (PRS)
0x13EA74C4 = Published by Warp Music Ltd.
0x13F0FD57 = And as administered for Diesel Music (BMI)]
0x14BC70C8 = Published by Weed Demon Music., Inc., Rockstar Games
0x14D56C00 = Courtesy of Cin Cin
0x15B89EDD = Published by BMG, BPM King Street Sounds
0x15B720D9 = Published by Greenstar Music c/o Unitunes Music, a division of Unidisc Music Inc.
0x15E30426 = Courtesy of Circle Jerks
0x16AA0137 = Published by RG Music Management Ltd. (BMI)
0x16BFB47A = Schoolboy Q Music, WB Music Corp (ASCAP), TDE Music, LLC
0x16C7EE47 = Published by Megathoughts Music, Sony/ATV Songs LLC, Ruthless Attack Muzick
0x16C678F6 = Courtesy of La Souterraine
0x16DBFDFC = Courtesy of ZYX Music GmbH
0x16F5362F = THIS SOFTWARE IS PROVIDED BY JONATHAN WALLACE ``AS IS'' AND ANY EXPRESS OR IMPLIED
0x17CC496D = Produced by John Saxon for State of Emergency Ltd. Released by Megawave Records.
0x17E529D1 = Published by Joseph Richmond-Seaton Designee (NS)
0x17F07CC0 = Mission Scripters
0x18B6CCCB = Courtesy of A&M Records Ltd. under license from Universal Music Entertainment
0x18B9AC3B = Courtesy of Quality Control
0x18B73AAD = Testers
0x18BF526D = Published by Copyright Control
0x18D67561 = Music Director
0x19C0772F = Sound Designers
0x19EE625A = Published by EMI Blackwood Music Inc. (BMI); Songs
0x20E0AECD = Courtesy of Brouhaha Music, Inc.
0x20FA4E8D = Courtesy of Rockstar Games, Inc. in arrangement with Diynamic Music
0x21A0319B = Published by Tubular Music
0x21AEE8C8 = Published by Future Classic Pty Ltd (ASCAP) Admin by Kobalt Music Publishing America, Inc.
0x21D2B2C9 = Courtesy of M1llionz Music Ltd.
0x21F9587E = IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
0x21FEE04A = Graphic Designer
0x22A73D06 = Courtesy of Knekelhuis
0x22B931E0 = Junior In-Game Animation
0x22B97076 = Systems Programmers
0x22D2E5DE = Downtown DLJ Songs (ASCAP) o/b/o Keinemusik Edition (GEMA) and Sinnbus Musikverlag (GEMA)
0x22D3CE70 = Dedicated to the memory of Chris "Eddie" Edwards, a huge loss to the Rockstar family.
0x22DAE6C9 = Published by Embassy Music Corp. (BMI)
0x23A30FE3 = Courtesy of Warner Music Inc.
0x23E09DF4 = I Made That Noise (ASCAP)
0x24AE921B = Published by Songs of Universal, Inc. o/b/o Kenny Beats Publishing (BMI); Sony/ATV Harmony (ASCAP)
0x24B33D45 = Courtesy of Mez
0x24B731AB = Published by Teksupport Records LLC
0x24C0DDAE = Senior Recruiter
0x24C1E6D5 = Published by Kohaw Music Inc. (ASCAP) o/b/o Wintrup Musikverlage Walter Holzbaur (GEMA)
0x24FC25D0 = Soundtrack Supervision
0x25D6EC53 = Cinema
0x25E1D865 = Courtesy of The Hics
0x25FAE93D = Published by Dan Whitford and Tim Hoey Administered by Kobalt Music Publishing America Inc.
0x26AD316B = Senior Lead Testers
0x26C740AA = Published by Alan Palomo (BMI)
0x26DD6A3D = OBO Itself and More Water from Nazareth
0x26F74B7F = Courtesy of Secretly Canadian
0x27AC4A08 = Published by RZO Music Inc. o/b/o Tintoretto Music (BMI); Screen Gems-EMI Music Inc. (BMI); BMG Bumblebee o/b/o James Osterberg Music (BMI)
0x27BFD0A7 = Published by WB Music Corp. (ASCAP) obo itself, Automatic Bzooty Music and Otissery Music
0x27E82932 = Published by Stones Throw Records
0x27F62780 = Audio Programmer
0x28A1B38A = Lead Artist
0x28CC47B9 = Character Art
0x28FBA5DA = Published by WC Music Corp. (ASCAP) o/b/o Warner Chappell Music Ltd. (PRS);
0x29C302F0 = Drums & Percussion
0x29E5B098 = Casting Assistant
0x29F766D5 = IT Systems Engineers
0x30A1832B = Courtesy of EMI Music Mexico
0x30ECDD69 = © NaturalMotion (2008). "NaturalMotion", "euphoria" and the NaturalMotion
0x31C2733D = Additional production by Evian Christ
0x31C82303 = Published by Walter R. Cochran III, Ermias Asghedom (BMI),
0x31D05C30 = Recruiter
0x31D9E50E = Published by Just Isn't Music Ltd. (PRS)
0x31D37BEB = And OBO Kausion'Fo Yo Azz Music (ASCAP), Bridgeport Music, Inc. (BMI), Rubber Band Music (BMI)
0x31DD1027 = Published by Universal PolyGram International Publishing Inc. (ASCAP) o/b/o Universal Music Publishing Ltd. (PRS); Warner-Tamerlane Publishing Corp. o/b/o Andi Girl Music (BMI); Third Side America (ASCAP) o/b/o Just Isn't Music Ltd. (PRS); Atlas Music Group (ASCAP); Concord Copyrights o/b/o DC Ult Music Publishing (BMI)
0x32A31882 = (P) 2020 Rockstar Games, Inc.
0x32AC44FE = Runners
0x32AFF5A9 = Courtesy of Caroline International Ltd. under license from Universal Music Enterprises
0x32BCC0C2 = Graphic Design Support
0x32EB107D = Published by Kobalt Songs Music Publishing (ASCAP)
0x33B4E66B = Published by Universal Music Corp. o/b/o South Coast Music Group LLC (ASCAP) and Baby Jesus Publishing (ASCAP);
0x33C65A3E = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x33C91E1C = Junior Character Artist
0x33CD2461 = Published by Daniel Aged Music (SESAC), Angeligo Music (BMI)
0x33E5E362 = Courtesy of Atlantic Recording Corp.
0x33E71101 = Courtesy of Light In The Attic
0x33F53126 = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x33FE60DC = Published by EMI Jemaxal Music, H&R Lastrada Music, Music Sales Corp., Ruthless Attack Muzick,
0x34C3FE13 = WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
0x34C7F8BA = Courtesy of Jive Records, by arrangement with Sony Music Entertainment
0x34E43729 = Courtesy of Sony Music Entertainment
0x35A47C32 = Courtesy of DFA Records
0x35B5E2CF = Courtesy of Origami Sound
0x35B3377A = Published by Roynet Music (ASCAP) o/b/o Saregama PLC (PRS)
0x35C61204 = Published by Kassa Overall Designee (BMI); Carlos Overall Designee (BMI)
0x35D00EFE = Published by Warp Music Limited
0x35DEA6E4 = Courtesy of Universal Music Enterprises
0x36A2CCA7 = Published by Concord Music Group Inc.
0x36B06279 = Published by Universal Music Corp. o/b/o South Coast Music Group LLC (ASCAP) and Baby Jesus Publishing (ASCAP);
0x36C1D4CA = (P) 2020 Rockstar Games, Inc.
0x36C1E500 = Courtesy of EPM
0x36DAEE1C = Published by Night Noise Music
0x36F080A3 = Published by Lip Sync Music, Inc. obo Dom Band Publishing
0x37A385D3 = Cinematic Lead Animator
0x37AA65F3 = Published by David Platz Music Inc. (BMI) o/b/o Bucks Music Group Ltd. (PRS); Songs in the Key of Knife (PRS)
0x37D8A7D5 = Courtesy of Mom + Pop/Fidlar
0x37EE8229 = Courtesy of Interscope Records under license from Universal Music Enterprises
0x37F02BB0 = (c) 1979 BMG Chrysalis Music/Let's Go Music/Very Safe Music (BMI) used by permission.
0x38AB9745 = Published by Jahara Music Ltd. (Westbury-Roy Net), EMI Blackwood Music, Inc. (BMI)
0x38C31095 = Published by Rockstar Games Tunes LLC (ASCAP)
0x39B0C24F = Published by Toeachizown Music (BMI) administered by Domino Publishing Company of America Inc. (BMI)
0x39C5FA47 = Published by Songs of Universal, Inc.
0x39D5B3B4 = Published by Sony/ATV Tree Publishing (BMI)
0x39E547D5 = Published by Music of Stage Three (BMI)
0x39F97A36 = Courtesy of Varese Sarabonde Records, Inc.
0x40A73B7B = Courtesy of Metropolis IX
0x40A85A5C = Courtesy of Reprise Records, by arrangement with Warner Music Group Film & TV Licensing
0x40D8B469 = Courtesy of Hollywood Records
0x40F17643 = Published by Turn U On (ASCAP)
0x41B9600F = Mixed by the DFA
0x41C318C0 = Courtesy of 4AD, by arrangement with Beggars Group
0x41CFEDC6 = Courtesy of Elektra Records, by arrangement with Warner Music Group Film & TV Licensing
0x42D0361C = Courtesy of In the Red, by arrangement with Domino Recording Company Ltd.
0x42F9B705 = Production Assistant
0x43AAE6A8 = Multiplayer Developer Support
0x43D1CE56 = Contains a sample of Heat it Up
0x43DBF37D = Published by Blake Baxter Designee (BMI)
0x43DE73BC = Courtesy of Sony Music Entertainment
0x43F62E3E = Director, Release Management
0x43FA8761 = Published by BMG OBO Bug Music
0x44E0BB69 = Global Lead Technical Artist
0x44F13104 = Published by WB Music Corp OBO Itself, Hard Working Black Folks Inc. and Top Dawg Music
0x45E0C971 = Published by Helicoptank Music (BMI), Gaslamp Killer Music
0x46AD77D1 = Published by Jobete Music Co., Inc.
0x46B6E642 = Published by Bank Robber
0x46E3F462 = Hit-Boy Music/U Can't Teach Bein' the Shhh, Inc./
0x46FBC28E = Senior Dialogue Design
0x47B2878C = this list of conditions and the following disclaimer. Redistributions in binary
0x47E665EA = Courtesy of Warner Music UK
0x47EF13AB = Published by Universal Polygram International Publishing on behalf of Little More Music/Universal Music MGB Songs/
0x47F5FB37 = Published by Universal PolyGram International Publishing, Inc. (ASCAP) o/b/o Decca Music Group Ltd. (PRS); Domino Publishing Company of America Inc. (BMI)
0x48AE869F = Published by Itstillmusic Chicago Publishing (BMI)
0x48B6C0C9 = Courtesy of Blonded
0x48C49ED4 = Published by Rockstar Games, Inc., A Maman Music (administered by The Royalty Network Inc.) (ASCAP),
0x48F2B5EE = Courtesy of 20/20 Vision Recordings Ltd.
0x49ABC223 = Animation Programmer
0x49B8AF73 = Programmers
0x49B209E4 = Published by Winnie Sharpe Publishing (ASCAP)
0x49C51F52 = Published by Rubber Band Music (BMI) and Bridgeport Music Inc. (BMI)
0x49DD9804 = Published by Warp Music Ltd.
0x49FE35C8 = Published by Tijolo Pub
0x50B2FC18 = Published by Rockstar Games Tunes LLC (ASCAP)
0x50C5CEF7 = Courtesy of Westbound Records
0x50CAC4C7 = Courtesy of Swami Records
0x50FCA301 = Courtesy of Clone Recordings Netherlands
0x51CF58BD = Published by EMI Longitude Music (BMI)
0x51F71D49 = Courtesy of American Gramaphone LLC
0x52A4468D = Courtesy of Still Music Chicago
0x52BDA3B8 = Courtesy of PIAS/Phantasy Sound Ltd.
0x52C6A8AA = Published by Sony/ATV Melody (BMI)
0x52D82DF8 = this list of conditions and the following disclaimer.
0x52F25A6D = Published by Warner Tamerlane Publishing Corp. (BMI) obo itself and Boobie and DJ Songs, Inc.;
0x54DD3990 = Courtesy by Thunder Zone Entertainment and Slow Motion Soundz LLC
0x55D03007 = Development Assistants - Dialogue
0x55EAA40C = Lead Concept Artist
0x55EDB36A = Admin Officer
0x55F3E909 = Published by Universal Music - MGB Songs on behalf of Universal Music MGB Ltd. (ASCAP), BMG Platinum Songs (BMI)
0x56C2E7FB = Assistant Art Directors
0x56D9F734 = Published by James Curd Music ASCAP/Laser Cream ASCAP, Rockstar Games
0x56FE8DDE = Jayon Raschad Designee (ASCAP); Andre LoBlack Designee (BMI)
0x57A1D617 = Courtesy of Peacefrog
0x57E9D95D = Published by The Music Goes Round B.V. o/b/o Music in One (BMI)
0x57FB26CB = Additional Dialogue Editing
0x58A19604 = Chappell & Co., Inc. (ASCAP) obo Itself and November Nights Music, Inc.
0x58B3301E = Dialogue Design Assistant
0x58CE7B56 = Courtesy of Never Grow Up Records
0x58DB7AFA = Animator
0x58E45DF9 = Published by Joon Dada Ltd. (NS)
0x58F62C49 = Senior Lighting Artist
0x59C11433 = Published by Peer Music, ARPS (BMI)
0x59CF8AA4 = the LibCurl software for any purpose with or without fee is hereby granted, provided
0x59F3B478 = Courtesy of Frontier Records
0x59F90E13 = Published by Mahogani Music o/b/o Conolia Publishing (ASCAP)
0x59F29378 = Performed by Melvin Bliss
0x60A115FC = Danny Brown appears courtesy of Warp Records
0x60F06CB6 = Courtesy of SACM
0x60F60203 = W.B.M. Music Corp. (SESAC) and Danjahandz Muzik (SESAC)
0x60FA4D9B = Courtesy of Squirrels on Film
0x62D3D6AD = Published by Universal-PolyGram International Publishing, Inc. (ASCAP) o/b/o Universal Music Publishing Ltd. (PRS)
0x63C9142A = Contains excerpts from "California," performed by Ariel Pink and Dam-Funk and written by Monika James.
0x63CDB557 = Courtesy of Saddle Creek
0x64E705A1 = Published by Universal Music Publishing
0x65E5DC92 = Courtesy of RCA Records, by arrangement with Sony Music Entertainment
0x65EB16E9 = Social Club Development Support
0x65F8A000 = of conditions and the following disclaimer in the documentation and/or other
0x66AC5640 = Published by Bug Music (BMI)/American Lesion Music (BMI)
0x66CF8E78 = HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
0x66D66DF4 = Associate Technical Directors
0x66D9414E = Courtesy of Warner Music UK Ltd., by arrangement with Warner Music Group Film & TV Licensing
0x67C67FCD = Published by EMI Music
0x67DB159B = Published by Sony/ATV Harmony (ASCAP), Real N Ruff & Kami Broyles,
0x67E9C392 = Published by Double Vortex Music (ASCAP)
0x67F3C5E2 = Published by Ultra Tunes
0x67F52364 = Published by Richard Spaven Designee
0x68B3F761 = Localization Manager
0x68C3BA4F = Courtesy of RCA Records, by arrangement with Sony Music Entertainment
0x68C44060 = Courtesy of Universal Music Enterprises
0x68E1CDCB = Office Manager
0x69A3F4AE = Junior Artist
0x69C8F7C9 = Published by Built By Music/ASAP Ferg Productions LLC
0x69DCE32A = Published by Universal – Polygram International Publishing, Inc. on behalf of Goldpoint;
0x70B7F4CE = Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
0x70B7449D = Music Clearance by Deborah Mannis-Gardner/DMG Clearances, Inc.
0x70C55956 = Published by Rockstar Games Tunes LLC (ASCAP)
0x71DE7494 = Published by Alan Palomo
0x72CF6DE6 = list of conditions and the following disclaimer in the documentation and/or other
0x72FDA449 = Published by Universal Music Corp. OBO Protoons, Inc. (ASCAP)
0x73E728A7 = WALLACE OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
0x73ED1C3B = Published by Sam Flax
0x73EF10B3 = Courtesy of Norton Records
0x73F1E472 = Additional Location Sound & Facial Capture
0x73F8BBFC = materials provided with the distribution.
0x73F2568F = Courtesy of Columbia Records by arrangement with Sony Music Entertainment
0x74E73FA8 = Vehicle Artist
0x75B62BE2 = Published by Babatunde Adebimpe, Ahmed Gallab, Rockstar Games, Inc.,
0x75DFDB78 = Pisswasser theme song sung by
0x75E71280 = Courtesy of Concord Music Group Inc.
0x75F21927 = Courtesy of Glasgow Underground Music Ltd.
0x76BC5349 = By arrangement with 21st-Hapilos Digital Distribution
0x77CEF7D5 = Published by Screaming Rachael Cain Music (BMI); Sanlar Publishing (BMI)
0x78DBDCC3 = Published by Warp Music Publishing US (ASCAP) o/b/o Warp Music Ltd. (PRS); Universal PolyGram International Publishing, Inc. (ASCAP) o/b/o Dub Plate Music Publishers Ltd. (PRS)
0x78EB6440 = Published by Universal - Songs of PolyGram International (BMI)
0x79AA573D = Courtesy of We Still Believe
0x79AFB159 = Courtesy of Heard and Felt Music
0x79BE12C7 = Lead Animation
0x79FF1581 = Published by Syunsuke Ono (NS)
0x80D0AA2E = Grand Theft Auto Online Producer
0x80D72AAE = Accounts Administrator
0x80DFAB27 = Mixed by
0x80E2B61A = Courtesy of Mute by arrangement with Bank Robber Music LLC
0x80E55AE5 = Published by EMI Blackwood Music Inc. (BMI);
0x80FD90AA = Multiplayer Level Design
0x81A19F54 = Published by EMI Blackwood Music Inc. (BMI)
0x81B4D394 = Senior Concept Artists
0x81DC0CF6 = Published by Concord Sounds o/b/o These Are Songs of Pulse (ASCAP)
0x81DE19D9 = Quality Assurance
0x81F6AA41 = Published by Stone City Music c/o Wixen Music (ASCAP)
0x82A2732D = Courtesy of OTB ENTERTAINMENT
0x82B8C137 = Published by Genre Free Publishing (ASCAP)
0x82F6FDBD = Courtesy of Rockstar Games, Inc.
0x82F8EC40 = Published by BMG Chrysalis
0x83BE2052 = POSSIBILITY OF SUCH DAMAGE.
0x83BF8550 = Courtesy of Universal Music Enterprises
0x83C7580A = Published by Copyright Control
0x83D20728 = Courtesy of Warner Bros
0x84BC3022 = Courtesy of Egyptian Empire Records
0x84FE1243 = LIBJSON: Copyright 2010 Jonathan Wallace. All rights reserved. Redistribution
0x85C72EEE = Courtesy of Local Talk
0x85CA5CC3 = Courtesy of Darkroom Dubs
0x86A72066 = Senior Programmer
0x86BD2DA8 = Courtesy of BDP Creative Pty. Ltd.
0x86D5DBAD = Courtesy of Carpark Records.
0x86EAE832 = Social Club Producer
0x87DE1C3C = Published by Jobete Music Co., Inc. (ASCAP)
0x87EEE1CC = Music Assistant
0x87F9B974 = Published by BMG Monarch (ASCAP) obo itself and Panda Lennox (ASCAP)
0x89C60EF3 = AI Programmer
0x89C3317E = Senior Artists
0x89CADC28 = Pacific Electric Music Publishing Inc. o/b/o Pink Fleece Music (BMI);
0x89EF517D = Map QA
0x89F202A3 = Pedestrians directed by
0x90BBF382 = Published by Songs of Universal, Inc. OBO Incredible Music Ltd. (BMI)
0x91A43593 = Published by Kobalt Songs Music Publishing (ASCAP) o/b/o Kevin Gates Music (ASCAP) and Artist Publishing Group West (ASCAP);
0x92A1FF38 = Published by EMI Longitude Music
0x93E1D86C = Published by Ghetto Teknitianz Muzik (ASCAP), Premro Pub.
0x93E44312 = used to endorse or promote products derived from this software without
0x93F2EB35 = Courtesy of Universal Music Africa under license from Universal Music Enterprises
0x94AD904A = Tools Development Support
0x94EB2D18 = Courtesy of Roadshow Music Corp.
0x96ACC158 = Courtesy of Atlantic Recording Corp., by arrangement with Warner Music Group Film & TV Licensing
0x96C24C2D = Camera Programmers
0x96E73A39 = Supervising Outsource Vehicle Artist
0x96ED271A = ROCKSTAR TORONTO
0x96F8A176 = Published by Sony/ATV Tunes LLC (ASCAP) o/b/o Sony/ATV Music Publishing Allegro UK (PRS);
0x97B3BEFE = Courtesy of Cinematic Worldwide
0x97BD6F47 = expressed or implied, of Jonathan Wallace.
0x97FA0E8E = * Redistributions of source code must retain the above copyright notice, this list
0x98AEC478 = Courtesy of Sam Flax
0x99A9D8C3 = Published by Rockstar Games Tunes LLC (ASCAP)
0x99F00AA8 = Courtesy of Zero Hour Music, Inc.
0x102B9C3F = Published by Universal Music Corp. obo itself and Gangsta Boogie Music,
0x107ABC41 = IMPLIED WARRANTIES OF MERCHANTABILITY FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
0x118ACD42 = Courtesy of Sire Records, by arrangement with Warner Music Group Film & TV Licensing
0x123FA494 = Brett and Peter Publishing and Radical Dichotomy, Pendulum Insurance OBO Male Man Publishing
0x125FB7AE = Technical Artist
0x135AE924 = Senior UI Designer
0x139AC38D = Published by She Me Music (BMI), Boring Mole Music (BMI)
0x143E7C85 = Chromium copyright © 2008, The Chromium Authors. All rights reserved. Redistribution
0x155A118E = Courtesy of KO
0x161F2F19 = Tools Build/QA
0x172A3A16 = Foley recorded at
0x172E651E = Published by Warner-Tamerlane Publishing Corp. (BMI)
0x176C246E = Published by Rockstar Games, Inc. and Third Side Music obo Just Isn't Music
0x184F5990 = Junior VFX Artist
0x185FFD55 = Ariel Pink appears courtesy of 4AD Records
0x193CC255 = Courtesy of Columbia Records, by arrangement with Sony Music Entertainment
0x194AF9ED = Published by Olufemi Koleoso Designee (PRS); Toyosi J. Koleoso Designee (PRS); Concord Sounds (ASCAP) o/b/o Because Editions (PRS); BMG Gold Songs (ASCAP) o/b/o Black Butter Music Publishing Ltd. (NS); BMG Platinum Songs (BMI) o/b/o Black Butter Music Publishing Ltd. (NS)
0x196A30B3 = Costumer
0x197E9944 = Published by Sons of Einion Ltd & Sony/ATV Tunes LLC, Copyright Control
0x199F14CD = Performed by Rain: a Lil Louis Painting
0x202D5974 = Courtesy of Stones Throw Records, LLC
0x206FA9A4 = Sony/ATV Harmony (ASCAP); Songs of Mojo o/b/o Sixteen Stars Music (BMI)
0x216C3B00 = form must reproduce the above copyright notice, this list of conditions
0x221D6859 = Published by Secretly Canadian o/b/o Awesome Tapes from Africa Publishing (BMI)
0x222CE7E2 = Published by BMG
0x230CE177 = Published by Kobalt Songs Music Publishing o/b/o Pokazuka LLC (ASCAP)
0x233BF9ED = OBO Universal/Dick James Music Ltd. (BMI)
0x238F0B5A = Published by WC Music Corp. (ASCAP) o/b/o Gallo Music (SAMRO)
0x243AA94C = Published by Sony /ATV Melody (BMI); Sony/ATV Harmony (ASCAP); Easy Action Music (ASCAP); Kohaw Music (ASCAP)
0x247A7784 = Published by Brouhaha Music, Inc. (ASCAP)
0x251E89BF = Graphic Designers
0x256AC888 = Published by Bug Music OBO Sound Attack Music
0x256FEB14 = Published by One Eyed Fat Girl Publishing
0x262C4B04 = Published by Universal Polygram Int. Publishing obo R.K. M. and KP Publishing (SACEM)
0x262E72EE = (p) 2010 Warner Bros Records
0x264D06B3 = Published by Wardworks, Inc. Administered by Kobalt Music Publishing America, Inc., Ole Music Publishing
0x275BB1D6 = WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0x275D9E2D = Published by Terrordome Music Publishing (BMI), administered by Reach Music Songs (BMI)
0x281A6D57 = Costume Designer
0x286BF0E9 = Performance Capture & Animation
0x295E2C66 = Location Facial Capture
0x296D6F9F = Published by Soundz Publishing o/b/o Evol Free Music (ASCAP)
0x296E30AC = Published by Kobalt Music/Universal Music Publishing
0x307D4D00 = Co-Producer & Game Designer
0x308D298E = Published by Technosis Publishing (BMI); Tommy Tunez (BMI)
0x318D5B7D = Courtesy of We Still Believe
0x324D40A2 = Stylist
0x325B90AF = Art Production Manager
0x326D3BF5 = Published by Nothing 2 See Here
0x327B77C3 = Published by Edimexa Latino
0x333EDEA5 = and the following disclaimer in the documentation and/or other materials
0x349BFAF6 = Courtesy of Truncate Records
0x351A23AD = Courtesy of Rockstar Games, Inc. in arrangement with Afterlife Records
0x360DCBA2 = Contains a sample of Give it Up
0x364CA7FB = Courtesy of Gunna and YSL Enterprises
0x365A0A2D = Published by EPM Electronic o/b/o Fowlkes Muzic (BMI)
0x367C7F41 = Kevin Gates appears courtesy of Artist Partner Group/Atlantic Recording Corp.,
0x382B8D6B = Courtesy of Brainfeeder
0x385C4AF1 = Game Designers
0x385CE70B = Lead Vehicle Artist
0x391A4B70 = Published by Just Isn't Music Ltd. (PRS); Third Side America (ASCAP) o/b/o Just Isn't Music Ltd. (PRS); Universal PolyGram International Publishing Inc. (ASCAP) o/b/o Universal Music Publishing Ltd. (PRS); Rhymesayers Music Publishing (ASCAP)
0x397AEC1E = 3. Neither the name of the copyright holder nor the names of its contributors may
0x405EFA2D = Published by Universal PolyGram International Publishing, Inc. o/b/o E.P.H.C.Y. Publishing (ASCAP); ZFC Music o/b/o Chappell Recorded Music Library (SESAC)
0x409FE826 = Lead Animator
0x413A92AD = Franmar Music (BMI), a divison of Unidisc Music. and Sony/ATV Solar (BMI)
0x416C8B25 = EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
0x418B5D50 = Published by Kobalt Songs Music Publishing o/b/o Rufus De Sol LLC (ASCAP); BMG Platinum Songs US o/b/o Bad Robot (BMI)
0x421F6BDD = Administered by WB Music Corp., Reservoir Media Music (ASCAP)
0x425AAD88 = Courtesy of EMPIRE
0x430E0DAE = Published by EMI Blackwood Music Inc. (BMI); Reservoir Media Music/Ty Epps Music (ASCAP); Irving Music Inc.; Julian Gramma; Travis Scott
0x435CEB6E = Software without prior written authorization of the copyright holder.
0x439EB69E = By arrangement with The Bicycle Music Company
0x447CB8A5 = Published by WB Music Corp (ASCAP)
0x447D2D1F = Published by Sony/ATV Songs (BMI); Roynet; Skywlkr; Zeelooperz
0x454A0623 = are permitted provided that the following conditions are met:
0x462D9E15 = Published by David Flores Designee (BMI)
0x465E3701 = Published by BMG Rights Management (US) LLC (ASCAP)
0x475CB6A7 = By arrangement with Bank Robber Music
0x485D0123 = Published by Heaven's Research/BMG Bumblebee (BMI), In Thee Face Music Publishing/BMG Firefly (ASCAP)
0x487C1267 = Published by Future Classic Party Ltd Administered by Kobalt Music Publishing America (APRA)
0x494A3B40 = Creative Consultant
0x494AABA4 = Published by Stone Agate Music
0x494B7132 = * Neither the name of Google Inc. nor the name Chromium Embedded Framework nor the
0x502A288C = Sub-published in U.S. and Canada by Raleigh Music Publishing LLC (BMI)
0x502BF588 = Rockstar Games Social Club
0x505C1B7F = Published by Mack Boy Publishing (BMI), Reservoir Media Music obo itself, YRN Piped Up Ent,
0x508B8D12 = Courtesy of Atlantic Recording Corp. and Petrol Electric Inc.
0x517B8BCE = Published by Songs of Kobalt Music Publishing o/b/o Itself and Gunna Music (BMI); Creative Titans Music (BMI);