-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.json
4507 lines (4507 loc) · 201 KB
/
links.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
[
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2018/10/OSC-BMC-Oct-Tour-Poster-212x300.jpg",
"timestamp": "20220830200641",
"file_id": "wp-content/uploads/2018/10/OSC-BMC-Oct-Tour-Poster-212x300.jpg"
},
{
"file_url": "http://oresundspacecollective.com/live-in-tampere-2018/",
"timestamp": "20220605035118",
"file_id": "live-in-tampere-2018"
},
{
"file_url": "http://oresundspacecollective.com/october-tour-2022/",
"timestamp": "20220516130426",
"file_id": "october-tour-2022"
},
{
"file_url": "http://oresundspacecollective.com/oily-echoes-of-the-soul/",
"timestamp": "20220516130348",
"file_id": "oily-echoes-of-the-soul"
},
{
"file_url": "http://oresundspacecollective.com/session-163-melody-box-stockholm-se-10-24-18/",
"timestamp": "20220516130013",
"file_id": "session-163-melody-box-stockholm-se-10-24-18"
},
{
"file_url": "http://oresundspacecollective.com/session-181-london-uk-nov-23rd-2019/",
"timestamp": "20220516125858",
"file_id": "session-181-london-uk-nov-23rd-2019"
},
{
"file_url": "http://oresundspacecollective.com/osc-meets-bmc-freakout-in-the-fjord/",
"timestamp": "20220516125505",
"file_id": "osc-meets-bmc-freakout-in-the-fjord"
},
{
"file_url": "http://oresundspacecollective.com/session-144-reverence-festival-valada-portugal-sept-9th-2016/",
"timestamp": "20220516124532",
"file_id": "session-144-reverence-festival-valada-portugal-sept-9th-2016"
},
{
"file_url": "http://oresundspacecollective.com/session-181-fuzz-fest-esbjerg-dk-may-21st-2021/",
"timestamp": "20220516124135",
"file_id": "session-181-fuzz-fest-esbjerg-dk-may-21st-2021"
},
{
"file_url": "http://oresundspacecollective.com/398-2/",
"timestamp": "20220516123927",
"file_id": "398-2"
},
{
"file_url": "http://oresundspacecollective.com/session-166-vastavirta-tampere-finland-10-28-18/",
"timestamp": "20220516123644",
"file_id": "session-166-vastavirta-tampere-finland-10-28-18"
},
{
"file_url": "http://oresundspacecollective.com/session-183-plan-b-malmo-sweden-oct-7th-2021/",
"timestamp": "20220516123210",
"file_id": "session-183-plan-b-malmo-sweden-oct-7th-2021"
},
{
"file_url": "http://oresundspacecollective.com/kybalion-london-freakout-nov-22-23rd-2019/",
"timestamp": "20220516122924",
"file_id": "kybalion-london-freakout-nov-22-23rd-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-159-spaceboat-v-hamburg-de-26-05-18/",
"timestamp": "20220516122845",
"file_id": "session-159-spaceboat-v-hamburg-de-26-05-18"
},
{
"file_url": "http://oresundspacecollective.com/space-boat-vi-hamburg-may-24-25th-2018/",
"timestamp": "20220516122805",
"file_id": "space-boat-vi-hamburg-may-24-25th-2018"
},
{
"file_url": "http://oresundspacecollective.com/author/dr-space/",
"timestamp": "20220516122344",
"file_id": "author/dr-space"
},
{
"file_url": "http://oresundspacecollective.com/session-182-copenhagen-jazz-festival-july-10th-2021/",
"timestamp": "20220516122217",
"file_id": "session-182-copenhagen-jazz-festival-july-10th-2021"
},
{
"file_url": "http://oresundspacecollective.com/osc-relaxing-in-the-himalayas/",
"timestamp": "20220516121644",
"file_id": "osc-relaxing-in-the-himalayas"
},
{
"file_url": "http://oresundspacecollective.com/688-2/",
"timestamp": "20220516120507",
"file_id": "688-2"
},
{
"file_url": "http://oresundspacecollective.com/live-in-berlin-2018-2cd/",
"timestamp": "20220516120047",
"file_id": "live-in-berlin-2018-2cd"
},
{
"file_url": "http://oresundspacecollective.com/kybalion-iphone-app-ready/",
"timestamp": "20220516115449",
"file_id": "kybalion-iphone-app-ready"
},
{
"file_url": "http://oresundspacecollective.com/osc-liverpool-psych-fest-2021/",
"timestamp": "20220516114029",
"file_id": "osc-liverpool-psych-fest-2021"
},
{
"file_url": "http://oresundspacecollective.com/session-158/",
"timestamp": "20220516113657",
"file_id": "session-158"
},
{
"file_url": "http://oresundspacecollective.com/session-145-black-tornado-studios-cph-dk-nov-4-6th-2016%EF%BB%BF/",
"timestamp": "20220516113611",
"file_id": "session-145-black-tornado-studios-cph-dk-nov-4-6th-2016"
},
{
"file_url": "http://oresundspacecollective.com/392-2/",
"timestamp": "20220516113526",
"file_id": "392-2"
},
{
"file_url": "http://oresundspacecollective.com/84/",
"timestamp": "20220516113235",
"file_id": "84"
},
{
"file_url": "http://oresundspacecollective.com/thanks/",
"timestamp": "20220516113104",
"file_id": "thanks"
},
{
"file_url": "http://oresundspacecollective.com/chatoyant-breath/",
"timestamp": "20220516112647",
"file_id": "chatoyant-breath"
},
{
"file_url": "http://oresundspacecollective.com/experiments-in-the-subconscious/",
"timestamp": "20220516110911",
"file_id": "experiments-in-the-subconscious"
},
{
"file_url": "http://oresundspacecollective.com/painting-by-hawk-alfredson/",
"timestamp": "20220516110123",
"file_id": "painting-by-hawk-alfredson"
},
{
"file_url": "http://oresundspacecollective.com/kybalion/",
"timestamp": "20220516105829",
"file_id": "kybalion"
},
{
"file_url": "http://oresundspacecollective.com/may-tour-2018/",
"timestamp": "20220516105725",
"file_id": "may-tour-2018"
},
{
"file_url": "http://oresundspacecollective.com/677-2/",
"timestamp": "20220516105452",
"file_id": "677-2"
},
{
"file_url": "http://oresundspacecollective.com/",
"timestamp": "20220506143915",
"file_id": ""
},
{
"file_url": "http://oresundspacecollective.com/category/sessions/",
"timestamp": "20220429155527",
"file_id": "category/sessions"
},
{
"file_url": "http://oresundspacecollective.com/muito-obrigado-portugal/",
"timestamp": "20220429155510",
"file_id": "muito-obrigado-portugal"
},
{
"file_url": "http://oresundspacecollective.com/osc-newsletter-summer-2018/",
"timestamp": "20220429155457",
"file_id": "osc-newsletter-summer-2018"
},
{
"file_url": "http://oresundspacecollective.com/category/news/",
"timestamp": "20220429155456",
"file_id": "category/news"
},
{
"file_url": "http://oresundspacecollective.com/category/discography/",
"timestamp": "20220428234912",
"file_id": "category/discography"
},
{
"file_url": "http://oresundspacecollective.com/page/2/",
"timestamp": "20220428234819",
"file_id": "page/2"
},
{
"file_url": "http://oresundspacecollective.com/what-is-happening-in-2022/",
"timestamp": "20220428234818",
"file_id": "what-is-happening-in-2022"
},
{
"file_url": "http://oresundspacecollective.com/session-185-musikhuset-helsingor-denmark-oct-9th-2021/",
"timestamp": "20220419100047",
"file_id": "session-185-musikhuset-helsingor-denmark-oct-9th-2021"
},
{
"file_url": "http://oresundspacecollective.com/542-2/",
"timestamp": "20220419100012",
"file_id": "542-2"
},
{
"file_url": "http://oresundspacecollective.com/session-184-hostsabbat-oslo-sweden-oct-9th-2021/",
"timestamp": "20220419100000",
"file_id": "session-184-hostsabbat-oslo-sweden-oct-9th-2021"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/12/Zion-final-cover-385x257.jpeg",
"timestamp": "20220417162612",
"file_id": "wp-content/uploads/2021/12/Zion-final-cover-385x257.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-includes/js/jquery/jquery-migrate.min.js",
"timestamp": "20220417161512",
"file_id": "wp-includes/js/jquery/jquery-migrate.min.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-includes/js/wp-embed.min.js",
"timestamp": "20220417161434",
"file_id": "wp-includes/js/wp-embed.min.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/themes/rock-star/js/scrollup.min.js",
"timestamp": "20220417161434",
"file_id": "wp-content/themes/rock-star/js/scrollup.min.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-includes/js/jquery/jquery.js",
"timestamp": "20220417161432",
"file_id": "wp-includes/js/jquery/jquery.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/themes/rock-star/css/genericons/genericons.css",
"timestamp": "20220417161429",
"file_id": "wp-content/themes/rock-star/css/genericons/genericons.css"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/05/OSc-Fuzz-Fest-3-385x257.jpeg",
"timestamp": "20220417161428",
"file_id": "wp-content/uploads/2021/05/OSc-Fuzz-Fest-3-385x257.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/themes/rock-star/js/navigation.min.js",
"timestamp": "20220417161428",
"file_id": "wp-content/themes/rock-star/js/navigation.min.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/themes/rock-star/js/fitvids.min.js",
"timestamp": "20220417161425",
"file_id": "wp-content/themes/rock-star/js/fitvids.min.js"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/09/OSCREDREAR-385x257.jpg",
"timestamp": "20220417161420",
"file_id": "wp-content/uploads/2021/09/OSCREDREAR-385x257.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/themes/rock-star/style.css",
"timestamp": "20220417161417",
"file_id": "wp-content/themes/rock-star/style.css"
},
{
"file_url": "http://oresundspacecollective.com/822-2/",
"timestamp": "20220416015409",
"file_id": "822-2"
},
{
"file_url": "http://oresundspacecollective.com/universal-travels/",
"timestamp": "20220416015357",
"file_id": "universal-travels"
},
{
"file_url": "http://oresundspacecollective.com/comments/feed/",
"timestamp": "20220416015351",
"file_id": "comments/feed"
},
{
"file_url": "http://oresundspacecollective.com/kybalion-is-coming/",
"timestamp": "20220416015344",
"file_id": "kybalion-is-coming"
},
{
"file_url": "http://oresundspacecollective.com/december-newsletter-2018/",
"timestamp": "20220405152605",
"file_id": "december-newsletter-2018"
},
{
"file_url": "http://oresundspacecollective.com/1359-2/",
"timestamp": "20220405152551",
"file_id": "1359-2"
},
{
"file_url": "http://oresundspacecollective.com/449-2/",
"timestamp": "20220405152546",
"file_id": "449-2"
},
{
"file_url": "http://oresundspacecollective.com/feed/",
"timestamp": "20220322210750",
"file_id": "feed"
},
{
"file_url": "http://oresundspacecollective.com/robots.txt",
"timestamp": "20220317171219",
"file_id": "robots.txt"
},
{
"file_url": "http://oresundspacecollective.com/concerts/",
"timestamp": "20220308225631",
"file_id": "concerts"
},
{
"file_url": "http://oresundspacecollective.com/category/sessions/feed/",
"timestamp": "20220214091603",
"file_id": "category/sessions/feed"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/Wow.-420x280.jpeg",
"timestamp": "20220214091509",
"file_id": "wp-content/uploads/2021/10/Wow.-420x280.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/category/news/feed/",
"timestamp": "20220214085835",
"file_id": "category/news/feed"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/12/Zion-final-cover-420x280.jpeg",
"timestamp": "20220214085834",
"file_id": "wp-content/uploads/2021/12/Zion-final-cover-420x280.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0022_07.10.2021-1024x680.jpg",
"timestamp": "20220214085832",
"file_id": "wp-content/uploads/2021/10/OSC_0022_07.10.2021-1024x680.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0078_8th-Oct.-2021-680x1024.jpg",
"timestamp": "20220214085450",
"file_id": "wp-content/uploads/2021/10/OSC_0078_8th-Oct.-2021-680x1024.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/Wow..jpeg",
"timestamp": "20220214085446",
"file_id": "wp-content/uploads/2021/10/Wow..jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0023_07.10.2021-1-420x280.jpg",
"timestamp": "20220214085200",
"file_id": "wp-content/uploads/2021/10/OSC_0023_07.10.2021-1-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/12/Zion-final-cover-1024x1024.jpeg",
"timestamp": "20220214085141",
"file_id": "wp-content/uploads/2021/12/Zion-final-cover-1024x1024.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fwhat-is-happening-in-2022%2F",
"timestamp": "20220214085140",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/what-is-happening-in-2022/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fwhat-is-happening-in-2022%2F&format=xml",
"timestamp": "20220214085140",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/what-is-happening-in-2022/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-185-musikhuset-helsingor-denmark-oct-9th-2021%2F&format=xml",
"timestamp": "20220214084749",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-185-musikhuset-helsingor-denmark-oct-9th-2021/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fosc-relaxing-in-the-himalayas%2F",
"timestamp": "20220214084736",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/osc-relaxing-in-the-himalayas/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0010_07.10.2021-1024x680.jpg",
"timestamp": "20220214084626",
"file_id": "wp-content/uploads/2021/10/OSC_0010_07.10.2021-1024x680.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-183-plan-b-malmo-sweden-oct-7th-2021%2F&format=xml",
"timestamp": "20220214084624",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-183-plan-b-malmo-sweden-oct-7th-2021/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/category/discography/feed/",
"timestamp": "20220214084608",
"file_id": "category/discography/feed"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/09/OSCREDREAR-979x1024.jpg",
"timestamp": "20220214081841",
"file_id": "wp-content/uploads/2021/09/OSCREDREAR-979x1024.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Foctober-tour-2022%2F",
"timestamp": "20220214081838",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/october-tour-2022/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/09/OSCREDREAR-420x280.jpg",
"timestamp": "20220214081834",
"file_id": "wp-content/uploads/2021/09/OSCREDREAR-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Foctober-tour-2022%2F&format=xml",
"timestamp": "20220214081833",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/october-tour-2022/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-183-plan-b-malmo-sweden-oct-7th-2021%2F",
"timestamp": "20220214081828",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-183-plan-b-malmo-sweden-oct-7th-2021/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0023_07.10.2021-1024x680.jpg",
"timestamp": "20220214081826",
"file_id": "wp-content/uploads/2021/10/OSC_0023_07.10.2021-1024x680.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fosc-relaxing-in-the-himalayas%2F&format=xml",
"timestamp": "20220214081823",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/osc-relaxing-in-the-himalayas/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-185-musikhuset-helsingor-denmark-oct-9th-2021%2F",
"timestamp": "20220214081810",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-185-musikhuset-helsingor-denmark-oct-9th-2021/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/09/Relaxing-Front-1024x1024.jpg",
"timestamp": "20220214081805",
"file_id": "wp-content/uploads/2021/09/Relaxing-Front-1024x1024.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0075_8th-Oct.-2021-1024x680.jpg",
"timestamp": "20220214081744",
"file_id": "wp-content/uploads/2021/10/OSC_0075_8th-Oct.-2021-1024x680.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-184-hostsabbat-oslo-sweden-oct-9th-2021%2F&format=xml",
"timestamp": "20220214081743",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-184-hostsabbat-oslo-sweden-oct-9th-2021/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0067_8th-Oct.-2021-1024x636.jpg",
"timestamp": "20220214081730",
"file_id": "wp-content/uploads/2021/10/OSC_0067_8th-Oct.-2021-1024x636.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-184-hostsabbat-oslo-sweden-oct-9th-2021%2F",
"timestamp": "20220214081729",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-184-hostsabbat-oslo-sweden-oct-9th-2021/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/10/OSC_0046_8th-Oct.-2021-1024x680.jpg",
"timestamp": "20220214081725",
"file_id": "wp-content/uploads/2021/10/OSC_0046_8th-Oct.-2021-1024x680.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/09/Relaxing-Front-420x280.jpg",
"timestamp": "20220214081719",
"file_id": "wp-content/uploads/2021/09/Relaxing-Front-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/biography-2/",
"timestamp": "20220214081705",
"file_id": "biography-2"
},
{
"file_url": "http://oresundspacecollective.com/news-oct-2020/",
"timestamp": "20220131085553",
"file_id": "news-oct-2020"
},
{
"file_url": "http://oresundspacecollective.com/category/news/page/2/",
"timestamp": "20220120023429",
"file_id": "category/news/page/2"
},
{
"file_url": "http://oresundspacecollective.com/its-all-about-delay-2cd/",
"timestamp": "20220120023036",
"file_id": "its-all-about-delay-2cd"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/spacejam173.pdf",
"timestamp": "20220120022936",
"file_id": "wp-content/uploads/2019/08/spacejam173.pdf"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/spacejam171.pdf",
"timestamp": "20220120022716",
"file_id": "wp-content/uploads/2019/08/spacejam171.pdf"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/spacejam173-back.pdf",
"timestamp": "20220120014901",
"file_id": "wp-content/uploads/2019/08/spacejam173-back.pdf"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/spacejam171-back.pdf",
"timestamp": "20220120014640",
"file_id": "wp-content/uploads/2019/08/spacejam171-back.pdf"
},
{
"file_url": "http://oresundspacecollective.com/session-175-anawalli-helsinki-finland-june-1st-2019/",
"timestamp": "20211204204724",
"file_id": "session-175-anawalli-helsinki-finland-june-1st-2019"
},
{
"file_url": "http://oresundspacecollective.com/vastavirta/",
"timestamp": "20211204202103",
"file_id": "vastavirta"
},
{
"file_url": "http://oresundspacecollective.com/session-174-fontaine-palace-leipaja-latvia-may-31st-2019/",
"timestamp": "20211204201954",
"file_id": "session-174-fontaine-palace-leipaja-latvia-may-31st-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-171-ostepol-dresden-de-may-27th-2019/",
"timestamp": "20211204200647",
"file_id": "session-171-ostepol-dresden-de-may-27th-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-170-urban-spree-berlin-de-may-26th-2019/",
"timestamp": "20211204200609",
"file_id": "session-170-urban-spree-berlin-de-may-26th-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-177-melody-box-stockholm-sweden-june-4th-2019/",
"timestamp": "20211204200532",
"file_id": "session-177-melody-box-stockholm-sweden-june-4th-2019"
},
{
"file_url": "http://oresundspacecollective.com/four-riders-take-space-mountain/",
"timestamp": "20211204200341",
"file_id": "four-riders-take-space-mountain"
},
{
"file_url": "http://oresundspacecollective.com/session-172-hydro-warsawa-poland-may-27th-2019/",
"timestamp": "20211204194938",
"file_id": "session-172-hydro-warsawa-poland-may-27th-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-169-spaceboat-vi-1-hamburg-de-may-25th-2019/",
"timestamp": "20211204194657",
"file_id": "session-169-spaceboat-vi-1-hamburg-de-may-25th-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-167-lygtens-kro-kobenhavn-may-23rd-2019/",
"timestamp": "20211204194328",
"file_id": "session-167-lygtens-kro-kobenhavn-may-23rd-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-176-vastavirta-tampere-finland-june-2nd-2019/",
"timestamp": "20211204193955",
"file_id": "session-176-vastavirta-tampere-finland-june-2nd-2019"
},
{
"file_url": "http://oresundspacecollective.com/live-in-liepaja-2019/",
"timestamp": "20211204192810",
"file_id": "live-in-liepaja-2019"
},
{
"file_url": "http://oresundspacecollective.com/session-173-fenix-bar-alytus-lithuania-may-30th-2019/",
"timestamp": "20211204192651",
"file_id": "session-173-fenix-bar-alytus-lithuania-may-30th-2019"
},
{
"file_url": "http://oresundspacecollective.com/category/sessions/page/2/",
"timestamp": "20211204191917",
"file_id": "category/sessions/page/2"
},
{
"file_url": "http://oresundspacecollective.com/session-168-spaceboat-vi-hamburg-de-may-24th-2019/",
"timestamp": "20211204185814",
"file_id": "session-168-spaceboat-vi-hamburg-de-may-24th-2019"
},
{
"file_url": "http://oresundspacecollective.com/live-in-trondheim/",
"timestamp": "20211025181412",
"file_id": "live-in-trondheim"
},
{
"file_url": "http://oresundspacecollective.com/osc-maat-lander-split-lp/",
"timestamp": "20211025181257",
"file_id": "osc-maat-lander-split-lp"
},
{
"file_url": "http://oresundspacecollective.com/session-180-london-uk-nov-22nd-2019/",
"timestamp": "20211025181019",
"file_id": "session-180-london-uk-nov-22nd-2019"
},
{
"file_url": "http://oresundspacecollective.com/ode-to-a-black-hole/",
"timestamp": "20211025175737",
"file_id": "ode-to-a-black-hole"
},
{
"file_url": "http://oresundspacecollective.com/category/discography/page/2/",
"timestamp": "20211025173323",
"file_id": "category/discography/page/2"
},
{
"file_url": "http://oresundspacecollective.com/out-into-space/",
"timestamp": "20211025172431",
"file_id": "out-into-space"
},
{
"file_url": "http://oresundspacecollective.com/session-179-woodstock-christiania-dk-nov-7th-2019/",
"timestamp": "20211025172143",
"file_id": "session-179-woodstock-christiania-dk-nov-7th-2019"
},
{
"file_url": "http://oresundspacecollective.com/visions-of/",
"timestamp": "20211025163053",
"file_id": "visions-of"
},
{
"file_url": "http://oresundspacecollective.com/hallucinations-inside-the-oracle/",
"timestamp": "20211025160820",
"file_id": "hallucinations-inside-the-oracle"
},
{
"file_url": "http://oresundspacecollective.com/session-165-kuudes-linja-helsinki-finland-10-27-18/",
"timestamp": "20211025155814",
"file_id": "session-165-kuudes-linja-helsinki-finland-10-27-18"
},
{
"file_url": "http://oresundspacecollective.com/session-164-reviiri-turku-finland-10-26-18/",
"timestamp": "20211025154347",
"file_id": "session-164-reviiri-turku-finland-10-26-18"
},
{
"file_url": "http://oresundspacecollective.com/wp-includes/js/wp-emoji-release.min.js?ver=5.1.10",
"timestamp": "20211012095708",
"file_id": "wp-includes/js/wp-emoji-release.min.js?ver=5.1.10"
},
{
"file_url": "http://oresundspacecollective.com/author/dr-space/page/2/",
"timestamp": "20210917200347",
"file_id": "author/dr-space/page/2"
},
{
"file_url": "http://oresundspacecollective.com/session-141-bern-switzerland-27th-may-2016/",
"timestamp": "20210917192716",
"file_id": "session-141-bern-switzerland-27th-may-2016"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/11/IMG_3524-300x225.jpg",
"timestamp": "20210730103235",
"file_id": "wp-content/uploads/2019/11/IMG_3524-300x225.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/11/IMG_3523-300x225.jpg",
"timestamp": "20210730103232",
"file_id": "wp-content/uploads/2019/11/IMG_3523-300x225.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/11/IMG_3521-300x225.jpg",
"timestamp": "20210730103225",
"file_id": "wp-content/uploads/2019/11/IMG_3521-300x225.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2020/06/Liverpool-Psych-2021.jpg",
"timestamp": "20210730103223",
"file_id": "wp-content/uploads/2020/06/Liverpool-Psych-2021.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-181-london-uk-nov-23rd-2019%2F",
"timestamp": "20210730103216",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-181-london-uk-nov-23rd-2019/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Ffour-riders-take-space-mountain%2F&format=xml",
"timestamp": "20210730103205",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/four-riders-take-space-mountain/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-182-copenhagen-jazz-festival-july-10th-2021%2F",
"timestamp": "20210730103159",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-182-copenhagen-jazz-festival-july-10th-2021/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fconcerts%2F&format=xml",
"timestamp": "20210730103155",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/concerts/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-182-copenhagen-jazz-festival-july-10th-2021%2F&format=xml",
"timestamp": "20210730103146",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-182-copenhagen-jazz-festival-july-10th-2021/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/11/IMG_3527-300x225.jpg",
"timestamp": "20210730103007",
"file_id": "wp-content/uploads/2019/11/IMG_3527-300x225.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fosc-liverpool-psych-fest-2021%2F&format=xml",
"timestamp": "20210730103005",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/osc-liverpool-psych-fest-2021/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/11/IMG_3528-300x225.jpg",
"timestamp": "20210730103005",
"file_id": "wp-content/uploads/2019/11/IMG_3528-300x225.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fsession-181-london-uk-nov-23rd-2019%2F&format=xml",
"timestamp": "20210730103003",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/session-181-london-uk-nov-23rd-2019/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2020/10/Fourriders-small-1024x1014.jpeg",
"timestamp": "20210730103003",
"file_id": "wp-content/uploads/2020/10/Fourriders-small-1024x1014.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/Band-Concert-Poster-Hall-of-Fame-176x300.jpg",
"timestamp": "20210730103002",
"file_id": "wp-content/uploads/2019/08/Band-Concert-Poster-Hall-of-Fame-176x300.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fosc-liverpool-psych-fest-2021%2F",
"timestamp": "20210730102959",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/osc-liverpool-psych-fest-2021/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Ffour-riders-take-space-mountain%2F",
"timestamp": "20210730102956",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/four-riders-take-space-mountain/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fconcerts%2F",
"timestamp": "20210730102925",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/concerts/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/07/%C3%98resund-Space-Collective-1-1024x536.jpg",
"timestamp": "20210730102915",
"file_id": "wp-content/uploads/2021/07/Øresund-Space-Collective-1-1024x536.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fnews-oct-2020%2F",
"timestamp": "20210730102913",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/news-oct-2020/"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fnews-oct-2020%2F&format=xml",
"timestamp": "20210730102911",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/news-oct-2020/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2F822-2%2F&format=xml",
"timestamp": "20210730102901",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/822-2/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Funiversal-travels%2F",
"timestamp": "20210730102857",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/universal-travels/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/0126ADC1-4DC2-4B99-8381-BAA68BC9B1ED_1_105_c-1024x768.jpeg",
"timestamp": "20210730102824",
"file_id": "wp-content/uploads/2021/03/0126ADC1-4DC2-4B99-8381-BAA68BC9B1ED_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/5BD452D6-DEB0-4FC8-BB17-91E4496732FC_1_105_c-1024x768.jpeg",
"timestamp": "20210730102818",
"file_id": "wp-content/uploads/2021/03/5BD452D6-DEB0-4FC8-BB17-91E4496732FC_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/4B05201C-0807-49B2-90D5-A37049AD69F4_1_105_c-1024x768.jpeg",
"timestamp": "20210730102758",
"file_id": "wp-content/uploads/2021/03/4B05201C-0807-49B2-90D5-A37049AD69F4_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/9B679C5D-BEAC-473B-8F43-732D353A1AE2_1_105_c-1024x768.jpeg",
"timestamp": "20210730102710",
"file_id": "wp-content/uploads/2021/03/9B679C5D-BEAC-473B-8F43-732D353A1AE2_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/6A1435FC-1974-4976-930B-C617DD782DFF_1_105_c-1024x768.jpeg",
"timestamp": "20210730102708",
"file_id": "wp-content/uploads/2021/03/6A1435FC-1974-4976-930B-C617DD782DFF_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/7223B175-5C1F-41AD-8F43-F9892126FBF3_1_105_c-1024x768.jpeg",
"timestamp": "20210730102649",
"file_id": "wp-content/uploads/2021/03/7223B175-5C1F-41AD-8F43-F9892126FBF3_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/5B344E09-B4F5-43E0-A42D-A42079D92030_1_105_c-1024x768.jpeg",
"timestamp": "20210730102629",
"file_id": "wp-content/uploads/2021/03/5B344E09-B4F5-43E0-A42D-A42079D92030_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/Subscriber-LP-cover-1006x1024.jpeg",
"timestamp": "20210730102623",
"file_id": "wp-content/uploads/2021/03/Subscriber-LP-cover-1006x1024.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/83AE965E-E56C-45FF-92BA-430CB7B1213D_1_105_c-1024x768.jpeg",
"timestamp": "20210730102608",
"file_id": "wp-content/uploads/2021/03/83AE965E-E56C-45FF-92BA-430CB7B1213D_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/2D040D26-1369-4429-9D87-ADD83854B266_1_105_c-1024x768.jpeg",
"timestamp": "20210730102606",
"file_id": "wp-content/uploads/2021/03/2D040D26-1369-4429-9D87-ADD83854B266_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/2B38EE5B-91DC-46EA-B9E5-DD88DB7A7606_1_105_c-1024x768.jpeg",
"timestamp": "20210730102604",
"file_id": "wp-content/uploads/2021/03/2B38EE5B-91DC-46EA-B9E5-DD88DB7A7606_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/A6B130C9-5CDE-470A-9ABB-594B746A912F_1_105_c-1024x768.jpeg",
"timestamp": "20210730102551",
"file_id": "wp-content/uploads/2021/03/A6B130C9-5CDE-470A-9ABB-594B746A912F_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/BD30703A-E674-4E61-9FEB-0AB456A7E332_1_105_c-1024x768.jpeg",
"timestamp": "20210730102524",
"file_id": "wp-content/uploads/2021/03/BD30703A-E674-4E61-9FEB-0AB456A7E332_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/9E70244B-2299-4CE4-81BE-5D0423717F0A_1_105_c-1024x768.jpeg",
"timestamp": "20210730102508",
"file_id": "wp-content/uploads/2021/03/9E70244B-2299-4CE4-81BE-5D0423717F0A_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/2E2AD392-C49E-4DAE-B314-FAC69979FB9F_1_105_c-1024x768.jpeg",
"timestamp": "20210730102503",
"file_id": "wp-content/uploads/2021/03/2E2AD392-C49E-4DAE-B314-FAC69979FB9F_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/962ACD33-C876-4BB1-88EF-004DDC9A853C_1_105_c-1024x768.jpeg",
"timestamp": "20210730102455",
"file_id": "wp-content/uploads/2021/03/962ACD33-C876-4BB1-88EF-004DDC9A853C_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fvastavirta%2F",
"timestamp": "20210730102411",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/vastavirta/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/OSC_8252_Sab-420x280.jpg",
"timestamp": "20210730102300",
"file_id": "wp-content/uploads/2019/08/OSC_8252_Sab-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/9B96E84C-F405-4259-94C2-4DC6A04CEB11_1_105_c-1024x768.jpeg",
"timestamp": "20210730102258",
"file_id": "wp-content/uploads/2021/03/9B96E84C-F405-4259-94C2-4DC6A04CEB11_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/0F5C3419-649A-43E4-B47E-014BC4F888E7_1_105_c-1024x768.jpeg",
"timestamp": "20210730102240",
"file_id": "wp-content/uploads/2021/03/0F5C3419-649A-43E4-B47E-014BC4F888E7_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/861A9238-A849-4B70-AFF1-DF3A5D79DBAC_1_105_c-1024x768.jpeg",
"timestamp": "20210730102220",
"file_id": "wp-content/uploads/2021/03/861A9238-A849-4B70-AFF1-DF3A5D79DBAC_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/Band-Concert-Poster-Hall-of-Fame-420x280.jpg",
"timestamp": "20210730102204",
"file_id": "wp-content/uploads/2019/08/Band-Concert-Poster-Hall-of-Fame-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/6FACAE9A-17BD-4F97-B55F-E9E304DB9B9F_1_105_c-1024x768.jpeg",
"timestamp": "20210730102152",
"file_id": "wp-content/uploads/2021/03/6FACAE9A-17BD-4F97-B55F-E9E304DB9B9F_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/1C938D92-AA03-4407-A2A2-76B4EBCD6BB1_1_105_c-1024x768.jpeg",
"timestamp": "20210730102149",
"file_id": "wp-content/uploads/2021/03/1C938D92-AA03-4407-A2A2-76B4EBCD6BB1_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2020/06/Tampere-Cover-420x280.jpg",
"timestamp": "20210730102125",
"file_id": "wp-content/uploads/2020/06/Tampere-Cover-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/F286D1B8-1094-4201-8C87-545D3B2FB66C_1_105_c-1024x768.jpeg",
"timestamp": "20210730102123",
"file_id": "wp-content/uploads/2021/03/F286D1B8-1094-4201-8C87-545D3B2FB66C_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/A1CA802C-940C-419A-AE9B-CD6F8252FCF3_1_105_c-1024x768.jpeg",
"timestamp": "20210730102046",
"file_id": "wp-content/uploads/2021/03/A1CA802C-940C-419A-AE9B-CD6F8252FCF3_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/67257B50-C72C-4CDF-970D-233C6130DDF1_1_105_c-1024x768.jpeg",
"timestamp": "20210730102043",
"file_id": "wp-content/uploads/2021/03/67257B50-C72C-4CDF-970D-233C6130DDF1_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/SRS-19-309x280.png",
"timestamp": "20210730101942",
"file_id": "wp-content/uploads/2019/08/SRS-19-309x280.png"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/BEF0D2AB-B497-460D-A7D9-CC6A83506F78_1_105_c-1024x768.jpeg",
"timestamp": "20210730101935",
"file_id": "wp-content/uploads/2021/03/BEF0D2AB-B497-460D-A7D9-CC6A83506F78_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/443A27F4-EB79-41BE-8DA3-F4C4F9EAEF51_1_105_c-1024x768.jpeg",
"timestamp": "20210730101920",
"file_id": "wp-content/uploads/2021/03/443A27F4-EB79-41BE-8DA3-F4C4F9EAEF51_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/6C4FE7E1-749B-4EE0-A392-768A9ED4B071_1_105_c-1024x768.jpeg",
"timestamp": "20210730101736",
"file_id": "wp-content/uploads/2021/03/6C4FE7E1-749B-4EE0-A392-768A9ED4B071_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/AD284B09-D733-42E7-B2FD-135715C2B1CF_1_105_c-1024x768.jpeg",
"timestamp": "20210730101732",
"file_id": "wp-content/uploads/2021/03/AD284B09-D733-42E7-B2FD-135715C2B1CF_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/08/OSC_8988_Sab-420x280.jpg",
"timestamp": "20210730101729",
"file_id": "wp-content/uploads/2019/08/OSC_8988_Sab-420x280.jpg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/6403D833-25DE-4DDC-A893-8CAF80C2F233_1_105_c-1024x768.jpeg",
"timestamp": "20210730101714",
"file_id": "wp-content/uploads/2021/03/6403D833-25DE-4DDC-A893-8CAF80C2F233_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/7EF0FA86-E602-4172-BC75-69D3A7F3C126_1_105_c-1024x768.jpeg",
"timestamp": "20210730101707",
"file_id": "wp-content/uploads/2021/03/7EF0FA86-E602-4172-BC75-69D3A7F3C126_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2F1359-2%2F&format=xml",
"timestamp": "20210730101659",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/1359-2/&format=xml"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2019/10/Liepaja-cover-small-420x280.jpeg",
"timestamp": "20210730101651",
"file_id": "wp-content/uploads/2019/10/Liepaja-cover-small-420x280.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/03/4D9D833A-F9E6-4CAD-B9A8-FB9891EB9C6F_1_105_c-1024x768.jpeg",
"timestamp": "20210730101538",
"file_id": "wp-content/uploads/2021/03/4D9D833A-F9E6-4CAD-B9A8-FB9891EB9C6F_1_105_c-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2020/10/Cover-1024x1024.jpeg",
"timestamp": "20210730101513",
"file_id": "wp-content/uploads/2020/10/Cover-1024x1024.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/05/OSC-Fuzz-Fest-2-1024x768.jpeg",
"timestamp": "20210730101459",
"file_id": "wp-content/uploads/2021/05/OSC-Fuzz-Fest-2-1024x768.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Fbiography-2%2F",
"timestamp": "20210730101432",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/biography-2/"
},
{
"file_url": "http://oresundspacecollective.com/wp-content/uploads/2021/01/OSCOMP1-Cover-1024x1024.jpeg",
"timestamp": "20210730101146",
"file_id": "wp-content/uploads/2021/01/OSCOMP1-Cover-1024x1024.jpeg"
},
{
"file_url": "http://oresundspacecollective.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Foresundspacecollective.com%2Funiversal-travels%2F&format=xml",
"timestamp": "20210730101145",
"file_id": "wp-json/oembed/1.0/embed?url=http://oresundspacecollective.com/universal-travels/&format=xml"