-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnftData.json
1416 lines (1416 loc) · 72.5 KB
/
nftData.json
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
[
{
"token_id": "102",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "BLOOD Ô BLOOD: DOLCE PAGANNE",
"description": "‘blood ô blood’ said E., she was pretty hungry for breakfast. 'blood' that connects all of us, that made us addicted to desire, and condemned us to each other...",
"image": "https://i.seadn.io/s/raw/files/70bb5dd1ca99bef148e83978fa28280c.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/_6lE1LNHkZWGBRsAohc-eKpM-1fpRZPrPGEaWxTMZzk",
"created_at": " ",
"date": "2023-11-09T00:21:07.678033",
"blockchain": "ethereum",
"price": 2.05
},
{
"token_id": "101",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "EMBRACE THE PATH: MIKKO LAGERSTEDT",
"description": "Landscapes constantly change - trees fall, roads crumble, and rivers shift course. However, the human experience remains timeless. It's important to embrace your path and not shy away from life's uncertainties, mists, and meandering roads. Walking through them lets us discover beauty, revelation, and self-discovery. Just like sunlight filtering through the fog, clarity often comes when we move forward, regardless of how uncertain the path ahead may appear.",
"image": "https://i.seadn.io/s/raw/files/e4c608342bd6ef2c0aaad4139238a73d.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/LbKpncRT27YM1l-E6y7WQYOuVj3a5K3ozt2fLqli_ZM",
"created_at": " ",
"date": "2023-11-06T13:56:18.017572",
"blockchain": "ethereum",
"price": 3.305
},
{
"token_id": "100",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE BEGINNING: HOSSEIN GOSHTASBI",
"description": "Digital photography, Self-portrait (2023).",
"image": "https://i.seadn.io/s/raw/files/3d01ba418870aeee13476abc90082dcd.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/zgyvgtpdQ02oG8xKw48d5z9nD9XOjnTCdzWs3_hM0PU",
"created_at": " ",
"date": "2023-11-05T18:55:16.006745",
"blockchain": "ethereum",
"price": 1.015
},
{
"token_id": "99",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "HONESTY: CARAVAGGIO",
"description": "Approved by Grifter Six Labs 10/18/23",
"image": "https://i.seadn.io/s/raw/files/2631b74194d780359cc50d92c3bffe32.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/aFS-zNXhC-nD5BiqUBo81Im1oWwfHosJWWP8CZnEOMY",
"created_at": " ",
"date": "2023-11-02T01:32:52.728952",
"blockchain": "ethereum",
"price": 4.025
},
{
"token_id": "98",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "JUNGLE TIDE: ALIMO",
"description": "Approved by Grifter Six Labs 10/11/23",
"image": "https://i.seadn.io/s/raw/files/8cd70e3be83bb42ce54a86e021a2c01b.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/KM--BOVvSyQyoTdFxD22Obvt1p1-SmFrAqrNiGjb6nk",
"created_at": " ",
"date": "2023-10-11T22:40:03.743602",
"blockchain": "ethereum",
"price": 3.305
},
{
"token_id": "97",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "JOYBRINGER: BRANDON MIGHTY",
"description": "A Deadcat digital painting by Brandon James Scott, 2023",
"image": "https://i.seadn.io/s/raw/files/a426d3622ff8883a5fa4096791756f32.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/tl8n6UJm3aa-kaZUHaFCo8fSVNgNGAkL_dO2yPcjRPU",
"created_at": " ",
"date": "2023-10-16T00:56:27.784807",
"blockchain": "ethereum",
"price": 1.05
},
{
"token_id": "96",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "LOW TIDE: VICTOR DUARTE",
"description": "In the calm and serene times of low tide, nature seems to grant us hidden opportunities among the sand.",
"image": "https://i.seadn.io/s/raw/files/921b4952c738a8852d409f7156146cde.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/iSmAwMge38aZ0Lv4WMSoio_ts6Va41O3bvgYNepmZWY",
"created_at": " ",
"date": "2023-10-16T06:45:03.442067",
"blockchain": "ethereum",
"price": 2.05
},
{
"token_id": "95",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "COLLAPSE.MAD: CHEPERTOM",
"description": "You're witnessing the first MAD format ever listed. This scene took place while leaving Paris North station. Since it happened a few years ago I feel nervous while crossing this site. No one talks about the great collapse here.",
"image": "https://i.seadn.io/s/raw/files/01c3784c51e4f134f6fb67b76f4d4d40.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/IOQM1dqOi1QQgKYV0t11ufCYH9ggOg5fbwxno2VvLEc",
"created_at": " ",
"date": "2023-11-06T14:13:28.241272",
"blockchain": "ethereum",
"price": 4.267
},
{
"token_id": "94",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "RISE: JEYRAM",
"description": "No one is coming to save you This echoes in my mind when I am up against challenges that push me to my limits. It's a reminder that the only path to improving your life is taking responsibility for it. Take the weight of your world on your shoulders and tie yourself to it.",
"image": "https://i.seadn.io/s/raw/files/1670074f1c5c08cd353d6122dccf611f.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/JlPSPzBxDcx9OCOHCzWLryL0YApsLcOEa4eLIMpbe4Y",
"created_at": " ",
"date": "2023-10-16T06:45:03.272544",
"blockchain": "ethereum",
"price": 3.19
},
{
"token_id": "93",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE HEADMASTER: DES LUCRÉCE",
"description": "Des Lucréce, Digital, 2023",
"image": "https://i.seadn.io/s/raw/files/b834c7e40ef3d4dc41914ef90de849a4.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/ArpVzJw3Sq7Wt3rklSOkUVkX-BEJJDV-annCZH5DFDI",
"created_at": " ",
"date": "2023-11-07T13:23:09.133765",
"blockchain": "ethereum",
"price": 6.115
},
{
"token_id": "92",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "TAKE ME TO THAT PLACE: EFDOT",
"description": "Will you take me to that place? \nOne where we won't go for forever, \nbut long enough to find a new piece of ourselves.\n\nDigital Drawing by Efdot, 2023",
"image": "https://i.seadn.io/s/raw/files/cedec465f6c2f468e128f877485aea97.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/Kqj7w72ZV0hkm9kRaBvV3nVWc7RLhFRMVZ90Wd54dHo",
"created_at": " ",
"date": "2023-10-21T16:50:53.109154",
"blockchain": "ethereum",
"price": 4.025
},
{
"token_id": "91",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "BLOWBACK: XSULLO",
"description": "Colors clash and burn, \nBlowback's vivid, vibrant hue, \nStrength blooms from within.",
"image": "https://i.seadn.io/s/raw/files/a70d0ce4c458ce48b473b8db0467d9b9.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/iYt6T740jpn8M2rE9SlNAc2QXpfHEnTa_qZkNtoryqs",
"created_at": " ",
"date": "2023-11-06T21:35:14.995187",
"blockchain": "ethereum",
"price": 3.025
},
{
"token_id": "90",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "LONELY NITES: OSF",
"description": "stop",
"image": "https://i.seadn.io/s/raw/files/410932d0e60ed3e35b4a801ec25da7a7.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/c7spuPbHOiwlONeVevXg21YQG5fnR2xHvRdGnVuEYfo",
"created_at": " ",
"date": "2023-11-05T02:10:28.828034",
"blockchain": "ethereum",
"price": 1.025
},
{
"token_id": "89",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE FAMILY: TERRELL JONES",
"description": "The Family is a portrait of the infamous Deville Crime Family. They are a group willing to do evil deeds to gain money and power.",
"image": "https://i.seadn.io/s/raw/files/6025a63b38ae1fe826604e1f55cc6849.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/EwQJoLAcCYV2Z97-QoYCQ5YBBegkmtGCbDTpv6bjyyQ",
"created_at": " ",
"date": "2023-11-05T13:47:15.936024",
"blockchain": "ethereum",
"price": 5.125
},
{
"token_id": "88",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "LOS ANGELES CALL CENTER: NICOLAS BETS",
"description": "'The genesis of the \" LA Crazy bathroom \" collection comes from a trip I made to LA several years ago. I went for a walk on the \"\"Strip\"\" on Sunset Blvd. The history of the club \"\"Whisky à GOGO\"\" where the DOORS often performed in the 70's, as well as the club \"\"The LondonFog\"\" and many others struck me. The places were invaded by all of the Rockstart. This story trotted in my head for a long time and a collection was born. I created an imaginary bathroom in the backstage of these clubs, with the atmosphere of the seventies. LOS ANGELES CALL CENTER is one of the series.' - Nicolas Bets",
"image": "https://i.seadn.io/s/raw/files/cd6f9be101abbec392538ed4a3014f83.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/MhlcZbvG0KdTDIQdoY7wPkJTX8Pj8StDfc415EAXGiI",
"created_at": " ",
"date": "2023-09-01T11:42:03.400724",
"blockchain": "ethereum",
"price": 5.125
},
{
"token_id": "87",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "SWATCH: RICH CALDWELL",
"description": "Artwork approved by Grifter Six Labs 8/15/23",
"image": "https://i.seadn.io/s/raw/files/2743df9034cb35fa51ff8c954a988403.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/DUDj4XP187CdR8Q1dUoqupAjLsgcHllB7t1ZjXjhCLM",
"created_at": " ",
"date": "2023-10-06T04:16:54.613114",
"blockchain": "ethereum",
"price": 5.125
},
{
"token_id": "86",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "SHADOW WORK: ADHD",
"description": "seeking hidden truths within the umbra of self | digital painting + mixed media | 2023",
"image": "https://i.seadn.io/s/raw/files/517d6a4d43b0af19fff174bd85c68ec3.png?w=500&auto=format",
"metadata_url": "https://arweave.net/abB4a2CHerPB1PpYOGGK81YFhu34dLHaiRT-exAXQyo",
"created_at": " ",
"date": "2023-08-12T16:29:42.885914",
"blockchain": "ethereum",
"price": 3.125
},
{
"token_id": "85",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "HIBEARNATION: DAVEHIMSELF",
"description": "Artwork approved by Grifter Six Labs 8/8/23",
"image": "https://i.seadn.io/s/raw/files/964f5e7bb1977ea324aebffc871faaed.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/CMQ2T3da9AXeuV1xo192fRuiTxTo-lz582yNpx1agmo",
"created_at": " ",
"date": "2023-10-16T06:45:03.202599",
"blockchain": "ethereum",
"price": 3.125
},
{
"token_id": "84",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE ANGEL OF ALCHEMY: EVA ELLER",
"description": "Pray to the Angel of Alchemy and increase your chances of success. The Angel of Alchemy is a symbol of divine inspiration and guidance during the alchemical process. This angelic figure is believed to assist alchemists in their pursuit of higher knowledge and spiritual enlightenment through the transmutation of matter and the self. His presence is predominantly felt on Tuesday. Digital artwork by Eva Eller 2023",
"image": "https://i.seadn.io/s/raw/files/7ccca765fed63ebc40d17f8710497df1.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/tNOpiMSrb8APAW4Y4ZsdPmNUB9IyTFqcnpu33YiK6YQ",
"created_at": " ",
"date": "2023-08-04T16:45:40.928678",
"blockchain": "ethereum",
"price": 0.1125
},
{
"token_id": "83",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "GRAVITY: TIMMBOSLICE",
"description": "Defying Gravity's Bonds: Behold the enormous power and grace of a whale as it breaches the waters surface before returning to the deep embrace of the ocean.",
"image": "https://i.seadn.io/s/raw/files/9800d3ae305c68bceb7b1fc2fb2262f3.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/Jikrthp8o4pDy2x_vvAFJ25QMFglLe-eNNGmrgVFZso",
"created_at": " ",
"date": "2023-10-16T04:10:26.952193",
"blockchain": "ethereum",
"price": 0.1125
},
{
"token_id": "82",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "HARVEST: DYLAN WADE",
"description": "Artwork approved by Grifter Six Labs 7/27/23",
"image": "https://i.seadn.io/s/raw/files/1a86ced09b2b1634dfd781f7a5b43289.png?w=500&auto=format",
"metadata_url": "https://arweave.net/1QmdxsZGBmmgLhR2RZOxV7aDbuHmjI8Ee894EovManE",
"created_at": " ",
"date": "2023-09-30T16:52:29.458778",
"blockchain": "ethereum",
"price": 0.725
},
{
"token_id": "81",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "WHISPERS IN BLUE: GEORGE BENJAMIN",
"description": "The Freedom to Conserve: An Introduction. Are you the Protector, the Custodian, or the Destroyer?",
"image": "https://i.seadn.io/s/raw/files/1078dfa0fdca8c3947ffb4b759c8a40a.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/TDkXRlkDArC32w6WabOvwbJRkp5ft44esRVeDqwKt7I",
"created_at": " ",
"date": "2023-10-15T21:31:31.267599",
"blockchain": "ethereum",
"price": 0.725
},
{
"token_id": "80",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "TIME: MATT SZCZUR",
"description": "The most valuable asset we have is our time. Choose it and use it wisely.",
"image": "https://i.seadn.io/s/raw/files/ed72df6bf3e2db0df6c6b8c7600b9407.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/F8lg6Katto1CX85geW3xfT9Xq4nKg3RogM7IukV41a4",
"created_at": " ",
"date": "2023-09-27T03:23:57.416405",
"blockchain": "ethereum",
"price": 0.625
},
{
"token_id": "79",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "BULLETPROOF: JAK",
"description": "💥💥💥",
"image": "https://i.seadn.io/s/raw/files/9febd5a97d4fd78dd5b3f2e36df76ba4.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/E6-HTu4V3nA8_TBRlzfZR1KYBEkCfae1nyvm5_m-9ug",
"created_at": " ",
"date": "2023-08-24T21:56:47.845038",
"blockchain": "ethereum",
"price": 0.625
},
{
"token_id": "78",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "NXBLE: GXNGYXNG",
"description": "A hand-drawn piece by Ghxsts artist GxngYxng",
"image": "https://i.seadn.io/s/raw/files/57645d67523c82275172f446a6ec6d82.png?w=500&auto=format",
"metadata_url": "https://arweave.net/4qKkUI7pmdigHq4eGT_ysrhtneBrNldVPQiG_BxCWHI",
"created_at": " ",
"date": "2023-10-25T02:34:17.813384",
"blockchain": "ethereum",
"price": 0.6525
},
{
"token_id": "77",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "AFTERLIFE: ADEWALE MAYOWA",
"description": "\"As the silcon based hive mind propagates itself across the entire surface of the planet, Perion-5 is slowly transformed from a desert wasteland into some kind of celestial paradise. The planet itself has started to come alive as a symbiotic relationship is formed between the terrestial body and the new inhabitants forced onto its surface. Since we banished them from our lands, our planet has continued to deteriorate while the barren wasteland they now call home has gone through a transformative metamorphosis. Maybe we were wrong about them. Perhaps they contain more of a soul than we do trapped in these husks of flesh and bone. Sadly, they took with them the technology that allowed people upload their consciousness into the mainframe; the Transcendence as it is now called. To become a part of their celestial chorus would require traversing the 250 light years that separate us; a journey reminiscent of a slow death but many are willing still to journey into this... afterlife *The second installment of an ongoing philisophical exploration of disembodied consciousness.\"",
"image": "https://i.seadn.io/s/raw/files/f1b173d0f648a5a2cbd92872c3ea480b.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/Lb34psrO29-HKDIL50LuOOiHNkDYFqooKL0Rb6PBBoQ",
"created_at": " ",
"date": "2023-11-08T03:58:54.929512",
"blockchain": "ethereum",
"price": 0.6525
},
{
"token_id": "76",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "AGAINST//: FVCKRENDER",
"description": "AGAINST// Is A Celebration of Perseverance Despite Constant Opposition",
"image": "https://i.seadn.io/s/raw/files/1449abeaf26d313835dd845d7f39e0c7.png?w=500&auto=format",
"metadata_url": "https://arweave.net/uLi6CTHQpszaC5LvADdTl0p0Wd_1R_fg_ERN3LppMgQ",
"created_at": " ",
"date": "2023-10-31T18:06:16.703648",
"blockchain": "ethereum",
"price": 0.3525
},
{
"token_id": "75",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE VAULT: SYNCCREATION",
"description": "Artwork approved by Grifter Six Labs 7/6/23",
"image": "https://i.seadn.io/s/raw/files/244764d85c5f42708ea2c7fafa5b6c39.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/0bwdWNk5a-4uWjxRNyYEesLRON7QptmRd7rYTNKHK3w",
"created_at": " ",
"date": "2023-09-12T11:02:27.100103",
"blockchain": "ethereum",
"price": 2.0525
},
{
"token_id": "74",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "FLAMINGO HOUSE: LAVAAGANG",
"description": "Artwork approved by Grifter Six Labs 7/4/23",
"image": "https://i.seadn.io/s/raw/files/f625fc4134739a1643b6af0d3296a6ec.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/q5Quw_2lSx7oR9G1_5VjYz4L-yo7Jnf90slk3xczqo0",
"created_at": " ",
"date": "2023-11-02T21:27:07.930842",
"blockchain": "ethereum",
"price": 2.0525
},
{
"token_id": "73",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "ALL WALKS OF LIFE: BILLY DINH",
"description": "\"Photographed in one of the most populated parts of New York City, this area sees hundreds of thousands of foot traffic on any given day. The people who walk these streets, whether living here or visiting, originate from all different backgrounds and places.\n\n\"All Walks of Life\"\" celebrates the diversity and uniqueness of not just everyone out and about in New York City on any given day but from all over the world. It’s about accepting and being open to the many cultures, races, genders, orientations, religious views, age, and everything else that makes us special. It’s learning to live with and appreciate ourselves and one another regardless of these differences. One of the best parts about photography for me is getting to see and document this melting pot of cultures and different way of life on a daily basis without having to leave my home.",
"image": "https://i.seadn.io/s/raw/files/a38d311a4f3001a322125a84a7d317d7.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/G3UghBkDLxRpnXJwTRVCltSz0K9HnVu2L-vGYBLFgp4",
"created_at": " ",
"date": "2023-09-04T11:43:52.505459",
"blockchain": "ethereum",
"price": 3.30525
},
{
"token_id": "72",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "ON THE EGDE OF FREEDOM: ONTHEROOFS",
"description": "40 floors to go, walking confidently through the cacophony, dressed up fancily, anyone who attempts to question us we simply ramble on in English, Swedish and Ukrainian while keeping it moving. Reaching the top floor, there is no way for us to access the roof. Searching, we find a small hole high up in the ceiling, barely the size of our bodies. We manage to climb through it, removing clothes to fit. On the roof we free climb another 30 meters to finally we stand on the edge of the tallest roof in Mexico and whole South America.",
"image": "https://i.seadn.io/s/raw/files/1e75213baf6982c5c7b36d99bc764370.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/q_wAzRcnYbwdkwlLaTyQOytcDv2ij8MeD8_xoIh2ytU",
"created_at": " ",
"date": "2023-11-09T02:28:16.908057",
"blockchain": "ethereum",
"price": 3.30525
},
{
"token_id": "71",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "DARK HOUR: JEREMY BOOTH",
"description": "In a moment of darkness we most hold near what is rightfully ours.",
"image": "https://i.seadn.io/s/raw/files/ee346765a40b35a17cf341ff310949be.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/fIc7KSo5jtHxbtDcMOwr7jILf_cR0kE1fM-VjZ5Lnj4",
"created_at": " ",
"date": "2023-10-16T06:45:03.508791",
"blockchain": "ethereum",
"price": 3.1925
},
{
"token_id": "70",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "COURAGE: DON MARQVEZ",
"description": "It takes a lot of courage to decide not to remain in the world of those who don't dream. Embrace uncertainty and listen to ourselves. There it all begins, there you begin to live.",
"image": "https://i.seadn.io/s/raw/files/c728d593719810d321827e897a8385b7.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/eo-61LRaQg5uIFqyqVaf_Op_icRhugHRbr0bYIpfn1E",
"created_at": " ",
"date": "2023-11-08T04:24:31.378741",
"blockchain": "ethereum",
"price": 3.1925
},
{
"token_id": "69",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "PEPE SUNSHOWER: ELISPRI",
"description": "Artwork approved by Grifter Six Labs 6/20/23",
"image": "https://i.seadn.io/s/raw/files/6a565ff1e347e752926796b578cef013.png?w=500&auto=format",
"metadata_url": "https://arweave.net/Y8YKojDE6VHBjRtorMmmJUuoshLG92k3qt_EEXZ49fc",
"created_at": " ",
"date": "2023-08-15T02:55:19.588691",
"blockchain": "ethereum",
"price": 0.1001
},
{
"token_id": "68",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "CONTEMPLATING DEATH: MUHJU",
"description": "Contemplating Death\" is a thought-provoking and visually enthralling artwork that delves into the enigmatic nature of life, death, and the eternal cycle of existence. The piece features an angel, sitting atop an ornately decorated Greek temple. The angel's foot is dipped into the vast cosmic expanse, which remains constant in the background. The observer witnesses the angel's transformation from a pure white form into a striking black silhouette, representing its fusion with the universe. This metamorphosis occurs in cycles, with the angel reverting to its white form, symbolizing rebirth and renewal. The angel's appearance changes according to the time of day, with its white form appearing during daylight hours and its dark form emerging at night.",
"image": "https://i.seadn.io/s/raw/files/44caa64ce9cd796da53406512dae2dcd.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/74qoSTR1exjX3nYiv56MctSKvKl_I4LxJR8uWRvj6n0",
"created_at": " ",
"date": "2023-07-02T00:03:39.617774",
"blockchain": "ethereum",
"price": 0.4001
},
{
"token_id": "67",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "SIDE AFFECT: PIA",
"description": "Artwork explores the transformative power of technology on our perception and experience of the worlds we are creating parallel to each other. It dives into the concepts between the side effect and the profound impact of the digital realm on our lives as almost like a jump we make it serves as a visual representation of the leap when we immerse ourselves in the digital world, showcasing the convergence of the physical and virtual realities we are keeping on creating",
"image": "https://i.seadn.io/s/raw/files/e49012cc2a331522bf3c051cb009acf4.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/aTvmUTw16rGX94wa-AISGi05riyRHKB82Ij2pIOZDzo",
"created_at": " ",
"date": "2023-11-02T18:25:05.987016",
"blockchain": "ethereum",
"price": 1.1001
},
{
"token_id": "66",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "DINO'S CLOCK: MIGRATING LINES",
"description": "As you step into the world of Dino, you are struck by the realization of time's inevitability. The sky is a deep shade of red, reminding you of the fleeting nature of life. In the center of the world stands the dream machine, a mysterious device that seems to operate on a different timeline altogether. Its gears and mechanisms constantly in motion, remind you of the unstoppable passage of time. Dino, the protagonist of this world, stands before the dream machine, fixated on its power to bring his aspirations and dreams to life. He is keenly aware of the limited time available to him and determined to make every moment count. As you look around the world, you notice the creatures that surround Dino. Each one working diligently to bring his vision to life, with an acute awareness of the preciousness of time. The dream machine is the key to unlocking the limitless possibilities of the future, even as time passes irreversibly. It symbolizes the importance of making every moment count, of cherishing each opportunity to create and inspire. As you explore this world, you feel inspired to seize the moment, to make the most of the time you have, and to use it to create something remarkable.",
"image": "https://i.seadn.io/s/raw/files/a9488306a8d081066afbf29902780da1.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/w1gBQQJm_1E0oSqlFrH4quAV_Yor2bt06FHpRCrQxwg",
"created_at": " ",
"date": "2023-11-02T21:27:07.863673",
"blockchain": "ethereum",
"price": 1.1001
},
{
"token_id": "65",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "ALL IN: EMANUELE FERRARI",
"description": "Artwork approved by Grifter Six Labs 6/6/23",
"image": "https://i.seadn.io/s/raw/files/57fef61c6c49ddb6dd33f79b71cc6a38.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/YXUmTuepTQOChs4_NI4iefgWJ-G1c3x-htBtc9G1FsM",
"created_at": " ",
"date": "2023-10-31T18:34:45.017125",
"blockchain": "ethereum",
"price": 0.221
},
{
"token_id": "64",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "DON'T OPEN IT: ACK",
"description": "\"The doors you dare to swing wide or carefully close, they compose the intricate ballet of your fate\" Unknown",
"image": "https://i.seadn.io/s/raw/files/168208f33e03debe885485a0c6b68e1c.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/a44_7VSpJvRJNy8sfnysA8mDlSTrH9NBAUour6fQZRw",
"created_at": " ",
"date": "2023-11-07T15:08:55.720907",
"blockchain": "ethereum",
"price": 0.221
},
{
"token_id": "63",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE RED CLOUD: GELO",
"description": "“The Red Cloud” is inspired by my past project created in 2002. It’s a metaphor of Clouds in architecture form. “ The Red Cloud” depicts a symbol of Heaven, and the expression of the Will of Heaven, which will bring happiness and good luck for all.",
"image": "https://i.seadn.io/s/raw/files/e0d20de83226a13b434d38aed1136da4.png?w=500&auto=format",
"metadata_url": "https://arweave.net/hjD9IWimea_5LzhQpARKJJ85TqIVE4c_VkzozZteGG0",
"created_at": " ",
"date": "2023-10-16T08:45:18.549231",
"blockchain": "ethereum",
"price": 3.321
},
{
"token_id": "62",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "TOKYO, JAPAN: BRUNO URLI",
"description": "Artwork approved by Grifter Six Labs 5/30/23",
"image": "https://i.seadn.io/s/raw/files/3217eeeb29b5c0156f4b1d8ac56fd7a9.png?w=500&auto=format",
"metadata_url": "https://arweave.net/VJBF52TZ_DQp-TwFXusbcBu_z16MjNao-QpknWTVnog",
"created_at": " ",
"date": "2023-10-16T08:45:18.614267",
"blockchain": "ethereum",
"price": 3.031
},
{
"token_id": "61",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "MONTES RUBEI: MAE",
"description": "blushing mountains",
"image": "https://i.seadn.io/s/raw/files/6b5094a993709ab7dc75ea0bf8932f6d.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/QXxELH9vkhChZlkif4Uvrywo_DvVetKs8d0y6_w9Gxk",
"created_at": " ",
"date": "2023-09-06T19:14:41.401664",
"blockchain": "ethereum",
"price": 3.031
},
{
"token_id": "60",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "DIARY OF A MOONLIT MUSE: TIFFATRONN",
"description": "\"Diary of a Moonlit Muse\" is a tribute to the dance of self-discovery. It aims to honor the dynamic nature of identity and the many ways we perceive and present ourselves. It encourages viewers to embrace their own multifaceted selves, sparking a shared exploration of self-realization + a sense of acceptance to the things we cannot change. We are a vibrant tapestry of stories, each contributing to the complex narrative of our existence.",
"image": "https://i.seadn.io/s/raw/files/9fb325c5390d8ceea347a8315dfe32af.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/8aTyFrVzdftPDTwuP2W5HhOVm-XqDU_lZfE_ip6qnF8",
"created_at": " ",
"date": "2023-10-24T04:06:06.791110",
"blockchain": "ethereum",
"price": 2.031
},
{
"token_id": "59",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "NOISE EVERYWHERE: LUIS PONCE",
"description": "It's filling up my thoughts / 4212 x 5344 px · 24FPS · 96F",
"image": "https://i.seadn.io/s/raw/files/82cd47e516a25fecbb7319af74e85f0c.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/S2zByoLKLI93bjWcSxTjOU5ubFpPDvLThvjSGZJmVzI",
"created_at": " ",
"date": "2023-11-01T12:02:51.081487",
"blockchain": "ethereum",
"price": 1.041
},
{
"token_id": "58",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "TOUCH GRASS: POST WOOK",
"description": "This is your sign to go touch grass. Get outside; smell some flowers; hear a bird chirp; wave to your neighbor. Life is short, noise is shorter. Getting caught up in the little things will always feel so emotionally draining and important, but we find sanity when we zoom out. The world around us is far more colorful and beautiful than you might think.",
"image": "https://i.seadn.io/s/raw/files/55d464032916639cff051f383f7b6038.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/MFGaZS3s6zzsBDcfHLyzZgAHbmdDbaSyfUXHLEQJRPg",
"created_at": " ",
"date": "2023-09-06T09:27:07.704511",
"blockchain": "ethereum",
"price": 0.041
},
{
"token_id": "57",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "NOISELESS: JACK KAIDO",
"description": "Artwork approved by Grifter Six Labs 5/24/23",
"image": "https://i.seadn.io/s/raw/files/53f42414bd019601a108f97d75c89558.png?w=500&auto=format",
"metadata_url": "https://arweave.net/KBsjLiPaAp2BeiKIxZYMycgyAse6P3wIEk5HlNwxXY4",
"created_at": " ",
"date": "2023-08-19T07:55:55.423368",
"blockchain": "ethereum",
"price": 3.041
},
{
"token_id": "56",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "CNTRL: COWBOY KILLER",
"description": "a digitally composited photograph shot in downtown Chicago in late 2022",
"image": "https://i.seadn.io/s/raw/files/d19f577788fa187507f68b30f30e6323.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/PBn2Y3xOVlHIqyNyefkEgdzSMLFEbQK4UPxKzPv7EX0",
"created_at": " ",
"date": "2023-10-03T18:46:31.193243",
"blockchain": "ethereum",
"price": 2.051
},
{
"token_id": "55",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "RED MASK: LAURENT CASTELLANI",
"description": "\"For the past 2 years, I have been working on female beauty through portraits illustrating skin texture, focus with depth of field, grain and light. Red Mask is one of those memorable portraits that is part of this series. My work is to reveal above all the natural beauty of a woman without resorting to artifice, but for Red Mask I wanted to accentuate the almost \"\"supernatural\"\" strength of women, a bit like a wonder woman. The simplicity is mixed with the supernatural and sometimes this is done naturally by seizing the right moment, sometimes by adding an extra stroke as on Red Mask. More broadly, I'm constantly looking for that \"\"switch\"\" that makes the natural pass into the supernatural.\"",
"image": "https://i.seadn.io/s/raw/files/f8b3df203573ac5b68922765c1d704d0.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/pLa17BZdeygC0W7lwHI15a87sLgTxK--7sZ2enMSohY",
"created_at": " ",
"date": "2023-09-18T13:11:03.210256",
"blockchain": "ethereum",
"price": 2.051
},
{
"token_id": "54",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE ICHNEUMON WASP: MATT DOOGUE",
"description": "This macro photo of the ichneumon wasp captures its striking face and eyes in incredible detail. The wasp's head is perfectly centred in the frame, with its enormous green eyes taking up the majority of the space. The iridescent green colour of the eyes is stunning, reflecting the surrounding light and creating a mesmerising visual effect.\n\nThe ichneumon wasp is a type of parasitic wasp that belongs to the family Ichneumonidae. They are named after the ancient Greek word \"\"ichneumon,\"\" which means \"\"tracker\"\" or \"\"hunter.\"\" Ichneumon wasps are found all over the world, with over 100,000 species identified so far.\n\nThe adult ichneumon wasp does not harm humans or other animals; they primarily feed on nectar and pollen from flowers. However, the female ichneumon wasp has a unique and fascinating method of reproduction. She will search for a host insect, such as a caterpillar or beetle, and then use her ovipositor (a long, needle-like structure) to lay her eggs inside the host's body. Once the eggs hatch, the wasp larvae will feed on the host's tissues, eventually killing it.\n\nDespite their parasitic nature, ichneumon wasps are considered beneficial insects in many ecosystems. They can help to control pest populations by targeting insects that damage crops or other plants. In fact, some species of ichneumon wasps are specifically used as biological control agents in agriculture.\n\nIchneumon wasps have long been studied by scientists due to their intricate life cycles and important ecological roles. They continue to fascinate and intrigue entomologists and nature enthusiasts alike.",
"image": "https://i.seadn.io/s/raw/files/1a6ad6c0655dd37adb378160e37467d2.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/3bXeNx2FgLTjc71O02BuYakTOHmI7A4x_Yq-s3EF5NY",
"created_at": " ",
"date": "2023-09-27T17:10:41.089657",
"blockchain": "ethereum",
"price": 2.051
},
{
"token_id": "53",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "RAT RACE: SINCLAIR",
"description": "Artwork approved by Grifter Six Labs 5/16/23",
"image": "https://i.seadn.io/s/raw/files/5567650908c7d9bb4913f19131c717dd.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/ZrQWY8wyHa1VXppu4S0DL6Q3WFPw2H8Klz8W3wHugj0",
"created_at": " ",
"date": "2023-11-07T18:42:52.390299",
"blockchain": "ethereum",
"price": 2.0651
},
{
"token_id": "52",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "AERIAL CAVITY: NEUROCOLOR",
"description": "The echo of a melody that lingers casts a void, resonating through our sternums. We become attuned to whispers of the unspeakable.",
"image": "https://i.seadn.io/s/raw/files/2619169ee9b40abc5a40cd264d260555.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/5kVpHaX3xhSVpzKYE4UXPi28ssu3YpsV0dYltKqvvyY",
"created_at": " ",
"date": "2023-09-29T13:35:07.041871",
"blockchain": "ethereum",
"price": 1.0651
},
{
"token_id": "51",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "A BUTTERFLY AND A WOMAN: LOVEBEING",
"description": "Footage shot at the art studio of artist and actor Raymond J. Barry, who is the subject of this work. .mp4 | 2023 __________________________ Accompanying poem from my collection of works TIMEZOO: One time I flew too close to the sun. Some people believe the sun is a portal to other dimensions and you have to fly right through it. I use sunscreen. I don’t mind getting burned, but it itches. I usually get a good tan. The sun is there even when there are clouds. But like clouds, the sun will one day be no longer. And like the seekers thirst for knowing and becoming, it is impermanent. The dimensions, all collapse upon themselves. The knowing and becoming leads to more knowing and becoming till there is nothing to know and nothing to become, or at least what is to know and what is to become is beyond knowing and becoming. Ya dig? So All the suns breathe out their fire till all desire to become one that is all known and all becometh is obliterated. Light works in mysterious ways. Love even more so. And what’s left to be said, or felt, or experienced well... It’s Not dark, not cold, not light, not warm, hey- not not any of those aspects either. Have at it. Not a here or there, not an I or an Other, but sure for a point of reference you gotta be somewhere. I get it. Though what’s being referred to .... oh man ... that’s a hoot. Owls. Love em. Their Intellect Imagination Haunts The Time Zoo. Peering Moon Eyes With Prophecy To The Prompt. Some may say it’s the start, some the end, maybe others go for an unknown between. Not those either. Unless you put 'em in a blender, Quantum Prana Paradox Processor, food that lasts a lifetime. No shelf life. No shelf. I mean self. Small S, big s, no S. Don’t stress. Essence. Nice fragrance. Whistle While You Work. Compare your lists, check off the boxes, read the articles, read the books, see the signs, the synchronicities, The simplicities, the strange familiar. Ha. Funny how this works when you try and break it all down. Beauty in that. Consider all the angles, all the possibilities, all the mechanics and variations of an unknowable knowing. Get to the root. Gotta get to the root. Shut the Fuck up. The root. The source. Hey man, You’ll be diggin for a long time, it will take you right on way down headlong through the sky feet first in all directions Christ hands outstretched deep underneath the cosmic sea in the belly of a whale, and it will burp you on out, shovel in hand, dirt in your face, right through the fucking sun. Another dimension. Little alteration to your timeline. You remember you tried this before? By all means go ahead if you want. Same thing expecting different results. It’s not to say don’t endeavor baby, don’t dream, and don’t play - do that. You’re just not gonna ever contain it in the way you want. It’s not gonna fit in a neat little package for you to digest. There will be gifts and lots of em. Here and now. The greatest Present. Perhaps the only one. Everything else is just icing on the cake and a sour face. If I were to write this as a book, there would be no letters, no pictures, not a single page to bind together - and if I tried to hand it to you, it would be far too heavy. For now the sun feels good. Shining down on me, in whatever solar system, whatever dimension, or planet, or form or experience I am in. I’m ok with that. I think that’s wonderful. Louis Armstrong wrote a song about it.",
"image": "https://i.seadn.io/s/raw/files/48396d89abbb0772036b1062bb120f77.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/-apxUskqy36Vn2r5fljdFLDCiekImB9q4ZBdQ1HkppA",
"created_at": " ",
"date": "2023-10-29T00:26:32.439290",
"blockchain": "ethereum",
"price": 2.0651
},
{
"token_id": "50",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "MAELSTRÖM: CLÉMENT MORIN",
"description": "Artwork approved by Grifter Six Labs 5/4/23",
"image": "https://i.seadn.io/s/raw/files/e31f6120f1ea6130a10c96424118f6a6.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/FPCM5EwZcBLvE1LnM8oGJ0bcm1NMeDdpPZyRbesXuas",
"created_at": " ",
"date": "2023-10-30T07:51:29.491081",
"blockchain": "ethereum",
"price": 4.0851
},
{
"token_id": "49",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "TURNING POINTS: KILLIAN MOORE",
"description": "Regardless of the path you choose, always commit yourself fully to your journey.",
"image": "https://i.seadn.io/s/raw/files/bffbd939c04fc0887155c780c0530c5a.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/cdRYzSB5n8zssJ5Cf59Mo38ZDrmCl7LYu7KDzimflX0",
"created_at": " ",
"date": "2023-09-23T08:58:15.387393",
"blockchain": "ethereum",
"price": 4.0851
},
{
"token_id": "48",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "THE APOSTLES: ERIC RUBENS",
"description": "Golden hour where the mountains meet the sea.",
"image": "https://i.seadn.io/s/raw/files/b4c08b7bd336724c15cc4ebf79bd3401.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/pU8qLDHiH45dj-_ndXMBU1cd1DOzbkZvpEDi6IYkO1c",
"created_at": " ",
"date": "2023-06-12T21:12:07.774764",
"blockchain": "ethereum",
"price": 1.0851
},
{
"token_id": "47",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "PSYCHONAUT: KILLER ACID",
"description": "I was thinking about the circuitous way in which weed has influenced my artwork through the years so I got super stoned and made a playful expression of the sheer joy I sometimes feel when I'm in my studio working on something new.",
"image": "https://i.seadn.io/s/raw/files/fac3f42a545c3d612e1ae48c87c9c824.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/zdX25yCt1lBCkqCIYb6kB-OabLo0huUwRhNNOBK9yZM",
"created_at": " ",
"date": "2023-09-29T13:36:17.191314",
"blockchain": "ethereum",
"price": 2.0851
},
{
"token_id": "46",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "PIECES OF ME: KellyMcD",
"description": "Artwork approved by Grifter Six Labs",
"image": "https://i.seadn.io/s/raw/files/7511edfddd6e38883520f47173422588.png?w=500&auto=format",
"metadata_url": "https://arweave.net/zefXXNhmD0JDkfpWXkShZHATL3vvunSvThWUP4xSaXg",
"created_at": " ",
"date": "2023-07-08T21:09:03.552908",
"blockchain": "ethereum",
"price": 3.0851
},
{
"token_id": "45",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "PURSUIT: WETPOTATOBRAIN",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/eebed60972ce47e9f48954df8d3f57ac.png?w=500&auto=format",
"metadata_url": "https://arweave.net/9gygr0XzofPycz0zGXWfT0rsVizEUzyVne0t_B_det8",
"created_at": " ",
"date": "2023-05-27T00:35:37.615450",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "44",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "ARTIFICIAL DREAMS: BRENDAN NORTH",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/2fd5c13eb19490f2456873dbb2141b8c.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/_NOUQ8nvHmLGNnoF_TbWNNmmCCiCkc2wT3onAnUKWc8",
"created_at": " ",
"date": "2023-11-08T04:24:31.459439",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "43",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "SUMMER DAYS: DRØMSJEL",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/c92b3d9d775011959ec8bc8f5b3391c3.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/SzBiGN4z7rc6zsqrs5DQo_BToE7QcvgneaK1-A4_CW0",
"created_at": " ",
"date": "2023-09-19T01:25:05.646166",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "42",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "FLOAT ON: BRYAN BRINKMAN",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/6e6799ee9cde10736f0897d5c350caea.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/hgVC7l1RObK9JRORmfoodU4bzBWS2YvthvtiDaGZ2VE",
"created_at": " ",
"date": "2023-11-02T21:27:08.074012",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "41",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "REFLECTION: MBSJQ",
"description": "Reflection in life is the process of looking back on our experiences, thoughts, and actions in order to gain insight and understanding. By taking the time to reflect, we can learn from our mistakes, identify areas for improvement, and appreciate our accomplishments. Reflection can help us make better decisions and live more intentionally, leading to a more fulfilling and meaningful life.",
"image": "https://i.seadn.io/s/raw/files/e0e892aa31ed8cef1c006f64814fa525.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/-dYkciNUh8cl8bbBQfaXzc6Kl1T5VJWPpec6jk5HA3I",
"created_at": " ",
"date": "2023-10-02T20:42:56.482505",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "40",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "FRAGMENT: RIPCACHE",
"description": "null",
"image": "https://i.seadn.io/s/raw/files/894cfd1392c068c28031ad661bbf5008.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/loGzTRL_MVdDiLBtdT19a9poTLz3H4sxIE5kEPtOWL4",
"created_at": " ",
"date": "2023-09-07T20:01:52.502336",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "39",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "SNOWFLAKE: NUDE YOGA GIRL",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/a034ba2fd3a295a7e75b2e6e38e46aa1.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/iiPgEsYduFfiZAjV8LlBJWtIAfFp1MTzqUBLkmzPwQg",
"created_at": " ",
"date": "2023-10-28T15:16:30.384102",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "38",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "INVESTOR: LASCAUX",
"description": "Free Arts NYC bake sale",
"image": "https://i.seadn.io/s/raw/files/607f2b8fd9b426321b90c6fe49aa72a4.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/_ysbmw_qKll4yNunVD5ife0uvx_mF7CecgvC2OPvzxQ",
"created_at": " ",
"date": "2023-10-16T06:45:03.127985",
"blockchain": "ethereum",
"price": 3.3051
},
{
"token_id": "37",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "RAW IS REAL: SKYGOLPE",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/s/raw/files/5dfda8bb882324b5f258ffd5922fde67.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/fh7J0nNdWn8WK1JOqNm_5GYhewySHGMtAf7sZWSJoQ8",
"created_at": " ",
"date": "2023-10-16T06:45:03.573858",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "36",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "FALÒ DELLE VANITÀ: C4RDINAL",
"description": "The piece was inspired by friar Girolamo Savonarola and his 'bonfire of the vanities' (\"FALÒ DELLE VANITÀ\") on Feb 7th, 1497. GS and his followers forced the burning of thousands of objects they said tempted sin - including plenty of art. He was excommunicated by the pope a few months later, and hung/burned to death in May 1498.",
"image": "https://i.seadn.io/s/raw/files/378fe82a3593e718c19ad7244e718abe.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/0jf_L42aZIWlw1UXna1so4_m4XNaeHPnLZabZ0KNdgE",
"created_at": " ",
"date": "2023-10-16T08:45:18.741466",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "35",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "CONQUERING MY FEARS: DANGIUZ",
"description": "My fears are the only thing that stand between me and my dreams",
"image": "https://i.seadn.io/s/raw/files/dbc1923d0c754214562dba135272c62e.jpg?w=500&auto=format",
"metadata_url": "https://arweave.net/BQO5CT0zG9OVCqOXVLhl958W-GagtU_Ix0x7JLDWquw",
"created_at": " ",
"date": "2023-10-20T07:19:43.040650",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "34",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "LET'S PLAY: DEEKAY",
"description": "Artwork approved by Grifter Six Labs.",
"image": "https://i.seadn.io/gcs/files/69601cc81f32faba56234e9b316a4019.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/9RyHsRH2GSm9-7igU5dNEQ3Q74QhltULbl5InFNdMIw",
"created_at": " ",
"date": "2023-11-05T18:44:56.284523",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "33",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "HERO'S UPGRADE: CHRIS BENCHETLER",
"description": "Q4 Upgrade for Noble Push PLay holders that completed challenge",
"image": "https://i.seadn.io/gcs/files/c47f4ec1ad01d400ae66832c6ef8f99c.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/rXvEVsKZtAx6KSssQjD8i-6b_MGd6l5dUxX3tMZvf8o",
"created_at": " ",
"date": "2023-06-20T10:25:28.539492",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "32",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",
"name": "STEADY: XCOPY",
"description": "It's an XCOPY 1/1 if you close your eyes and pretend 30+ other people also do not own this exact same art.",
"image": "https://i.seadn.io/gcs/files/8e3a4caa45d3079d8f16cfb4f0ac8bed.gif?w=500&auto=format",
"metadata_url": "https://arweave.net/Su3o2mYpkRu2ZWLtULIZObdV80v5hykM_Z1ThOLv64Y",
"created_at": " ",
"date": "2023-09-09T15:47:17.875308",
"blockchain": "ethereum",
"price": 0.1151
},
{
"token_id": "31",
"collection": "noble-gallery",
"address": "0x7e9b9ba1a3b4873279857056279cef6a4fcdf340",
"token_standard": "erc1155",