-
Notifications
You must be signed in to change notification settings - Fork 1
/
2031721.json
4116 lines (4116 loc) · 137 KB
/
2031721.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
[
{
"auth": false,
"ott_launch_date": 1452101400,
"auth_expiration_date": null,
"tms_id": "",
"description": "Fresh from Hawaii, Decker must confront and defeat a new grave terror that threatens every man woman and child on planet earth!",
"title_suggest": {
"input": [
"Decker 3: 1",
"3: 1",
"1"
]
},
"title": "Decker 3: 1",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 392.9174312,
"episode_number": "1",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583254489,
"media_id": "me292da70f1cdbc3718357b3391c73de14a2f75d46",
"id": "-wCGtn_1RHKAonY1VG8H0A",
"slug": "decker-3-1",
"views": 11,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331154411-Decker_301.jpg",
"created": 1444666333,
"season_number": "3",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583254489,
"first_published": 1444666333,
"tags": [
"tim heidecker",
"gregg turkington",
"joe estevez",
"special agent kingston",
"america",
"tim and eric",
"on cinema at the cinema",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1444652940,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331154411-Decker_301.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765540,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker and Kington infiltrate the terrorists' secret compound. A disgraced President Davidson looks back on his legacy.",
"title_suggest": {
"input": [
"Decker: Port Of Call: Hawaii: 11",
"Port Of Call: Hawaii: 11",
"Of Call: Hawaii: 11",
"Call: Hawaii: 11",
"Hawaii: 11",
"11"
]
},
"title": "Decker: Port Of Call: Hawaii: 11",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 269.6255213,
"episode_number": "11",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583254147,
"media_id": "mec0b7d607716fa9a2caf66c9ccb4b631fba36f7c9",
"id": "04GaseJTQniwPC-vKHmsmA",
"slug": "decker-port-of-call-hawaii-11",
"views": 3,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331148586-decker_211.jpg",
"created": 1427127241,
"season_number": "2",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583254147,
"first_published": 1427127241,
"tags": [
"decker port of call hawaii",
"tim heidecker",
"gregg turkington",
"on cinema at the cinema",
"espionage",
"episode eleven",
"special agent kington",
"joe estevez",
"president davidson",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1427121646,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331148586-decker_211.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765720,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker takes to the jungle in an aggressive attack against the Taliban.",
"title_suggest": {
"input": [
"Decker: Port Of Call: Hawaii: 15",
"Port Of Call: Hawaii: 15",
"Of Call: Hawaii: 15",
"Call: Hawaii: 15",
"Hawaii: 15",
"15"
]
},
"title": "Decker: Port Of Call: Hawaii: 15",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 255.5838198,
"episode_number": "15",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583254366,
"media_id": "me6b69f1fcdea33cd92590cf79a0d7625d311ae81b",
"id": "0L1yWcFrStaVuTkqtyNYWg",
"slug": "decker-port-of-call-hawaii-15",
"views": 17,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331152383-decker_215.jpg",
"created": 1427471730,
"season_number": "2",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583254366,
"first_published": 1427471730,
"tags": [
"decker port of call hawaii",
"tim heidecker",
"gregg turkington",
"espionage",
"episode fifteen",
"special agent kington",
"joe estevez",
"president davidson",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1427399159,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331152383-decker_215.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765660,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker declares the time for strategy is over. They must take action or the island, and America, will be lost.",
"title_suggest": {
"input": [
"Decker: Port Of Call: Hawaii: 10",
"Port Of Call: Hawaii: 10",
"Of Call: Hawaii: 10",
"Call: Hawaii: 10",
"Hawaii: 10",
"10"
]
},
"title": "Decker: Port Of Call: Hawaii: 10",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 246.5421184,
"episode_number": "10",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583254128,
"media_id": "me91bbc32767bbeb9b83daf7183ed955d7d6c46d64",
"id": "1zNsg9inSPiXznps7vP7xA",
"slug": "decker-port-of-call-hawaii-10",
"views": 3,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331148399-decker_210.jpg",
"created": 1426860649,
"season_number": "2",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583254128,
"first_published": 1426860649,
"tags": [
"decker port of call hawaii",
"tim heidecker",
"gregg turkington",
"espionage",
"episode ten",
"special agent kington",
"joe estevez",
"president davidson",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1426774435,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331148399-decker_210.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765300,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker returns to the White House to inform President Davidson of the \"Manhattan Incident.\"",
"title_suggest": {
"input": [
"DECKER: 5",
"5"
]
},
"title": "DECKER: 5",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 345.6006006,
"episode_number": "5",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583250629,
"media_id": "me76da732a7a0f32c56c46d1742f198f5b01e55c69",
"id": "4mMJZhiQTIiWEvjg1n35jg",
"slug": "decker-5",
"views": 5,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331050206-decker_105.jpg",
"created": 1408556105,
"season_number": "1",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583250629,
"first_published": 1408556105,
"tags": [
"Tim Heidecker"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1408552500,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331050206-decker_105.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "An urgent message threatens to derail Kington's plans.",
"title_suggest": {
"input": [
"Bye Bye Love",
"Bye Love",
"Love"
]
},
"title": "Bye Bye Love",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 87.7506255,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1612282680,
"airing_id": "",
"media_id": "meb1e4f23b4b0042296abb20f3a9b9346f2ab9dc1a",
"id": "5uT0ryfaSq69tFFHfEaJAg",
"slug": "bye-bye-love",
"views": 5,
"exclude_from_search": false,
"thumbnail": "",
"created": 1465848568,
"season_number": "99",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1612282680,
"first_published": 1465848568,
"tags": [
"decker: unclassified",
"port of call: hawaii",
"agent kington",
"gregg turkington",
"paul reiser",
"america",
"action",
"parody",
"codes",
"tim heidecker",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Jonas Eason",
"launch_date": 1451050560,
"poster": "https://i.cdn.turner.com/adultswim/big/video/decker-top-10-10/Top10_decker_207_10.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1499697000,
"auth_expiration_date": 1535007599,
"tms_id": "EP026812190006",
"description": "In the season finale, Decker Jr. and his friends visit his father's burial site. Meanwhile, a powerful enemy prepares for his revenge.",
"title_suggest": {
"input": [
"A Grave Matter",
"Grave Matter",
"Matter"
]
},
"expiration_date": 2085368400,
"title": "A Grave Matter",
"type": "episode",
"platforms": [
"web",
"mobile",
"ott"
],
"duration": 676.9174312,
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"episode_number": "6",
"original_air_date": 1499659200,
"clip_order": null,
"auth_launch_date": 1531983600,
"modified": 1607699466,
"media_id": "ca24a8f657d872151a5d4c92edf788c0b0f93e8e",
"airing_id": "RADS1011161800045884",
"id": "79GPX0BjT466J1TKTLsXcw",
"slug": "a-grave-matter",
"views": 1206,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_2033143404-decker_unsealed_506_dup-20170601.jpg",
"created": 1497300750,
"season_number": "5",
"title_id": "2117716",
"tv_rating": "tv-14-lv",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1607699466,
"first_published": 1499321482,
"tags": [],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1542949200,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_2033143404-decker_unsealed_506_dup-20170601.jpg",
"cma_id": "2117716"
},
{
"auth": false,
"ott_launch_date": null,
"description": "Despite Gregg\u2019s anger towards the direction of this episode, Tim announces that it\u2019s his favorite. It\u2019s a great, subtle announcement of his personal band, and allows each band member\u2019s acting to shine through. It also contained some of Tim\u2019s most dramatic acting. Gregg, meanwhile, was locked out of the editing bay.",
"title_suggest": {
"input": [
"Inside Decker: Band Together",
"Decker: Band Together",
"Band Together",
"Together"
]
},
"title": "Inside Decker: Band Together",
"type": "clip",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"online-exclusive"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 192.7674341,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"modified": 1491931490,
"media_id": "me19a54f0a472d30186ef9e6cd0036e074ba5b8e08",
"id": "8Jpt6KjxQsS3X0HIegFZcg",
"slug": "inside-decker-band-together",
"views": 2332,
"created": 1469224910,
"season_number": "",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1491931490,
"first_published": 1469224910,
"tags": [
"unclassified",
"tim heidecker",
"gregg turkington",
"agent kington",
"band together",
"dekkar",
"behind the scenes",
"web exclusive",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"modified_by": "Dominique Barfield",
"launch_date": 1469196626,
"poster": "http://i.cdn.turner.com/adultswim/big/video/inside-decker-band-together/insideDeckerThumb405.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "Calm and collected, Kington springs Decker at a time of least convenience.",
"title_suggest": {
"input": [
"Matinee Mastery",
"Mastery"
]
},
"title": "Matinee Mastery",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 197.0417014,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1612282711,
"airing_id": "",
"media_id": "me743649e99d1d739cd565d1bd6b61ef74330bc24f",
"id": "8RiWT1edTLK3A6b0tfawfw",
"slug": "matinee-mastery",
"views": 3,
"exclude_from_search": false,
"thumbnail": "",
"created": 1465848494,
"season_number": "99",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1612282711,
"first_published": 1465848494,
"tags": [
"decker: unclassified",
"port of call: hawaii",
"agent kington",
"gregg turkington",
"codes",
"movie theater",
"america",
"action",
"parody",
"tim heidecker",
"adult swim",
"video",
"comedy",
"top 10",
"top ten list"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Jonas Eason",
"launch_date": 1451136960,
"poster": "https://i.cdn.turner.com/adultswim/big/video/decker-top-10-5/Top10_decker_218_05.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": null,
"description": "Prepare for more jaw-dropping adventure with Decker: Unsealed!",
"title_suggest": {
"input": [
"The Mouths of Decker",
"Mouths of Decker",
"of Decker",
"Decker"
]
},
"title": "The Mouths of Decker",
"type": "clip",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"online-exclusive"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 30.3670337,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"modified": 1495812798,
"media_id": "mec3242f9fe26f29b2360060897a5a79d83e88a65c",
"id": "9kDdWh9bSBmwIVfA_7dw1Q",
"slug": "the-mouths-of-decker",
"views": 88,
"created": 1495812798,
"season_number": "",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1495812798,
"first_published": 1495812798,
"tags": [
"decker unsealed",
"tim heidecker",
"mouth",
"adult swim",
"video",
"promo"
],
"collection_title": "Decker",
"modified_by": "Evan Delia",
"launch_date": 1495807200,
"poster": "http://i.cdn.turner.com/adultswim/big/video/the-mouths-of-decker/promo_DeckerMouth_Dated_3524F.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": null,
"description": "The guys announce this is the episode that tells the origin stories of Decker and his relationship to master codebreaker, Jonathan Kington. They also welcome back James Mane.",
"title_suggest": {
"input": [
"Inside Decker: The New Recruits",
"Decker: The New Recruits",
"The New Recruits",
"New Recruits",
"Recruits"
]
},
"title": "Inside Decker: The New Recruits",
"type": "clip",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"online-exclusive"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 240.7674341,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"modified": 1491931646,
"media_id": "me248c36c7da3f43e0275a3df6340c9805aeea836d",
"id": "B6sSGU_1SiSXkZUsbrN0Pw",
"slug": "inside-decker-the-new-recruits",
"views": 69,
"created": 1467032982,
"season_number": "",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1491931646,
"first_published": 1467032982,
"tags": [
"unclassified",
"tim heidecker",
"gregg turkington",
"agent kington",
"behind the scenes",
"web exclusive",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"modified_by": "Dominique Barfield",
"launch_date": 1466620150,
"poster": "http://i.cdn.turner.com/adultswim/big/video/inside-decker-the-new-recruits/insideDeckerUnclassified_402_TheNewRecruits_2.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765540,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker reconnects with his oldest and dearest friend, Lanoi Arnold. As celebration, he performs his hit song.",
"title_suggest": {
"input": [
"Decker: Port Of Call: Hawaii: 2",
"Port Of Call: Hawaii: 2",
"Of Call: Hawaii: 2",
"Call: Hawaii: 2",
"Hawaii: 2",
"2"
]
},
"title": "Decker: Port Of Call: Hawaii: 2",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 395.500417,
"episode_number": "2",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583250939,
"media_id": "me2087d0ff21beef364a86849d70c92c17b91b938a",
"id": "CMzvF2NYRhG62CZ-UwdRAQ",
"slug": "decker-port-of-call-hawaii-2",
"views": 126,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331055317-decker_202.jpg",
"created": 1426001133,
"season_number": "2",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583250939,
"first_published": 1426001133,
"tags": [
"decker port of call hawaii",
"tim heidecker",
"gregg turkington",
"espionage",
"episode two",
"special agent kington",
"joe estevez",
"president davidson",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1425927094,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331055317-decker_202.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449787740,
"description": "Decker creator and star, Tim Heidecker, sheds light on the troubled production, Decker Vs. Dracula. (A Heidecker Doc Production.)",
"title_suggest": {
"input": [
"Decker Vs. Dracula: Behind The Truth",
"Vs. Dracula: Behind The Truth",
"Dracula: Behind The Truth",
"Behind The Truth",
"The Truth",
"Truth"
]
},
"title": "Decker Vs. Dracula: Behind The Truth",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 686.13,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"modified": 1491926900,
"media_id": "me1365b9a4b03cae197e75db45672bdd2dac107461",
"id": "DlYhQe8VT0mFGWbS_g8f9w",
"slug": "decker-vs-dracula-behind-the-truth",
"views": 471,
"created": 1449083468,
"season_number": "3",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1491926900,
"first_published": 1449083468,
"tags": [],
"collection_title": "Decker",
"modified_by": "Dominique Barfield",
"launch_date": 1450373280,
"poster": "https://i.cdn.turner.com/adultswim/big/video/decker-vs-dracula-behind-the-truth/decker_doc_SSC.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1498487400,
"auth_expiration_date": 1533797999,
"tms_id": "EP026812190004",
"description": "While on the job for his famous security business, Decker becomes close with a top client.",
"title_suggest": {
"input": [
"Private Sector",
"Sector"
]
},
"expiration_date": 2085368400,
"title": "Private Sector",
"type": "episode",
"platforms": [
"web",
"mobile",
"ott"
],
"duration": 676.7506255,
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"episode_number": "4",
"original_air_date": 1498449600,
"clip_order": null,
"auth_launch_date": 1530774000,
"modified": 1607699466,
"media_id": "74ac2e71028f6d989c4ff2b3cc4b16a16cd6646c",
"airing_id": "RADS1011161800045887",
"id": "DnyXSYgyTQaTYMkSRJ5l9w",
"slug": "private-sector",
"views": 2056,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331315185-decker_unsealed_504_dup-20170605.jpg",
"created": 1496342907,
"season_number": "5",
"title_id": "2117714",
"tv_rating": "tv-14-sv",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1607699466,
"first_published": 1498119021,
"tags": [],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1542949200,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331315185-decker_unsealed_504_dup-20170605.jpg",
"cma_id": "2117714"
},
{
"auth": false,
"ott_launch_date": null,
"description": "The guys recap the conclusion of the season. They announce a new hero, take a peek into the Victorville Film Archive and welcome back the talented James Dean.",
"title_suggest": {
"input": [
"Inside Decker: A New Hero",
"Decker: A New Hero",
"A New Hero",
"New Hero",
"Hero"
]
},
"title": "Inside Decker: A New Hero",
"type": "clip",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"online-exclusive"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 249.2669336,
"episode_number": "",
"original_air_date": null,
"clip_order": null,
"modified": 1491931802,
"media_id": "me817efc1896b2acefcab18852bdfd2362d2572998",
"id": "I0LQFQkaSUaFp8PnAWHhoQ",
"slug": "inside-decker-a-new-hero",
"views": 25996,
"created": 1470060181,
"season_number": "",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"published": 1491931802,
"first_published": 1470060181,
"tags": [
"decker: unclassified",
"tim heidecker",
"gregg turkington",
"agent kington",
"band together",
"james dean",
"dracula",
"behind the scenes",
"web exclusive",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"modified_by": "Dominique Barfield",
"launch_date": 1469480460,
"poster": "http://i.cdn.turner.com/adultswim/big/video/inside-decker-a-new-hero/insideDeckerThumb406.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765600,
"auth_expiration_date": null,
"tms_id": "",
"description": "Decker and Kington decide the only way forward is through jungle warfare.",
"title_suggest": {
"input": [
"Decker: Port Of Call: Hawaii: 9",
"Port Of Call: Hawaii: 9",
"Of Call: Hawaii: 9",
"Call: Hawaii: 9",
"Hawaii: 9",
"9"
]
},
"title": "Decker: Port Of Call: Hawaii: 9",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 246.9174312,
"episode_number": "9",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583254064,
"media_id": "medd4f38f451d04447ba262411cf0750f296f7a41d",
"id": "IvnNi1SwTZOVoCL7aMkCJg",
"slug": "decker-port-of-call-hawaii-9",
"views": 2,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_20331147354-decker_209.jpg",
"created": 1426776960,
"season_number": "2",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583254064,
"first_published": 1426776960,
"tags": [
"decker port of call hawaii",
"tim heidecker",
"gregg turkington",
"espionage",
"episode nine",
"special agent kington",
"joe estevez",
"president davidson",
"adult swim",
"video",
"comedy"
],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1426690708,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_20331147354-decker_209.jpg",
"cma_id": ""
},
{
"auth": false,
"ott_launch_date": 1449765300,
"auth_expiration_date": null,
"tms_id": "",
"description": "The suitcase has been opened, the nuclear threat analyzed, and, to Decker, the course of action is clear. Will the weak-willed president Davidson allow Decker to do what's necessary to protect American citizens? What sacrifices will have to be made to save our nation?",
"title_suggest": {
"input": [
"DECKER: 4",
"4"
]
},
"title": "DECKER: 4",
"type": "episode",
"expiration_date": null,
"platforms": [
"web",
"mobile",
"ott"
],
"collection_id": "qzdfwgpDSryQC6s1d2xjOQ",
"duration": 452.2002002,
"episode_number": "4",
"original_air_date": null,
"clip_order": null,
"auth_launch_date": null,
"modified": 1583250876,
"media_id": "me1a81b769493501182c79eabdc1d30fd911904cfd",
"id": "L2jgx3B7S9e3latXhCzpPQ",
"slug": "decker-4",
"views": 3,
"exclude_from_search": false,
"thumbnail": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/1_2033105475-decker_104.jpg",
"created": 1408564134,
"season_number": "1",
"title_id": "",
"tv_rating": "",
"active": false,
"ott_expiration_date": null,
"blacklist": [],
"published": 1583250876,
"first_published": 1408564134,
"tags": [],
"collection_title": "Decker",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1408552226,
"poster": "https://media.cdn.adultswim.com/uploads/20200303/thumbnails/2_2033105475-decker_104.jpg",
"cma_id": ""
},
{