-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·1909 lines (1853 loc) · 102 KB
/
index.html
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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]> <html class="no-js"> <!--<![endif]-->
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Topaz Jones — Don’t Go Tellin’ Your Momma</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 11]>
<link rel="stylesheet" type="text/css"
href="./input-range-polyfill/input-range-polyfill.css">
<![endif]-->
<!-- <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/earlyaccess/nanumgothic.css"> -->
<!-- <link rel="stylesheet" type="text/css" href="./croquispop.css"> -->
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<!-- <link rel="manifest" href="/site.webmanifest"> -->
<!-- <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> -->
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<meta property="og:title" content="Topaz Jones — Don’t Go Tellin’ Your Momma">
<meta property="og:description" content="The album and film. Directed by Topaz Jones, Rubberband. With Topaz Jones, Black Thought.">
<meta property="og:url" content="/">
<meta name="twitter:title" content="Topaz Jones — Don’t Go Tellin’ Your Momma">
<meta name="twitter:description" content="The album and film. Directed by Topaz Jones, Rubberband. With Topaz Jones, Black Thought.">
<meta name="twitter:image" content="https://dgtym.netlify.app/img/DGTYM_Share_image.png">
<meta property="og:image" content="https://dgtym.netlify.app/img/DGTYM_Share_image.png">
<meta name="twitter:image:alt" content="Topaz Jones — Don’t Go Tellin’ Your Momma">
<meta property="og:site_name" content="Topaz Jones — Don’t Go Tellin’ Your Momma">
<!-- VIMEO API -->
<!-- <script src="https://f.vimeocdn.com/js/froogaloop2.min.js"></script> -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3Q3KTJD33M"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3Q3KTJD33M');
</script>
<!-- Facebook Pixel Code -->
<script>
!function(f,b,e,v,n,t,s)
{if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};
if(!f._fbq)f._fbq=n;n.push=n;n.loaded=!0;n.version='2.0';
n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];
s.parentNode.insertBefore(t,s)}(window, document,'script',
'https://connect.facebook.net/en_US/fbevents.js');
fbq('init', '130270962374470');
fbq('track', 'PageView');
</script>
<noscript><img height="1" width="1" style="display:none"
src="https://www.facebook.com/tr?id=130270962374470&ev=PageView&noscript=1"
/></noscript>
<!-- End Facebook Pixel Code -->
</head>
<body unselectable="on" class="green">
<!-- <video class="video1" width="300" height="200" autoplay="autoplay" muted>
<source src="img/sketch2.mp4" type="video/mp4" />
</video> -->
<div class="nav-items">
<button id="toggle-film" onclick="showFilmSection()">The Film</button>
<button id="toggle-album" onclick="showAlbumSection()">The Album</button>
</div>
<div id="logo-container">
<img class="video1" data-src="img/handwriting/NFA_For_Site.gif">
<img class="video2" data-src="img/handwriting/TJ_For_Site.gif">
<img class="gif lazy" id="D_01" data-src="img/handwriting/D_01.gif">
<img class="gif lazy" id="D_02" data-src="img/handwriting/D_02.gif">
<img class="gif lazy" id="D_03" data-src="img/handwriting/D_03.gif">
<img class="gif lazy" id="D_04" data-src="img/handwriting/D_04.gif">
<img class="gif lazy" id="G_01" data-src="img/handwriting/G_01.gif">
<img class="gif lazy" id="G_02" data-src="img/handwriting/G_02.gif">
<img class="gif lazy" id="G_03" data-src="img/handwriting/G_03.gif">
<img class="gif lazy" id="G_04" data-src="img/handwriting/G_04.gif">
<img class="gif lazy" id="T_01" data-src="img/handwriting/T_01.gif">
<img class="gif lazy" id="T_02" data-src="img/handwriting/T_02.gif">
<img class="gif lazy" id="T_03" data-src="img/handwriting/T_03.gif">
<img class="gif lazy" id="T_04" data-src="img/handwriting/T_04.gif">
<img class="gif lazy" id="Y_01" data-src="img/handwriting/Y_05.gif">
<img class="gif lazy" id="Y_02" data-src="img/handwriting/Y_06.gif">
<!-- <img class="gif lazy" id="Y_03" data-src="img/handwriting/Y_03.gif">
<img class="gif lazy" id="Y_04" data-src="img/handwriting/Y_04.gif"> -->
<img class="gif lazy" id="M_01" data-src="img/handwriting/M_01.gif">
<img class="gif lazy" id="M_02" data-src="img/handwriting/M_02.gif">
<img class="gif lazy" id="M_03" data-src="img/handwriting/M_03.gif">
<img class="gif lazy" id="M_04" data-src="img/handwriting/M_04.gif">
<img class="gif lazy" id="Circling_01" data-src="img/handwriting/Circling_01.gif">
<img class="gif lazy" id="Circling_02" data-src="img/handwriting/Circling_02.gif">
<img class="gif lazy" id="Circling_03" data-src="img/handwriting/Circling_03.gif">
<!-- <img class="gif lazy" id="Circling_04" data-src="img/handwriting/Circling_04.gif"> -->
<!-- <img class="gif lazy" id="Circling_05" data-src="img/handwriting/Circling_05.gif"> -->
<!-- <img class="gif lazy" id="Circling_06" data-src="img/handwriting/Circling_06.gif"> -->
<img class="gif lazy" id="Underline_01" data-src="img/handwriting/Underline_01.gif">
<img class="gif lazy" id="Underline_02" data-src="img/handwriting/Underline_02.gif">
<img class="gif lazy" id="Underline_03" data-src="img/handwriting/Underline_03.gif">
<img class="gif lazy" id="Underline_04" data-src="img/handwriting/Underline_04.gif">
<img class="gif lazy" id="Underline_05" data-src="img/handwriting/Underline_05.gif">
<img class="gif lazy" id="Underline_06" data-src="img/handwriting/Underline_06.gif">
<img class="gif lazy songname" id="Song_01" data-src="img/handwriting/Black_Canopy.gif">
<img class="gif lazy songname" id="Song_02" data-src="img/handwriting/BlackTame.gif">
<img class="gif lazy songname" id="Song_03" data-src="img/handwriting/Baba70s.gif">
<img class="gif lazy songname" id="Song_04" data-src="img/handwriting/Buggin.gif">
<img class="gif lazy songname" id="Song_05" data-src="img/handwriting/Herringbone.gif">
<img class="gif lazy songname" id="Song_06" data-src="img/handwriting/Who.gif">
<img class="logo" id="logo-green"
srcset="/img/logos/DGTYM_logo_Green_v3vs4g_400.png 256w,
/img/logos/DGTYM_logo_Green_v3vs4g_600.png 812w,
/img/logos/DGTYM_logo_Green_v3vs4g_1500.png 1600w"
src="/img/logos/DGTYM_logo_Green_v3vs4g_1500.png">
<img class="logo lazy" id="logo-red"
data-srcset="img/logos/DGTYM_logo_Red_gd662q_400.png 256w,
img/logos/DGTYM_logo_Red_gd662q_600.png 812w,
img/logos/DGTYM_logo_Red_gd662q_1500.png 1600w"
data-src="img/logos/DGTYM_logo_Red_gd662q_1500.png">
<img class="logo lazy" id="logo-purple"
data-srcset="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_400,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Purple_hclhot.png 256w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_600,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Purple_hclhot.png 812w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Purple_hclhot.png 1600w"
data-src="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Purple_hclhot.png">
<img class="logo lazy" id="logo-orange"
data-srcset="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_400,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Gold_o5nmup.png 256w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_600,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Gold_o5nmup.png 812w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Gold_o5nmup.png 1600w"
data-src="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Gold_o5nmup.png">
<img class="logo lazy" id="logo-grey"
data-srcset="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_400,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Grey_l8leni.png 256w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_600,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Grey_l8leni.png 812w,
https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Grey_l8leni.png 1600w"
data-src="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500,q_100/v1619043417/DGTYM-BGs/DGTYM_logo_Grey_l8leni.png">
<img class="bg lazy" data-src="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_1500/v1618958828/DGTYM-BGs/Website_Background_Black_i7zrgb.jpg">
</div>
<section id="film">
<div class="film-container">
<div id="resizer"></div>
<div id="videoRectangle"style="padding:44.06% 0 0 0;position:relative;">
<iframe src="https://player.vimeo.com/video/540370863?badge=0&autopause=0&player_id=0&app_id=58479&portrait=0&byline=0&title=0" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe>
</div>
<script src="https://player.vimeo.com/api/player.js"></script>
<div class="videoRectangle">
<iframe width="560" height="315" src="https://www.youtube.com/embed/vuhIzzbdtJ0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div id="credits">
<div>
<i>Don't Go Tellin' Your Momma.</i> <i>©2021</i>.
<br>
<br><i>Directed and written by</i> <i>Topaz Jones</i> <i>and</i> <i>Rubberband</i>.
<br><i>Creative Direction by</i> <i>Eric J. McNeal</i>
<br><i>Cinematography by</i> <i>Chayse Irvin, ASC</i>.
<br><i>Still photography by</i> <i>Chayse Irvin, ASC. Jason Filmore Sondock</i>.
<br><i>Collage animation by</i> <i>Jason Filmore Sondock</i>.
<br><i>Costumes designed by</i> <i>Eric J. McNeal</i>.
<br><i>Edited by</i> <i>J.M. Harper & Nate Katz</i>
<br><i>Production designed by</i> <i>Madison Hatch</i>
<br><i>Casting directors</i> <i>Katharine Mateo</i> <i>and</i> <i>Nouri Hassan,</i> <i> for XYNE, co.</i>
<br><i>Produced by</i> <i>Luigi Rossi</i>
<br><i>Produced by</i> <i>Jason Filmore Sondock</i> <i>and</i> <i>Simon Davis</i>
<br><i>Executive produced by</i> <i>Kevin Storey</i>
<br>
<br><i>A</i> <i>SMUGGLER</i> <i>production.</i>
<br><i>Executive produced by</i> <i>Patrick Milling-Smith</i>, <i>Brian Carmody</i>, <i>Sue Ahn</i>, <i>Trace Henderson</i>, <i>Elizabeth Doonan.</i>
<br>
<br><i>In association with</i> <i>Frenzy Paris.</i>
<br><i>Executive produced by</i> <i>Elsa Rakotoson</i> <i>and</i> <i>Julien Bastien</i>
<br>
<br><i>In association with</i> <i>BWGTBLD GmbH.</i>
<br><i>Executive produced by</i> <i>Philipp Ramhofer</i> <i>and</i> <i>Jakob Preischl</i>
<br>
<br><i>In association with</i> <i>SECTION80.</i>
<br><i>Executive produced by</i> <i>Caterina Colombo</i> <i>and</i> <i>Marco Orlando</i>
<br>
<br><i>Starring</i> <i>Topaz Jones.</i>
<br><i>Narrated by</i> <i>Black Thought</i>, <i>Topaz Jones</i>, <i>Lisa Jones</i>, <i>Emma Jones.</i>
<br>
<br><i>Featuring interviews with</i> <i>Rodney Jackson (E)</i>, <i>Frances Perez (G)</i>, <i>Black Thought (I)</i>, <i>Keith White (O)</i>, <i>Ivy Sole (L)</i>, <i>Emma Janice Jones (R)</i>, <i>Kaity Rodriguez (V).</i>
<br>
<br>
<br><i>Friend 1 (A) / Sourbelt kid 1 (S):</i> <i>Austin Brandon</i>
<br><i>Friend 2 (A) / Sourbelt kid 2 (S):</i> <i>Isaiah Thomas</i>
<br><i>Friend 3 (A) / Sourbelt kid 3 (S):</i> <i>Rasheed Maiden</i>
<br><i>Extra (S):</i> <i>Brandon Scotland</i>
<br><i>School boy (C):</i> <i>Dontae Quadir McCoy-Williams</i>
<br><i>Drummer (D):</i> <i>Jharis Yokley</i>
<br><i>Educator (E):</i> <i>Rodney Jackson</i>
<br><i>Young Kid (H) (I):</i> <i>Aiden Taylor</i>
<br>hip-hop legend (I):</i> <i>Black Thought</i>
<br><i>Kid 1 (I) (Q):</i> <i>Amari Ford</i>
<br><i>Kid 2 (I) (Q):</i> <i>Derek DJ Boomer</i>
<br><i>Kid 3 (I) (Q):</i> <i>Skylar McDonald</i>
<br><i>Woman in bed (J) // </i>
<br><i>Sourbelt Kid 4 (S):</i> <i>Ariana Duplechain-Cook</i>
<br><i>Big dude (N):</i> <i>Julian Smith</i>
<br><i>Woman combing hair (N) (S):</i> <i>Rughda Baldo</i>
<br><i>Trainer 1 (P):</i> <i>Kevin Storey</i>
<br><i>Trainer 2 (P):</i> <i>Kirk Charles</i>
<br><i>Kid 4 8-12 years (Q):</i> <i>Kyla Mack</i>
<br><i>Kid 5 8-12 years (Q):</i> <i>Ma’at Zari</i>
<br><i>Male kid 1 (T):</i> <i>Ra-shon Fuller</i>
<br><i>Male kid 2 (T):</i> <i>Kyon Powell</i>
<br><i>Male kid 3 (T):</i> <i>Macahi Hernandez</i>
<br><i>Couple 1 (Y):</i> <i>Bethany Morrison</i>
<br><i>Couple 2 (Y):</i> <i>Michel Tarawali</i>
<br>
<br><i>Location Manager:</i> <i>Don Shapira</i>.
<br><i>1st Assistant Director:</i> <i>Lionel Cineas</i>.
<br><i>2nd Assistant Director:</i> <i>Kenny Williams</i>.
<br><i>2nd 2nd:</i> <i>Wendell Sisnett</i>.
<br><i>Line producer:</i> <i>Raven Jensen</i>.
<br><i>Production Manager:</i> <i>Lucy Rennick</i>.
<br><i>Production Coordinator:</i> <i>Sasha Abed</i>.
<br><i>Production Coordinator:</i> <i>Lia Mitchell</i>.
<br><i>Production Coordinator:</i> <i>Nick Jones</i>.
<br><i>Associate Producer:</i> <i>Josh Sondock</i>.
<br><i>Associate Producer:</i> <i>Francesco Rizzo</i>.
<br><i>Line Producer for Pick-Up Shoot:</i> <i>Taylor Russo</i>.
<br>
<br><i>1st AC:</i> <i>Jasmine Chang</i>.
<br><i>1st AC (Pick-Ups):</i> <i>Alice Boucherie</i>.
<br><i>1st AC (Pick-Ups):</i> <i>Nicolas Lopaz</i>
<br><i>2nd AC:</i> <i>Emma Penrose</i>
<br><i>2nd AC:</i> <i>Shaun Malkovich</i>
<br><i>Loader:</i> <i>Sarah Penson</i>
<br><i>Sound Mixer/Boom Op:</i> <i>Samuel Stevenson-Yang</i>
<br><i>EPK/BTS Director:</i> <i>Andrew Price</i>
<br><i>Gaffer:</i> <i>Iain Trimble</i>
<br><i>BBE:</i> <i>Carolina Acero</i>
<br><i>Electric:</i> <i>Adam Mantell</i>
<br><i>Key Grip:</i> <i>Rob "Smitty" Smith</i>
<br><i>BBG:</i> <i>Alex Fedler</i>
<br><i>Grip:</i> <i>Justin Wilson</i>
<br>
<br><i>Wardrobe Assistant:</i> <i>Hassan Boone</i>
<br><i>BG Stylist:</i> <i>Elena Lark</i>
<br><i>Hair/Make Up Lead:</i> <i>Nigella Miller</i>
<br><i>Hair/Make Up Assistant:</i> <i>Zarielle Washington</i>
<br><i>Black Thought’s Hair Stylist:</i> <i>Darien Hillard</i>
<br><i>SFX HMU:</i> <i>Lili Li</i>
<br><i>Set Dresser:</i> <i>Kevin Cabello</i>, <i>Tommy Mitchell</i>, <i>Rachel Marquez</i>, <i>Kyra Boselli</i>.
<br>
<br><i>Covid Controller/Medic:</i> <i>Edva Pace</i> and <i>Adam Pace</i>
<br><i>Caterer:</i> <i>David Wiesner</i>
<br><i>Parking Coordinator:</i> <i>Jose Gutierrez</i>
<br><i>Office PA:</i> <i>Daniel Order</i>
<br><i>Truck PAs:</i> <i>Angel Flores</i>, <i>Leandro Rodriguez</i>, <i>Jay Rosenstein</i>, <i>James Jimenez</i>.
<br><i>Driver PA:</i> <i>Shaniul “Tony” Islam</i>
<br><i>Set PAs:</i> <i>Matt Scalora</i>, <i>Callum Stembridge</i>, <i>Amanda Silverstein</i>.
<br>
<br><i>Edited by:</i> <i>J.M. Harper</i> and <i>Nate Katz</i>.
<br><i>Additional Editing:</i> <i>Simon Davis</i>
<br><i>VFX by:</i> <i>Kao Chang Kai and Dara Hamidi</i>
<br><i>Processing Lab, Motion:</i> <i>Kodak</i>
<br><i>Senior Lab Manager, Processing:</i> <i>Anthony Landano</i>
<br><i>Scanning by:</i> <i>EFILMS / Company3</i>.
<br><i>Senior Producer, Dailies:</i> <i>Alexis Ross</i>
<br><i>Processing Lab, Stills:</i> <i>The Color House NY</i>
<br>
<br><i>Service Production Company:</i> <i>LFR Productions Inc</i>.
<br><i>Camera Rental:</i> <i>Technological Cinevideo Services</i>
<br><i>Grip & Electric Rental:</i> <i>Double Down Lighting</i>
<br><i>Camera Support Rental:</i> <i>That Cat Rentals</i>
<br><i>Catering Company:</i> <i>Monterone Catering</i>
<br><i>Walkie Talkies:</i> <i>Lentini Communications</i>
<br><i>Production Supplies:</i> <i>Quixote</i>
<br><i>Motion Picture Film Stock:</i> <i>Kodak, Reel Good</i>.
<br><i>Art Vendors:</i> <i>State Supply</i>
<br><i>Picture Car:</i> <i>Veloce Picture Cars</i>
<br>
<br><i>The Production wishes to thank:</i> <i>Valerie Hepburn Ruffin</i>, <i>Curt Jones</i>, <i>Lisa Jones</i>, <i>Erin Wahed</i>, <i>Trace Henderson</i>, <i>Debbie Sondock</i>, <i>Clifford Sondock</i>, <i>Donna Davis</i>, <i>Eric Davis</i>, <i>Colin Davis</i>, <i>Bklyncombine</i>, <i>Anne Hubbel (Kodak)</i>, <i>David Grove (Company3)</i>, <i>Munir Nuridin</i>, <i>Ethan Boey-Doe</i>, <i>Jared Knecht</i>, <i>Samuel Miller</i>, <i>Jihan Joseph</i>, <i>John Williamson</i>, <i>Larry Kramer</i>,
<br><i>The City of Garfield, New Jersey</i>
<br><i>The City of Montclair, New Jersey</i>
<br><i>The Borough of Brooklyn, New York</i>
<br><i>The Residents of Ditmas Park</i>
<br>
<br><i>Rodney Jackson:</i> <i>Topaz’s 8th grade history teacher,</i> <i>Renaissance Middle School</i> - <i>Montclair, NJ</i>.
<br><i>Frances Perez:</i> <i>Woke Foods Co-op, New York City</i>.
<br><i>Keith White:</i> <i>Lawyer + Activist,</i> <i>The Brooklyn Combine</i> - <i>Crown Heights, BK</i>.
<br><i>Black Thought:</i> <i>Top 5 Dead or Alive</i>, <i>Lyricist</i>, <i>The Roots</i> - <i>Philadelphia, PA</i>.
<br><i>Kaity Rodriguez MSW,</i> <i>LCSW:</i> <i>Serenity Wellness + Therapy Services</i> - <i>Montclair, NJ</i>
<br><i>Ivy Sole:</i> <i>Lyricist, Rapper + Record Producer</i> - <i>Charlotte, NC</i>
<br>
<br><i>Color by:</i> <i>Color Collective</i>.
<br><i>Colorist:</i> <i>Alex Brickel</i>.
<br><i>Color Producer:</i> <i>Claudia Guevara</i>.
<br><i>Sound Design + Mix:</i> <i>TRAIT Sound,</i> <i>London</i>
<br><i>Sound Designer:</i> <i>Benson Herbert</i> <i>&</i> <i>Tom Field</i>.
<br><i>Sound Mix:</i> <i>Benson Herbert</i>.
<br>
<br><i>Emma Janice Jones</i> - <i>Linden, NJ</i>.
</div>
</div>
</section>
<section id="main">
<!-- <video class="video1" width="300" height="200" autoplay="autoplay" muted>
<source src="img/sketch2.mp4" type="video/mp4" />
</video>
<img class="video1" src="img/sketch1.gif"> -->
<!-- <div class="CANVAS">
<div id="canvas-area"></div>
<object id="tablet-api" type="application/x-wacomtabletplugin"></object>
<img src="./img/brush/b3.png" class="brush-image on" id="default-brush">
</div> -->
<div class="CANVAS">
<canvas id="sheet" width="400" height="400"></canvas>
</div>
<!-- <img id="logo lazy" src="/img/logo.png"> -->
<div class="polaroids-container">
<div class="polaroids">
<div class="img1" style="left: 6.08333vh; transform: rotate(90.8005deg) scale(1); z-index: 0; animation-delay: 0.161933s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_04_sddtvb_400.png 256w,
/img/polaroids/Film_04_sddtvb_500.png 812w,
/img/polaroids/Film_04_sddtvb_700.png 1600w" data-src="/img/polaroids/Film_04_sddtvb_400.png 256w,
/img/polaroids/Film_04_sddtvb_500.png 812w,
/img/polaroids/Film_04_sddtvb_700.png 1600w" src="/img/polaroids/Film_04_sddtvb_400.png">
</div>
<div class="img2" style="left: calc(100vh - 450px); top: calc(300vw - 520px); transform: rotate(89.4546deg) scale(1); z-index: 0; animation-delay: 0.983865s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_11_oambsa_400.png 256w,
/img/polaroids/Film_11_oambsa_500.png 812w,
/img/polaroids/Film_11_oambsa_700.png 1600w" data-src="/img/polaroids/Film_11_oambsa_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_11_oambsa_400.png 256w,
/img/polaroids/Film_11_oambsa_500.png 812w,
/img/polaroids/Film_11_oambsa_700.png 1600w" src="/img/polaroids/Film_11_oambsa_400.png">
</div>
<div class="img2" style="left: 36vh; top: calc(100vw - 190px); transform: rotate(89.5345deg) scale(1); z-index: 0; animation-delay: 0.61042s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_06_yblfrj_400.png 256w,
/img/polaroids/Film_06_yblfrj_500.png 812w,
/img/polaroids/Film_06_yblfrj_700.png 1600w" data-src="/img/polaroids/Film_06_yblfrj_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_06_yblfrj_400.png 256w,
/img/polaroids/Film_06_yblfrj_500.png 812w,
/img/polaroids/Film_06_yblfrj_700.png 1600w" src="/img/polaroids/Film_06_yblfrj_400.png">
</div>
<div class="img2" style="left: calc(100vh - 227px); top: 42.6667vh; transform: rotate(89.983deg) scale(1); z-index: 0; animation-delay: 0.878249s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_10_ytxmts_400.png 256w,
/img/polaroids/Film_10_ytxmts_500.png 812w,
/img/polaroids/Film_10_ytxmts_700.png 1600w" data-src="/img/polaroids/Film_10_ytxmts_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_10_ytxmts_400.png 256w,
/img/polaroids/Film_10_ytxmts_500.png 812w,
/img/polaroids/Film_10_ytxmts_700.png 1600w" src="/img/polaroids/Film_10_ytxmts_400.png">
</div>
<div class="img2" style="left: -51px; top: calc(200vw - 150px); transform: rotate(89.0271deg) scale(1); z-index: 0; animation-delay: 0.561288s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_05_yjtfug_400.png 256w,
/img/polaroids/Film_05_yjtfug_500.png 812w,
/img/polaroids/Film_05_yjtfug_700.png 1600w" data-src="/img/polaroids/Film_05_yjtfug_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_05_yjtfug_400.png 256w,
/img/polaroids/Film_05_yjtfug_500.png 812w,
/img/polaroids/Film_05_yjtfug_700.png 1600w" src="/img/polaroids/Film_05_yjtfug_400.png">
</div>
<div class="img2" style="left: -74px; top: calc(300vw - 200px); transform: rotate(91.6956deg) scale(1); z-index: 0; animation-delay: 0.543859s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_13_gk4mzw_400.png 256w,
/img/polaroids/Film_13_gk4mzw_500.png 812w,
/img/polaroids/Film_13_gk4mzw_700.png 1600w" data-src="/img/polaroids/Film_13_gk4mzw_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_13_gk4mzw_400.png 256w,
/img/polaroids/Film_13_gk4mzw_500.png 812w,
/img/polaroids/Film_13_gk4mzw_700.png 1600w" src="/img/polaroids/Film_13_gk4mzw_400.png">
</div>
<div class="img2" style="left: calc(100vh - 194px); top: calc(100vw - 304px); transform: rotate(89.7941deg) scale(1); z-index: 0; animation-delay: 0.0500904s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_07_vfa9l3_400.png 256w,
/img/polaroids/Film_07_vfa9l3_500.png 812w,
/img/polaroids/Film_07_vfa9l3_700.png 1600w" data-src="/img/polaroids/Film_07_vfa9l3_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_07_vfa9l3_400.png 256w,
/img/polaroids/Film_07_vfa9l3_500.png 812w,
/img/polaroids/Film_07_vfa9l3_700.png 1600w" src="/img/polaroids/Film_07_vfa9l3_400.png">
</div>
<div class="img2" style="left: 33vh; top: calc(400vw - 200px); transform: rotate(88.1754deg) scale(1); z-index: 0; animation-delay: 0.659169s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_12_uhmsny_400.png 256w,
/img/polaroids/Film_12_uhmsny_500.png 812w,
/img/polaroids/Film_12_uhmsny_700.png 1600w" data-src="/img/polaroids/Film_12_uhmsny_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_12_uhmsny_400.png 256w,
/img/polaroids/Film_12_uhmsny_500.png 812w,
/img/polaroids/Film_12_uhmsny_700.png 1600w" src="/img/polaroids/Film_12_uhmsny_400.png">
</div>
<div class="img2" style="left: 67vh; top: calc(300vw - 684px); transform: rotate(91.3012deg) scale(1); animation-delay: 0.127411s; z-index: 0;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_03_hx8wwt_400.png 256w,
/img/polaroids/Fam_03_hx8wwt_500.png 812w,
/img/polaroids/Fam_03_hx8wwt_700.png 1600w" data-src="/img/polaroids/Fam_03_hx8wwt_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_03_hx8wwt_400.png 256w,
/img/polaroids/Fam_03_hx8wwt_500.png 812w,
/img/polaroids/Fam_03_hx8wwt_700.png 1600w" src="/img/polaroids/Fam_03_hx8wwt_400.png">
</div>
<div class="img2" style="left: calc(100vh - 300px); top: calc(100vw - 450px); transform: rotate(90.7366deg) scale(1); animation-delay: 0.215288s; z-index: 0;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_02_gnonab_400.png 256w,
/img/polaroids/Film_02_gnonab_500.png 812w,
/img/polaroids/Film_02_gnonab_700.png 1600w" data-src="/img/polaroids/Film_02_gnonab_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_02_gnonab_400.png 256w,
/img/polaroids/Film_02_gnonab_500.png 812w,
/img/polaroids/Film_02_gnonab_700.png 1600w" src="/img/polaroids/Film_02_gnonab_400.png">
</div>
<div class="img2" style="left: 40vh; top: 220vw; transform: rotate(89.6925deg) scale(1); z-index: 0; animation-delay: 0.82363s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_16_sooclb_400.png 256w,
/img/polaroids/Film_16_sooclb_500.png 812w,
/img/polaroids/Film_16_sooclb_700.png 1600w" data-src="/img/polaroids/Film_16_sooclb_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_16_sooclb_400.png 256w,
/img/polaroids/Film_16_sooclb_500.png 812w,
/img/polaroids/Film_16_sooclb_700.png 1600w" src="/img/polaroids/Film_16_sooclb_400.png">
</div>
<div class="img2" style="left: -1.41667vh; top: 360vw; transform: rotate(90.3992deg) scale(1); z-index: 0; animation-delay: 0.388093s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_19_mo5rtw.png 256w,
/img/polaroids/Fam_19_mo5rtw_500.png 812w,
/img/polaroids/Fam_19_mo5rtw_700.png 1600w" data-src="/img/polaroids/Fam_19_mo5rtw_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_19_mo5rtw_400.png 256w,
/img/polaroids/Fam_19_mo5rtw_500.png 812w,
/img/polaroids/Fam_19_mo5rtw_700.png 1600w" src="/img/polaroids/Fam_19_mo5rtw_400.png">
</div>
<div class="img2" style="left: 9.41667vh; top: 4.08333vh; transform: rotate(91.3751deg) scale(1); z-index: 0; animation-delay: 0.472799s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_03_jdqekf_400.png 256w,
/img/polaroids/Film_03_jdqekf_500.png 812w,
/img/polaroids/Film_03_jdqekf_700.png 1600w" data-src="/img/polaroids/Film_03_jdqekf_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_03_jdqekf_400.png 256w,
/img/polaroids/Film_03_jdqekf_500.png 812w,
/img/polaroids/Film_03_jdqekf_700.png 1600w" src="/img/polaroids/Film_03_jdqekf_400.png">
</div>
<div class="img2" style="left: 158px; top: calc(400vw - 100px); transform: rotate(88.9468deg) scale(1); z-index: 0; animation-delay: 0.117225s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_01_jusvif_400.png 256w,
/img/polaroids/Film_01_jusvif_500.png 812w,
/img/polaroids/Film_01_jusvif_700.png 1600w" data-src="/img/polaroids/Film_01_jusvif_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_01_jusvif_400.png 256w,
/img/polaroids/Film_01_jusvif_500.png 812w,
/img/polaroids/Film_01_jusvif_700.png 1600w" src="/img/polaroids/Film_01_jusvif_400.png">
</div>
<div class="img2" style="left: -50px; top: 430vw; transform: rotate(91.3674deg) scale(1); z-index: 0; animation-delay: 0.168547s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_17_riimad_400.png 256w,
/img/polaroids/Film_17_riimad_500.png 812w,
/img/polaroids/Film_17_riimad_700.png 1600w" data-src="/img/polaroids/Film_17_riimad_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_17_riimad_400.png 256w,
/img/polaroids/Film_17_riimad_500.png 812w,
/img/polaroids/Film_17_riimad_700.png 1600w" src="/img/polaroids/Film_17_riimad_400.png">
</div>
<div class="img2" style="left: 9.66667vh; top: calc(300vw + 100px); transform: rotate(89.9032deg) scale(1); z-index: 0; animation-delay: 0.45899s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_15_quya2o_400.png 256w,
/img/polaroids/Film_15_quya2o_500.png 812w,
/img/polaroids/Film_15_quya2o_700.png 1600w" data-src="/img/polaroids/Film_15_quya2o_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_15_quya2o_400.png 256w,
/img/polaroids/Film_15_quya2o_500.png 812w,
/img/polaroids/Film_15_quya2o_700.png 1600w" src="/img/polaroids/Film_15_quya2o_400.png">
</div>
<div class="img2" style="left: -7.16667vh; top: 32.25vh; transform: rotate(88.5289deg) scale(1); z-index: 0; animation-delay: 0.310495s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_14_hkrdiz_400.png 256w,
/img/polaroids/Film_14_hkrdiz_500.png 812w,
/img/polaroids/Film_14_hkrdiz_700.png 1600w" data-src="/img/polaroids/Film_14_hkrdiz_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_14_hkrdiz_400.png 256w,
/img/polaroids/Film_14_hkrdiz_500.png 812w,
/img/polaroids/Film_14_hkrdiz_700.png 1600w" src="/img/polaroids/Film_14_hkrdiz_400.png">
</div>
<div class="img2" style="left: calc(100vh - 350px); top: 437vw; transform: rotate(91.2957deg) scale(1); z-index: 0; animation-delay: 0.0452479s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_18_assq9u_400.png 256w,
/img/polaroids/Fam_18_assq9u_500.png 812w,
/img/polaroids/Fam_18_assq9u_700.png 1600w" data-src="/img/polaroids/Fam_18_assq9u_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_18_assq9u_400.png 256w,
/img/polaroids/Fam_18_assq9u_500.png 812w,
/img/polaroids/Fam_18_assq9u_700.png 1600w" src="/img/polaroids/Fam_18_assq9u_400.png">
</div>
<div class="img2" style="left: 142px; top: 235vw; transform: rotate(91.5507deg) scale(1); z-index: 0; animation-delay: 0.233386s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_22_eiieqt_400.png 256w,
/img/polaroids/Fam_22_eiieqt_500.png 812w,
/img/polaroids/Fam_22_eiieqt_700.png 1600w" data-src="/img/polaroids/Fam_22_eiieqt_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_22_eiieqt_400.png 256w,
/img/polaroids/Fam_22_eiieqt_500.png 812w,
/img/polaroids/Fam_22_eiieqt_700.png 1600w" src="/img/polaroids/Fam_22_eiieqt_400.png">
</div>
<div class="img2" style="left: calc(100vh - 300px); top: calc(300vw + 100px); transform: rotate(88.9177deg) scale(1); z-index: 0; animation-delay: 0.48126s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_09_lucjnv_400.png 256w,
/img/polaroids/Fam_09_lucjnv_500.png 812w,
/img/polaroids/Fam_09_lucjnv_700.png 1600w" data-src="/img/polaroids/Fam_09_lucjnv_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_09_lucjnv_400.png 256w,
/img/polaroids/Fam_09_lucjnv_500.png 812w,
/img/polaroids/Fam_09_lucjnv_700.png 1600w" src="/img/polaroids/Fam_09_lucjnv_400.png">
</div>
<div class="img2" style="left: -1.25vh; top: -2.33333vh; transform: rotate(89.5511deg) scale(1); z-index: 0; animation-delay: 0.731793s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_16_ej71hi_400.png 256w,
/img/polaroids/Fam_16_ej71hi_500.png 812w,
/img/polaroids/Fam_16_ej71hi_700.png 1600w" data-src="/img/polaroids/Fam_16_ej71hi_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_16_ej71hi_400.png 256w,
/img/polaroids/Fam_16_ej71hi_500.png 812w,
/img/polaroids/Fam_16_ej71hi_700.png 1600w" src="/img/polaroids/Fam_16_ej71hi_400.png">
</div>
<div class="img2" style="left: calc(100vh - 450px); top: calc(100vw - 160px); transform: rotate(91.5147deg) scale(1); z-index: 0; animation-delay: 0.466501s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_02_qh1zdw_400.png 256w,
/img/polaroids/Fam_02_qh1zdw_500.png 812w,
/img/polaroids/Fam_02_qh1zdw_700.png 1600w" data-src="/img/polaroids/Fam_02_qh1zdw_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_02_qh1zdw_400.png 256w,
/img/polaroids/Fam_02_qh1zdw_500.png 812w,
/img/polaroids/Fam_02_qh1zdw_700.png 1600w" src="/img/polaroids/Fam_02_qh1zdw_400.png">
</div>
<div class="img2" style="left: calc(100vh - 340px); top: 360vw; transform: rotate(89.8638deg) scale(1); z-index: 0; animation-delay: 0.813997s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_20_qhtuav_400.png 256w,
/img/polaroids/Film_20_qhtuav_500.png 812w,
/img/polaroids/Film_20_qhtuav_700.png 1600w" data-src="/img/polaroids/Film_20_qhtuav_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_20_qhtuav_400.png 256w,
/img/polaroids/Film_20_qhtuav_500.png 812w,
/img/polaroids/Film_20_qhtuav_700.png 1600w" src="/img/polaroids/Film_20_qhtuav_400.png">
</div>
<div class="img2" style="left: -4vh; top: 246vw; transform: rotate(89.8027deg) scale(1); z-index: 0; animation-delay: 0.0882135s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_21_tpgrid_400.png 256w,
/img/polaroids/Fam_21_tpgrid_500.png 812w,
/img/polaroids/Fam_21_tpgrid_700.png 1600w" data-src="/img/polaroids/Fam_21_tpgrid_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_21_tpgrid_400.png 256w,
/img/polaroids/Fam_21_tpgrid_500.png 812w,
/img/polaroids/Fam_21_tpgrid_700.png 1600w" src="/img/polaroids/Fam_21_tpgrid_400.png">
</div>
<div class="img2" style="left: 24vh; top: calc(300vw - 400px); transform: rotate(88.2369deg) scale(1); animation-delay: 0.387796s; z-index: 0;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_15_lnlkkg_400.png 256w,
/img/polaroids/Fam_15_lnlkkg_500.png 812w,
/img/polaroids/Fam_15_lnlkkg_700.png 1600w" data-src="/img/polaroids/Fam_15_lnlkkg_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_15_lnlkkg_400.png 256w,
/img/polaroids/Fam_15_lnlkkg_500.png 812w,
/img/polaroids/Fam_15_lnlkkg_700.png 1600w" src="/img/polaroids/Fam_15_lnlkkg_400.png">
</div>
<div class="img2" style="left: 17.4167vh; top: 120vw; transform: rotate(91.1783deg) scale(1); z-index: 0; animation-delay: 0.568701s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_21_tpgrid_400.png 256w,
/img/polaroids/Fam_21_tpgrid_500.png 812w,
/img/polaroids/Fam_21_tpgrid_700.png 1600w" data-src="/img/polaroids/Fam_21_tpgrid_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_21_tpgrid_400.png 256w,
/img/polaroids/Fam_21_tpgrid_500.png 812w,
/img/polaroids/Fam_21_tpgrid_700.png 1600w" src="/img/polaroids/Fam_21_tpgrid_400.png">
</div>
<div class="img2" style="left: 7.33333vh; top: 205vw; transform: rotate(90.4124deg) scale(1); z-index: 0; animation-delay: 0.172503s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_20_nainpy_400.png 256w,
/img/polaroids/Fam_20_nainpy_500.png 812w,
/img/polaroids/Fam_20_nainpy_700.png 1600w" data-src="/img/polaroids/Fam_20_nainpy_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_20_nainpy_400.png 256w,
/img/polaroids/Fam_20_nainpy_500.png 812w,
/img/polaroids/Fam_20_nainpy_700.png 1600w" src="/img/polaroids/Fam_20_nainpy_400.png">
</div>
<div class="img2" style="left: 818px; top: 2521px; transform: rotate(89.4189deg) scale(1); animation-delay: 0.106776s; z-index: 0;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_14_msrsx3_400.png 256w,
/img/polaroids/Fam_14_msrsx3_500.png 812w,
/img/polaroids/Fam_14_msrsx3_700.png 1600w" data-src="/img/polaroids/Fam_14_msrsx3_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_14_msrsx3_400.png 256w,
/img/polaroids/Fam_14_msrsx3_500.png 812w,
/img/polaroids/Fam_14_msrsx3_700.png 1600w" src="/img/polaroids/Fam_14_msrsx3_400.png">
</div>
<div class="img2" style="left: 52vh; top: 133vw; transform: rotate(87.9487deg) scale(1); z-index: 0; animation-delay: 0.246759s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_08_qj4rgs_400.png 256w,
/img/polaroids/Fam_08_qj4rgs_500.png 812w,
/img/polaroids/Fam_08_qj4rgs_700.png 1600w" data-src="/img/polaroids/Fam_08_qj4rgs_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_08_qj4rgs_400.png 256w,
/img/polaroids/Fam_08_qj4rgs_500.png 812w,
/img/polaroids/Fam_08_qj4rgs_700.png 1600w" src="/img/polaroids/Fam_08_qj4rgs_400.png">
</div>
<div class="img2" style="left: calc(100vh - 369px); top: 0vh; transform: rotate(87.6836deg) scale(1); z-index: 0; animation-delay: 0.495575s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_19_lkjdvk_400.png 256w,
/img/polaroids/Film_19_lkjdvk_500.png 812w,
/img/polaroids/Film_19_lkjdvk_700.png 1600w" data-src="/img/polaroids/Film_19_lkjdvk_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_19_lkjdvk_400png 256w,
/img/polaroids/Film_19_lkjdvk_500.png 812w,
/img/polaroids/Film_19_lkjdvk_700.png 1600w" src="/img/polaroids/Film_19_lkjdvk_400.png">
</div>
<div class="img2" style="left: 34.4167vh; top: 223.25vh; transform: rotate(91.6678deg) scale(1); z-index: 0; animation-delay: 0.225208s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_05_jstvh6_400.png 256w,
/img/polaroids/Fam_05_jstvh6_500.png 812w,
/img/polaroids/Fam_05_jstvh6_700.png 1600w" data-src="/img/polaroids/Fam_05_jstvh6_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_05_jstvh6_400.png 256w,
/img/polaroids/Fam_05_jstvh6_500.png 812w,
/img/polaroids/Fam_05_jstvh6_700.png 1600w" src="/img/polaroids/Fam_05_jstvh6_400.png">
</div>
<div class="img2" style="left: calc(100vh - 400px); top: 320vw; transform: rotate(87.607deg) scale(1); z-index: 0; animation-delay: 0.03073s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_11_cd9uwc_400.png 256w,
/img/polaroids/Fam_11_cd9uwc_500.png 812w,
/img/polaroids/Fam_11_cd9uwc_700.png 1600w" data-src="/img/polaroids/Fam_11_cd9uwc_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_11_cd9uwc_400.png 256w,
/img/polaroids/Fam_11_cd9uwc_500.png 812w,
/img/polaroids/Fam_11_cd9uwc_700.png 1600w" src="/img/polaroids/Fam_11_cd9uwc_400.png">
</div>
<div class="img2" style="left: calc(100vh - 220px); top: calc(400vw - 400px); transform: rotate(91.7733deg) scale(1); z-index: 0; animation-delay: 0.1104s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_25_njamgj_400.png 256w,
/img/polaroids/Film_25_njamgj_500.png 812w,
/img/polaroids/Film_25_njamgj_700.png 1600w" data-src="/img/polaroids/Film_25_njamgj_400.png" data-ll-status="loaded" srcset="/img/polaroids/Film_25_njamgj_400.png 256w,
/img/polaroids/Film_25_njamgj_500.png 812w,
/img/polaroids/Film_25_njamgj_700.png 1600w" src="/img/polaroids/Film_25_njamgj_400.png">
</div>
<div class="img2" style="left: 18.0833vh; top: 240.583vh; transform: rotate(87.6777deg) scale(1); z-index: 0; animation-delay: 0.809829s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_10_rc2ya3_400.png 256w,
/img/polaroids/Fam_10_rc2ya3_500.png 812w,
/img/polaroids/Fam_10_rc2ya3_700.png 1600w" data-src="/img/polaroids/Fam_10_rc2ya3_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_10_rc2ya3_400.png 256w,
/img/polaroids/Fam_10_rc2ya3_500.png 812w,
/img/polaroids/Fam_10_rc2ya3_700.png 1600w" src="/img/polaroids/Fam_10_rc2ya3_400.png">
</div>
<div class="img2" style="left: -60px; top: calc(100vw - 400px); transform: rotate(87.1108deg) scale(1); z-index: 0; animation-delay: 0.406252s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_01_anrhmu_400.png 256w,
/img/polaroids/Fam_01_anrhmu_500.png 812w,
/img/polaroids/Fam_01_anrhmu_700.png 1600w" data-src="/img/polaroids/Fam_01_anrhmu_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_01_anrhmu_400.png 256w,
/img/polaroids/Fam_01_anrhmu_500.png 812w,
/img/polaroids/Fam_01_anrhmu_700.png 1600w" src="/img/polaroids/Fam_01_anrhmu_400.png">
</div>
<div class="img2" style="left: 137px; top: calc(500vw - 460px); transform: rotate(91.1536deg) scale(1); z-index: 0; animation-delay: 0.357811s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_04_mfd6h8_400.png 256w,
/img/polaroids/Fam_04_mfd6h8_500.png 812w,
/img/polaroids/Fam_04_mfd6h8_700.png 1600w" data-src="/img/polaroids/Fam_04_mfd6h8_400.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_04_mfd6h8_400.png 256w,
/img/polaroids/Fam_04_mfd6h8_500.png 812w,
/img/polaroids/Fam_04_mfd6h8_700.png 1600w" src="/img/polaroids/Fam_04_mfd6h8_400.png">
</div>
<div class="img2" style="left: calc(100vh - 360px); top: calc(500vw - 300px); transform: rotate(91.102deg) scale(1); z-index: 0; animation-delay: 0.00848141s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_06_zk2m6q.png 256w,
/img/polaroids/Fam_06_zk2m6q_500.png 812w,
/img/polaroids/Fam_06_zk2m6q_700.png 1600w" data-src="/img/polaroids/Fam_06_zk2m6q.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_06_zk2m6q.png 256w,
/img/polaroids/Fam_06_zk2m6q_500.png 812w,
/img/polaroids/Fam_06_zk2m6q_700.png 1600w" src="/img/polaroids/Fam_06_zk2m6q.png">
</div>
<div class="img2" style="left: calc(100vh - 200px); top: 149vw; transform: rotate(88.5867deg) scale(1); z-index: 0; animation-delay: 0.159009s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_23_qsmhb2.png 256w,
/img/polaroids/Film_23_qsmhb2_500.png 812w,
/img/polaroids/Film_23_qsmhb2_700.png 1600w" data-src="/img/polaroids/Film_23_qsmhb2.png" data-ll-status="loaded" srcset="/img/polaroids/Film_23_qsmhb2.png 256w,
/img/polaroids/Film_23_qsmhb2_500.png 812w,
/img/polaroids/Film_23_qsmhb2_700.png 1600w" src="/img/polaroids/Film_23_qsmhb2.png">
</div>
<div class="img2" style="left: 20px; top: 89vw; transform: rotate(90.3835deg) scale(1); z-index: 0; animation-delay: 0.582542s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_18_vs5du8.png 256w,
/img/polaroids/Film_18_vs5du8_500.png 812w,
/img/polaroids/Film_18_vs5du8_700.png 1600w" data-src="/img/polaroids/Film_18_vs5du8.png" data-ll-status="loaded" srcset="/img/polaroids/Film_18_vs5du8.png 256w,
/img/polaroids/Film_18_vs5du8_500.png 812w,
/img/polaroids/Film_18_vs5du8_700.png 1600w" src="/img/polaroids/Film_18_vs5du8.png">
</div>
<div class="img2" style="left: 625px; top: 5883px; transform: rotate(87.3457deg) scale(1); z-index: 0; animation-delay: 0.0310232s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_24_plg5hs.png 256w,
/img/polaroids/Film_24_plg5hs_500.png 812w,
/img/polaroids/Film_24_plg5hs_700.png 1600w" data-src="/img/polaroids/Film_24_plg5hs.png" data-ll-status="loaded" srcset="/img/polaroids/Film_24_plg5hs.png 256w,
/img/polaroids/Film_24_plg5hs_500.png 812w,
/img/polaroids/Film_24_plg5hs_700.png 1600w" src="/img/polaroids/Film_24_plg5hs.png">
</div>
<div class="img2" style="left: -69px; top: 314vw; transform: rotate(89.3059deg) scale(1); z-index: 0; animation-delay: 0.00856907s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_22_r7bhgi.png 256w,
/img/polaroids/Film_22_r7bhgi_500.png 812w,
/img/polaroids/Film_22_r7bhgi_700.png 1600w" data-src="/img/polaroids/Film_22_r7bhgi.png" data-ll-status="loaded" srcset="/img/polaroids/Film_22_r7bhgi.png 256w,
/img/polaroids/Film_22_r7bhgi_500.png 812w,
/img/polaroids/Film_22_r7bhgi_700.png 1600w" src="/img/polaroids/Film_22_r7bhgi.png">
</div>
<div class="img2" style="left: 26.4167vh; top: 330vw; transform: rotate(88.4649deg) scale(1); z-index: 0; animation-delay: 0.579672s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_12_gmu8ol.png 256w,
/img/polaroids/Fam_12_gmu8ol_500.png 812w,
/img/polaroids/Fam_12_gmu8ol_700.png 1600w" data-src="/img/polaroids/Fam_12_gmu8ol.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_12_gmu8ol.png 256w,
/img/polaroids/Fam_12_gmu8ol_500.png 812w,
/img/polaroids/Fam_12_gmu8ol_700.png 1600w" src="/img/polaroids/Fam_12_gmu8ol.png">
</div>
<div class="img2" style="left: 817px; top: calc(200vw - 100px); transform: rotate(87.3179deg) scale(1); z-index: 0; animation-delay: 0.319371s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_08_xsr44g.png 256w,
/img/polaroids/Film_08_xsr44g_500.png 812w,
/img/polaroids/Film_08_xsr44g_700.png 1600w" data-src="/img/polaroids/Film_08_xsr44g.png" data-ll-status="loaded" srcset="/img/polaroids/Film_08_xsr44g.png 256w,
/img/polaroids/Film_08_xsr44g_500.png 812w,
/img/polaroids/Film_08_xsr44g_700.png 1600w" src="/img/polaroids/Film_08_xsr44g.png">
</div>
<div class="img2" style="left: -3.83333vh; top: 195.25vh; transform: rotate(90.3142deg) scale(1); z-index: 0; animation-delay: 0.453773s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_07_zlcaet.png 256w,
/img/polaroids/Fam_07_zlcaet_500.png 812w,
/img/polaroids/Fam_07_zlcaet_700.png 1600w" data-src="/img/polaroids/Fam_07_zlcaet.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_07_zlcaet.png 256w,
/img/polaroids/Fam_07_zlcaet_500.png 812w,
/img/polaroids/Fam_07_zlcaet_700.png 1600w" src="/img/polaroids/Fam_07_zlcaet.png">
</div>
<div class="img2" style="left: 800px; top: 4031px; transform: rotate(91.788deg) scale(1); z-index: 0; animation-delay: 0.942023s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_17_pblakv.png 256w,
/img/polaroids/Fam_17_pblakv_500.png 812w,
/img/polaroids/Fam_17_pblakv_700.png 1600w" data-src="/img/polaroids/Fam_17_pblakv.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_17_pblakv.png 256w,
/img/polaroids/Fam_17_pblakv_500.png 812w,
/img/polaroids/Fam_17_pblakv_700.png 1600w" src="/img/polaroids/Fam_17_pblakv.png">
</div>
<div class="img2" style="left: 661px; top: 3007px; transform: rotate(91.1166deg) scale(1); z-index: 0; animation-delay: 0.412574s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Fam_13_xrwzli.png 256w,
/img/polaroids/Fam_13_xrwzli_500.png 812w,
/img/polaroids/Fam_13_xrwzli_700.png 1600w" data-src="/img/polaroids/Fam_13_xrwzli.png" data-ll-status="loaded" srcset="/img/polaroids/Fam_13_xrwzli.png 256w,
/img/polaroids/Fam_13_xrwzli_500.png 812w,
/img/polaroids/Fam_13_xrwzli_700.png 1600w" src="/img/polaroids/Fam_13_xrwzli.png">
</div>
<div class="img2" style="left: calc(100vh - 600px); top: 434vw; transform: rotate(91.2937deg) scale(1); z-index: 0; animation-delay: 0.13335s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_09_pvicgs.png 256w,
/img/polaroids/Film_09_pvicgs_500.png 812w,
/img/polaroids/Film_09_pvicgs_700.png 1600w" data-src="/img/polaroids/Film_09_pvicgs.png" data-ll-status="loaded" srcset="/img/polaroids/Film_09_pvicgs.png 256w,
/img/polaroids/Film_09_pvicgs_500.png 812w,
/img/polaroids/Film_09_pvicgs_700.png 1600w" src="/img/polaroids/Film_09_pvicgs.png">
</div>
<div class="img2" style="left: calc(100vh - 230px);top: 410vw;transform: rotate(91.1156deg) scale(1);z-index: 0;animation-delay: 0.193532s;">
<img class="lazy entered loaded" data-srcset="/img/polaroids/Film_21_sbog46.png 256w,
/img/polaroids/Film_21_sbog46_500.png 812w,
/img/polaroids/Film_21_sbog46_700.png 1600w" data-src="/img/polaroids/Film_21_sbog46.png" data-ll-status="loaded" srcset="/img/polaroids/Film_21_sbog46.png 256w,
/img/polaroids/Film_21_sbog46_500.png 812w,
/img/polaroids/Film_21_sbog46_700.png 1600w" src="/img/polaroids/Film_21_sbog46.png">
</div>
</div>
</div>
</section>
<section id="album">
<div class="album-container">
<img class="album-cover" src="https://res.cloudinary.com/topazjones/image/upload/c_scale,w_600/v1619052937/Polaroids/DGTYM_Album_Cover_reiyr7.jpg">
<div class="listen-links">
<a href="https://open.spotify.com/album/1EieCilyiR9fOnjbV8sTEm?si=Iw1NArfQSw6Iv8utIO0iFw" target="_blank"><span>Spotify</span></a>
<a href="https://music.apple.com/us/album/dont-go-tellin-your-momma/1562350209" target="_blank"><span>Apple Music</span></a>
<a href="https://tidal.com/browse/album/180179184" target="_blank"><span>Tidal</span></a>
<!-- <a href="#" target="_blank"><span>iTunes</span></a> -->
</div>
</div>
<div class="scrollable">
<ul>
<li>
<h2>Mirror:</h2>
<p>Written by Topaz Jones, Jack Hallenbeck, Alissia Benveniste, Leven Kali. Performed by Topaz Jones
<br>w/ Leven Kali. Courtesy of New Funk Academy/Black Canopy.</p>
<button>Show Lyrics</button>
<div>
<p class="small">
(Intro)
<br>Money… yeah…
<br>
<br>(Chorus)
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 1)
<br>Told you I was gon’ beat your ass one day (one day)
<br>Please hold me back, I’ma slap him in his face
<br>He touched my girlfriend that’s disrespect (Flag on the play bro)
<br>I swung, he ducked, then pushed me through the desk (now that’s a K.O.)
<br>
<br>Why all this drama?
<br>You know my momma
<br>Been to my casa
<br>When we were young
<br>You were the golden
<br>Child I should copy
<br>Everyone said to be like ________
<br>Problems with you
<br>Look, I do not want
<br>But I am a man
<br>So I gotta flaunt
<br>Or they gonna call me a punk
<br>This morning I bought me a pump
<br>
<br>I’m cycling through memories
<br>Hindsight is 20/20 clean
<br>Now you got me back pedaling
<br>Psychiatrist not helping me
<br>Your childhood not so heavenly
<br>There’s hell to pay
<br>My L to take
<br>I make it through
<br>I’ll celebrate
<br>Why sell an Eighth?
<br>There’s…
<br>
<br>(Chorus)
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 2)
<br>Woke up with a busy schedule
<br>Give me revenue
<br>I’m smokin on the sticky residue
<br>You could smell it, wooh
<br>Seventh period already, shit
<br>I missed hella school
<br>Teacher see that you don’t give a F
<br>But she failing you
<br>Drug game, Blood gang
<br>Cracks that we fell into
<br>That was not by accident
<br>They packaged it to sell to you
<br>Waiting on your Birthday
<br>Practically got a cell for you
<br>And paid for it all with your taxes
<br>Yeah we march but the madness will throw off your bracket
<br>All this baggage I might trip, if I ever unpack it
<br>Seen a black man elected, ever witness one happy?
<br>Exactly
<br>The reason why I’m running this trap, like it’s a track meet
<br>Movies showed me money and ass
<br>That shit attract me
<br>Used to show up hungry to class
<br>That shit distract me
<br>You should wanna be your own business
<br>If you ask me
<br>Instead of just another conveyor belt in the factory
<br>Ooh you think you masculine because of rap?
<br>I know you a pacifist, it’s just an act
<br>And I don’t have time for you, or the Principal
<br>I oughta beat your privileged ass off principle
<br>There’s money to be made..
<br>
<br>(Chorus)
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 3)
<br>Money, Power, and Respect!
<br>That’s the meaning of life
<br>And if there’s more to it
<br>Guess I’ll see when I die
<br>I’m tryna be rich as hell
<br>Fuck your degree and a job
<br>Once you hit that cell
<br>You might as well not even apply
<br>Ain’t no bitch in me homie
<br>You can see in my eyes
<br>We got history, but dissing me could be your demise
<br>Street smart, always beats encyclopedia wise
<br>Three course meal for dinner, I might eat you alive...
<br>
<br>(Outro)
<br>Where’s the anger? Why are you so angry?
<br>I realized that it was fear…
<br>That’s what it was...
<br>It was fear in my life
<br>Not confidence, but fear…
<br>To admit that you’ve got some issues
<br>Because we don't wanna think of ourselves as having issues…
<br>Musicians: Alissia Benveniste (Bass, Keys, Synthesizer, Drum Programming), Randy Runyon (Guitar), Topaz Jones (Vocals and add. Drum Programming), Rick Express (Background Vocals), Braxton Cook (Saxophone), Michael Summers (Saxophone), Travis Antoine (Trumpet), Valerie Hepburn (Add. Spoken Vocals), Engineered by Alissia Benveniste, Additional engineering by Joshua Pleeter & Jackie Boom
</p>
</div>
</li>
<li>
<h2>D.I.A.L.</h2>
<p>Written by Alissia Benveniste, Topaz Jones, Randy Runyon <br>Performed by Topaz Jones.</p>
<button>Show Lyrics</button>
<div>
<p class="small">
(Intro)
<br>Money… yeah…
<br>
<br>(Chorus)
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 1)
<br>Told you I was gon’ beat your ass one day (one day)
<br>Please hold me back, I’ma slap him in his face
<br>He touched my girlfriend that’s disrespect (Flag on the play bro)
<br>I swung, he ducked, then pushed me through the desk (now that’s a K.O.)
<br>
<br>Why all this drama?
<br>You know my momma
<br>Been to my casa
<br>When we were young
<br>You were the golden
<br>Child I should copy
<br>Everyone said to be like ________
<br>Problems with you
<br>Look, I do not want
<br>But I am a man
<br>So I gotta flaunt
<br>Or they gonna call me a punk
<br>This morning I bought me a pump
<br>
<br>I’m cycling through memories
<br>Hindsight is 20/20 clean
<br>Now you got me back pedaling
<br>Psychiatrist not helping me
<br>Your childhood not so heavenly
<br>There’s hell to pay
<br>My L to take
<br>I make it through
<br>I’ll celebrate
<br>Why sell an Eighth?
<br>There’s…
<br>
<br>(Chorus)
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 2)
<br>Woke up with a busy schedule
<br>Give me revenue
<br>I’m smokin on the sticky residue
<br>You could smell it, wooh
<br>Seventh period already, shit
<br>I missed hella school
<br>Teacher see that you don’t give a F
<br>But she failing you
<br>Drug game, Blood gang
<br>Cracks that we fell into
<br>That was not by accident
<br>They packaged it to sell to you
<br>Waiting on your Birthday
<br>Practically got a cell for you
<br>And paid for it all with your taxes
<br>Yeah we march but the madness will throw off your bracket
<br>All this baggage I might trip, if I ever unpack it
<br>Seen a black man elected, ever witness one happy?
<br>Exactly
<br>The reason why I’m running this trap, like it’s a track meet
<br>Movies showed me money and ass
<br>That shit attract me
<br>Used to show up hungry to class
<br>That shit distract me
<br>You should wanna be your own business
<br>If you ask me
<br>Instead of just another conveyor belt in the factory
<br>Ooh you think you masculine because of rap?
<br>I know you a pacifist, it’s just an act
<br>And I don’t have time for you, or the Principal
<br>I oughta beat your privileged ass off principle
<br>There’s money to be made..
<br>
<br>(Chorus)
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>Money to be made...
<br>And I just want it right now
<br>Please get down or lie down
<br>When I’m in the grave...
<br>I need everything iced out
<br>Dying is a lifestyle
<br>
<br>(Verse 3)
<br>Money, Power, and Respect!
<br>That’s the meaning of life
<br>And if there’s more to it
<br>Guess I’ll see when I die
<br>I’m tryna be rich as hell
<br>Fuck your degree and a job
<br>Once you hit that cell
<br>You might as well not even apply
<br>Ain’t no bitch in me homie
<br>You can see in my eyes
<br>We got history, but dissing me could be your demise
<br>Street smart, always beats encyclopedia wise
<br>Three course meal for dinner, I might eat you alive...
<br>
<br>(Outro)
<br>Where’s the anger? Why are you so angry?
<br>I realized that it was fear…
<br>That’s what it was...