-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
867 lines (669 loc) · 30.8 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
<!DOCTYPE html>
<head>
<title>UTB NFTs</title>
<link rel="stylesheet" href="./css/brutal-layout.css"/>
<!-- <link rel="stylesheet" href="./css/countdown.css"/> -->
<link rel="stylesheet" href="./css/retro-navbar.css"/>
<link rel="stylesheet" href="./css/top-vibration.css" />
<link rel="stylesheet" href="./css/3d-button.css" />
<link rel="stylesheet" href="./css/modal-img.css" />
<link rel="stylesheet" href="./css/tabs.css" />
<link rel="stylesheet" href="./css/result-cards.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="./css/socials.css" />
<link rel="stylesheet" href="./css/horizontal-timeline.css">
<link rel="stylesheet" href="./css/future-timeline.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="./js/navbar.js"></script>
<script src="./js/history.js"></script>
<script src="./js/newDataFetcher.js"></script>
<!-- <script src="./js/countdown.js"></script> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<link href='https://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<!-- mailchimp -->
<script id="mcjs">!function(c,h,i,m,p){m=c.createElement(h),p=c.getElementsByTagName(h)[0],m.async=1,m.src=i,p.parentNode.insertBefore(m,p)}(document,"script","https://chimpstatic.com/mcjs-connected/js/users/2486c0c4d2369d004d9bbddc2/5216d3598e3804379f4f70ba7.js");</script>
<!-- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> -->
<!-- <script src="js/jquery.timelinr-0.9.54.js"></script> -->
<script>
$(function(){
$().timelinr({
arrowKeys: 'true'
})
});
</script>
<!-- Horizontal timeline -->
<!-- <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/ycodetech/horizontal-timeline-2.0@2/css/horizontal_timeline.2.0.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ycodetech/horizontal-timeline-2.0@2/JavaScript/horizontal_timeline.2.0.min.js"></script> -->
<!-- / Horizontal timeline -->
</head>
<body>
<div id="navbar">
<nav class="top-right open">
<a class="disc l2" href="https://www.utblifestyle.store/" target="_blank">
<div>store |> </div>
</a>
<a class="disc l3" href="./music.html">
<div>music & videos </div>
</a>
<a class="disc l4" href="./contact.html">
<div>contact</div>
</a>
<a class="disc l5 toggle">
<img src="./img/utb.png" width="110px" height="110px">
</a>
</nav>
</div>
</div>
<div ></div>
<header style="background: black; color: white; margin-top: 20px;">Put Your Money</header>
<header style="background: black; color:white; ">Where Your Mouth Is!</header>
<br>
<hr>
<header style="margin-top: 20px; font-size: 1em;">
Original <img src="./img/utb.png" width="40px" height="40px"> smiley NFT auction 8/5 on
<a href="https://knownorigin.io/utbworldwide" target="_blank" style="cursor: pointer;">KnownOrigin</a>
</header>
<br>
<hr>
<br>
<br>
<details style="margin-bottom: 50px; color: rgb(236, 232, 232); background:black; ">
<summary style="padding:30% auto; font-size: 1.5em; height: 60px; color: #0c0f0a; cursor: pointer; background: yellow; width: 60%; margin: auto; border-style: dashed; border-width: thick; border-color: red;">about the NFT</summary>
<div style="margin-left: 4px; font-weight: light; color: black; background: white; font-size:2rem;">
<div style=" background-color: black">
<img src="./img/utb.png" width="240px" height="240px" style="padding-top: 42px;"/>
</div>
<br><br>
You might not know that the Money Mouth Smiley© was designed and copyrighted in 2007 by Under the Bottom, then a dashing duo of joyful, poor Black boys from the industrial armpits of Los Angeles who had their eyes on more and would do anything to manifest it.
<br><br>
<p>
What started as an inside slang symbol for a tight-knit community of SoCal art hustlers grew into an iconic brand in hip hop and streetwear culture, drawn on by rap icons from Diddy to Wiz Khalifa.
</p>
<br>
<p>Today, Money Mouth Smiley© is reproduced and recognized by billions of people all over the globe, but only one can rightfully own the original design by its authentic creators. </p>
<br>
<p>This retrofuturist symbol embodies the aspirational mindset of creators, dreamers, and anyone trying to come up in the world, especially in the face of long odds. </p>
<br>
<p>The Money Mouth Smiley© is a brazen digital emblem of David standing over Goliath, sticking his tongue out at the slain cyborg-giant, sling in hand.</p>
<br>
<img src="./img/david_vs_big_tech_.jpeg" width="512px" height="816px">
<br>
<br>
<img src="./img/david_vs_big_tech.jpeg" width="816px" height="512px">
<br>
<br>
<p> Before emojis, nfts, crypto, social media, and the "lifestyle brands" that run on them, there was UTB's Money Mouth Smiley©. Yet its lasting cultural impact shows through every social zeitgeist of our post-2000 metaverse, from music, fashion, and meme culture, to crypto, tech, and finance. </p>
<br>
<p>The Money Mouth Smiley© is a piece of universal language, a globally recognized letter of the internet alphabet. While pre-crypto, it uncannily encapsulates crypto's culture and spirit, a rallying cry for a grassroots economic independence and empowerment community at the confluence of tech, art, language, money, and mindset. </p>
<br>
<p>So, put your money where your mouth is this August and bid on the Money Mouth Smiley© nft.</p>
<br>
</div>
</details>
<div id='main'>
<!-- <div id="left-pane" style="max-width:35%;"> -->
<div id="left-pane" style="min-width:30%;">
<img src="./img/utb.png" width="240px" height="240px" style="padding-top: 32px;"/>
<br> <br>
<aside>
<header>
Before emojis, there was.. the Money Mouth Smiley©.
</header>
</aside>
<!--
<div id="countdown">
<div id='tiles'></div>
<div class="labels">
<li>Days</li>
<li>Hours</li>
<li>Mins</li>
<li>Secs</li>
</div>
</div> -->
<!-- <a href="./calendars/utb-nft-auction.ics"
style="background: black;
color: yellow;
padding: 6px 6px;
cursor: pointer;
">
save the date <br>
<u><span style="color: red;">h</span>
<span>e</span>
<span style="color: green;">r</span>
e</u>
</a> -->
</article>
<br><br>
<div id="auction-results" style="color: white; font-size: 20px;">
<!-- <div class="tab">
<button class="tablinks" onclick="openCity(event, 'London')">UTB.NFT.001</button>
<button class="tablinks" onclick="openCity(event, 'Paris')">UTB.NFT.002</button>
<button class="tablinks" onclick="openCity(event, 'Tokyo')">UTB.NFT.003</button>
</div> -->
<br>
<hr> <div id="London" class="tabcontent" style="font-weight: 700;">
<div id="592200-results" style="padding: 6px; margin: 30px; font-size: 32px;"></div>
<div class="featureListItem">
<div class="featureListItem__icon">
<div class="icon fa fa-dashboard"></div>
</div>
<div class="featureListItem featureListItem--reverse">
<div class="featureListItem__icon">
<div class="icon fa fa-calendar"></div>
</div>
<div class="featureListItem__description"><div id="592200-last-bid-eth-value"></div></div>
</div>
<div class="featureListItem__description">
<div id="592200-last-bid-timestamp"
style="font-weight: 700;"
></div></div>
</div>
<div class="featureListItem">
<div class="featureListItem__icon">
<div class="icon fas fa-grin-hearts"></div>
</div>
<div class="featureListItem__description">
<div id="592200-last-bidder-addr"></div>
<div id="592200-last-transaction-hash"></div>
</div>
</div>
<a href="https://knownorigin.io/gallery/592200-utb-nft-001-the-original-color-money-mouth-smiley" target="_blank" style="color: black; background-color:rgb(114, 255, 71); cursor: pointer;">to the auction @ KnownOrigin</a>
<!-- <div class="container">
<div class="row">
<div class="col" style="max-width: 30%;"><div id="592200-last-bid-eth-value" ></div></div>
<div class="col" style="max-width: 30%;"><div id="592200-last-bidder-addr" style="color:turquoise;"></div></div>
</div>
</div> -->
</div>
<br>
<hr>
<hr>
<div id="Paris" class="tabcontent">
<div id="595700-results" style="padding: 6px; margin: 30px; font-size: 32px;"></div>
<a href="https://knownorigin.io/gallery/595700-utb-nft-002-the-original-money-mouth-smiley-c" target="_blank" style="color: black; background-color:rgb(114, 255, 71); cursor: pointer;">to the auction @ KnownOrigin</a>
</div>
<br>
<hr>
<hr>
<div id="Tokyo" class="tabcontent">
<div id="595800-results" style="padding: 6px; margin: 30px; font-size: 32px;"></div>
<a href="https://knownorigin.io/gallery/595800-utb-nft-003-the-original-money-mouth-smiley-sketch" target="_blank" style="color: black; background-color:rgb(114, 255, 71); cursor: pointer;">to the auction @ KnownOrigin</a>
</div>
<br>
<!-- <a href="./bidding-history.html" style="color: rgb(247, 217, 45)!important; cursor: pointer; background-color: rgb(147, 42, 31); padding: 20px;">bidding activity </a> -->
</div>
</div>
<details style=" color: rgb(236, 232, 232); background: black; padding: 6px;">
<summary style="color: #0c0f0a; cursor: pointer; background: yellow; padding: 10px; ">who we are</summary>
<br>
<div id="asd" style="min-width: 360px;font-size:1em;">
<h1>
Under the <br>
B<span>
<img src="./img/utb.png" width="46px" height="46px">
</span>tt<span>
<img src="./img/utb.png" width="46px" height="46px"></span>
m
</h1><br>
</div>
<p style="background: rgb(5, 5, 6); color: rgb(235, 223, 223);">
From the Creative cauldron of Moreno Valley, CA, grew a timeless luxury lifestyle clothing line, branding agency, and music label. Dre Bigg$ and Treem Heff grew up as Southern California sports stars , whose unique business, fashion, and entrepreneurial outlook became legendary and solidified their place in internet culture forever.
<br><br>
In 2007 the beginning ideas of UTB Lifestyle LLC were started in the dorm rooms of Arizona State University and Cal Baptist University on sidekick 3’s via Tmail; Dozens of copy written logos were created and from these trademarks rose a new age Millennial Lifestyle Brand.
<br><br>
<details style="font-size:1em; color: rgb(236, 232, 232); background: rgb(14, 14, 10); margin-bottom: 6px; padding: 6px;">
<summary style="cursor: pointer; background: red; color:black"><strong>more about us</strong></summary>
<p style="background: rgb(5, 5, 6); color: rgb(235, 223, 223);">
<br><br>
Mixing art, textiles, prints and collaborative ventures with Sylvia Rhone (via Sony/ Epic) Jonny Shipes (Cinematic/ The Smokers Club) and Wiz Khalifa (Taylor Gang) have made UTB a true staple in the culture.
<br><br>
Fashion is not just about clothes, but about creating an allure that withstands the test of time. Much has been proven, but the story is still being written. $tay tuned to see what’s next…
</p>
</details>
</p>
</details>
<article>
On August 5th, Under the Bottom will auction off their original Money Mouth Smiley© design as an NFT.
<br> <br>
This is a once-in-a-lifetime opportunity to own an authentic copyrighted artifact of the early 21st century digital revolution.
<br><br>
The revolution will be minted.
<br><br>
<!-- <iframe width="960" height="544" src="https://www.youtube.com/embed/5ilQXVXJJfQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> -->
<div class="iframe-video">
<iframe width="100%" height="100%" src="https://www.youtube.com/embed/5ilQXVXJJfQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
</article>
<br><br>
<div class="tabs">
<div class="tab-2">
<label for="tab2-1">Our History</label>
<input id="tab2-1" name="tabs-two" type="radio" checked="checked">
<div>
<!-- <header style="margin-top: 40px;">Our history</header> -->
<br>
<div id="timeline">
<ul id="dates">
<li><a href="#2007">2007</a></li>
<li><a href="#2007-2807">July'07</a></li>
<li><a href="#2007-1308">Aug'07</a></li>
<li><a href="#2007-Sep5">Sep'07</a></li>
<li><a href="#2007-1510">Oct'07</a></li>
<li><a href="#2008">Aug'08</a></li>
<li><a href="#2008-2111">Nov'08</a></li>
<li><a href="#2010">2010</a></li>
<li><a href="#2010-diddy">+</a></li>
<li><a href="#2010-Dec6">Dec'10</a></li>
<li><a href="#2010-Dec10">Dec'10</a></li>
<li><a href="#2011-Jan7">Jan'11</a></li>
<li><a href="#2011">2011</a></li>
<li><a href="#2011-10">Oct'11</a></li>
<li><a href="#2013-0108">Aug'13</a></li>
<li><a href="#2014">2014</a></li>
<li><a href="#2015-10">Oct'15</a></li>
<li><a href="#2015-10+">+</a></li>
<li><a href="#2015-10-oxf">++</a></li>
<li><a href="#2017-Jan2">Jan'17</a></li>
<li><a href="#2017-cashapp">2017</a></li>
<li><a href="#2018-webuygold">2018</a></li>
<li><a href="#2019">2019</a></li>
<li><a href="#2021-jack-in-the-box">2021</a></li>
</ul>
<ul id="issues">
<li id="2007">
<img id="myImg" src="./img/history/0_sketches_scanned.png" alt="Smiley 1 & Smiley 2 scanned." style="max-width:900px">
<p>First sketches were scanned on 18th of July, 2007.</p>
<!-- The Modal -->
<div id="myModal" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01" src="./img/history/0_sketches_scanned.png">
<div id="caption"></div>
</div>
<!-- <img src="./img/history/0_sketches_scanned.png"/> -->
<!-- <p>Acquisition of the Marco Polo Inn Anaheim, CA (repositioned as: Days Inn)</p> -->
</li>
<li id="2007-2807">
<img id="myImg-2" src="./img/history/1_eps_vectors_created.png" alt="Snow" style="max-width:900px">
<p>EPS Vectors created (Smiley1 & Smiley2)</p>
<!-- The Modal -->
<div id="myModal-2" class="modal">
<span class="close">×</span>
<img class="modal-content" id="img01">
<div id="caption-2"></div>
</div>
<!-- <img src="./img/history/1_eps_vectors_created.png"/> -->
</li>
<li id="2007-1308">
<img src="./img/history/2_first_printing_of_UTB_smiley_shirts.png" style="max-width:900px">
<p>1st printing of UTB Smiley shirts</p>
</li>
<li id="2007-Sep5">
<img src="./img/history/15_Tyga.jpeg" style="max-width:900px">
<p>Tyga Wear UTB Rehab Hoodie on his way to MTV VMA’s</p>
</li>
<li id="2007-1510">
<p>UTB Visual Arts Copyright
<a href="https://cocatalog.loc.gov/cgi-bin/Pwebrecon.cgi?v1=2&ti=1,2&Search%5FArg=UTB&Search%5FCode=TALL&CNT=25&PID=IisUoxCEksRnCe2hNSit81WkNa&SEQ=20210702173953&SID=6"
style="cursor: pointer;"
target="_blank">
<span style="background-color: chocolate ;">
registered
</span>
</a>
</p>
<img src="./img/history/3_UTB_copyright_registered.png" style="max-width:900px">
</li>
<li id="2008">
<img src="./img/utb.png" style="max-width:540px; max-height: 540px;">
<p> UTB Season 1 release</p>
</li>
<li id="2008-2111">
<p style="margin-top: 120px;"> November 21, 2008. <br> Emojis release in Japan (only) </p>
</li>
<li id="2010">
<img src="./img/history/4_Taylor_gang_wiz_khalifa.png" style="max-width:900px"/>
<p> Taylor Gang Lifestyle apparel official release with Wiz Khalifa </p>
</li>
<li id="2010-diddy">
<img src="img/history/5_diddy.png" style="max-width:900px"/>
<p> Stars like Diddy wearing UTB apparel</p>
</li>
<li id="2010-Dec16">
<img src="img/history/14_mac_miller_w_utb_rehab_hoodie.png" style="max-width:900px"/>
<p> Mac Miller in UTB Rehab Hoodie in Pittsburgh, PA</p>
</li>
<li id="2010-Dec10">
<img src="img/history/13_juicy_c_taylor_gang.jpeg " style="max-width:900px"/>
<p style="margin-top: 20px;"> Juicy J wearing Taylor’s UTB Hoodie</p>
</li>
<li id="2011-Jan7">
<img src="img/history/12_whiz_snoop.png" style="max-width:900px" />
<p> Snoop and Wiz <a href="https://www.youtube.com/watch?v=WJq2drq17Q8" target="_blank">
<span style="background: rgb(122, 218, 84);">drop video</span> </a>
for “That Good” off the Album “Mac and Devin go to High School”</p>
</li>
<li id="2011">
<img src="img/history/6_taylor_gang_video_w_utb.png" style="max-width:900px" />
<p> Taylor Gang official video releases with UTB logo embedded throughout the video via personal request</p>
</li>
<li id="2011-10">
<img src="img/history/7_utb_emoji_ios_keyboards.png" style="max-width:900px"/>
<p style="margin-top: 20px;"> Emojis available in USA when the emoji keyboard was added to iPhone iOS 5</p>
</li>
<li id="2013-0108">
<a href="https://www.notion.so/image/https%3A%2F%2Fs3-us-west-2.amazonaws.com%2Fsecure.notion-static.com%2F6f421682-3ccd-4a04-8522-733195f694fc%2F1F113FEE-FD57-4DDF-8F45-2C16BCB16ED6.jpeg?table=block&id=198860c9-6f48-4c9f-9a5e-9239ae996591&spaceId=a0be6415-df3d-43d4-a86b-cc95c0301e56&width=2340&userId=3fdcd10e-bb7b-488e-8c96-fe7d5b61a067&cache=v2"
target="_blank"
style="cursor: pointer;">
<img src="img/history/sony_epic_records.jpeg" style="max-width:900px"/>
</a>
<p> UTB x Vested In Culture Sony/Epic Records merchandising agreement via Sylvia Rhone</p>
</li>
<li id="2014">
<img src="img/history/unicode.png" style="max-width:900px"/>
<p> Money mouth face emoji submitted to unicode by Mark Davis & Peter Edberg</p>
</li>
<li id="2015-10">
<img src="img/history/unicode-2.png" style="max-width:900px"/>
<p> Money mouth face added to emoji 1.0 as part of Unicode 8.0</p>
</li>
<li id="2015-10+">
<img src="img/history/8_smiley_on_keyboards.png" style="max-width:900px"/>
<p> By now everywhere: Including Apple, Google, Samsung, Microsoft, WhatsApp, Twitter, Facebook and OpenMoji. </p>
</li>
<li id="2015-10-oxf">
<img src="img/history/9_time_smiley_as_comm_method.png" style="max-width:900px"/>
<p> Oxford Dictionaries announced an emoji "word of the year" </p>
</li>
<li id="2017-Jan2">
<img src="img/history/walmart_emoji_sale.png" style="max-width:900px"/>
<p> WalMart selling the logo </p>
</li>
<li id="2017-cashapp">
<img src="img/history/10_used_in_cashapp.png" style="max-width:900px"/>
<p> Cashapp launches cashcard (money mouth face used in <i>in-app promotions</i> )" </p>
</li>
<li id="2018-webuygold">
<img src="img/history/11_webuygold_multimedia_corp_logo.png" style="max-width:900px"/>
<p> We Buy Gold multimedia company is created with Money Mouth Smiley© as their main logo" </p>
</li>
<li id="2019">
<img src="img/history/smokers_club.jpeg" style="max-width:900px"/>
<p> The Smokers Club collab for Smokers Club Festival 2019</p>
</li>
<li id="2021-jack-in-the-box">
<img src="img/history/jack-the-box.png" style="max-width:900px"/>
<p> Recent Jack In the Box advertisement</p>
</li>
</ul>
<div id="grad_left"></div>
<div id="grad_right"></div>
<a href="#" id="next">+</a>
<a href="#" id="prev">-</a>
</div>
</div>
</div>
<div class="tab-2">
<label for="tab2-2">Our Roadmap</label>
<input id="tab2-2" name="tabs-two" type="radio">
<div>
<!-- <header style="margin-top: 40px;">Our history</header> -->
<br><br>
<!-- <header>
On 5th of August, get ready for multiple auctions. Here's our promise:
</header> -->
<div class="bar"></div>
<div class="timeline">
<div class="entry">
<h1>August 5, 2021</h1>
<h2>Russian Doll Auction</h2>
<br><br>
<span style="background: yellow;">
The drop will offer 3 nfts: in increasing order of rarity,
<br> the original color UTB smiley designs;
<br>the original vector designs;
<br>and the original sketch design.
<br><br>However, we will only consider bids for successively
<br>rarer nfts once all previous nfts hit
<br>their (privately held) reserve price.
<br><br> We call this a <strong>Russian Doll Auction</strong>.
<br><br>
</span>
<img src="./img/russian-doll.png" />
</div>
<div class="entry">
<h1>@ August 5</h1>
<a href="https://knownorigin.io/gallery/592200-utb-nft-001-the-original-color-money-mouth-smiley" target="_blank">
<u style="cursor: pointer;">
<h2>UTB.NFT.001: <br><br>The Original Color <br> Money Mouth Smiley© <br> Design </h2>
</u>
</a>
<br><br>
<span style="background: rgb(0, 225, 255);">
The first nft of the drop is the original color
<br>Money Mouth Smiley©
<br> design files, created july 30th 2007.
<br><br>We made our first shirts with one of the designs,
<br>which we released as early as aug 2007.
<br><br>The collector of this nft will receive:
<br><br>
</span>
<div style="list-style-image: url('./img/star.png'); background: black; color: white; padding-bottom: 10px;">
<li>
All 3 original color Money Mouth Smiley© design files, <br> with metadata proving their date of origin.
</li>
<li>
Eligibility to propose to UTB copyright licensing
<br>agreements at no more than 69% royalty.
</li>
</div>
<br>
<br>
<strong style="background: black; color: white;">minimum bid 1 Eth.</strong>
<br><br>
<div class="row" style="background: black; padding-top: 36px;">
<br><br>
<div class="column">
<img src="./img/utb.png" alt="Hef" style="width:100%">
</div>
<div class="column">
<img src="./img/under_the_bottom.png" alt="hef2" style="width:100%">
</div>
<div class="column">
<img src="./img/biggty-smiley-removebg.png" alt="Biggity" style="width:100%">
</div>
</div>
</div>
<div class="entry">
<h1>@ August 5</h1>
<a href="https://knownorigin.io/gallery/595700-utb-nft-002-the-original-money-mouth-smiley-c" target="_blank">
<u style="cursor: pointer;">
<h2>UTB.NFT.002: <br><br> Original UTB Smiley <br> Vector Design</h2>
</u>
</a>
<br><br>
<span style="background: rgb(245, 176, 57);">
if UTB.NFT.001 hits its (privately held) reserve price,
<br>then we will begin considering bids for the second nft
<br>in the drop series: original black and white vector files
<br>created July 28 2007.
<br><br>The collector of this nft will receive:
</span>
<br><br>
<div style="list-style-image: url('./img/star.png'); background: black; color: white; padding-bottom: 10px;">
<li>
The origin scanned vector design file, with metadata <br> proving their date of origin.
</li>
<li>
Eligibility to propose to UTB copyright licensing <br> agreements at no more than 42.069% royalty.
</li>
<li>
1% copyright ownership, if and only if the collector
<br>or their executors take actions that directly result
<br>in the recovery of substantial damages to UTB from
<br>the copyright's most egregious violators.
</li>
</div>
<br><br>
<strong style="background: white; color: black;">minimum bid 10 Eth.</strong>
<br><br>
<div class="row" style="background: black;">
<br><br>
<div class="column">
<img src="./img/smiley1.eps.png" alt="hef2" style="width:100%">
</div>
<div class="column">
<img src="./img/smiley2.eps.png" alt="Biggity" style="width:100%">
</div>
</div>
</div>
<div class="entry">
<h1>@ August 5</h1>
<a href="https://knownorigin.io/gallery/595800-utb-nft-003-the-original-money-mouth-smiley-sketch" target="_blank">
<u style="cursor: pointer;">
<h2>UTB.NFT.003: <br><br> Original UTB Smiley <br>Sketch Design</h2>
</u>
</a>
<br><br>
<span style="background: rgb(0, 255, 174);">
If UTB.NFT.001 and UTB.NFT.002 both hit
<br>their (privately held) reserve prices, then we will begin
<br>considering bids for the third and final nft in the drop
<br>series: the original sketch design file,
<br>created July 18th 2007.
<br><br>
The collector of this nft will receive:
</span>
<br><br>
<div style="list-style-image: url('./img/star.png'); background: black; color: white; padding-bottom: 10px;">
<li>
The origin scanned sketch design file, with metadata <br> proving their date of origin.
</li>
<li>
Eligibility to propose to UTB copyright licensing <br> agreements at no more than 6.9% royalty.
</li>
<li>
10% copyright ownership, if and only if the collector
<br>or their executors take actions that directly result
<br>in the recovery of substantial damages to UTB from
<br>the copyright's most egregious violators.
</li>
</div>
<br><br>
<strong style="background: white; color: black;">minimum bid 100 Eth.</strong>
<br><br>
<div class="row" style="background: black;">
<br><br>
<div class="column">
<img src="./img/hef-design.png" alt="hef2" style="width:100%">
</div>
<div class="column">
<img src="./img/biggity-design.png" alt="Biggity" style="width:100%">
</div>
</div>
</div>
<div class="entry">
<h1>Q4, 2021</h1>
<h2>UTBniverse: <br><br>Tokenized <br> Physical Merch <br>+<br> Virtual Wearables</h2>
<br><br>
<span style="background: #bda7f2;">
Drop limited run physical UTB merch that
<br>come with corresponding nft virtual wearables
<br>and token reward incentives on our curator's
<br>cryptomerch partner platform <a href="https://www.metafactory.ai" target="_blank" style="cursor: pointer;">Metafactory</a>,
<br><br>airdrop the "first editions" of each product
<br>to previous UTB NFT collectors.
</span>
<br><br><br><br>
<div class="row" style="background: black;">
<br><br>
<div class="column">
<img src="./img/tokenized-physical-merch-01.jpeg" alt="tokenized-physical-merch-01" style="width:100%">
</div>
<div class="column">
<div class="row" style="max-height: 40%;">
<img src="./img/tokenized-physical-merch-02.jpeg" alt="tokenized-physical-merch-02" style="width:100%">
</div>
<div class="row" style="max-height: 60%;">
<img src="./img/tokenized-physical-merch-03.png" alt="tokenized-physical-merch-02" style="width:100%">
</div>
</div>
</div>
</div>
<div class="entry" style="min-width: 400px; max-width: 540px;">
<h1>Q1, 2022</h1>
<h2>UTBniverse: <br><br>UTB smiley <br>virtual currency</h2>
<br><br>
<div>
<video controls="controls" width="400" height="360" name="Video Name">
<source src="./img/utb-smiley-coin.mov">
</video>
</div>
</div>
</div>
</div>
</div>
</div>
<footer style="margin-top:2px;">
<a style="color: black; cursor: pointer;" href="https://utbworldwide.com" target="_blank">
UTB Worldwide</a> <br>
<hr>
<a href="https://twitter.com/UTBLIFESTYLE" target="_blank" class="fa fa-twitter"></a>
<a href="https://youtube.com/user/UTBLifestyle" target="_blank" class="fa fa-youtube"></a>
<a href="https://www.instagram.com/utbworldwide" target="_blank" class="fa fa-instagram"></a>
</footer>
<!-- modal image script
<script>
// Get the modal
var modal = document.getElementById("myModal");
var modal2 = document.getElementById("myModal2");
// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById("myImg");
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function(){
modal.style.display = "block";
modalImg.src = this.src;
captionText.innerHTML = this.alt;
}
// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];
// When the user clicks on <span> (x), close the modal
span.onclick = function() {
modal.style.display = "none";
}
</script> -->
<!-- horizontal timeline script -->
<script>
document.addEventListener("DOMContentLoaded", loadNavbar());
// document.addEventListener("DOMContentLoaded", counter());
document.addEventListener("DomContentLoaded", loadHistory());
var editionIds = ["592200", "595800", "595700"];
document.addEventListener("DOMContentLoaded",
editionIds.forEach(editionId => {
fetchAndForwardArtworkData(editionId);
// getBiddingHistory(editionId);
}));
</script>
<script>
function openCity(evt, cityName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(cityName).style.display = "block";
evt.currentTarget.className += " active";
}
</script>
<!-- goatcounter dashboard -->
<script data-goatcounter="https://utbnft.goatcounter.com/count"
async src="//gc.zgo.at/count.js"></script>
</body>
</html>