@ak--47/dungeon-master 1.0.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/README.md +7 -7
  2. package/dungeons/technical/ad-spend-schema.json +128 -0
  3. package/dungeons/technical/ad-spend.js +116 -0
  4. package/dungeons/technical/anonymous-users-schema.json +92 -0
  5. package/dungeons/technical/anonymous-users.js +102 -0
  6. package/dungeons/technical/array-of-object-lookup-schema.json +191 -0
  7. package/dungeons/{array-of-object-lookup.js → technical/array-of-object-lookup.js} +12 -5
  8. package/dungeons/technical/experiments-schema.json +203 -0
  9. package/dungeons/technical/experiments.js +168 -0
  10. package/dungeons/technical/foobar-schema.json +362 -0
  11. package/dungeons/{foobar.js → technical/foobar.js} +3 -3
  12. package/dungeons/technical/group-analytics-schema.json +241 -0
  13. package/dungeons/technical/group-analytics.js +151 -0
  14. package/dungeons/technical/mirror-strategies-schema.json +84 -0
  15. package/dungeons/technical/mirror-strategies.js +126 -0
  16. package/dungeons/technical/nested-objects-schema.json +145 -0
  17. package/dungeons/technical/nested-objects.js +207 -0
  18. package/dungeons/technical/retention-cadence-schema.json +37 -0
  19. package/dungeons/{retention-cadence.js → technical/retention-cadence.js} +2 -3
  20. package/dungeons/technical/sanity-schema.json +185 -0
  21. package/dungeons/{sanity.js → technical/sanity.js} +4 -2
  22. package/dungeons/technical/scale-test-schema.json +70 -0
  23. package/dungeons/technical/scale-test.js +90 -0
  24. package/dungeons/technical/scd-schema.json +467 -0
  25. package/dungeons/{scd.js → technical/scd.js} +20 -10
  26. package/dungeons/technical/simple-schema.json +362 -0
  27. package/dungeons/{simple.js → technical/simple.js} +7 -7
  28. package/dungeons/technical/simplest-schema.json +724 -0
  29. package/dungeons/{simplest.js → technical/simplest.js} +7 -7
  30. package/dungeons/technical/text-generation-schema.json +1062 -0
  31. package/dungeons/{text-generation.js → technical/text-generation.js} +24 -11
  32. package/dungeons/vertical/community-schema.json +579 -0
  33. package/dungeons/vertical/community.js +794 -0
  34. package/dungeons/vertical/devtools-schema.json +601 -0
  35. package/dungeons/vertical/devtools.js +843 -0
  36. package/dungeons/vertical/ecommerce-schema.json +604 -0
  37. package/dungeons/{ecommerce.js → vertical/ecommerce.js} +43 -5
  38. package/dungeons/vertical/education-schema.json +5686 -0
  39. package/dungeons/{education.js → vertical/education.js} +70 -39
  40. package/dungeons/vertical/fintech-schema.json +630 -0
  41. package/dungeons/{fintech.js → vertical/fintech.js} +107 -56
  42. package/dungeons/vertical/fitness-schema.json +530 -0
  43. package/dungeons/vertical/fitness.js +808 -0
  44. package/dungeons/vertical/food-delivery-schema.json +36728 -0
  45. package/dungeons/{food.js → vertical/food-delivery.js} +67 -26
  46. package/dungeons/vertical/gaming-schema.json +438 -0
  47. package/dungeons/{gaming.js → vertical/gaming.js} +29 -16
  48. package/dungeons/vertical/healthcare-schema.json +549 -0
  49. package/dungeons/vertical/healthcare.js +775 -0
  50. package/dungeons/vertical/insurance-application-schema.json +485 -0
  51. package/dungeons/{insurance-application.js → vertical/insurance-application.js} +41 -31
  52. package/dungeons/vertical/logistics-schema.json +574 -0
  53. package/dungeons/vertical/logistics.js +799 -0
  54. package/dungeons/vertical/marketplace-schema.json +533 -0
  55. package/dungeons/vertical/marketplace.js +850 -0
  56. package/dungeons/vertical/media-schema.json +4749 -0
  57. package/dungeons/{media.js → vertical/media.js} +103 -19
  58. package/dungeons/vertical/rpg-schema.json +2491 -0
  59. package/dungeons/{rpg.js → vertical/rpg.js} +87 -60
  60. package/dungeons/vertical/sass-schema.json +3128 -0
  61. package/dungeons/{sass.js → vertical/sass.js} +65 -26
  62. package/dungeons/vertical/social-schema.json +620 -0
  63. package/dungeons/{social.js → vertical/social.js} +76 -17
  64. package/dungeons/vertical/travel-schema.json +580 -0
  65. package/dungeons/vertical/travel.js +742 -0
  66. package/index.js +20 -16
  67. package/lib/core/config-validator.js +286 -1
  68. package/lib/core/context.js +16 -5
  69. package/lib/core/storage.js +2 -0
  70. package/lib/generators/adspend.js +3 -3
  71. package/lib/generators/events.js +141 -14
  72. package/lib/generators/funnels.js +67 -7
  73. package/lib/generators/text.js +2 -2
  74. package/lib/orchestrators/user-loop.js +444 -22
  75. package/lib/templates/soup-presets.js +2 -2
  76. package/lib/utils/utils.js +4 -5
  77. package/package.json +4 -3
  78. package/scripts/dungeon-to-json.mjs +163 -0
  79. package/scripts/extract-dungeon-schema.mjs +343 -0
  80. package/scripts/json-to-dungeon.mjs +200 -0
  81. package/scripts/run-dungeon.mjs +76 -0
  82. package/scripts/run-many.mjs +118 -0
  83. package/scripts/verify-runner.mjs +42 -0
  84. package/types.d.ts +316 -1
  85. package/dungeons/array-of-object-lookup-schema.json +0 -327
  86. package/dungeons/ecommerce-schema.json +0 -462
  87. package/dungeons/education-schema.json +0 -2409
  88. package/dungeons/fintech-schema.json +0 -14034
  89. package/dungeons/foobar-schema.json +0 -403
  90. package/dungeons/food-delivery-schema.json +0 -192
  91. package/dungeons/food-delivery.js +0 -602
  92. package/dungeons/food-schema.json +0 -1152
  93. package/dungeons/gaming-schema.json +0 -1270
  94. package/dungeons/insurance-application-schema.json +0 -204
  95. package/dungeons/media-schema.json +0 -906
  96. package/dungeons/retention-cadence-schema.json +0 -78
  97. package/dungeons/rpg-schema.json +0 -4526
  98. package/dungeons/sanity-schema.json +0 -255
  99. package/dungeons/sass-schema.json +0 -1291
  100. package/dungeons/scd-schema.json +0 -919
  101. package/dungeons/simple-schema.json +0 -608
  102. package/dungeons/simplest-schema.json +0 -1418
  103. package/dungeons/social-schema.json +0 -1118
  104. package/dungeons/text-generation-schema.json +0 -3096
@@ -0,0 +1,4749 @@
1
+ {
2
+ "events": [
3
+ {
4
+ "event": "account created",
5
+ "isFirstEvent": true,
6
+ "properties": {
7
+ "signup_source": [
8
+ "organic",
9
+ "referral",
10
+ "trial_offer",
11
+ "ad"
12
+ ],
13
+ "plan_selected": [
14
+ "free",
15
+ "standard",
16
+ "premium"
17
+ ],
18
+ "weekend_viewing": [
19
+ false
20
+ ],
21
+ "prime_time": [
22
+ false
23
+ ],
24
+ "kids_profile": [
25
+ false
26
+ ],
27
+ "ad_fatigue": [
28
+ false
29
+ ]
30
+ }
31
+ },
32
+ {
33
+ "event": "content browsed",
34
+ "weight": 20,
35
+ "properties": {
36
+ "browse_section": [
37
+ "home",
38
+ "trending",
39
+ "new_releases",
40
+ "genre",
41
+ "continue_watching"
42
+ ],
43
+ "genre": [
44
+ "action",
45
+ "comedy",
46
+ "drama",
47
+ "documentary",
48
+ "horror",
49
+ "sci_fi",
50
+ "animation",
51
+ "thriller",
52
+ "romance"
53
+ ],
54
+ "weekend_viewing": [
55
+ false
56
+ ],
57
+ "prime_time": [
58
+ false
59
+ ],
60
+ "kids_profile": [
61
+ false
62
+ ],
63
+ "ad_fatigue": [
64
+ false
65
+ ]
66
+ }
67
+ },
68
+ {
69
+ "event": "content selected",
70
+ "weight": 15,
71
+ "properties": {
72
+ "content_type": [
73
+ "movie",
74
+ "series",
75
+ "documentary",
76
+ "special"
77
+ ],
78
+ "genre": [
79
+ "action",
80
+ "comedy",
81
+ "drama",
82
+ "documentary",
83
+ "horror",
84
+ "sci_fi",
85
+ "animation",
86
+ "thriller",
87
+ "romance"
88
+ ],
89
+ "content_id": [
90
+ "content_A7YJdBpZ",
91
+ "content_0eoBvwRj",
92
+ "content_FDmORc2r",
93
+ "content_mqY9dARs",
94
+ "content_2zncbXYO",
95
+ "content_hpzkSOsc",
96
+ "content_9Zrg8a2y",
97
+ "content_Yoo8qdiQ",
98
+ "content_FnBl7i2D",
99
+ "content_aycVKqTv",
100
+ "content_Fw4g4JkN",
101
+ "content_TwNzs2hG",
102
+ "content_y3hap26A",
103
+ "content_C5H7cs1k",
104
+ "content_kDZyRAsE",
105
+ "content_LxWmKy7G",
106
+ "content_vnqZ4AkB",
107
+ "content_ots5bEtU",
108
+ "content_ZkKiXywP",
109
+ "content_8P36Xgey",
110
+ "content_0I93hGP4",
111
+ "content_vR7jqHVc",
112
+ "content_JTRI3JVL",
113
+ "content_swcK0MZn",
114
+ "content_LvO8AWK5",
115
+ "content_vlPD5Mhl",
116
+ "content_6KOW9CWF",
117
+ "content_bWscJ6Kk",
118
+ "content_jrPcEJ87",
119
+ "content_2eUI3FHk",
120
+ "content_jK9rIkaH",
121
+ "content_HGwYFwUh",
122
+ "content_J3jcNjKW",
123
+ "content_ScEfAbEF",
124
+ "content_43UFXQQ0",
125
+ "content_891xPtWY",
126
+ "content_lITWRI04",
127
+ "content_w3JqKYV3",
128
+ "content_StRFhyvQ",
129
+ "content_rUv6qgr1",
130
+ "content_k99Sibdc",
131
+ "content_K2QuRHn1",
132
+ "content_pM6kMMgv",
133
+ "content_w8cZMd7y",
134
+ "content_9fAzRWYh",
135
+ "content_aAQkBl0A",
136
+ "content_nvayonc5",
137
+ "content_3A3fcMjP",
138
+ "content_CJxyWOm8",
139
+ "content_R5SREkXL",
140
+ "content_dmGLTdsn",
141
+ "content_PYn0fvWF",
142
+ "content_8WPsUXir",
143
+ "content_CXPY310K",
144
+ "content_d4UcrwGh",
145
+ "content_vtK91Xz6",
146
+ "content_A3mAAzYf",
147
+ "content_NKfDXmw7",
148
+ "content_AWjaUMQj",
149
+ "content_na03Ih7X",
150
+ "content_EW348Rnd",
151
+ "content_ULOm7K3t",
152
+ "content_iIFRtUEq",
153
+ "content_vsIYy9qL",
154
+ "content_j9Hbygpp",
155
+ "content_9C6BCex0",
156
+ "content_TQWW2cyd",
157
+ "content_CZb9cL6U",
158
+ "content_D3sK9Anl",
159
+ "content_t4xnXoqc",
160
+ "content_SB8aF8Az",
161
+ "content_APXxM8ph",
162
+ "content_t0jGfeQD",
163
+ "content_s61U6ODY",
164
+ "content_TNbaVzYV",
165
+ "content_ms9Zl25p",
166
+ "content_1UsCV2pj",
167
+ "content_Z6MoiNni",
168
+ "content_APISf62T",
169
+ "content_B52EGzEM",
170
+ "content_AmoIB6XU",
171
+ "content_iuvXIHBN",
172
+ "content_qWZ27bcU",
173
+ "content_Xg9r78fl",
174
+ "content_MqV4SPBH",
175
+ "content_oUrax3cq",
176
+ "content_W23YbBC7",
177
+ "content_mNyrcDTW",
178
+ "content_Ul62ctUS",
179
+ "content_Cc6lCNZ8",
180
+ "content_Q8qX2c7n",
181
+ "content_JHuoYugU",
182
+ "content_SAWvu0s4",
183
+ "content_JW7FORBm",
184
+ "content_GJAjvY04",
185
+ "content_i1KCbbmt",
186
+ "content_GEt2DzST",
187
+ "content_tvVPeWV7",
188
+ "content_loHk1A1L",
189
+ "content_h8Oiogqm",
190
+ "content_vkNoPUhO",
191
+ "content_7yBYrOEG",
192
+ "content_kSCf95Qq",
193
+ "content_xWtcdpOo",
194
+ "content_L8f6uvzQ",
195
+ "content_fUUUmMGt",
196
+ "content_anUSQ67i",
197
+ "content_tLetf8Qt",
198
+ "content_q99nL7nc",
199
+ "content_Wc4FGzsU",
200
+ "content_GQ3abFOp",
201
+ "content_JGoCCXUQ",
202
+ "content_r1GRGYmz",
203
+ "content_1LLQe8aP",
204
+ "content_h2k46bHg",
205
+ "content_nXKRG8mR",
206
+ "content_HjzHA8Bq",
207
+ "content_ZJU1I2yG",
208
+ "content_fxjaSQPr",
209
+ "content_iwazMsOB",
210
+ "content_i29qOVVV",
211
+ "content_jAikMvCa",
212
+ "content_7W9kzF5X",
213
+ "content_ErtX5pAa",
214
+ "content_BkQz88lP",
215
+ "content_IhciVAwi",
216
+ "content_qA0hnsAn",
217
+ "content_27L83eZf",
218
+ "content_tzBXsTxu",
219
+ "content_E4oGNtrl",
220
+ "content_gciyZJCh",
221
+ "content_PtuCvyV2",
222
+ "content_vVSRiQPF",
223
+ "content_Vq66ExhX",
224
+ "content_DGup2Z42",
225
+ "content_LMUh70jG",
226
+ "content_vxhYdivI",
227
+ "content_xUtAORZn",
228
+ "content_QlQ72ogX",
229
+ "content_5fVtPogW",
230
+ "content_MlTmVUAa",
231
+ "content_m1Hx92Vd",
232
+ "content_I59032xE",
233
+ "content_SgjC6Whx",
234
+ "content_dbx8MprN",
235
+ "content_zFBNGjVI",
236
+ "content_qjNdhTNi",
237
+ "content_xoWjW6ay",
238
+ "content_KEZh5q7T",
239
+ "content_yYZJJAsB",
240
+ "content_mH6V5S0R",
241
+ "content_KYDRLoFg",
242
+ "content_PoWGfkGx",
243
+ "content_aeelz3Zt",
244
+ "content_GOXAzNET",
245
+ "content_acU7Gmak",
246
+ "content_SiT8XHUi",
247
+ "content_qbaYTa8L",
248
+ "content_wjbr1LW1",
249
+ "content_5VCD4uPD",
250
+ "content_8fBlcTIu",
251
+ "content_bxCEvR8L",
252
+ "content_grBL5Ksg",
253
+ "content_Hdu6VRPB",
254
+ "content_UMXdIC0c",
255
+ "content_o3Q5FLwG",
256
+ "content_jR06fl43",
257
+ "content_qUBkJxCM",
258
+ "content_VrLj50bs",
259
+ "content_s9ZYEzei",
260
+ "content_nzS9HOtD",
261
+ "content_Lr0s1cRj",
262
+ "content_vqJCDWCi",
263
+ "content_bHD2G9MR",
264
+ "content_uR30GvA0",
265
+ "content_pk5goaDF",
266
+ "content_qeWcFZaV",
267
+ "content_KcsgX8ak",
268
+ "content_SK7tEkOi",
269
+ "content_2OM92OSi",
270
+ "content_wLL3U3Zv",
271
+ "content_yvgUq9Me",
272
+ "content_AOv3QvGB",
273
+ "content_K32WFpwx",
274
+ "content_xHEfk6o7",
275
+ "content_YS5KpAPx",
276
+ "content_0Q9fkNuq",
277
+ "content_2pmf7t9L",
278
+ "content_SfSWIcIM",
279
+ "content_vv98RaEB",
280
+ "content_IRsG1XIG",
281
+ "content_obn2fG4t",
282
+ "content_zqufyq90",
283
+ "content_DZOt9Kv6",
284
+ "content_R6WcaDne",
285
+ "content_BXTFb3Iw",
286
+ "content_xMXoXser",
287
+ "content_7NDLvEDo",
288
+ "content_ZnBjWF2d",
289
+ "content_fk0bwbbx",
290
+ "content_FnbF9Ygx",
291
+ "content_jrQKSVVc",
292
+ "content_bFsvzYHn",
293
+ "content_iwxQI7Sw",
294
+ "content_Y0asCQ2D",
295
+ "content_mA6LXXMT",
296
+ "content_hIZalQo5",
297
+ "content_3OLScbOQ",
298
+ "content_JNfYiTnk",
299
+ "content_W9hgYHHo",
300
+ "content_WZfZEHk5",
301
+ "content_EtP3Uu2h",
302
+ "content_ZAn0jD0b",
303
+ "content_sVOSEzXy",
304
+ "content_hbHIUCOb",
305
+ "content_dI3KmFac",
306
+ "content_olJpwJRU",
307
+ "content_ux7PH579",
308
+ "content_9xFukeIo",
309
+ "content_GeuH2P6t",
310
+ "content_ujCrE0PA",
311
+ "content_wITs5LYE",
312
+ "content_xPVHjr5o",
313
+ "content_G7AVPmb5",
314
+ "content_Z9SPCgsx",
315
+ "content_qs9VHrrO",
316
+ "content_rnbBfX2d",
317
+ "content_iqfLHpAo",
318
+ "content_jjtE9dTu",
319
+ "content_Dfsp8rMm",
320
+ "content_eVOH34Pt",
321
+ "content_RjFWaMPC",
322
+ "content_NIQ1lDHn",
323
+ "content_rkyjzaaL",
324
+ "content_dHXk2WeJ",
325
+ "content_fxKeCXZl",
326
+ "content_smT0aEGu",
327
+ "content_GC4i565s",
328
+ "content_jOLFVfkn",
329
+ "content_QoVgnsc5",
330
+ "content_PRybWG0X",
331
+ "content_zCJERwy6",
332
+ "content_DSJwoIOj",
333
+ "content_cX1ykron",
334
+ "content_RbzLzFn0",
335
+ "content_IOAXAVE9",
336
+ "content_eZ5054JY",
337
+ "content_Q28sdasW",
338
+ "content_DCSVTl4l",
339
+ "content_dSHk1C4W",
340
+ "content_uRuPJVQM",
341
+ "content_rtzVLOUI",
342
+ "content_E527Lb0B",
343
+ "content_AfImyd4u",
344
+ "content_0LxRMjRr",
345
+ "content_weYQUiBE",
346
+ "content_IssRi6sZ",
347
+ "content_Fa918lwh",
348
+ "content_mxb68BKk",
349
+ "content_NfJRhYxb",
350
+ "content_RyCHYuLN",
351
+ "content_dgMIdInO",
352
+ "content_TwYruI3m",
353
+ "content_zmR1UT7i",
354
+ "content_WWGE9zaR",
355
+ "content_Z6dZnkIP",
356
+ "content_DiFXSUmw",
357
+ "content_SsmOM1sc",
358
+ "content_KKjx7Lxr",
359
+ "content_2Or26IAN",
360
+ "content_z8MaqGKP",
361
+ "content_R0ta3yYP",
362
+ "content_hecVKUmJ",
363
+ "content_gvKrcbMs",
364
+ "content_t1BEhxPe",
365
+ "content_Y6R5wM5E",
366
+ "content_bHklTFp7",
367
+ "content_O2ig9jWh",
368
+ "content_bG3KSWkE",
369
+ "content_v6KKhpcU",
370
+ "content_Yoz4xWMp",
371
+ "content_rxlb6D9C",
372
+ "content_Vthgdkut",
373
+ "content_omXNeKfd",
374
+ "content_kE9Jz8i5",
375
+ "content_U0xSsy4d",
376
+ "content_ZMYBWSJZ",
377
+ "content_HuiwwFFI",
378
+ "content_SCt5dxrJ",
379
+ "content_1eNEoXcb",
380
+ "content_JIUK7DlE",
381
+ "content_qw7GTB8w",
382
+ "content_Xi372Gja",
383
+ "content_zOsWGwis",
384
+ "content_uwEktuVK",
385
+ "content_wD9KluRR",
386
+ "content_6ATFurjl",
387
+ "content_CmruJmpV",
388
+ "content_xHYJTX3e",
389
+ "content_Q8p2WOoV",
390
+ "content_yVXtYWzk",
391
+ "content_g6kQKcHk",
392
+ "content_h7HWmch6",
393
+ "content_19dZVj2w",
394
+ "content_GPfP2lsn",
395
+ "content_6uevODtv",
396
+ "content_DHukROVM",
397
+ "content_G4UbhK6B",
398
+ "content_zYyjjHrC",
399
+ "content_yUser4kc",
400
+ "content_1doIRyUW",
401
+ "content_324wbAWH",
402
+ "content_NCpaWQur",
403
+ "content_dmMHs85S",
404
+ "content_qdcnKMvg",
405
+ "content_TOtrM3bG",
406
+ "content_uLQJnLog",
407
+ "content_udXwJtQJ",
408
+ "content_jy5jjVga",
409
+ "content_YaTiT8ne",
410
+ "content_nD3Lsmty",
411
+ "content_jvPIHdRG",
412
+ "content_X5urqxkF",
413
+ "content_HTs3Q2Oo",
414
+ "content_GxMPofgY",
415
+ "content_dJeWRg06",
416
+ "content_anSkVNuH",
417
+ "content_H1VlXTvl",
418
+ "content_Pyp2sw3h",
419
+ "content_o1clQ10g",
420
+ "content_CdWFS5S0",
421
+ "content_OqjWyYs5",
422
+ "content_4wQhqGUH",
423
+ "content_ngQQY7n4",
424
+ "content_ViWD6RLy",
425
+ "content_FQd7f1DI",
426
+ "content_cWo1fx7F",
427
+ "content_amv2SRq6",
428
+ "content_EoQL8mY7",
429
+ "content_z1Oou9pH",
430
+ "content_iWlQjdUC",
431
+ "content_IngrNwMm",
432
+ "content_0dmwIlSP",
433
+ "content_61uLOZQH",
434
+ "content_0m9SzKAE",
435
+ "content_KQpF90LW",
436
+ "content_WzGKTocn",
437
+ "content_vUqAYAKK",
438
+ "content_G9lqpkzb",
439
+ "content_w9NkpLWE",
440
+ "content_5c0at0bg",
441
+ "content_ABcXkliV",
442
+ "content_agT9IKcO",
443
+ "content_Zl97ZYu4",
444
+ "content_m6o2lL5L",
445
+ "content_LYa4q2JK",
446
+ "content_mGmdeZGS",
447
+ "content_wcIz9MEa",
448
+ "content_Vq60Pem5",
449
+ "content_qFBEMwga",
450
+ "content_VJYna4sU",
451
+ "content_ngGg1QUv",
452
+ "content_PmJPyszN",
453
+ "content_eUAyyPjh",
454
+ "content_mBDp70x9",
455
+ "content_u6USoGCZ",
456
+ "content_R9hKxGiK",
457
+ "content_YfWO9QPi",
458
+ "content_VbkjNbt3",
459
+ "content_2JzvMLZz",
460
+ "content_uZJfjJKB",
461
+ "content_lfmbKlDT",
462
+ "content_dT7Nacyt",
463
+ "content_BcCgtvc3",
464
+ "content_1YTY42FO",
465
+ "content_WbXVz21F",
466
+ "content_95iq4VfM",
467
+ "content_VBCLYSRx",
468
+ "content_8tUHUMXl",
469
+ "content_7VcmieZV",
470
+ "content_2LGXaX5u",
471
+ "content_nrp5yur3",
472
+ "content_pZrv9jPb",
473
+ "content_CEFSTQmy",
474
+ "content_Ibd6w9Nq",
475
+ "content_J3Us5kB5",
476
+ "content_OUsHI6X5",
477
+ "content_Daar9SgQ",
478
+ "content_MxKJSCVd",
479
+ "content_OPeoJgHR",
480
+ "content_ljWpgIeC",
481
+ "content_aXwGYopd",
482
+ "content_vdY7n5WO",
483
+ "content_YHUtdvT2",
484
+ "content_iqW6eUwB",
485
+ "content_AIeWsjoF",
486
+ "content_7ZVK3DHR",
487
+ "content_JVlahfnL",
488
+ "content_8CLBPfqc",
489
+ "content_ax0vQskf",
490
+ "content_9t13p5hs",
491
+ "content_kl7YnKnB",
492
+ "content_HKzxSWei",
493
+ "content_JVeEiLdt",
494
+ "content_Hj5qNlME",
495
+ "content_3OxIEgxT",
496
+ "content_6HjgvBfj",
497
+ "content_JNFWYCoR",
498
+ "content_GcQgkp3m",
499
+ "content_B5w0OKBD",
500
+ "content_Smgbsivt",
501
+ "content_34Syb0Jy",
502
+ "content_w93cVuRe",
503
+ "content_6p5GHcPd",
504
+ "content_Enza4aca",
505
+ "content_m9B2aq1w",
506
+ "content_gK8YTn1t",
507
+ "content_6XMhdwYF",
508
+ "content_ntEL1am3",
509
+ "content_l3tVmGpS",
510
+ "content_Y5RvkrfS",
511
+ "content_KhMaobjV",
512
+ "content_SaANFgrB",
513
+ "content_Azkn9P4w",
514
+ "content_eGV2IBDX",
515
+ "content_hUfyKBq8",
516
+ "content_DFsjipgv",
517
+ "content_cfkQWd6D",
518
+ "content_bIdDZwey",
519
+ "content_fMd87DPk",
520
+ "content_ekxixpyj",
521
+ "content_mxQ2GYIf",
522
+ "content_cdpuZkKl",
523
+ "content_Tjw5ZL4C",
524
+ "content_tmx7g2zr",
525
+ "content_6p2rOfgm",
526
+ "content_J6ecE2Pf",
527
+ "content_bY0XxyZe",
528
+ "content_BmaMA0YL",
529
+ "content_hy6qombB",
530
+ "content_UfDBiLtG",
531
+ "content_iwF4Y3SD",
532
+ "content_pJy5d2GZ",
533
+ "content_czKHneMH",
534
+ "content_9zSerBA0",
535
+ "content_Sbhb6RI6",
536
+ "content_D4vL9ZOe",
537
+ "content_bl1k5Iv6",
538
+ "content_k6fU9s9Q",
539
+ "content_wjHTC0sI",
540
+ "content_dSuMeOWN",
541
+ "content_K42jFl4U",
542
+ "content_gi7Wbr3K",
543
+ "content_mgJgDzcF",
544
+ "content_vXaaZsZa",
545
+ "content_tMem5Mbe",
546
+ "content_KQcCE6Sj",
547
+ "content_p6R3m539",
548
+ "content_sNsJ3KlV",
549
+ "content_FW24Vmum",
550
+ "content_G4NXnAA7",
551
+ "content_j5Ptpje5",
552
+ "content_JDzlnzlM",
553
+ "content_CYYETekq",
554
+ "content_1zBYbSNm",
555
+ "content_aIwueJvQ",
556
+ "content_0QoMjW0m",
557
+ "content_J6cuBIYs",
558
+ "content_vhmC2kzN",
559
+ "content_GUZnrkS9",
560
+ "content_qx6MZXEa",
561
+ "content_OHhdbcep",
562
+ "content_byP7PuFa",
563
+ "content_0lPFQP5r",
564
+ "content_LH9WscbG",
565
+ "content_qHnkrTKx",
566
+ "content_e194fV46",
567
+ "content_4JPpugRt",
568
+ "content_jnbTOPAJ",
569
+ "content_kZn4OIKL",
570
+ "content_HUHDgjBs",
571
+ "content_He4T0GAI",
572
+ "content_Ljol8aBQ",
573
+ "content_Be8jpYPv",
574
+ "content_Ni7vqhqP",
575
+ "content_oGpQeqlK",
576
+ "content_RAHHX2kT",
577
+ "content_lq6KdNMD",
578
+ "content_UDaDU0ph",
579
+ "content_3j1J9hJb",
580
+ "content_UNdLnavS",
581
+ "content_BsRnsA3A",
582
+ "content_Jv1en7hi",
583
+ "content_Dcpurtzf",
584
+ "content_P8fpLKcf",
585
+ "content_EwTeBWQQ",
586
+ "content_QdJ6Xove",
587
+ "content_6eRgWUvY",
588
+ "content_R61CtTY5",
589
+ "content_EhmDnd8z",
590
+ "content_ZwjUtYeC"
591
+ ],
592
+ "blockbuster_release": [
593
+ false
594
+ ],
595
+ "kids_profile": [
596
+ false
597
+ ],
598
+ "weekend_viewing": [
599
+ false
600
+ ],
601
+ "prime_time": [
602
+ false
603
+ ],
604
+ "ad_fatigue": [
605
+ false
606
+ ]
607
+ }
608
+ },
609
+ {
610
+ "event": "playback started",
611
+ "weight": 18,
612
+ "properties": {
613
+ "content_id": [
614
+ "content_A7YJdBpZ",
615
+ "content_0eoBvwRj",
616
+ "content_FDmORc2r",
617
+ "content_mqY9dARs",
618
+ "content_2zncbXYO",
619
+ "content_hpzkSOsc",
620
+ "content_9Zrg8a2y",
621
+ "content_Yoo8qdiQ",
622
+ "content_FnBl7i2D",
623
+ "content_aycVKqTv",
624
+ "content_Fw4g4JkN",
625
+ "content_TwNzs2hG",
626
+ "content_y3hap26A",
627
+ "content_C5H7cs1k",
628
+ "content_kDZyRAsE",
629
+ "content_LxWmKy7G",
630
+ "content_vnqZ4AkB",
631
+ "content_ots5bEtU",
632
+ "content_ZkKiXywP",
633
+ "content_8P36Xgey",
634
+ "content_0I93hGP4",
635
+ "content_vR7jqHVc",
636
+ "content_JTRI3JVL",
637
+ "content_swcK0MZn",
638
+ "content_LvO8AWK5",
639
+ "content_vlPD5Mhl",
640
+ "content_6KOW9CWF",
641
+ "content_bWscJ6Kk",
642
+ "content_jrPcEJ87",
643
+ "content_2eUI3FHk",
644
+ "content_jK9rIkaH",
645
+ "content_HGwYFwUh",
646
+ "content_J3jcNjKW",
647
+ "content_ScEfAbEF",
648
+ "content_43UFXQQ0",
649
+ "content_891xPtWY",
650
+ "content_lITWRI04",
651
+ "content_w3JqKYV3",
652
+ "content_StRFhyvQ",
653
+ "content_rUv6qgr1",
654
+ "content_k99Sibdc",
655
+ "content_K2QuRHn1",
656
+ "content_pM6kMMgv",
657
+ "content_w8cZMd7y",
658
+ "content_9fAzRWYh",
659
+ "content_aAQkBl0A",
660
+ "content_nvayonc5",
661
+ "content_3A3fcMjP",
662
+ "content_CJxyWOm8",
663
+ "content_R5SREkXL",
664
+ "content_dmGLTdsn",
665
+ "content_PYn0fvWF",
666
+ "content_8WPsUXir",
667
+ "content_CXPY310K",
668
+ "content_d4UcrwGh",
669
+ "content_vtK91Xz6",
670
+ "content_A3mAAzYf",
671
+ "content_NKfDXmw7",
672
+ "content_AWjaUMQj",
673
+ "content_na03Ih7X",
674
+ "content_EW348Rnd",
675
+ "content_ULOm7K3t",
676
+ "content_iIFRtUEq",
677
+ "content_vsIYy9qL",
678
+ "content_j9Hbygpp",
679
+ "content_9C6BCex0",
680
+ "content_TQWW2cyd",
681
+ "content_CZb9cL6U",
682
+ "content_D3sK9Anl",
683
+ "content_t4xnXoqc",
684
+ "content_SB8aF8Az",
685
+ "content_APXxM8ph",
686
+ "content_t0jGfeQD",
687
+ "content_s61U6ODY",
688
+ "content_TNbaVzYV",
689
+ "content_ms9Zl25p",
690
+ "content_1UsCV2pj",
691
+ "content_Z6MoiNni",
692
+ "content_APISf62T",
693
+ "content_B52EGzEM",
694
+ "content_AmoIB6XU",
695
+ "content_iuvXIHBN",
696
+ "content_qWZ27bcU",
697
+ "content_Xg9r78fl",
698
+ "content_MqV4SPBH",
699
+ "content_oUrax3cq",
700
+ "content_W23YbBC7",
701
+ "content_mNyrcDTW",
702
+ "content_Ul62ctUS",
703
+ "content_Cc6lCNZ8",
704
+ "content_Q8qX2c7n",
705
+ "content_JHuoYugU",
706
+ "content_SAWvu0s4",
707
+ "content_JW7FORBm",
708
+ "content_GJAjvY04",
709
+ "content_i1KCbbmt",
710
+ "content_GEt2DzST",
711
+ "content_tvVPeWV7",
712
+ "content_loHk1A1L",
713
+ "content_h8Oiogqm",
714
+ "content_vkNoPUhO",
715
+ "content_7yBYrOEG",
716
+ "content_kSCf95Qq",
717
+ "content_xWtcdpOo",
718
+ "content_L8f6uvzQ",
719
+ "content_fUUUmMGt",
720
+ "content_anUSQ67i",
721
+ "content_tLetf8Qt",
722
+ "content_q99nL7nc",
723
+ "content_Wc4FGzsU",
724
+ "content_GQ3abFOp",
725
+ "content_JGoCCXUQ",
726
+ "content_r1GRGYmz",
727
+ "content_1LLQe8aP",
728
+ "content_h2k46bHg",
729
+ "content_nXKRG8mR",
730
+ "content_HjzHA8Bq",
731
+ "content_ZJU1I2yG",
732
+ "content_fxjaSQPr",
733
+ "content_iwazMsOB",
734
+ "content_i29qOVVV",
735
+ "content_jAikMvCa",
736
+ "content_7W9kzF5X",
737
+ "content_ErtX5pAa",
738
+ "content_BkQz88lP",
739
+ "content_IhciVAwi",
740
+ "content_qA0hnsAn",
741
+ "content_27L83eZf",
742
+ "content_tzBXsTxu",
743
+ "content_E4oGNtrl",
744
+ "content_gciyZJCh",
745
+ "content_PtuCvyV2",
746
+ "content_vVSRiQPF",
747
+ "content_Vq66ExhX",
748
+ "content_DGup2Z42",
749
+ "content_LMUh70jG",
750
+ "content_vxhYdivI",
751
+ "content_xUtAORZn",
752
+ "content_QlQ72ogX",
753
+ "content_5fVtPogW",
754
+ "content_MlTmVUAa",
755
+ "content_m1Hx92Vd",
756
+ "content_I59032xE",
757
+ "content_SgjC6Whx",
758
+ "content_dbx8MprN",
759
+ "content_zFBNGjVI",
760
+ "content_qjNdhTNi",
761
+ "content_xoWjW6ay",
762
+ "content_KEZh5q7T",
763
+ "content_yYZJJAsB",
764
+ "content_mH6V5S0R",
765
+ "content_KYDRLoFg",
766
+ "content_PoWGfkGx",
767
+ "content_aeelz3Zt",
768
+ "content_GOXAzNET",
769
+ "content_acU7Gmak",
770
+ "content_SiT8XHUi",
771
+ "content_qbaYTa8L",
772
+ "content_wjbr1LW1",
773
+ "content_5VCD4uPD",
774
+ "content_8fBlcTIu",
775
+ "content_bxCEvR8L",
776
+ "content_grBL5Ksg",
777
+ "content_Hdu6VRPB",
778
+ "content_UMXdIC0c",
779
+ "content_o3Q5FLwG",
780
+ "content_jR06fl43",
781
+ "content_qUBkJxCM",
782
+ "content_VrLj50bs",
783
+ "content_s9ZYEzei",
784
+ "content_nzS9HOtD",
785
+ "content_Lr0s1cRj",
786
+ "content_vqJCDWCi",
787
+ "content_bHD2G9MR",
788
+ "content_uR30GvA0",
789
+ "content_pk5goaDF",
790
+ "content_qeWcFZaV",
791
+ "content_KcsgX8ak",
792
+ "content_SK7tEkOi",
793
+ "content_2OM92OSi",
794
+ "content_wLL3U3Zv",
795
+ "content_yvgUq9Me",
796
+ "content_AOv3QvGB",
797
+ "content_K32WFpwx",
798
+ "content_xHEfk6o7",
799
+ "content_YS5KpAPx",
800
+ "content_0Q9fkNuq",
801
+ "content_2pmf7t9L",
802
+ "content_SfSWIcIM",
803
+ "content_vv98RaEB",
804
+ "content_IRsG1XIG",
805
+ "content_obn2fG4t",
806
+ "content_zqufyq90",
807
+ "content_DZOt9Kv6",
808
+ "content_R6WcaDne",
809
+ "content_BXTFb3Iw",
810
+ "content_xMXoXser",
811
+ "content_7NDLvEDo",
812
+ "content_ZnBjWF2d",
813
+ "content_fk0bwbbx",
814
+ "content_FnbF9Ygx",
815
+ "content_jrQKSVVc",
816
+ "content_bFsvzYHn",
817
+ "content_iwxQI7Sw",
818
+ "content_Y0asCQ2D",
819
+ "content_mA6LXXMT",
820
+ "content_hIZalQo5",
821
+ "content_3OLScbOQ",
822
+ "content_JNfYiTnk",
823
+ "content_W9hgYHHo",
824
+ "content_WZfZEHk5",
825
+ "content_EtP3Uu2h",
826
+ "content_ZAn0jD0b",
827
+ "content_sVOSEzXy",
828
+ "content_hbHIUCOb",
829
+ "content_dI3KmFac",
830
+ "content_olJpwJRU",
831
+ "content_ux7PH579",
832
+ "content_9xFukeIo",
833
+ "content_GeuH2P6t",
834
+ "content_ujCrE0PA",
835
+ "content_wITs5LYE",
836
+ "content_xPVHjr5o",
837
+ "content_G7AVPmb5",
838
+ "content_Z9SPCgsx",
839
+ "content_qs9VHrrO",
840
+ "content_rnbBfX2d",
841
+ "content_iqfLHpAo",
842
+ "content_jjtE9dTu",
843
+ "content_Dfsp8rMm",
844
+ "content_eVOH34Pt",
845
+ "content_RjFWaMPC",
846
+ "content_NIQ1lDHn",
847
+ "content_rkyjzaaL",
848
+ "content_dHXk2WeJ",
849
+ "content_fxKeCXZl",
850
+ "content_smT0aEGu",
851
+ "content_GC4i565s",
852
+ "content_jOLFVfkn",
853
+ "content_QoVgnsc5",
854
+ "content_PRybWG0X",
855
+ "content_zCJERwy6",
856
+ "content_DSJwoIOj",
857
+ "content_cX1ykron",
858
+ "content_RbzLzFn0",
859
+ "content_IOAXAVE9",
860
+ "content_eZ5054JY",
861
+ "content_Q28sdasW",
862
+ "content_DCSVTl4l",
863
+ "content_dSHk1C4W",
864
+ "content_uRuPJVQM",
865
+ "content_rtzVLOUI",
866
+ "content_E527Lb0B",
867
+ "content_AfImyd4u",
868
+ "content_0LxRMjRr",
869
+ "content_weYQUiBE",
870
+ "content_IssRi6sZ",
871
+ "content_Fa918lwh",
872
+ "content_mxb68BKk",
873
+ "content_NfJRhYxb",
874
+ "content_RyCHYuLN",
875
+ "content_dgMIdInO",
876
+ "content_TwYruI3m",
877
+ "content_zmR1UT7i",
878
+ "content_WWGE9zaR",
879
+ "content_Z6dZnkIP",
880
+ "content_DiFXSUmw",
881
+ "content_SsmOM1sc",
882
+ "content_KKjx7Lxr",
883
+ "content_2Or26IAN",
884
+ "content_z8MaqGKP",
885
+ "content_R0ta3yYP",
886
+ "content_hecVKUmJ",
887
+ "content_gvKrcbMs",
888
+ "content_t1BEhxPe",
889
+ "content_Y6R5wM5E",
890
+ "content_bHklTFp7",
891
+ "content_O2ig9jWh",
892
+ "content_bG3KSWkE",
893
+ "content_v6KKhpcU",
894
+ "content_Yoz4xWMp",
895
+ "content_rxlb6D9C",
896
+ "content_Vthgdkut",
897
+ "content_omXNeKfd",
898
+ "content_kE9Jz8i5",
899
+ "content_U0xSsy4d",
900
+ "content_ZMYBWSJZ",
901
+ "content_HuiwwFFI",
902
+ "content_SCt5dxrJ",
903
+ "content_1eNEoXcb",
904
+ "content_JIUK7DlE",
905
+ "content_qw7GTB8w",
906
+ "content_Xi372Gja",
907
+ "content_zOsWGwis",
908
+ "content_uwEktuVK",
909
+ "content_wD9KluRR",
910
+ "content_6ATFurjl",
911
+ "content_CmruJmpV",
912
+ "content_xHYJTX3e",
913
+ "content_Q8p2WOoV",
914
+ "content_yVXtYWzk",
915
+ "content_g6kQKcHk",
916
+ "content_h7HWmch6",
917
+ "content_19dZVj2w",
918
+ "content_GPfP2lsn",
919
+ "content_6uevODtv",
920
+ "content_DHukROVM",
921
+ "content_G4UbhK6B",
922
+ "content_zYyjjHrC",
923
+ "content_yUser4kc",
924
+ "content_1doIRyUW",
925
+ "content_324wbAWH",
926
+ "content_NCpaWQur",
927
+ "content_dmMHs85S",
928
+ "content_qdcnKMvg",
929
+ "content_TOtrM3bG",
930
+ "content_uLQJnLog",
931
+ "content_udXwJtQJ",
932
+ "content_jy5jjVga",
933
+ "content_YaTiT8ne",
934
+ "content_nD3Lsmty",
935
+ "content_jvPIHdRG",
936
+ "content_X5urqxkF",
937
+ "content_HTs3Q2Oo",
938
+ "content_GxMPofgY",
939
+ "content_dJeWRg06",
940
+ "content_anSkVNuH",
941
+ "content_H1VlXTvl",
942
+ "content_Pyp2sw3h",
943
+ "content_o1clQ10g",
944
+ "content_CdWFS5S0",
945
+ "content_OqjWyYs5",
946
+ "content_4wQhqGUH",
947
+ "content_ngQQY7n4",
948
+ "content_ViWD6RLy",
949
+ "content_FQd7f1DI",
950
+ "content_cWo1fx7F",
951
+ "content_amv2SRq6",
952
+ "content_EoQL8mY7",
953
+ "content_z1Oou9pH",
954
+ "content_iWlQjdUC",
955
+ "content_IngrNwMm",
956
+ "content_0dmwIlSP",
957
+ "content_61uLOZQH",
958
+ "content_0m9SzKAE",
959
+ "content_KQpF90LW",
960
+ "content_WzGKTocn",
961
+ "content_vUqAYAKK",
962
+ "content_G9lqpkzb",
963
+ "content_w9NkpLWE",
964
+ "content_5c0at0bg",
965
+ "content_ABcXkliV",
966
+ "content_agT9IKcO",
967
+ "content_Zl97ZYu4",
968
+ "content_m6o2lL5L",
969
+ "content_LYa4q2JK",
970
+ "content_mGmdeZGS",
971
+ "content_wcIz9MEa",
972
+ "content_Vq60Pem5",
973
+ "content_qFBEMwga",
974
+ "content_VJYna4sU",
975
+ "content_ngGg1QUv",
976
+ "content_PmJPyszN",
977
+ "content_eUAyyPjh",
978
+ "content_mBDp70x9",
979
+ "content_u6USoGCZ",
980
+ "content_R9hKxGiK",
981
+ "content_YfWO9QPi",
982
+ "content_VbkjNbt3",
983
+ "content_2JzvMLZz",
984
+ "content_uZJfjJKB",
985
+ "content_lfmbKlDT",
986
+ "content_dT7Nacyt",
987
+ "content_BcCgtvc3",
988
+ "content_1YTY42FO",
989
+ "content_WbXVz21F",
990
+ "content_95iq4VfM",
991
+ "content_VBCLYSRx",
992
+ "content_8tUHUMXl",
993
+ "content_7VcmieZV",
994
+ "content_2LGXaX5u",
995
+ "content_nrp5yur3",
996
+ "content_pZrv9jPb",
997
+ "content_CEFSTQmy",
998
+ "content_Ibd6w9Nq",
999
+ "content_J3Us5kB5",
1000
+ "content_OUsHI6X5",
1001
+ "content_Daar9SgQ",
1002
+ "content_MxKJSCVd",
1003
+ "content_OPeoJgHR",
1004
+ "content_ljWpgIeC",
1005
+ "content_aXwGYopd",
1006
+ "content_vdY7n5WO",
1007
+ "content_YHUtdvT2",
1008
+ "content_iqW6eUwB",
1009
+ "content_AIeWsjoF",
1010
+ "content_7ZVK3DHR",
1011
+ "content_JVlahfnL",
1012
+ "content_8CLBPfqc",
1013
+ "content_ax0vQskf",
1014
+ "content_9t13p5hs",
1015
+ "content_kl7YnKnB",
1016
+ "content_HKzxSWei",
1017
+ "content_JVeEiLdt",
1018
+ "content_Hj5qNlME",
1019
+ "content_3OxIEgxT",
1020
+ "content_6HjgvBfj",
1021
+ "content_JNFWYCoR",
1022
+ "content_GcQgkp3m",
1023
+ "content_B5w0OKBD",
1024
+ "content_Smgbsivt",
1025
+ "content_34Syb0Jy",
1026
+ "content_w93cVuRe",
1027
+ "content_6p5GHcPd",
1028
+ "content_Enza4aca",
1029
+ "content_m9B2aq1w",
1030
+ "content_gK8YTn1t",
1031
+ "content_6XMhdwYF",
1032
+ "content_ntEL1am3",
1033
+ "content_l3tVmGpS",
1034
+ "content_Y5RvkrfS",
1035
+ "content_KhMaobjV",
1036
+ "content_SaANFgrB",
1037
+ "content_Azkn9P4w",
1038
+ "content_eGV2IBDX",
1039
+ "content_hUfyKBq8",
1040
+ "content_DFsjipgv",
1041
+ "content_cfkQWd6D",
1042
+ "content_bIdDZwey",
1043
+ "content_fMd87DPk",
1044
+ "content_ekxixpyj",
1045
+ "content_mxQ2GYIf",
1046
+ "content_cdpuZkKl",
1047
+ "content_Tjw5ZL4C",
1048
+ "content_tmx7g2zr",
1049
+ "content_6p2rOfgm",
1050
+ "content_J6ecE2Pf",
1051
+ "content_bY0XxyZe",
1052
+ "content_BmaMA0YL",
1053
+ "content_hy6qombB",
1054
+ "content_UfDBiLtG",
1055
+ "content_iwF4Y3SD",
1056
+ "content_pJy5d2GZ",
1057
+ "content_czKHneMH",
1058
+ "content_9zSerBA0",
1059
+ "content_Sbhb6RI6",
1060
+ "content_D4vL9ZOe",
1061
+ "content_bl1k5Iv6",
1062
+ "content_k6fU9s9Q",
1063
+ "content_wjHTC0sI",
1064
+ "content_dSuMeOWN",
1065
+ "content_K42jFl4U",
1066
+ "content_gi7Wbr3K",
1067
+ "content_mgJgDzcF",
1068
+ "content_vXaaZsZa",
1069
+ "content_tMem5Mbe",
1070
+ "content_KQcCE6Sj",
1071
+ "content_p6R3m539",
1072
+ "content_sNsJ3KlV",
1073
+ "content_FW24Vmum",
1074
+ "content_G4NXnAA7",
1075
+ "content_j5Ptpje5",
1076
+ "content_JDzlnzlM",
1077
+ "content_CYYETekq",
1078
+ "content_1zBYbSNm",
1079
+ "content_aIwueJvQ",
1080
+ "content_0QoMjW0m",
1081
+ "content_J6cuBIYs",
1082
+ "content_vhmC2kzN",
1083
+ "content_GUZnrkS9",
1084
+ "content_qx6MZXEa",
1085
+ "content_OHhdbcep",
1086
+ "content_byP7PuFa",
1087
+ "content_0lPFQP5r",
1088
+ "content_LH9WscbG",
1089
+ "content_qHnkrTKx",
1090
+ "content_e194fV46",
1091
+ "content_4JPpugRt",
1092
+ "content_jnbTOPAJ",
1093
+ "content_kZn4OIKL",
1094
+ "content_HUHDgjBs",
1095
+ "content_He4T0GAI",
1096
+ "content_Ljol8aBQ",
1097
+ "content_Be8jpYPv",
1098
+ "content_Ni7vqhqP",
1099
+ "content_oGpQeqlK",
1100
+ "content_RAHHX2kT",
1101
+ "content_lq6KdNMD",
1102
+ "content_UDaDU0ph",
1103
+ "content_3j1J9hJb",
1104
+ "content_UNdLnavS",
1105
+ "content_BsRnsA3A",
1106
+ "content_Jv1en7hi",
1107
+ "content_Dcpurtzf",
1108
+ "content_P8fpLKcf",
1109
+ "content_EwTeBWQQ",
1110
+ "content_QdJ6Xove",
1111
+ "content_6eRgWUvY",
1112
+ "content_R61CtTY5",
1113
+ "content_EhmDnd8z",
1114
+ "content_ZwjUtYeC"
1115
+ ],
1116
+ "content_type": [
1117
+ "movie",
1118
+ "series",
1119
+ "documentary",
1120
+ "special"
1121
+ ],
1122
+ "playback_quality": [
1123
+ "480p",
1124
+ "720p",
1125
+ "1080p",
1126
+ "4k"
1127
+ ],
1128
+ "subtitle_language": [
1129
+ "none",
1130
+ "english",
1131
+ "spanish",
1132
+ "french",
1133
+ "japanese",
1134
+ "korean"
1135
+ ],
1136
+ "playback_speed": [
1137
+ "0.5x",
1138
+ "1x",
1139
+ "1.25x",
1140
+ "1.5x",
1141
+ "2x"
1142
+ ],
1143
+ "blockbuster_release": [
1144
+ false
1145
+ ],
1146
+ "kids_profile": [
1147
+ false
1148
+ ],
1149
+ "binge_session": [
1150
+ false
1151
+ ],
1152
+ "weekend_viewing": [
1153
+ false
1154
+ ],
1155
+ "prime_time": [
1156
+ false
1157
+ ],
1158
+ "ad_fatigue": [
1159
+ false
1160
+ ]
1161
+ }
1162
+ },
1163
+ {
1164
+ "event": "playback completed",
1165
+ "weight": 12,
1166
+ "properties": {
1167
+ "content_id": [
1168
+ "content_A7YJdBpZ",
1169
+ "content_0eoBvwRj",
1170
+ "content_FDmORc2r",
1171
+ "content_mqY9dARs",
1172
+ "content_2zncbXYO",
1173
+ "content_hpzkSOsc",
1174
+ "content_9Zrg8a2y",
1175
+ "content_Yoo8qdiQ",
1176
+ "content_FnBl7i2D",
1177
+ "content_aycVKqTv",
1178
+ "content_Fw4g4JkN",
1179
+ "content_TwNzs2hG",
1180
+ "content_y3hap26A",
1181
+ "content_C5H7cs1k",
1182
+ "content_kDZyRAsE",
1183
+ "content_LxWmKy7G",
1184
+ "content_vnqZ4AkB",
1185
+ "content_ots5bEtU",
1186
+ "content_ZkKiXywP",
1187
+ "content_8P36Xgey",
1188
+ "content_0I93hGP4",
1189
+ "content_vR7jqHVc",
1190
+ "content_JTRI3JVL",
1191
+ "content_swcK0MZn",
1192
+ "content_LvO8AWK5",
1193
+ "content_vlPD5Mhl",
1194
+ "content_6KOW9CWF",
1195
+ "content_bWscJ6Kk",
1196
+ "content_jrPcEJ87",
1197
+ "content_2eUI3FHk",
1198
+ "content_jK9rIkaH",
1199
+ "content_HGwYFwUh",
1200
+ "content_J3jcNjKW",
1201
+ "content_ScEfAbEF",
1202
+ "content_43UFXQQ0",
1203
+ "content_891xPtWY",
1204
+ "content_lITWRI04",
1205
+ "content_w3JqKYV3",
1206
+ "content_StRFhyvQ",
1207
+ "content_rUv6qgr1",
1208
+ "content_k99Sibdc",
1209
+ "content_K2QuRHn1",
1210
+ "content_pM6kMMgv",
1211
+ "content_w8cZMd7y",
1212
+ "content_9fAzRWYh",
1213
+ "content_aAQkBl0A",
1214
+ "content_nvayonc5",
1215
+ "content_3A3fcMjP",
1216
+ "content_CJxyWOm8",
1217
+ "content_R5SREkXL",
1218
+ "content_dmGLTdsn",
1219
+ "content_PYn0fvWF",
1220
+ "content_8WPsUXir",
1221
+ "content_CXPY310K",
1222
+ "content_d4UcrwGh",
1223
+ "content_vtK91Xz6",
1224
+ "content_A3mAAzYf",
1225
+ "content_NKfDXmw7",
1226
+ "content_AWjaUMQj",
1227
+ "content_na03Ih7X",
1228
+ "content_EW348Rnd",
1229
+ "content_ULOm7K3t",
1230
+ "content_iIFRtUEq",
1231
+ "content_vsIYy9qL",
1232
+ "content_j9Hbygpp",
1233
+ "content_9C6BCex0",
1234
+ "content_TQWW2cyd",
1235
+ "content_CZb9cL6U",
1236
+ "content_D3sK9Anl",
1237
+ "content_t4xnXoqc",
1238
+ "content_SB8aF8Az",
1239
+ "content_APXxM8ph",
1240
+ "content_t0jGfeQD",
1241
+ "content_s61U6ODY",
1242
+ "content_TNbaVzYV",
1243
+ "content_ms9Zl25p",
1244
+ "content_1UsCV2pj",
1245
+ "content_Z6MoiNni",
1246
+ "content_APISf62T",
1247
+ "content_B52EGzEM",
1248
+ "content_AmoIB6XU",
1249
+ "content_iuvXIHBN",
1250
+ "content_qWZ27bcU",
1251
+ "content_Xg9r78fl",
1252
+ "content_MqV4SPBH",
1253
+ "content_oUrax3cq",
1254
+ "content_W23YbBC7",
1255
+ "content_mNyrcDTW",
1256
+ "content_Ul62ctUS",
1257
+ "content_Cc6lCNZ8",
1258
+ "content_Q8qX2c7n",
1259
+ "content_JHuoYugU",
1260
+ "content_SAWvu0s4",
1261
+ "content_JW7FORBm",
1262
+ "content_GJAjvY04",
1263
+ "content_i1KCbbmt",
1264
+ "content_GEt2DzST",
1265
+ "content_tvVPeWV7",
1266
+ "content_loHk1A1L",
1267
+ "content_h8Oiogqm",
1268
+ "content_vkNoPUhO",
1269
+ "content_7yBYrOEG",
1270
+ "content_kSCf95Qq",
1271
+ "content_xWtcdpOo",
1272
+ "content_L8f6uvzQ",
1273
+ "content_fUUUmMGt",
1274
+ "content_anUSQ67i",
1275
+ "content_tLetf8Qt",
1276
+ "content_q99nL7nc",
1277
+ "content_Wc4FGzsU",
1278
+ "content_GQ3abFOp",
1279
+ "content_JGoCCXUQ",
1280
+ "content_r1GRGYmz",
1281
+ "content_1LLQe8aP",
1282
+ "content_h2k46bHg",
1283
+ "content_nXKRG8mR",
1284
+ "content_HjzHA8Bq",
1285
+ "content_ZJU1I2yG",
1286
+ "content_fxjaSQPr",
1287
+ "content_iwazMsOB",
1288
+ "content_i29qOVVV",
1289
+ "content_jAikMvCa",
1290
+ "content_7W9kzF5X",
1291
+ "content_ErtX5pAa",
1292
+ "content_BkQz88lP",
1293
+ "content_IhciVAwi",
1294
+ "content_qA0hnsAn",
1295
+ "content_27L83eZf",
1296
+ "content_tzBXsTxu",
1297
+ "content_E4oGNtrl",
1298
+ "content_gciyZJCh",
1299
+ "content_PtuCvyV2",
1300
+ "content_vVSRiQPF",
1301
+ "content_Vq66ExhX",
1302
+ "content_DGup2Z42",
1303
+ "content_LMUh70jG",
1304
+ "content_vxhYdivI",
1305
+ "content_xUtAORZn",
1306
+ "content_QlQ72ogX",
1307
+ "content_5fVtPogW",
1308
+ "content_MlTmVUAa",
1309
+ "content_m1Hx92Vd",
1310
+ "content_I59032xE",
1311
+ "content_SgjC6Whx",
1312
+ "content_dbx8MprN",
1313
+ "content_zFBNGjVI",
1314
+ "content_qjNdhTNi",
1315
+ "content_xoWjW6ay",
1316
+ "content_KEZh5q7T",
1317
+ "content_yYZJJAsB",
1318
+ "content_mH6V5S0R",
1319
+ "content_KYDRLoFg",
1320
+ "content_PoWGfkGx",
1321
+ "content_aeelz3Zt",
1322
+ "content_GOXAzNET",
1323
+ "content_acU7Gmak",
1324
+ "content_SiT8XHUi",
1325
+ "content_qbaYTa8L",
1326
+ "content_wjbr1LW1",
1327
+ "content_5VCD4uPD",
1328
+ "content_8fBlcTIu",
1329
+ "content_bxCEvR8L",
1330
+ "content_grBL5Ksg",
1331
+ "content_Hdu6VRPB",
1332
+ "content_UMXdIC0c",
1333
+ "content_o3Q5FLwG",
1334
+ "content_jR06fl43",
1335
+ "content_qUBkJxCM",
1336
+ "content_VrLj50bs",
1337
+ "content_s9ZYEzei",
1338
+ "content_nzS9HOtD",
1339
+ "content_Lr0s1cRj",
1340
+ "content_vqJCDWCi",
1341
+ "content_bHD2G9MR",
1342
+ "content_uR30GvA0",
1343
+ "content_pk5goaDF",
1344
+ "content_qeWcFZaV",
1345
+ "content_KcsgX8ak",
1346
+ "content_SK7tEkOi",
1347
+ "content_2OM92OSi",
1348
+ "content_wLL3U3Zv",
1349
+ "content_yvgUq9Me",
1350
+ "content_AOv3QvGB",
1351
+ "content_K32WFpwx",
1352
+ "content_xHEfk6o7",
1353
+ "content_YS5KpAPx",
1354
+ "content_0Q9fkNuq",
1355
+ "content_2pmf7t9L",
1356
+ "content_SfSWIcIM",
1357
+ "content_vv98RaEB",
1358
+ "content_IRsG1XIG",
1359
+ "content_obn2fG4t",
1360
+ "content_zqufyq90",
1361
+ "content_DZOt9Kv6",
1362
+ "content_R6WcaDne",
1363
+ "content_BXTFb3Iw",
1364
+ "content_xMXoXser",
1365
+ "content_7NDLvEDo",
1366
+ "content_ZnBjWF2d",
1367
+ "content_fk0bwbbx",
1368
+ "content_FnbF9Ygx",
1369
+ "content_jrQKSVVc",
1370
+ "content_bFsvzYHn",
1371
+ "content_iwxQI7Sw",
1372
+ "content_Y0asCQ2D",
1373
+ "content_mA6LXXMT",
1374
+ "content_hIZalQo5",
1375
+ "content_3OLScbOQ",
1376
+ "content_JNfYiTnk",
1377
+ "content_W9hgYHHo",
1378
+ "content_WZfZEHk5",
1379
+ "content_EtP3Uu2h",
1380
+ "content_ZAn0jD0b",
1381
+ "content_sVOSEzXy",
1382
+ "content_hbHIUCOb",
1383
+ "content_dI3KmFac",
1384
+ "content_olJpwJRU",
1385
+ "content_ux7PH579",
1386
+ "content_9xFukeIo",
1387
+ "content_GeuH2P6t",
1388
+ "content_ujCrE0PA",
1389
+ "content_wITs5LYE",
1390
+ "content_xPVHjr5o",
1391
+ "content_G7AVPmb5",
1392
+ "content_Z9SPCgsx",
1393
+ "content_qs9VHrrO",
1394
+ "content_rnbBfX2d",
1395
+ "content_iqfLHpAo",
1396
+ "content_jjtE9dTu",
1397
+ "content_Dfsp8rMm",
1398
+ "content_eVOH34Pt",
1399
+ "content_RjFWaMPC",
1400
+ "content_NIQ1lDHn",
1401
+ "content_rkyjzaaL",
1402
+ "content_dHXk2WeJ",
1403
+ "content_fxKeCXZl",
1404
+ "content_smT0aEGu",
1405
+ "content_GC4i565s",
1406
+ "content_jOLFVfkn",
1407
+ "content_QoVgnsc5",
1408
+ "content_PRybWG0X",
1409
+ "content_zCJERwy6",
1410
+ "content_DSJwoIOj",
1411
+ "content_cX1ykron",
1412
+ "content_RbzLzFn0",
1413
+ "content_IOAXAVE9",
1414
+ "content_eZ5054JY",
1415
+ "content_Q28sdasW",
1416
+ "content_DCSVTl4l",
1417
+ "content_dSHk1C4W",
1418
+ "content_uRuPJVQM",
1419
+ "content_rtzVLOUI",
1420
+ "content_E527Lb0B",
1421
+ "content_AfImyd4u",
1422
+ "content_0LxRMjRr",
1423
+ "content_weYQUiBE",
1424
+ "content_IssRi6sZ",
1425
+ "content_Fa918lwh",
1426
+ "content_mxb68BKk",
1427
+ "content_NfJRhYxb",
1428
+ "content_RyCHYuLN",
1429
+ "content_dgMIdInO",
1430
+ "content_TwYruI3m",
1431
+ "content_zmR1UT7i",
1432
+ "content_WWGE9zaR",
1433
+ "content_Z6dZnkIP",
1434
+ "content_DiFXSUmw",
1435
+ "content_SsmOM1sc",
1436
+ "content_KKjx7Lxr",
1437
+ "content_2Or26IAN",
1438
+ "content_z8MaqGKP",
1439
+ "content_R0ta3yYP",
1440
+ "content_hecVKUmJ",
1441
+ "content_gvKrcbMs",
1442
+ "content_t1BEhxPe",
1443
+ "content_Y6R5wM5E",
1444
+ "content_bHklTFp7",
1445
+ "content_O2ig9jWh",
1446
+ "content_bG3KSWkE",
1447
+ "content_v6KKhpcU",
1448
+ "content_Yoz4xWMp",
1449
+ "content_rxlb6D9C",
1450
+ "content_Vthgdkut",
1451
+ "content_omXNeKfd",
1452
+ "content_kE9Jz8i5",
1453
+ "content_U0xSsy4d",
1454
+ "content_ZMYBWSJZ",
1455
+ "content_HuiwwFFI",
1456
+ "content_SCt5dxrJ",
1457
+ "content_1eNEoXcb",
1458
+ "content_JIUK7DlE",
1459
+ "content_qw7GTB8w",
1460
+ "content_Xi372Gja",
1461
+ "content_zOsWGwis",
1462
+ "content_uwEktuVK",
1463
+ "content_wD9KluRR",
1464
+ "content_6ATFurjl",
1465
+ "content_CmruJmpV",
1466
+ "content_xHYJTX3e",
1467
+ "content_Q8p2WOoV",
1468
+ "content_yVXtYWzk",
1469
+ "content_g6kQKcHk",
1470
+ "content_h7HWmch6",
1471
+ "content_19dZVj2w",
1472
+ "content_GPfP2lsn",
1473
+ "content_6uevODtv",
1474
+ "content_DHukROVM",
1475
+ "content_G4UbhK6B",
1476
+ "content_zYyjjHrC",
1477
+ "content_yUser4kc",
1478
+ "content_1doIRyUW",
1479
+ "content_324wbAWH",
1480
+ "content_NCpaWQur",
1481
+ "content_dmMHs85S",
1482
+ "content_qdcnKMvg",
1483
+ "content_TOtrM3bG",
1484
+ "content_uLQJnLog",
1485
+ "content_udXwJtQJ",
1486
+ "content_jy5jjVga",
1487
+ "content_YaTiT8ne",
1488
+ "content_nD3Lsmty",
1489
+ "content_jvPIHdRG",
1490
+ "content_X5urqxkF",
1491
+ "content_HTs3Q2Oo",
1492
+ "content_GxMPofgY",
1493
+ "content_dJeWRg06",
1494
+ "content_anSkVNuH",
1495
+ "content_H1VlXTvl",
1496
+ "content_Pyp2sw3h",
1497
+ "content_o1clQ10g",
1498
+ "content_CdWFS5S0",
1499
+ "content_OqjWyYs5",
1500
+ "content_4wQhqGUH",
1501
+ "content_ngQQY7n4",
1502
+ "content_ViWD6RLy",
1503
+ "content_FQd7f1DI",
1504
+ "content_cWo1fx7F",
1505
+ "content_amv2SRq6",
1506
+ "content_EoQL8mY7",
1507
+ "content_z1Oou9pH",
1508
+ "content_iWlQjdUC",
1509
+ "content_IngrNwMm",
1510
+ "content_0dmwIlSP",
1511
+ "content_61uLOZQH",
1512
+ "content_0m9SzKAE",
1513
+ "content_KQpF90LW",
1514
+ "content_WzGKTocn",
1515
+ "content_vUqAYAKK",
1516
+ "content_G9lqpkzb",
1517
+ "content_w9NkpLWE",
1518
+ "content_5c0at0bg",
1519
+ "content_ABcXkliV",
1520
+ "content_agT9IKcO",
1521
+ "content_Zl97ZYu4",
1522
+ "content_m6o2lL5L",
1523
+ "content_LYa4q2JK",
1524
+ "content_mGmdeZGS",
1525
+ "content_wcIz9MEa",
1526
+ "content_Vq60Pem5",
1527
+ "content_qFBEMwga",
1528
+ "content_VJYna4sU",
1529
+ "content_ngGg1QUv",
1530
+ "content_PmJPyszN",
1531
+ "content_eUAyyPjh",
1532
+ "content_mBDp70x9",
1533
+ "content_u6USoGCZ",
1534
+ "content_R9hKxGiK",
1535
+ "content_YfWO9QPi",
1536
+ "content_VbkjNbt3",
1537
+ "content_2JzvMLZz",
1538
+ "content_uZJfjJKB",
1539
+ "content_lfmbKlDT",
1540
+ "content_dT7Nacyt",
1541
+ "content_BcCgtvc3",
1542
+ "content_1YTY42FO",
1543
+ "content_WbXVz21F",
1544
+ "content_95iq4VfM",
1545
+ "content_VBCLYSRx",
1546
+ "content_8tUHUMXl",
1547
+ "content_7VcmieZV",
1548
+ "content_2LGXaX5u",
1549
+ "content_nrp5yur3",
1550
+ "content_pZrv9jPb",
1551
+ "content_CEFSTQmy",
1552
+ "content_Ibd6w9Nq",
1553
+ "content_J3Us5kB5",
1554
+ "content_OUsHI6X5",
1555
+ "content_Daar9SgQ",
1556
+ "content_MxKJSCVd",
1557
+ "content_OPeoJgHR",
1558
+ "content_ljWpgIeC",
1559
+ "content_aXwGYopd",
1560
+ "content_vdY7n5WO",
1561
+ "content_YHUtdvT2",
1562
+ "content_iqW6eUwB",
1563
+ "content_AIeWsjoF",
1564
+ "content_7ZVK3DHR",
1565
+ "content_JVlahfnL",
1566
+ "content_8CLBPfqc",
1567
+ "content_ax0vQskf",
1568
+ "content_9t13p5hs",
1569
+ "content_kl7YnKnB",
1570
+ "content_HKzxSWei",
1571
+ "content_JVeEiLdt",
1572
+ "content_Hj5qNlME",
1573
+ "content_3OxIEgxT",
1574
+ "content_6HjgvBfj",
1575
+ "content_JNFWYCoR",
1576
+ "content_GcQgkp3m",
1577
+ "content_B5w0OKBD",
1578
+ "content_Smgbsivt",
1579
+ "content_34Syb0Jy",
1580
+ "content_w93cVuRe",
1581
+ "content_6p5GHcPd",
1582
+ "content_Enza4aca",
1583
+ "content_m9B2aq1w",
1584
+ "content_gK8YTn1t",
1585
+ "content_6XMhdwYF",
1586
+ "content_ntEL1am3",
1587
+ "content_l3tVmGpS",
1588
+ "content_Y5RvkrfS",
1589
+ "content_KhMaobjV",
1590
+ "content_SaANFgrB",
1591
+ "content_Azkn9P4w",
1592
+ "content_eGV2IBDX",
1593
+ "content_hUfyKBq8",
1594
+ "content_DFsjipgv",
1595
+ "content_cfkQWd6D",
1596
+ "content_bIdDZwey",
1597
+ "content_fMd87DPk",
1598
+ "content_ekxixpyj",
1599
+ "content_mxQ2GYIf",
1600
+ "content_cdpuZkKl",
1601
+ "content_Tjw5ZL4C",
1602
+ "content_tmx7g2zr",
1603
+ "content_6p2rOfgm",
1604
+ "content_J6ecE2Pf",
1605
+ "content_bY0XxyZe",
1606
+ "content_BmaMA0YL",
1607
+ "content_hy6qombB",
1608
+ "content_UfDBiLtG",
1609
+ "content_iwF4Y3SD",
1610
+ "content_pJy5d2GZ",
1611
+ "content_czKHneMH",
1612
+ "content_9zSerBA0",
1613
+ "content_Sbhb6RI6",
1614
+ "content_D4vL9ZOe",
1615
+ "content_bl1k5Iv6",
1616
+ "content_k6fU9s9Q",
1617
+ "content_wjHTC0sI",
1618
+ "content_dSuMeOWN",
1619
+ "content_K42jFl4U",
1620
+ "content_gi7Wbr3K",
1621
+ "content_mgJgDzcF",
1622
+ "content_vXaaZsZa",
1623
+ "content_tMem5Mbe",
1624
+ "content_KQcCE6Sj",
1625
+ "content_p6R3m539",
1626
+ "content_sNsJ3KlV",
1627
+ "content_FW24Vmum",
1628
+ "content_G4NXnAA7",
1629
+ "content_j5Ptpje5",
1630
+ "content_JDzlnzlM",
1631
+ "content_CYYETekq",
1632
+ "content_1zBYbSNm",
1633
+ "content_aIwueJvQ",
1634
+ "content_0QoMjW0m",
1635
+ "content_J6cuBIYs",
1636
+ "content_vhmC2kzN",
1637
+ "content_GUZnrkS9",
1638
+ "content_qx6MZXEa",
1639
+ "content_OHhdbcep",
1640
+ "content_byP7PuFa",
1641
+ "content_0lPFQP5r",
1642
+ "content_LH9WscbG",
1643
+ "content_qHnkrTKx",
1644
+ "content_e194fV46",
1645
+ "content_4JPpugRt",
1646
+ "content_jnbTOPAJ",
1647
+ "content_kZn4OIKL",
1648
+ "content_HUHDgjBs",
1649
+ "content_He4T0GAI",
1650
+ "content_Ljol8aBQ",
1651
+ "content_Be8jpYPv",
1652
+ "content_Ni7vqhqP",
1653
+ "content_oGpQeqlK",
1654
+ "content_RAHHX2kT",
1655
+ "content_lq6KdNMD",
1656
+ "content_UDaDU0ph",
1657
+ "content_3j1J9hJb",
1658
+ "content_UNdLnavS",
1659
+ "content_BsRnsA3A",
1660
+ "content_Jv1en7hi",
1661
+ "content_Dcpurtzf",
1662
+ "content_P8fpLKcf",
1663
+ "content_EwTeBWQQ",
1664
+ "content_QdJ6Xove",
1665
+ "content_6eRgWUvY",
1666
+ "content_R61CtTY5",
1667
+ "content_EhmDnd8z",
1668
+ "content_ZwjUtYeC"
1669
+ ],
1670
+ "content_type": [
1671
+ "movie",
1672
+ "series",
1673
+ "documentary",
1674
+ "special"
1675
+ ],
1676
+ "watch_duration_min": {
1677
+ "$range": [
1678
+ 32,
1679
+ 157
1680
+ ]
1681
+ },
1682
+ "completion_percent": {
1683
+ "$range": [
1684
+ 16,
1685
+ 99
1686
+ ]
1687
+ },
1688
+ "binge_session": [
1689
+ false
1690
+ ],
1691
+ "subtitle_user": [
1692
+ false
1693
+ ],
1694
+ "weekend_viewing": [
1695
+ false
1696
+ ],
1697
+ "prime_time": [
1698
+ false
1699
+ ],
1700
+ "kids_profile": [
1701
+ false
1702
+ ],
1703
+ "ad_fatigue": [
1704
+ false
1705
+ ]
1706
+ }
1707
+ },
1708
+ {
1709
+ "event": "playback paused",
1710
+ "weight": 10,
1711
+ "properties": {
1712
+ "content_id": [
1713
+ "content_A7YJdBpZ",
1714
+ "content_0eoBvwRj",
1715
+ "content_FDmORc2r",
1716
+ "content_mqY9dARs",
1717
+ "content_2zncbXYO",
1718
+ "content_hpzkSOsc",
1719
+ "content_9Zrg8a2y",
1720
+ "content_Yoo8qdiQ",
1721
+ "content_FnBl7i2D",
1722
+ "content_aycVKqTv",
1723
+ "content_Fw4g4JkN",
1724
+ "content_TwNzs2hG",
1725
+ "content_y3hap26A",
1726
+ "content_C5H7cs1k",
1727
+ "content_kDZyRAsE",
1728
+ "content_LxWmKy7G",
1729
+ "content_vnqZ4AkB",
1730
+ "content_ots5bEtU",
1731
+ "content_ZkKiXywP",
1732
+ "content_8P36Xgey",
1733
+ "content_0I93hGP4",
1734
+ "content_vR7jqHVc",
1735
+ "content_JTRI3JVL",
1736
+ "content_swcK0MZn",
1737
+ "content_LvO8AWK5",
1738
+ "content_vlPD5Mhl",
1739
+ "content_6KOW9CWF",
1740
+ "content_bWscJ6Kk",
1741
+ "content_jrPcEJ87",
1742
+ "content_2eUI3FHk",
1743
+ "content_jK9rIkaH",
1744
+ "content_HGwYFwUh",
1745
+ "content_J3jcNjKW",
1746
+ "content_ScEfAbEF",
1747
+ "content_43UFXQQ0",
1748
+ "content_891xPtWY",
1749
+ "content_lITWRI04",
1750
+ "content_w3JqKYV3",
1751
+ "content_StRFhyvQ",
1752
+ "content_rUv6qgr1",
1753
+ "content_k99Sibdc",
1754
+ "content_K2QuRHn1",
1755
+ "content_pM6kMMgv",
1756
+ "content_w8cZMd7y",
1757
+ "content_9fAzRWYh",
1758
+ "content_aAQkBl0A",
1759
+ "content_nvayonc5",
1760
+ "content_3A3fcMjP",
1761
+ "content_CJxyWOm8",
1762
+ "content_R5SREkXL",
1763
+ "content_dmGLTdsn",
1764
+ "content_PYn0fvWF",
1765
+ "content_8WPsUXir",
1766
+ "content_CXPY310K",
1767
+ "content_d4UcrwGh",
1768
+ "content_vtK91Xz6",
1769
+ "content_A3mAAzYf",
1770
+ "content_NKfDXmw7",
1771
+ "content_AWjaUMQj",
1772
+ "content_na03Ih7X",
1773
+ "content_EW348Rnd",
1774
+ "content_ULOm7K3t",
1775
+ "content_iIFRtUEq",
1776
+ "content_vsIYy9qL",
1777
+ "content_j9Hbygpp",
1778
+ "content_9C6BCex0",
1779
+ "content_TQWW2cyd",
1780
+ "content_CZb9cL6U",
1781
+ "content_D3sK9Anl",
1782
+ "content_t4xnXoqc",
1783
+ "content_SB8aF8Az",
1784
+ "content_APXxM8ph",
1785
+ "content_t0jGfeQD",
1786
+ "content_s61U6ODY",
1787
+ "content_TNbaVzYV",
1788
+ "content_ms9Zl25p",
1789
+ "content_1UsCV2pj",
1790
+ "content_Z6MoiNni",
1791
+ "content_APISf62T",
1792
+ "content_B52EGzEM",
1793
+ "content_AmoIB6XU",
1794
+ "content_iuvXIHBN",
1795
+ "content_qWZ27bcU",
1796
+ "content_Xg9r78fl",
1797
+ "content_MqV4SPBH",
1798
+ "content_oUrax3cq",
1799
+ "content_W23YbBC7",
1800
+ "content_mNyrcDTW",
1801
+ "content_Ul62ctUS",
1802
+ "content_Cc6lCNZ8",
1803
+ "content_Q8qX2c7n",
1804
+ "content_JHuoYugU",
1805
+ "content_SAWvu0s4",
1806
+ "content_JW7FORBm",
1807
+ "content_GJAjvY04",
1808
+ "content_i1KCbbmt",
1809
+ "content_GEt2DzST",
1810
+ "content_tvVPeWV7",
1811
+ "content_loHk1A1L",
1812
+ "content_h8Oiogqm",
1813
+ "content_vkNoPUhO",
1814
+ "content_7yBYrOEG",
1815
+ "content_kSCf95Qq",
1816
+ "content_xWtcdpOo",
1817
+ "content_L8f6uvzQ",
1818
+ "content_fUUUmMGt",
1819
+ "content_anUSQ67i",
1820
+ "content_tLetf8Qt",
1821
+ "content_q99nL7nc",
1822
+ "content_Wc4FGzsU",
1823
+ "content_GQ3abFOp",
1824
+ "content_JGoCCXUQ",
1825
+ "content_r1GRGYmz",
1826
+ "content_1LLQe8aP",
1827
+ "content_h2k46bHg",
1828
+ "content_nXKRG8mR",
1829
+ "content_HjzHA8Bq",
1830
+ "content_ZJU1I2yG",
1831
+ "content_fxjaSQPr",
1832
+ "content_iwazMsOB",
1833
+ "content_i29qOVVV",
1834
+ "content_jAikMvCa",
1835
+ "content_7W9kzF5X",
1836
+ "content_ErtX5pAa",
1837
+ "content_BkQz88lP",
1838
+ "content_IhciVAwi",
1839
+ "content_qA0hnsAn",
1840
+ "content_27L83eZf",
1841
+ "content_tzBXsTxu",
1842
+ "content_E4oGNtrl",
1843
+ "content_gciyZJCh",
1844
+ "content_PtuCvyV2",
1845
+ "content_vVSRiQPF",
1846
+ "content_Vq66ExhX",
1847
+ "content_DGup2Z42",
1848
+ "content_LMUh70jG",
1849
+ "content_vxhYdivI",
1850
+ "content_xUtAORZn",
1851
+ "content_QlQ72ogX",
1852
+ "content_5fVtPogW",
1853
+ "content_MlTmVUAa",
1854
+ "content_m1Hx92Vd",
1855
+ "content_I59032xE",
1856
+ "content_SgjC6Whx",
1857
+ "content_dbx8MprN",
1858
+ "content_zFBNGjVI",
1859
+ "content_qjNdhTNi",
1860
+ "content_xoWjW6ay",
1861
+ "content_KEZh5q7T",
1862
+ "content_yYZJJAsB",
1863
+ "content_mH6V5S0R",
1864
+ "content_KYDRLoFg",
1865
+ "content_PoWGfkGx",
1866
+ "content_aeelz3Zt",
1867
+ "content_GOXAzNET",
1868
+ "content_acU7Gmak",
1869
+ "content_SiT8XHUi",
1870
+ "content_qbaYTa8L",
1871
+ "content_wjbr1LW1",
1872
+ "content_5VCD4uPD",
1873
+ "content_8fBlcTIu",
1874
+ "content_bxCEvR8L",
1875
+ "content_grBL5Ksg",
1876
+ "content_Hdu6VRPB",
1877
+ "content_UMXdIC0c",
1878
+ "content_o3Q5FLwG",
1879
+ "content_jR06fl43",
1880
+ "content_qUBkJxCM",
1881
+ "content_VrLj50bs",
1882
+ "content_s9ZYEzei",
1883
+ "content_nzS9HOtD",
1884
+ "content_Lr0s1cRj",
1885
+ "content_vqJCDWCi",
1886
+ "content_bHD2G9MR",
1887
+ "content_uR30GvA0",
1888
+ "content_pk5goaDF",
1889
+ "content_qeWcFZaV",
1890
+ "content_KcsgX8ak",
1891
+ "content_SK7tEkOi",
1892
+ "content_2OM92OSi",
1893
+ "content_wLL3U3Zv",
1894
+ "content_yvgUq9Me",
1895
+ "content_AOv3QvGB",
1896
+ "content_K32WFpwx",
1897
+ "content_xHEfk6o7",
1898
+ "content_YS5KpAPx",
1899
+ "content_0Q9fkNuq",
1900
+ "content_2pmf7t9L",
1901
+ "content_SfSWIcIM",
1902
+ "content_vv98RaEB",
1903
+ "content_IRsG1XIG",
1904
+ "content_obn2fG4t",
1905
+ "content_zqufyq90",
1906
+ "content_DZOt9Kv6",
1907
+ "content_R6WcaDne",
1908
+ "content_BXTFb3Iw",
1909
+ "content_xMXoXser",
1910
+ "content_7NDLvEDo",
1911
+ "content_ZnBjWF2d",
1912
+ "content_fk0bwbbx",
1913
+ "content_FnbF9Ygx",
1914
+ "content_jrQKSVVc",
1915
+ "content_bFsvzYHn",
1916
+ "content_iwxQI7Sw",
1917
+ "content_Y0asCQ2D",
1918
+ "content_mA6LXXMT",
1919
+ "content_hIZalQo5",
1920
+ "content_3OLScbOQ",
1921
+ "content_JNfYiTnk",
1922
+ "content_W9hgYHHo",
1923
+ "content_WZfZEHk5",
1924
+ "content_EtP3Uu2h",
1925
+ "content_ZAn0jD0b",
1926
+ "content_sVOSEzXy",
1927
+ "content_hbHIUCOb",
1928
+ "content_dI3KmFac",
1929
+ "content_olJpwJRU",
1930
+ "content_ux7PH579",
1931
+ "content_9xFukeIo",
1932
+ "content_GeuH2P6t",
1933
+ "content_ujCrE0PA",
1934
+ "content_wITs5LYE",
1935
+ "content_xPVHjr5o",
1936
+ "content_G7AVPmb5",
1937
+ "content_Z9SPCgsx",
1938
+ "content_qs9VHrrO",
1939
+ "content_rnbBfX2d",
1940
+ "content_iqfLHpAo",
1941
+ "content_jjtE9dTu",
1942
+ "content_Dfsp8rMm",
1943
+ "content_eVOH34Pt",
1944
+ "content_RjFWaMPC",
1945
+ "content_NIQ1lDHn",
1946
+ "content_rkyjzaaL",
1947
+ "content_dHXk2WeJ",
1948
+ "content_fxKeCXZl",
1949
+ "content_smT0aEGu",
1950
+ "content_GC4i565s",
1951
+ "content_jOLFVfkn",
1952
+ "content_QoVgnsc5",
1953
+ "content_PRybWG0X",
1954
+ "content_zCJERwy6",
1955
+ "content_DSJwoIOj",
1956
+ "content_cX1ykron",
1957
+ "content_RbzLzFn0",
1958
+ "content_IOAXAVE9",
1959
+ "content_eZ5054JY",
1960
+ "content_Q28sdasW",
1961
+ "content_DCSVTl4l",
1962
+ "content_dSHk1C4W",
1963
+ "content_uRuPJVQM",
1964
+ "content_rtzVLOUI",
1965
+ "content_E527Lb0B",
1966
+ "content_AfImyd4u",
1967
+ "content_0LxRMjRr",
1968
+ "content_weYQUiBE",
1969
+ "content_IssRi6sZ",
1970
+ "content_Fa918lwh",
1971
+ "content_mxb68BKk",
1972
+ "content_NfJRhYxb",
1973
+ "content_RyCHYuLN",
1974
+ "content_dgMIdInO",
1975
+ "content_TwYruI3m",
1976
+ "content_zmR1UT7i",
1977
+ "content_WWGE9zaR",
1978
+ "content_Z6dZnkIP",
1979
+ "content_DiFXSUmw",
1980
+ "content_SsmOM1sc",
1981
+ "content_KKjx7Lxr",
1982
+ "content_2Or26IAN",
1983
+ "content_z8MaqGKP",
1984
+ "content_R0ta3yYP",
1985
+ "content_hecVKUmJ",
1986
+ "content_gvKrcbMs",
1987
+ "content_t1BEhxPe",
1988
+ "content_Y6R5wM5E",
1989
+ "content_bHklTFp7",
1990
+ "content_O2ig9jWh",
1991
+ "content_bG3KSWkE",
1992
+ "content_v6KKhpcU",
1993
+ "content_Yoz4xWMp",
1994
+ "content_rxlb6D9C",
1995
+ "content_Vthgdkut",
1996
+ "content_omXNeKfd",
1997
+ "content_kE9Jz8i5",
1998
+ "content_U0xSsy4d",
1999
+ "content_ZMYBWSJZ",
2000
+ "content_HuiwwFFI",
2001
+ "content_SCt5dxrJ",
2002
+ "content_1eNEoXcb",
2003
+ "content_JIUK7DlE",
2004
+ "content_qw7GTB8w",
2005
+ "content_Xi372Gja",
2006
+ "content_zOsWGwis",
2007
+ "content_uwEktuVK",
2008
+ "content_wD9KluRR",
2009
+ "content_6ATFurjl",
2010
+ "content_CmruJmpV",
2011
+ "content_xHYJTX3e",
2012
+ "content_Q8p2WOoV",
2013
+ "content_yVXtYWzk",
2014
+ "content_g6kQKcHk",
2015
+ "content_h7HWmch6",
2016
+ "content_19dZVj2w",
2017
+ "content_GPfP2lsn",
2018
+ "content_6uevODtv",
2019
+ "content_DHukROVM",
2020
+ "content_G4UbhK6B",
2021
+ "content_zYyjjHrC",
2022
+ "content_yUser4kc",
2023
+ "content_1doIRyUW",
2024
+ "content_324wbAWH",
2025
+ "content_NCpaWQur",
2026
+ "content_dmMHs85S",
2027
+ "content_qdcnKMvg",
2028
+ "content_TOtrM3bG",
2029
+ "content_uLQJnLog",
2030
+ "content_udXwJtQJ",
2031
+ "content_jy5jjVga",
2032
+ "content_YaTiT8ne",
2033
+ "content_nD3Lsmty",
2034
+ "content_jvPIHdRG",
2035
+ "content_X5urqxkF",
2036
+ "content_HTs3Q2Oo",
2037
+ "content_GxMPofgY",
2038
+ "content_dJeWRg06",
2039
+ "content_anSkVNuH",
2040
+ "content_H1VlXTvl",
2041
+ "content_Pyp2sw3h",
2042
+ "content_o1clQ10g",
2043
+ "content_CdWFS5S0",
2044
+ "content_OqjWyYs5",
2045
+ "content_4wQhqGUH",
2046
+ "content_ngQQY7n4",
2047
+ "content_ViWD6RLy",
2048
+ "content_FQd7f1DI",
2049
+ "content_cWo1fx7F",
2050
+ "content_amv2SRq6",
2051
+ "content_EoQL8mY7",
2052
+ "content_z1Oou9pH",
2053
+ "content_iWlQjdUC",
2054
+ "content_IngrNwMm",
2055
+ "content_0dmwIlSP",
2056
+ "content_61uLOZQH",
2057
+ "content_0m9SzKAE",
2058
+ "content_KQpF90LW",
2059
+ "content_WzGKTocn",
2060
+ "content_vUqAYAKK",
2061
+ "content_G9lqpkzb",
2062
+ "content_w9NkpLWE",
2063
+ "content_5c0at0bg",
2064
+ "content_ABcXkliV",
2065
+ "content_agT9IKcO",
2066
+ "content_Zl97ZYu4",
2067
+ "content_m6o2lL5L",
2068
+ "content_LYa4q2JK",
2069
+ "content_mGmdeZGS",
2070
+ "content_wcIz9MEa",
2071
+ "content_Vq60Pem5",
2072
+ "content_qFBEMwga",
2073
+ "content_VJYna4sU",
2074
+ "content_ngGg1QUv",
2075
+ "content_PmJPyszN",
2076
+ "content_eUAyyPjh",
2077
+ "content_mBDp70x9",
2078
+ "content_u6USoGCZ",
2079
+ "content_R9hKxGiK",
2080
+ "content_YfWO9QPi",
2081
+ "content_VbkjNbt3",
2082
+ "content_2JzvMLZz",
2083
+ "content_uZJfjJKB",
2084
+ "content_lfmbKlDT",
2085
+ "content_dT7Nacyt",
2086
+ "content_BcCgtvc3",
2087
+ "content_1YTY42FO",
2088
+ "content_WbXVz21F",
2089
+ "content_95iq4VfM",
2090
+ "content_VBCLYSRx",
2091
+ "content_8tUHUMXl",
2092
+ "content_7VcmieZV",
2093
+ "content_2LGXaX5u",
2094
+ "content_nrp5yur3",
2095
+ "content_pZrv9jPb",
2096
+ "content_CEFSTQmy",
2097
+ "content_Ibd6w9Nq",
2098
+ "content_J3Us5kB5",
2099
+ "content_OUsHI6X5",
2100
+ "content_Daar9SgQ",
2101
+ "content_MxKJSCVd",
2102
+ "content_OPeoJgHR",
2103
+ "content_ljWpgIeC",
2104
+ "content_aXwGYopd",
2105
+ "content_vdY7n5WO",
2106
+ "content_YHUtdvT2",
2107
+ "content_iqW6eUwB",
2108
+ "content_AIeWsjoF",
2109
+ "content_7ZVK3DHR",
2110
+ "content_JVlahfnL",
2111
+ "content_8CLBPfqc",
2112
+ "content_ax0vQskf",
2113
+ "content_9t13p5hs",
2114
+ "content_kl7YnKnB",
2115
+ "content_HKzxSWei",
2116
+ "content_JVeEiLdt",
2117
+ "content_Hj5qNlME",
2118
+ "content_3OxIEgxT",
2119
+ "content_6HjgvBfj",
2120
+ "content_JNFWYCoR",
2121
+ "content_GcQgkp3m",
2122
+ "content_B5w0OKBD",
2123
+ "content_Smgbsivt",
2124
+ "content_34Syb0Jy",
2125
+ "content_w93cVuRe",
2126
+ "content_6p5GHcPd",
2127
+ "content_Enza4aca",
2128
+ "content_m9B2aq1w",
2129
+ "content_gK8YTn1t",
2130
+ "content_6XMhdwYF",
2131
+ "content_ntEL1am3",
2132
+ "content_l3tVmGpS",
2133
+ "content_Y5RvkrfS",
2134
+ "content_KhMaobjV",
2135
+ "content_SaANFgrB",
2136
+ "content_Azkn9P4w",
2137
+ "content_eGV2IBDX",
2138
+ "content_hUfyKBq8",
2139
+ "content_DFsjipgv",
2140
+ "content_cfkQWd6D",
2141
+ "content_bIdDZwey",
2142
+ "content_fMd87DPk",
2143
+ "content_ekxixpyj",
2144
+ "content_mxQ2GYIf",
2145
+ "content_cdpuZkKl",
2146
+ "content_Tjw5ZL4C",
2147
+ "content_tmx7g2zr",
2148
+ "content_6p2rOfgm",
2149
+ "content_J6ecE2Pf",
2150
+ "content_bY0XxyZe",
2151
+ "content_BmaMA0YL",
2152
+ "content_hy6qombB",
2153
+ "content_UfDBiLtG",
2154
+ "content_iwF4Y3SD",
2155
+ "content_pJy5d2GZ",
2156
+ "content_czKHneMH",
2157
+ "content_9zSerBA0",
2158
+ "content_Sbhb6RI6",
2159
+ "content_D4vL9ZOe",
2160
+ "content_bl1k5Iv6",
2161
+ "content_k6fU9s9Q",
2162
+ "content_wjHTC0sI",
2163
+ "content_dSuMeOWN",
2164
+ "content_K42jFl4U",
2165
+ "content_gi7Wbr3K",
2166
+ "content_mgJgDzcF",
2167
+ "content_vXaaZsZa",
2168
+ "content_tMem5Mbe",
2169
+ "content_KQcCE6Sj",
2170
+ "content_p6R3m539",
2171
+ "content_sNsJ3KlV",
2172
+ "content_FW24Vmum",
2173
+ "content_G4NXnAA7",
2174
+ "content_j5Ptpje5",
2175
+ "content_JDzlnzlM",
2176
+ "content_CYYETekq",
2177
+ "content_1zBYbSNm",
2178
+ "content_aIwueJvQ",
2179
+ "content_0QoMjW0m",
2180
+ "content_J6cuBIYs",
2181
+ "content_vhmC2kzN",
2182
+ "content_GUZnrkS9",
2183
+ "content_qx6MZXEa",
2184
+ "content_OHhdbcep",
2185
+ "content_byP7PuFa",
2186
+ "content_0lPFQP5r",
2187
+ "content_LH9WscbG",
2188
+ "content_qHnkrTKx",
2189
+ "content_e194fV46",
2190
+ "content_4JPpugRt",
2191
+ "content_jnbTOPAJ",
2192
+ "content_kZn4OIKL",
2193
+ "content_HUHDgjBs",
2194
+ "content_He4T0GAI",
2195
+ "content_Ljol8aBQ",
2196
+ "content_Be8jpYPv",
2197
+ "content_Ni7vqhqP",
2198
+ "content_oGpQeqlK",
2199
+ "content_RAHHX2kT",
2200
+ "content_lq6KdNMD",
2201
+ "content_UDaDU0ph",
2202
+ "content_3j1J9hJb",
2203
+ "content_UNdLnavS",
2204
+ "content_BsRnsA3A",
2205
+ "content_Jv1en7hi",
2206
+ "content_Dcpurtzf",
2207
+ "content_P8fpLKcf",
2208
+ "content_EwTeBWQQ",
2209
+ "content_QdJ6Xove",
2210
+ "content_6eRgWUvY",
2211
+ "content_R61CtTY5",
2212
+ "content_EhmDnd8z",
2213
+ "content_ZwjUtYeC"
2214
+ ],
2215
+ "pause_reason": [
2216
+ "manual",
2217
+ "ad_break",
2218
+ "buffering",
2219
+ "notification"
2220
+ ],
2221
+ "weekend_viewing": [
2222
+ false
2223
+ ],
2224
+ "prime_time": [
2225
+ false
2226
+ ],
2227
+ "kids_profile": [
2228
+ false
2229
+ ],
2230
+ "ad_fatigue": [
2231
+ false
2232
+ ]
2233
+ }
2234
+ },
2235
+ {
2236
+ "event": "content rated",
2237
+ "weight": 6,
2238
+ "properties": {
2239
+ "content_id": [
2240
+ "content_A7YJdBpZ",
2241
+ "content_0eoBvwRj",
2242
+ "content_FDmORc2r",
2243
+ "content_mqY9dARs",
2244
+ "content_2zncbXYO",
2245
+ "content_hpzkSOsc",
2246
+ "content_9Zrg8a2y",
2247
+ "content_Yoo8qdiQ",
2248
+ "content_FnBl7i2D",
2249
+ "content_aycVKqTv",
2250
+ "content_Fw4g4JkN",
2251
+ "content_TwNzs2hG",
2252
+ "content_y3hap26A",
2253
+ "content_C5H7cs1k",
2254
+ "content_kDZyRAsE",
2255
+ "content_LxWmKy7G",
2256
+ "content_vnqZ4AkB",
2257
+ "content_ots5bEtU",
2258
+ "content_ZkKiXywP",
2259
+ "content_8P36Xgey",
2260
+ "content_0I93hGP4",
2261
+ "content_vR7jqHVc",
2262
+ "content_JTRI3JVL",
2263
+ "content_swcK0MZn",
2264
+ "content_LvO8AWK5",
2265
+ "content_vlPD5Mhl",
2266
+ "content_6KOW9CWF",
2267
+ "content_bWscJ6Kk",
2268
+ "content_jrPcEJ87",
2269
+ "content_2eUI3FHk",
2270
+ "content_jK9rIkaH",
2271
+ "content_HGwYFwUh",
2272
+ "content_J3jcNjKW",
2273
+ "content_ScEfAbEF",
2274
+ "content_43UFXQQ0",
2275
+ "content_891xPtWY",
2276
+ "content_lITWRI04",
2277
+ "content_w3JqKYV3",
2278
+ "content_StRFhyvQ",
2279
+ "content_rUv6qgr1",
2280
+ "content_k99Sibdc",
2281
+ "content_K2QuRHn1",
2282
+ "content_pM6kMMgv",
2283
+ "content_w8cZMd7y",
2284
+ "content_9fAzRWYh",
2285
+ "content_aAQkBl0A",
2286
+ "content_nvayonc5",
2287
+ "content_3A3fcMjP",
2288
+ "content_CJxyWOm8",
2289
+ "content_R5SREkXL",
2290
+ "content_dmGLTdsn",
2291
+ "content_PYn0fvWF",
2292
+ "content_8WPsUXir",
2293
+ "content_CXPY310K",
2294
+ "content_d4UcrwGh",
2295
+ "content_vtK91Xz6",
2296
+ "content_A3mAAzYf",
2297
+ "content_NKfDXmw7",
2298
+ "content_AWjaUMQj",
2299
+ "content_na03Ih7X",
2300
+ "content_EW348Rnd",
2301
+ "content_ULOm7K3t",
2302
+ "content_iIFRtUEq",
2303
+ "content_vsIYy9qL",
2304
+ "content_j9Hbygpp",
2305
+ "content_9C6BCex0",
2306
+ "content_TQWW2cyd",
2307
+ "content_CZb9cL6U",
2308
+ "content_D3sK9Anl",
2309
+ "content_t4xnXoqc",
2310
+ "content_SB8aF8Az",
2311
+ "content_APXxM8ph",
2312
+ "content_t0jGfeQD",
2313
+ "content_s61U6ODY",
2314
+ "content_TNbaVzYV",
2315
+ "content_ms9Zl25p",
2316
+ "content_1UsCV2pj",
2317
+ "content_Z6MoiNni",
2318
+ "content_APISf62T",
2319
+ "content_B52EGzEM",
2320
+ "content_AmoIB6XU",
2321
+ "content_iuvXIHBN",
2322
+ "content_qWZ27bcU",
2323
+ "content_Xg9r78fl",
2324
+ "content_MqV4SPBH",
2325
+ "content_oUrax3cq",
2326
+ "content_W23YbBC7",
2327
+ "content_mNyrcDTW",
2328
+ "content_Ul62ctUS",
2329
+ "content_Cc6lCNZ8",
2330
+ "content_Q8qX2c7n",
2331
+ "content_JHuoYugU",
2332
+ "content_SAWvu0s4",
2333
+ "content_JW7FORBm",
2334
+ "content_GJAjvY04",
2335
+ "content_i1KCbbmt",
2336
+ "content_GEt2DzST",
2337
+ "content_tvVPeWV7",
2338
+ "content_loHk1A1L",
2339
+ "content_h8Oiogqm",
2340
+ "content_vkNoPUhO",
2341
+ "content_7yBYrOEG",
2342
+ "content_kSCf95Qq",
2343
+ "content_xWtcdpOo",
2344
+ "content_L8f6uvzQ",
2345
+ "content_fUUUmMGt",
2346
+ "content_anUSQ67i",
2347
+ "content_tLetf8Qt",
2348
+ "content_q99nL7nc",
2349
+ "content_Wc4FGzsU",
2350
+ "content_GQ3abFOp",
2351
+ "content_JGoCCXUQ",
2352
+ "content_r1GRGYmz",
2353
+ "content_1LLQe8aP",
2354
+ "content_h2k46bHg",
2355
+ "content_nXKRG8mR",
2356
+ "content_HjzHA8Bq",
2357
+ "content_ZJU1I2yG",
2358
+ "content_fxjaSQPr",
2359
+ "content_iwazMsOB",
2360
+ "content_i29qOVVV",
2361
+ "content_jAikMvCa",
2362
+ "content_7W9kzF5X",
2363
+ "content_ErtX5pAa",
2364
+ "content_BkQz88lP",
2365
+ "content_IhciVAwi",
2366
+ "content_qA0hnsAn",
2367
+ "content_27L83eZf",
2368
+ "content_tzBXsTxu",
2369
+ "content_E4oGNtrl",
2370
+ "content_gciyZJCh",
2371
+ "content_PtuCvyV2",
2372
+ "content_vVSRiQPF",
2373
+ "content_Vq66ExhX",
2374
+ "content_DGup2Z42",
2375
+ "content_LMUh70jG",
2376
+ "content_vxhYdivI",
2377
+ "content_xUtAORZn",
2378
+ "content_QlQ72ogX",
2379
+ "content_5fVtPogW",
2380
+ "content_MlTmVUAa",
2381
+ "content_m1Hx92Vd",
2382
+ "content_I59032xE",
2383
+ "content_SgjC6Whx",
2384
+ "content_dbx8MprN",
2385
+ "content_zFBNGjVI",
2386
+ "content_qjNdhTNi",
2387
+ "content_xoWjW6ay",
2388
+ "content_KEZh5q7T",
2389
+ "content_yYZJJAsB",
2390
+ "content_mH6V5S0R",
2391
+ "content_KYDRLoFg",
2392
+ "content_PoWGfkGx",
2393
+ "content_aeelz3Zt",
2394
+ "content_GOXAzNET",
2395
+ "content_acU7Gmak",
2396
+ "content_SiT8XHUi",
2397
+ "content_qbaYTa8L",
2398
+ "content_wjbr1LW1",
2399
+ "content_5VCD4uPD",
2400
+ "content_8fBlcTIu",
2401
+ "content_bxCEvR8L",
2402
+ "content_grBL5Ksg",
2403
+ "content_Hdu6VRPB",
2404
+ "content_UMXdIC0c",
2405
+ "content_o3Q5FLwG",
2406
+ "content_jR06fl43",
2407
+ "content_qUBkJxCM",
2408
+ "content_VrLj50bs",
2409
+ "content_s9ZYEzei",
2410
+ "content_nzS9HOtD",
2411
+ "content_Lr0s1cRj",
2412
+ "content_vqJCDWCi",
2413
+ "content_bHD2G9MR",
2414
+ "content_uR30GvA0",
2415
+ "content_pk5goaDF",
2416
+ "content_qeWcFZaV",
2417
+ "content_KcsgX8ak",
2418
+ "content_SK7tEkOi",
2419
+ "content_2OM92OSi",
2420
+ "content_wLL3U3Zv",
2421
+ "content_yvgUq9Me",
2422
+ "content_AOv3QvGB",
2423
+ "content_K32WFpwx",
2424
+ "content_xHEfk6o7",
2425
+ "content_YS5KpAPx",
2426
+ "content_0Q9fkNuq",
2427
+ "content_2pmf7t9L",
2428
+ "content_SfSWIcIM",
2429
+ "content_vv98RaEB",
2430
+ "content_IRsG1XIG",
2431
+ "content_obn2fG4t",
2432
+ "content_zqufyq90",
2433
+ "content_DZOt9Kv6",
2434
+ "content_R6WcaDne",
2435
+ "content_BXTFb3Iw",
2436
+ "content_xMXoXser",
2437
+ "content_7NDLvEDo",
2438
+ "content_ZnBjWF2d",
2439
+ "content_fk0bwbbx",
2440
+ "content_FnbF9Ygx",
2441
+ "content_jrQKSVVc",
2442
+ "content_bFsvzYHn",
2443
+ "content_iwxQI7Sw",
2444
+ "content_Y0asCQ2D",
2445
+ "content_mA6LXXMT",
2446
+ "content_hIZalQo5",
2447
+ "content_3OLScbOQ",
2448
+ "content_JNfYiTnk",
2449
+ "content_W9hgYHHo",
2450
+ "content_WZfZEHk5",
2451
+ "content_EtP3Uu2h",
2452
+ "content_ZAn0jD0b",
2453
+ "content_sVOSEzXy",
2454
+ "content_hbHIUCOb",
2455
+ "content_dI3KmFac",
2456
+ "content_olJpwJRU",
2457
+ "content_ux7PH579",
2458
+ "content_9xFukeIo",
2459
+ "content_GeuH2P6t",
2460
+ "content_ujCrE0PA",
2461
+ "content_wITs5LYE",
2462
+ "content_xPVHjr5o",
2463
+ "content_G7AVPmb5",
2464
+ "content_Z9SPCgsx",
2465
+ "content_qs9VHrrO",
2466
+ "content_rnbBfX2d",
2467
+ "content_iqfLHpAo",
2468
+ "content_jjtE9dTu",
2469
+ "content_Dfsp8rMm",
2470
+ "content_eVOH34Pt",
2471
+ "content_RjFWaMPC",
2472
+ "content_NIQ1lDHn",
2473
+ "content_rkyjzaaL",
2474
+ "content_dHXk2WeJ",
2475
+ "content_fxKeCXZl",
2476
+ "content_smT0aEGu",
2477
+ "content_GC4i565s",
2478
+ "content_jOLFVfkn",
2479
+ "content_QoVgnsc5",
2480
+ "content_PRybWG0X",
2481
+ "content_zCJERwy6",
2482
+ "content_DSJwoIOj",
2483
+ "content_cX1ykron",
2484
+ "content_RbzLzFn0",
2485
+ "content_IOAXAVE9",
2486
+ "content_eZ5054JY",
2487
+ "content_Q28sdasW",
2488
+ "content_DCSVTl4l",
2489
+ "content_dSHk1C4W",
2490
+ "content_uRuPJVQM",
2491
+ "content_rtzVLOUI",
2492
+ "content_E527Lb0B",
2493
+ "content_AfImyd4u",
2494
+ "content_0LxRMjRr",
2495
+ "content_weYQUiBE",
2496
+ "content_IssRi6sZ",
2497
+ "content_Fa918lwh",
2498
+ "content_mxb68BKk",
2499
+ "content_NfJRhYxb",
2500
+ "content_RyCHYuLN",
2501
+ "content_dgMIdInO",
2502
+ "content_TwYruI3m",
2503
+ "content_zmR1UT7i",
2504
+ "content_WWGE9zaR",
2505
+ "content_Z6dZnkIP",
2506
+ "content_DiFXSUmw",
2507
+ "content_SsmOM1sc",
2508
+ "content_KKjx7Lxr",
2509
+ "content_2Or26IAN",
2510
+ "content_z8MaqGKP",
2511
+ "content_R0ta3yYP",
2512
+ "content_hecVKUmJ",
2513
+ "content_gvKrcbMs",
2514
+ "content_t1BEhxPe",
2515
+ "content_Y6R5wM5E",
2516
+ "content_bHklTFp7",
2517
+ "content_O2ig9jWh",
2518
+ "content_bG3KSWkE",
2519
+ "content_v6KKhpcU",
2520
+ "content_Yoz4xWMp",
2521
+ "content_rxlb6D9C",
2522
+ "content_Vthgdkut",
2523
+ "content_omXNeKfd",
2524
+ "content_kE9Jz8i5",
2525
+ "content_U0xSsy4d",
2526
+ "content_ZMYBWSJZ",
2527
+ "content_HuiwwFFI",
2528
+ "content_SCt5dxrJ",
2529
+ "content_1eNEoXcb",
2530
+ "content_JIUK7DlE",
2531
+ "content_qw7GTB8w",
2532
+ "content_Xi372Gja",
2533
+ "content_zOsWGwis",
2534
+ "content_uwEktuVK",
2535
+ "content_wD9KluRR",
2536
+ "content_6ATFurjl",
2537
+ "content_CmruJmpV",
2538
+ "content_xHYJTX3e",
2539
+ "content_Q8p2WOoV",
2540
+ "content_yVXtYWzk",
2541
+ "content_g6kQKcHk",
2542
+ "content_h7HWmch6",
2543
+ "content_19dZVj2w",
2544
+ "content_GPfP2lsn",
2545
+ "content_6uevODtv",
2546
+ "content_DHukROVM",
2547
+ "content_G4UbhK6B",
2548
+ "content_zYyjjHrC",
2549
+ "content_yUser4kc",
2550
+ "content_1doIRyUW",
2551
+ "content_324wbAWH",
2552
+ "content_NCpaWQur",
2553
+ "content_dmMHs85S",
2554
+ "content_qdcnKMvg",
2555
+ "content_TOtrM3bG",
2556
+ "content_uLQJnLog",
2557
+ "content_udXwJtQJ",
2558
+ "content_jy5jjVga",
2559
+ "content_YaTiT8ne",
2560
+ "content_nD3Lsmty",
2561
+ "content_jvPIHdRG",
2562
+ "content_X5urqxkF",
2563
+ "content_HTs3Q2Oo",
2564
+ "content_GxMPofgY",
2565
+ "content_dJeWRg06",
2566
+ "content_anSkVNuH",
2567
+ "content_H1VlXTvl",
2568
+ "content_Pyp2sw3h",
2569
+ "content_o1clQ10g",
2570
+ "content_CdWFS5S0",
2571
+ "content_OqjWyYs5",
2572
+ "content_4wQhqGUH",
2573
+ "content_ngQQY7n4",
2574
+ "content_ViWD6RLy",
2575
+ "content_FQd7f1DI",
2576
+ "content_cWo1fx7F",
2577
+ "content_amv2SRq6",
2578
+ "content_EoQL8mY7",
2579
+ "content_z1Oou9pH",
2580
+ "content_iWlQjdUC",
2581
+ "content_IngrNwMm",
2582
+ "content_0dmwIlSP",
2583
+ "content_61uLOZQH",
2584
+ "content_0m9SzKAE",
2585
+ "content_KQpF90LW",
2586
+ "content_WzGKTocn",
2587
+ "content_vUqAYAKK",
2588
+ "content_G9lqpkzb",
2589
+ "content_w9NkpLWE",
2590
+ "content_5c0at0bg",
2591
+ "content_ABcXkliV",
2592
+ "content_agT9IKcO",
2593
+ "content_Zl97ZYu4",
2594
+ "content_m6o2lL5L",
2595
+ "content_LYa4q2JK",
2596
+ "content_mGmdeZGS",
2597
+ "content_wcIz9MEa",
2598
+ "content_Vq60Pem5",
2599
+ "content_qFBEMwga",
2600
+ "content_VJYna4sU",
2601
+ "content_ngGg1QUv",
2602
+ "content_PmJPyszN",
2603
+ "content_eUAyyPjh",
2604
+ "content_mBDp70x9",
2605
+ "content_u6USoGCZ",
2606
+ "content_R9hKxGiK",
2607
+ "content_YfWO9QPi",
2608
+ "content_VbkjNbt3",
2609
+ "content_2JzvMLZz",
2610
+ "content_uZJfjJKB",
2611
+ "content_lfmbKlDT",
2612
+ "content_dT7Nacyt",
2613
+ "content_BcCgtvc3",
2614
+ "content_1YTY42FO",
2615
+ "content_WbXVz21F",
2616
+ "content_95iq4VfM",
2617
+ "content_VBCLYSRx",
2618
+ "content_8tUHUMXl",
2619
+ "content_7VcmieZV",
2620
+ "content_2LGXaX5u",
2621
+ "content_nrp5yur3",
2622
+ "content_pZrv9jPb",
2623
+ "content_CEFSTQmy",
2624
+ "content_Ibd6w9Nq",
2625
+ "content_J3Us5kB5",
2626
+ "content_OUsHI6X5",
2627
+ "content_Daar9SgQ",
2628
+ "content_MxKJSCVd",
2629
+ "content_OPeoJgHR",
2630
+ "content_ljWpgIeC",
2631
+ "content_aXwGYopd",
2632
+ "content_vdY7n5WO",
2633
+ "content_YHUtdvT2",
2634
+ "content_iqW6eUwB",
2635
+ "content_AIeWsjoF",
2636
+ "content_7ZVK3DHR",
2637
+ "content_JVlahfnL",
2638
+ "content_8CLBPfqc",
2639
+ "content_ax0vQskf",
2640
+ "content_9t13p5hs",
2641
+ "content_kl7YnKnB",
2642
+ "content_HKzxSWei",
2643
+ "content_JVeEiLdt",
2644
+ "content_Hj5qNlME",
2645
+ "content_3OxIEgxT",
2646
+ "content_6HjgvBfj",
2647
+ "content_JNFWYCoR",
2648
+ "content_GcQgkp3m",
2649
+ "content_B5w0OKBD",
2650
+ "content_Smgbsivt",
2651
+ "content_34Syb0Jy",
2652
+ "content_w93cVuRe",
2653
+ "content_6p5GHcPd",
2654
+ "content_Enza4aca",
2655
+ "content_m9B2aq1w",
2656
+ "content_gK8YTn1t",
2657
+ "content_6XMhdwYF",
2658
+ "content_ntEL1am3",
2659
+ "content_l3tVmGpS",
2660
+ "content_Y5RvkrfS",
2661
+ "content_KhMaobjV",
2662
+ "content_SaANFgrB",
2663
+ "content_Azkn9P4w",
2664
+ "content_eGV2IBDX",
2665
+ "content_hUfyKBq8",
2666
+ "content_DFsjipgv",
2667
+ "content_cfkQWd6D",
2668
+ "content_bIdDZwey",
2669
+ "content_fMd87DPk",
2670
+ "content_ekxixpyj",
2671
+ "content_mxQ2GYIf",
2672
+ "content_cdpuZkKl",
2673
+ "content_Tjw5ZL4C",
2674
+ "content_tmx7g2zr",
2675
+ "content_6p2rOfgm",
2676
+ "content_J6ecE2Pf",
2677
+ "content_bY0XxyZe",
2678
+ "content_BmaMA0YL",
2679
+ "content_hy6qombB",
2680
+ "content_UfDBiLtG",
2681
+ "content_iwF4Y3SD",
2682
+ "content_pJy5d2GZ",
2683
+ "content_czKHneMH",
2684
+ "content_9zSerBA0",
2685
+ "content_Sbhb6RI6",
2686
+ "content_D4vL9ZOe",
2687
+ "content_bl1k5Iv6",
2688
+ "content_k6fU9s9Q",
2689
+ "content_wjHTC0sI",
2690
+ "content_dSuMeOWN",
2691
+ "content_K42jFl4U",
2692
+ "content_gi7Wbr3K",
2693
+ "content_mgJgDzcF",
2694
+ "content_vXaaZsZa",
2695
+ "content_tMem5Mbe",
2696
+ "content_KQcCE6Sj",
2697
+ "content_p6R3m539",
2698
+ "content_sNsJ3KlV",
2699
+ "content_FW24Vmum",
2700
+ "content_G4NXnAA7",
2701
+ "content_j5Ptpje5",
2702
+ "content_JDzlnzlM",
2703
+ "content_CYYETekq",
2704
+ "content_1zBYbSNm",
2705
+ "content_aIwueJvQ",
2706
+ "content_0QoMjW0m",
2707
+ "content_J6cuBIYs",
2708
+ "content_vhmC2kzN",
2709
+ "content_GUZnrkS9",
2710
+ "content_qx6MZXEa",
2711
+ "content_OHhdbcep",
2712
+ "content_byP7PuFa",
2713
+ "content_0lPFQP5r",
2714
+ "content_LH9WscbG",
2715
+ "content_qHnkrTKx",
2716
+ "content_e194fV46",
2717
+ "content_4JPpugRt",
2718
+ "content_jnbTOPAJ",
2719
+ "content_kZn4OIKL",
2720
+ "content_HUHDgjBs",
2721
+ "content_He4T0GAI",
2722
+ "content_Ljol8aBQ",
2723
+ "content_Be8jpYPv",
2724
+ "content_Ni7vqhqP",
2725
+ "content_oGpQeqlK",
2726
+ "content_RAHHX2kT",
2727
+ "content_lq6KdNMD",
2728
+ "content_UDaDU0ph",
2729
+ "content_3j1J9hJb",
2730
+ "content_UNdLnavS",
2731
+ "content_BsRnsA3A",
2732
+ "content_Jv1en7hi",
2733
+ "content_Dcpurtzf",
2734
+ "content_P8fpLKcf",
2735
+ "content_EwTeBWQQ",
2736
+ "content_QdJ6Xove",
2737
+ "content_6eRgWUvY",
2738
+ "content_R61CtTY5",
2739
+ "content_EhmDnd8z",
2740
+ "content_ZwjUtYeC"
2741
+ ],
2742
+ "rating": [
2743
+ 2,
2744
+ 3
2745
+ ],
2746
+ "review_text_length": {
2747
+ "$type": "array"
2748
+ },
2749
+ "blockbuster_release": [
2750
+ false
2751
+ ],
2752
+ "weekend_viewing": [
2753
+ false
2754
+ ],
2755
+ "prime_time": [
2756
+ false
2757
+ ],
2758
+ "kids_profile": [
2759
+ false
2760
+ ],
2761
+ "ad_fatigue": [
2762
+ false
2763
+ ]
2764
+ }
2765
+ },
2766
+ {
2767
+ "event": "watchlist added",
2768
+ "weight": 8,
2769
+ "properties": {
2770
+ "content_id": [
2771
+ "content_A7YJdBpZ",
2772
+ "content_0eoBvwRj",
2773
+ "content_FDmORc2r",
2774
+ "content_mqY9dARs",
2775
+ "content_2zncbXYO",
2776
+ "content_hpzkSOsc",
2777
+ "content_9Zrg8a2y",
2778
+ "content_Yoo8qdiQ",
2779
+ "content_FnBl7i2D",
2780
+ "content_aycVKqTv",
2781
+ "content_Fw4g4JkN",
2782
+ "content_TwNzs2hG",
2783
+ "content_y3hap26A",
2784
+ "content_C5H7cs1k",
2785
+ "content_kDZyRAsE",
2786
+ "content_LxWmKy7G",
2787
+ "content_vnqZ4AkB",
2788
+ "content_ots5bEtU",
2789
+ "content_ZkKiXywP",
2790
+ "content_8P36Xgey",
2791
+ "content_0I93hGP4",
2792
+ "content_vR7jqHVc",
2793
+ "content_JTRI3JVL",
2794
+ "content_swcK0MZn",
2795
+ "content_LvO8AWK5",
2796
+ "content_vlPD5Mhl",
2797
+ "content_6KOW9CWF",
2798
+ "content_bWscJ6Kk",
2799
+ "content_jrPcEJ87",
2800
+ "content_2eUI3FHk",
2801
+ "content_jK9rIkaH",
2802
+ "content_HGwYFwUh",
2803
+ "content_J3jcNjKW",
2804
+ "content_ScEfAbEF",
2805
+ "content_43UFXQQ0",
2806
+ "content_891xPtWY",
2807
+ "content_lITWRI04",
2808
+ "content_w3JqKYV3",
2809
+ "content_StRFhyvQ",
2810
+ "content_rUv6qgr1",
2811
+ "content_k99Sibdc",
2812
+ "content_K2QuRHn1",
2813
+ "content_pM6kMMgv",
2814
+ "content_w8cZMd7y",
2815
+ "content_9fAzRWYh",
2816
+ "content_aAQkBl0A",
2817
+ "content_nvayonc5",
2818
+ "content_3A3fcMjP",
2819
+ "content_CJxyWOm8",
2820
+ "content_R5SREkXL",
2821
+ "content_dmGLTdsn",
2822
+ "content_PYn0fvWF",
2823
+ "content_8WPsUXir",
2824
+ "content_CXPY310K",
2825
+ "content_d4UcrwGh",
2826
+ "content_vtK91Xz6",
2827
+ "content_A3mAAzYf",
2828
+ "content_NKfDXmw7",
2829
+ "content_AWjaUMQj",
2830
+ "content_na03Ih7X",
2831
+ "content_EW348Rnd",
2832
+ "content_ULOm7K3t",
2833
+ "content_iIFRtUEq",
2834
+ "content_vsIYy9qL",
2835
+ "content_j9Hbygpp",
2836
+ "content_9C6BCex0",
2837
+ "content_TQWW2cyd",
2838
+ "content_CZb9cL6U",
2839
+ "content_D3sK9Anl",
2840
+ "content_t4xnXoqc",
2841
+ "content_SB8aF8Az",
2842
+ "content_APXxM8ph",
2843
+ "content_t0jGfeQD",
2844
+ "content_s61U6ODY",
2845
+ "content_TNbaVzYV",
2846
+ "content_ms9Zl25p",
2847
+ "content_1UsCV2pj",
2848
+ "content_Z6MoiNni",
2849
+ "content_APISf62T",
2850
+ "content_B52EGzEM",
2851
+ "content_AmoIB6XU",
2852
+ "content_iuvXIHBN",
2853
+ "content_qWZ27bcU",
2854
+ "content_Xg9r78fl",
2855
+ "content_MqV4SPBH",
2856
+ "content_oUrax3cq",
2857
+ "content_W23YbBC7",
2858
+ "content_mNyrcDTW",
2859
+ "content_Ul62ctUS",
2860
+ "content_Cc6lCNZ8",
2861
+ "content_Q8qX2c7n",
2862
+ "content_JHuoYugU",
2863
+ "content_SAWvu0s4",
2864
+ "content_JW7FORBm",
2865
+ "content_GJAjvY04",
2866
+ "content_i1KCbbmt",
2867
+ "content_GEt2DzST",
2868
+ "content_tvVPeWV7",
2869
+ "content_loHk1A1L",
2870
+ "content_h8Oiogqm",
2871
+ "content_vkNoPUhO",
2872
+ "content_7yBYrOEG",
2873
+ "content_kSCf95Qq",
2874
+ "content_xWtcdpOo",
2875
+ "content_L8f6uvzQ",
2876
+ "content_fUUUmMGt",
2877
+ "content_anUSQ67i",
2878
+ "content_tLetf8Qt",
2879
+ "content_q99nL7nc",
2880
+ "content_Wc4FGzsU",
2881
+ "content_GQ3abFOp",
2882
+ "content_JGoCCXUQ",
2883
+ "content_r1GRGYmz",
2884
+ "content_1LLQe8aP",
2885
+ "content_h2k46bHg",
2886
+ "content_nXKRG8mR",
2887
+ "content_HjzHA8Bq",
2888
+ "content_ZJU1I2yG",
2889
+ "content_fxjaSQPr",
2890
+ "content_iwazMsOB",
2891
+ "content_i29qOVVV",
2892
+ "content_jAikMvCa",
2893
+ "content_7W9kzF5X",
2894
+ "content_ErtX5pAa",
2895
+ "content_BkQz88lP",
2896
+ "content_IhciVAwi",
2897
+ "content_qA0hnsAn",
2898
+ "content_27L83eZf",
2899
+ "content_tzBXsTxu",
2900
+ "content_E4oGNtrl",
2901
+ "content_gciyZJCh",
2902
+ "content_PtuCvyV2",
2903
+ "content_vVSRiQPF",
2904
+ "content_Vq66ExhX",
2905
+ "content_DGup2Z42",
2906
+ "content_LMUh70jG",
2907
+ "content_vxhYdivI",
2908
+ "content_xUtAORZn",
2909
+ "content_QlQ72ogX",
2910
+ "content_5fVtPogW",
2911
+ "content_MlTmVUAa",
2912
+ "content_m1Hx92Vd",
2913
+ "content_I59032xE",
2914
+ "content_SgjC6Whx",
2915
+ "content_dbx8MprN",
2916
+ "content_zFBNGjVI",
2917
+ "content_qjNdhTNi",
2918
+ "content_xoWjW6ay",
2919
+ "content_KEZh5q7T",
2920
+ "content_yYZJJAsB",
2921
+ "content_mH6V5S0R",
2922
+ "content_KYDRLoFg",
2923
+ "content_PoWGfkGx",
2924
+ "content_aeelz3Zt",
2925
+ "content_GOXAzNET",
2926
+ "content_acU7Gmak",
2927
+ "content_SiT8XHUi",
2928
+ "content_qbaYTa8L",
2929
+ "content_wjbr1LW1",
2930
+ "content_5VCD4uPD",
2931
+ "content_8fBlcTIu",
2932
+ "content_bxCEvR8L",
2933
+ "content_grBL5Ksg",
2934
+ "content_Hdu6VRPB",
2935
+ "content_UMXdIC0c",
2936
+ "content_o3Q5FLwG",
2937
+ "content_jR06fl43",
2938
+ "content_qUBkJxCM",
2939
+ "content_VrLj50bs",
2940
+ "content_s9ZYEzei",
2941
+ "content_nzS9HOtD",
2942
+ "content_Lr0s1cRj",
2943
+ "content_vqJCDWCi",
2944
+ "content_bHD2G9MR",
2945
+ "content_uR30GvA0",
2946
+ "content_pk5goaDF",
2947
+ "content_qeWcFZaV",
2948
+ "content_KcsgX8ak",
2949
+ "content_SK7tEkOi",
2950
+ "content_2OM92OSi",
2951
+ "content_wLL3U3Zv",
2952
+ "content_yvgUq9Me",
2953
+ "content_AOv3QvGB",
2954
+ "content_K32WFpwx",
2955
+ "content_xHEfk6o7",
2956
+ "content_YS5KpAPx",
2957
+ "content_0Q9fkNuq",
2958
+ "content_2pmf7t9L",
2959
+ "content_SfSWIcIM",
2960
+ "content_vv98RaEB",
2961
+ "content_IRsG1XIG",
2962
+ "content_obn2fG4t",
2963
+ "content_zqufyq90",
2964
+ "content_DZOt9Kv6",
2965
+ "content_R6WcaDne",
2966
+ "content_BXTFb3Iw",
2967
+ "content_xMXoXser",
2968
+ "content_7NDLvEDo",
2969
+ "content_ZnBjWF2d",
2970
+ "content_fk0bwbbx",
2971
+ "content_FnbF9Ygx",
2972
+ "content_jrQKSVVc",
2973
+ "content_bFsvzYHn",
2974
+ "content_iwxQI7Sw",
2975
+ "content_Y0asCQ2D",
2976
+ "content_mA6LXXMT",
2977
+ "content_hIZalQo5",
2978
+ "content_3OLScbOQ",
2979
+ "content_JNfYiTnk",
2980
+ "content_W9hgYHHo",
2981
+ "content_WZfZEHk5",
2982
+ "content_EtP3Uu2h",
2983
+ "content_ZAn0jD0b",
2984
+ "content_sVOSEzXy",
2985
+ "content_hbHIUCOb",
2986
+ "content_dI3KmFac",
2987
+ "content_olJpwJRU",
2988
+ "content_ux7PH579",
2989
+ "content_9xFukeIo",
2990
+ "content_GeuH2P6t",
2991
+ "content_ujCrE0PA",
2992
+ "content_wITs5LYE",
2993
+ "content_xPVHjr5o",
2994
+ "content_G7AVPmb5",
2995
+ "content_Z9SPCgsx",
2996
+ "content_qs9VHrrO",
2997
+ "content_rnbBfX2d",
2998
+ "content_iqfLHpAo",
2999
+ "content_jjtE9dTu",
3000
+ "content_Dfsp8rMm",
3001
+ "content_eVOH34Pt",
3002
+ "content_RjFWaMPC",
3003
+ "content_NIQ1lDHn",
3004
+ "content_rkyjzaaL",
3005
+ "content_dHXk2WeJ",
3006
+ "content_fxKeCXZl",
3007
+ "content_smT0aEGu",
3008
+ "content_GC4i565s",
3009
+ "content_jOLFVfkn",
3010
+ "content_QoVgnsc5",
3011
+ "content_PRybWG0X",
3012
+ "content_zCJERwy6",
3013
+ "content_DSJwoIOj",
3014
+ "content_cX1ykron",
3015
+ "content_RbzLzFn0",
3016
+ "content_IOAXAVE9",
3017
+ "content_eZ5054JY",
3018
+ "content_Q28sdasW",
3019
+ "content_DCSVTl4l",
3020
+ "content_dSHk1C4W",
3021
+ "content_uRuPJVQM",
3022
+ "content_rtzVLOUI",
3023
+ "content_E527Lb0B",
3024
+ "content_AfImyd4u",
3025
+ "content_0LxRMjRr",
3026
+ "content_weYQUiBE",
3027
+ "content_IssRi6sZ",
3028
+ "content_Fa918lwh",
3029
+ "content_mxb68BKk",
3030
+ "content_NfJRhYxb",
3031
+ "content_RyCHYuLN",
3032
+ "content_dgMIdInO",
3033
+ "content_TwYruI3m",
3034
+ "content_zmR1UT7i",
3035
+ "content_WWGE9zaR",
3036
+ "content_Z6dZnkIP",
3037
+ "content_DiFXSUmw",
3038
+ "content_SsmOM1sc",
3039
+ "content_KKjx7Lxr",
3040
+ "content_2Or26IAN",
3041
+ "content_z8MaqGKP",
3042
+ "content_R0ta3yYP",
3043
+ "content_hecVKUmJ",
3044
+ "content_gvKrcbMs",
3045
+ "content_t1BEhxPe",
3046
+ "content_Y6R5wM5E",
3047
+ "content_bHklTFp7",
3048
+ "content_O2ig9jWh",
3049
+ "content_bG3KSWkE",
3050
+ "content_v6KKhpcU",
3051
+ "content_Yoz4xWMp",
3052
+ "content_rxlb6D9C",
3053
+ "content_Vthgdkut",
3054
+ "content_omXNeKfd",
3055
+ "content_kE9Jz8i5",
3056
+ "content_U0xSsy4d",
3057
+ "content_ZMYBWSJZ",
3058
+ "content_HuiwwFFI",
3059
+ "content_SCt5dxrJ",
3060
+ "content_1eNEoXcb",
3061
+ "content_JIUK7DlE",
3062
+ "content_qw7GTB8w",
3063
+ "content_Xi372Gja",
3064
+ "content_zOsWGwis",
3065
+ "content_uwEktuVK",
3066
+ "content_wD9KluRR",
3067
+ "content_6ATFurjl",
3068
+ "content_CmruJmpV",
3069
+ "content_xHYJTX3e",
3070
+ "content_Q8p2WOoV",
3071
+ "content_yVXtYWzk",
3072
+ "content_g6kQKcHk",
3073
+ "content_h7HWmch6",
3074
+ "content_19dZVj2w",
3075
+ "content_GPfP2lsn",
3076
+ "content_6uevODtv",
3077
+ "content_DHukROVM",
3078
+ "content_G4UbhK6B",
3079
+ "content_zYyjjHrC",
3080
+ "content_yUser4kc",
3081
+ "content_1doIRyUW",
3082
+ "content_324wbAWH",
3083
+ "content_NCpaWQur",
3084
+ "content_dmMHs85S",
3085
+ "content_qdcnKMvg",
3086
+ "content_TOtrM3bG",
3087
+ "content_uLQJnLog",
3088
+ "content_udXwJtQJ",
3089
+ "content_jy5jjVga",
3090
+ "content_YaTiT8ne",
3091
+ "content_nD3Lsmty",
3092
+ "content_jvPIHdRG",
3093
+ "content_X5urqxkF",
3094
+ "content_HTs3Q2Oo",
3095
+ "content_GxMPofgY",
3096
+ "content_dJeWRg06",
3097
+ "content_anSkVNuH",
3098
+ "content_H1VlXTvl",
3099
+ "content_Pyp2sw3h",
3100
+ "content_o1clQ10g",
3101
+ "content_CdWFS5S0",
3102
+ "content_OqjWyYs5",
3103
+ "content_4wQhqGUH",
3104
+ "content_ngQQY7n4",
3105
+ "content_ViWD6RLy",
3106
+ "content_FQd7f1DI",
3107
+ "content_cWo1fx7F",
3108
+ "content_amv2SRq6",
3109
+ "content_EoQL8mY7",
3110
+ "content_z1Oou9pH",
3111
+ "content_iWlQjdUC",
3112
+ "content_IngrNwMm",
3113
+ "content_0dmwIlSP",
3114
+ "content_61uLOZQH",
3115
+ "content_0m9SzKAE",
3116
+ "content_KQpF90LW",
3117
+ "content_WzGKTocn",
3118
+ "content_vUqAYAKK",
3119
+ "content_G9lqpkzb",
3120
+ "content_w9NkpLWE",
3121
+ "content_5c0at0bg",
3122
+ "content_ABcXkliV",
3123
+ "content_agT9IKcO",
3124
+ "content_Zl97ZYu4",
3125
+ "content_m6o2lL5L",
3126
+ "content_LYa4q2JK",
3127
+ "content_mGmdeZGS",
3128
+ "content_wcIz9MEa",
3129
+ "content_Vq60Pem5",
3130
+ "content_qFBEMwga",
3131
+ "content_VJYna4sU",
3132
+ "content_ngGg1QUv",
3133
+ "content_PmJPyszN",
3134
+ "content_eUAyyPjh",
3135
+ "content_mBDp70x9",
3136
+ "content_u6USoGCZ",
3137
+ "content_R9hKxGiK",
3138
+ "content_YfWO9QPi",
3139
+ "content_VbkjNbt3",
3140
+ "content_2JzvMLZz",
3141
+ "content_uZJfjJKB",
3142
+ "content_lfmbKlDT",
3143
+ "content_dT7Nacyt",
3144
+ "content_BcCgtvc3",
3145
+ "content_1YTY42FO",
3146
+ "content_WbXVz21F",
3147
+ "content_95iq4VfM",
3148
+ "content_VBCLYSRx",
3149
+ "content_8tUHUMXl",
3150
+ "content_7VcmieZV",
3151
+ "content_2LGXaX5u",
3152
+ "content_nrp5yur3",
3153
+ "content_pZrv9jPb",
3154
+ "content_CEFSTQmy",
3155
+ "content_Ibd6w9Nq",
3156
+ "content_J3Us5kB5",
3157
+ "content_OUsHI6X5",
3158
+ "content_Daar9SgQ",
3159
+ "content_MxKJSCVd",
3160
+ "content_OPeoJgHR",
3161
+ "content_ljWpgIeC",
3162
+ "content_aXwGYopd",
3163
+ "content_vdY7n5WO",
3164
+ "content_YHUtdvT2",
3165
+ "content_iqW6eUwB",
3166
+ "content_AIeWsjoF",
3167
+ "content_7ZVK3DHR",
3168
+ "content_JVlahfnL",
3169
+ "content_8CLBPfqc",
3170
+ "content_ax0vQskf",
3171
+ "content_9t13p5hs",
3172
+ "content_kl7YnKnB",
3173
+ "content_HKzxSWei",
3174
+ "content_JVeEiLdt",
3175
+ "content_Hj5qNlME",
3176
+ "content_3OxIEgxT",
3177
+ "content_6HjgvBfj",
3178
+ "content_JNFWYCoR",
3179
+ "content_GcQgkp3m",
3180
+ "content_B5w0OKBD",
3181
+ "content_Smgbsivt",
3182
+ "content_34Syb0Jy",
3183
+ "content_w93cVuRe",
3184
+ "content_6p5GHcPd",
3185
+ "content_Enza4aca",
3186
+ "content_m9B2aq1w",
3187
+ "content_gK8YTn1t",
3188
+ "content_6XMhdwYF",
3189
+ "content_ntEL1am3",
3190
+ "content_l3tVmGpS",
3191
+ "content_Y5RvkrfS",
3192
+ "content_KhMaobjV",
3193
+ "content_SaANFgrB",
3194
+ "content_Azkn9P4w",
3195
+ "content_eGV2IBDX",
3196
+ "content_hUfyKBq8",
3197
+ "content_DFsjipgv",
3198
+ "content_cfkQWd6D",
3199
+ "content_bIdDZwey",
3200
+ "content_fMd87DPk",
3201
+ "content_ekxixpyj",
3202
+ "content_mxQ2GYIf",
3203
+ "content_cdpuZkKl",
3204
+ "content_Tjw5ZL4C",
3205
+ "content_tmx7g2zr",
3206
+ "content_6p2rOfgm",
3207
+ "content_J6ecE2Pf",
3208
+ "content_bY0XxyZe",
3209
+ "content_BmaMA0YL",
3210
+ "content_hy6qombB",
3211
+ "content_UfDBiLtG",
3212
+ "content_iwF4Y3SD",
3213
+ "content_pJy5d2GZ",
3214
+ "content_czKHneMH",
3215
+ "content_9zSerBA0",
3216
+ "content_Sbhb6RI6",
3217
+ "content_D4vL9ZOe",
3218
+ "content_bl1k5Iv6",
3219
+ "content_k6fU9s9Q",
3220
+ "content_wjHTC0sI",
3221
+ "content_dSuMeOWN",
3222
+ "content_K42jFl4U",
3223
+ "content_gi7Wbr3K",
3224
+ "content_mgJgDzcF",
3225
+ "content_vXaaZsZa",
3226
+ "content_tMem5Mbe",
3227
+ "content_KQcCE6Sj",
3228
+ "content_p6R3m539",
3229
+ "content_sNsJ3KlV",
3230
+ "content_FW24Vmum",
3231
+ "content_G4NXnAA7",
3232
+ "content_j5Ptpje5",
3233
+ "content_JDzlnzlM",
3234
+ "content_CYYETekq",
3235
+ "content_1zBYbSNm",
3236
+ "content_aIwueJvQ",
3237
+ "content_0QoMjW0m",
3238
+ "content_J6cuBIYs",
3239
+ "content_vhmC2kzN",
3240
+ "content_GUZnrkS9",
3241
+ "content_qx6MZXEa",
3242
+ "content_OHhdbcep",
3243
+ "content_byP7PuFa",
3244
+ "content_0lPFQP5r",
3245
+ "content_LH9WscbG",
3246
+ "content_qHnkrTKx",
3247
+ "content_e194fV46",
3248
+ "content_4JPpugRt",
3249
+ "content_jnbTOPAJ",
3250
+ "content_kZn4OIKL",
3251
+ "content_HUHDgjBs",
3252
+ "content_He4T0GAI",
3253
+ "content_Ljol8aBQ",
3254
+ "content_Be8jpYPv",
3255
+ "content_Ni7vqhqP",
3256
+ "content_oGpQeqlK",
3257
+ "content_RAHHX2kT",
3258
+ "content_lq6KdNMD",
3259
+ "content_UDaDU0ph",
3260
+ "content_3j1J9hJb",
3261
+ "content_UNdLnavS",
3262
+ "content_BsRnsA3A",
3263
+ "content_Jv1en7hi",
3264
+ "content_Dcpurtzf",
3265
+ "content_P8fpLKcf",
3266
+ "content_EwTeBWQQ",
3267
+ "content_QdJ6Xove",
3268
+ "content_6eRgWUvY",
3269
+ "content_R61CtTY5",
3270
+ "content_EhmDnd8z",
3271
+ "content_ZwjUtYeC"
3272
+ ],
3273
+ "content_type": [
3274
+ "movie",
3275
+ "series",
3276
+ "documentary",
3277
+ "special"
3278
+ ],
3279
+ "genre": [
3280
+ "action",
3281
+ "comedy",
3282
+ "drama",
3283
+ "documentary",
3284
+ "horror",
3285
+ "sci_fi",
3286
+ "animation",
3287
+ "thriller",
3288
+ "romance"
3289
+ ],
3290
+ "weekend_viewing": [
3291
+ false
3292
+ ],
3293
+ "prime_time": [
3294
+ false
3295
+ ],
3296
+ "kids_profile": [
3297
+ false
3298
+ ],
3299
+ "ad_fatigue": [
3300
+ false
3301
+ ]
3302
+ }
3303
+ },
3304
+ {
3305
+ "event": "watchlist removed",
3306
+ "weight": 3,
3307
+ "properties": {
3308
+ "content_id": [
3309
+ "content_A7YJdBpZ",
3310
+ "content_0eoBvwRj",
3311
+ "content_FDmORc2r",
3312
+ "content_mqY9dARs",
3313
+ "content_2zncbXYO",
3314
+ "content_hpzkSOsc",
3315
+ "content_9Zrg8a2y",
3316
+ "content_Yoo8qdiQ",
3317
+ "content_FnBl7i2D",
3318
+ "content_aycVKqTv",
3319
+ "content_Fw4g4JkN",
3320
+ "content_TwNzs2hG",
3321
+ "content_y3hap26A",
3322
+ "content_C5H7cs1k",
3323
+ "content_kDZyRAsE",
3324
+ "content_LxWmKy7G",
3325
+ "content_vnqZ4AkB",
3326
+ "content_ots5bEtU",
3327
+ "content_ZkKiXywP",
3328
+ "content_8P36Xgey",
3329
+ "content_0I93hGP4",
3330
+ "content_vR7jqHVc",
3331
+ "content_JTRI3JVL",
3332
+ "content_swcK0MZn",
3333
+ "content_LvO8AWK5",
3334
+ "content_vlPD5Mhl",
3335
+ "content_6KOW9CWF",
3336
+ "content_bWscJ6Kk",
3337
+ "content_jrPcEJ87",
3338
+ "content_2eUI3FHk",
3339
+ "content_jK9rIkaH",
3340
+ "content_HGwYFwUh",
3341
+ "content_J3jcNjKW",
3342
+ "content_ScEfAbEF",
3343
+ "content_43UFXQQ0",
3344
+ "content_891xPtWY",
3345
+ "content_lITWRI04",
3346
+ "content_w3JqKYV3",
3347
+ "content_StRFhyvQ",
3348
+ "content_rUv6qgr1",
3349
+ "content_k99Sibdc",
3350
+ "content_K2QuRHn1",
3351
+ "content_pM6kMMgv",
3352
+ "content_w8cZMd7y",
3353
+ "content_9fAzRWYh",
3354
+ "content_aAQkBl0A",
3355
+ "content_nvayonc5",
3356
+ "content_3A3fcMjP",
3357
+ "content_CJxyWOm8",
3358
+ "content_R5SREkXL",
3359
+ "content_dmGLTdsn",
3360
+ "content_PYn0fvWF",
3361
+ "content_8WPsUXir",
3362
+ "content_CXPY310K",
3363
+ "content_d4UcrwGh",
3364
+ "content_vtK91Xz6",
3365
+ "content_A3mAAzYf",
3366
+ "content_NKfDXmw7",
3367
+ "content_AWjaUMQj",
3368
+ "content_na03Ih7X",
3369
+ "content_EW348Rnd",
3370
+ "content_ULOm7K3t",
3371
+ "content_iIFRtUEq",
3372
+ "content_vsIYy9qL",
3373
+ "content_j9Hbygpp",
3374
+ "content_9C6BCex0",
3375
+ "content_TQWW2cyd",
3376
+ "content_CZb9cL6U",
3377
+ "content_D3sK9Anl",
3378
+ "content_t4xnXoqc",
3379
+ "content_SB8aF8Az",
3380
+ "content_APXxM8ph",
3381
+ "content_t0jGfeQD",
3382
+ "content_s61U6ODY",
3383
+ "content_TNbaVzYV",
3384
+ "content_ms9Zl25p",
3385
+ "content_1UsCV2pj",
3386
+ "content_Z6MoiNni",
3387
+ "content_APISf62T",
3388
+ "content_B52EGzEM",
3389
+ "content_AmoIB6XU",
3390
+ "content_iuvXIHBN",
3391
+ "content_qWZ27bcU",
3392
+ "content_Xg9r78fl",
3393
+ "content_MqV4SPBH",
3394
+ "content_oUrax3cq",
3395
+ "content_W23YbBC7",
3396
+ "content_mNyrcDTW",
3397
+ "content_Ul62ctUS",
3398
+ "content_Cc6lCNZ8",
3399
+ "content_Q8qX2c7n",
3400
+ "content_JHuoYugU",
3401
+ "content_SAWvu0s4",
3402
+ "content_JW7FORBm",
3403
+ "content_GJAjvY04",
3404
+ "content_i1KCbbmt",
3405
+ "content_GEt2DzST",
3406
+ "content_tvVPeWV7",
3407
+ "content_loHk1A1L",
3408
+ "content_h8Oiogqm",
3409
+ "content_vkNoPUhO",
3410
+ "content_7yBYrOEG",
3411
+ "content_kSCf95Qq",
3412
+ "content_xWtcdpOo",
3413
+ "content_L8f6uvzQ",
3414
+ "content_fUUUmMGt",
3415
+ "content_anUSQ67i",
3416
+ "content_tLetf8Qt",
3417
+ "content_q99nL7nc",
3418
+ "content_Wc4FGzsU",
3419
+ "content_GQ3abFOp",
3420
+ "content_JGoCCXUQ",
3421
+ "content_r1GRGYmz",
3422
+ "content_1LLQe8aP",
3423
+ "content_h2k46bHg",
3424
+ "content_nXKRG8mR",
3425
+ "content_HjzHA8Bq",
3426
+ "content_ZJU1I2yG",
3427
+ "content_fxjaSQPr",
3428
+ "content_iwazMsOB",
3429
+ "content_i29qOVVV",
3430
+ "content_jAikMvCa",
3431
+ "content_7W9kzF5X",
3432
+ "content_ErtX5pAa",
3433
+ "content_BkQz88lP",
3434
+ "content_IhciVAwi",
3435
+ "content_qA0hnsAn",
3436
+ "content_27L83eZf",
3437
+ "content_tzBXsTxu",
3438
+ "content_E4oGNtrl",
3439
+ "content_gciyZJCh",
3440
+ "content_PtuCvyV2",
3441
+ "content_vVSRiQPF",
3442
+ "content_Vq66ExhX",
3443
+ "content_DGup2Z42",
3444
+ "content_LMUh70jG",
3445
+ "content_vxhYdivI",
3446
+ "content_xUtAORZn",
3447
+ "content_QlQ72ogX",
3448
+ "content_5fVtPogW",
3449
+ "content_MlTmVUAa",
3450
+ "content_m1Hx92Vd",
3451
+ "content_I59032xE",
3452
+ "content_SgjC6Whx",
3453
+ "content_dbx8MprN",
3454
+ "content_zFBNGjVI",
3455
+ "content_qjNdhTNi",
3456
+ "content_xoWjW6ay",
3457
+ "content_KEZh5q7T",
3458
+ "content_yYZJJAsB",
3459
+ "content_mH6V5S0R",
3460
+ "content_KYDRLoFg",
3461
+ "content_PoWGfkGx",
3462
+ "content_aeelz3Zt",
3463
+ "content_GOXAzNET",
3464
+ "content_acU7Gmak",
3465
+ "content_SiT8XHUi",
3466
+ "content_qbaYTa8L",
3467
+ "content_wjbr1LW1",
3468
+ "content_5VCD4uPD",
3469
+ "content_8fBlcTIu",
3470
+ "content_bxCEvR8L",
3471
+ "content_grBL5Ksg",
3472
+ "content_Hdu6VRPB",
3473
+ "content_UMXdIC0c",
3474
+ "content_o3Q5FLwG",
3475
+ "content_jR06fl43",
3476
+ "content_qUBkJxCM",
3477
+ "content_VrLj50bs",
3478
+ "content_s9ZYEzei",
3479
+ "content_nzS9HOtD",
3480
+ "content_Lr0s1cRj",
3481
+ "content_vqJCDWCi",
3482
+ "content_bHD2G9MR",
3483
+ "content_uR30GvA0",
3484
+ "content_pk5goaDF",
3485
+ "content_qeWcFZaV",
3486
+ "content_KcsgX8ak",
3487
+ "content_SK7tEkOi",
3488
+ "content_2OM92OSi",
3489
+ "content_wLL3U3Zv",
3490
+ "content_yvgUq9Me",
3491
+ "content_AOv3QvGB",
3492
+ "content_K32WFpwx",
3493
+ "content_xHEfk6o7",
3494
+ "content_YS5KpAPx",
3495
+ "content_0Q9fkNuq",
3496
+ "content_2pmf7t9L",
3497
+ "content_SfSWIcIM",
3498
+ "content_vv98RaEB",
3499
+ "content_IRsG1XIG",
3500
+ "content_obn2fG4t",
3501
+ "content_zqufyq90",
3502
+ "content_DZOt9Kv6",
3503
+ "content_R6WcaDne",
3504
+ "content_BXTFb3Iw",
3505
+ "content_xMXoXser",
3506
+ "content_7NDLvEDo",
3507
+ "content_ZnBjWF2d",
3508
+ "content_fk0bwbbx",
3509
+ "content_FnbF9Ygx",
3510
+ "content_jrQKSVVc",
3511
+ "content_bFsvzYHn",
3512
+ "content_iwxQI7Sw",
3513
+ "content_Y0asCQ2D",
3514
+ "content_mA6LXXMT",
3515
+ "content_hIZalQo5",
3516
+ "content_3OLScbOQ",
3517
+ "content_JNfYiTnk",
3518
+ "content_W9hgYHHo",
3519
+ "content_WZfZEHk5",
3520
+ "content_EtP3Uu2h",
3521
+ "content_ZAn0jD0b",
3522
+ "content_sVOSEzXy",
3523
+ "content_hbHIUCOb",
3524
+ "content_dI3KmFac",
3525
+ "content_olJpwJRU",
3526
+ "content_ux7PH579",
3527
+ "content_9xFukeIo",
3528
+ "content_GeuH2P6t",
3529
+ "content_ujCrE0PA",
3530
+ "content_wITs5LYE",
3531
+ "content_xPVHjr5o",
3532
+ "content_G7AVPmb5",
3533
+ "content_Z9SPCgsx",
3534
+ "content_qs9VHrrO",
3535
+ "content_rnbBfX2d",
3536
+ "content_iqfLHpAo",
3537
+ "content_jjtE9dTu",
3538
+ "content_Dfsp8rMm",
3539
+ "content_eVOH34Pt",
3540
+ "content_RjFWaMPC",
3541
+ "content_NIQ1lDHn",
3542
+ "content_rkyjzaaL",
3543
+ "content_dHXk2WeJ",
3544
+ "content_fxKeCXZl",
3545
+ "content_smT0aEGu",
3546
+ "content_GC4i565s",
3547
+ "content_jOLFVfkn",
3548
+ "content_QoVgnsc5",
3549
+ "content_PRybWG0X",
3550
+ "content_zCJERwy6",
3551
+ "content_DSJwoIOj",
3552
+ "content_cX1ykron",
3553
+ "content_RbzLzFn0",
3554
+ "content_IOAXAVE9",
3555
+ "content_eZ5054JY",
3556
+ "content_Q28sdasW",
3557
+ "content_DCSVTl4l",
3558
+ "content_dSHk1C4W",
3559
+ "content_uRuPJVQM",
3560
+ "content_rtzVLOUI",
3561
+ "content_E527Lb0B",
3562
+ "content_AfImyd4u",
3563
+ "content_0LxRMjRr",
3564
+ "content_weYQUiBE",
3565
+ "content_IssRi6sZ",
3566
+ "content_Fa918lwh",
3567
+ "content_mxb68BKk",
3568
+ "content_NfJRhYxb",
3569
+ "content_RyCHYuLN",
3570
+ "content_dgMIdInO",
3571
+ "content_TwYruI3m",
3572
+ "content_zmR1UT7i",
3573
+ "content_WWGE9zaR",
3574
+ "content_Z6dZnkIP",
3575
+ "content_DiFXSUmw",
3576
+ "content_SsmOM1sc",
3577
+ "content_KKjx7Lxr",
3578
+ "content_2Or26IAN",
3579
+ "content_z8MaqGKP",
3580
+ "content_R0ta3yYP",
3581
+ "content_hecVKUmJ",
3582
+ "content_gvKrcbMs",
3583
+ "content_t1BEhxPe",
3584
+ "content_Y6R5wM5E",
3585
+ "content_bHklTFp7",
3586
+ "content_O2ig9jWh",
3587
+ "content_bG3KSWkE",
3588
+ "content_v6KKhpcU",
3589
+ "content_Yoz4xWMp",
3590
+ "content_rxlb6D9C",
3591
+ "content_Vthgdkut",
3592
+ "content_omXNeKfd",
3593
+ "content_kE9Jz8i5",
3594
+ "content_U0xSsy4d",
3595
+ "content_ZMYBWSJZ",
3596
+ "content_HuiwwFFI",
3597
+ "content_SCt5dxrJ",
3598
+ "content_1eNEoXcb",
3599
+ "content_JIUK7DlE",
3600
+ "content_qw7GTB8w",
3601
+ "content_Xi372Gja",
3602
+ "content_zOsWGwis",
3603
+ "content_uwEktuVK",
3604
+ "content_wD9KluRR",
3605
+ "content_6ATFurjl",
3606
+ "content_CmruJmpV",
3607
+ "content_xHYJTX3e",
3608
+ "content_Q8p2WOoV",
3609
+ "content_yVXtYWzk",
3610
+ "content_g6kQKcHk",
3611
+ "content_h7HWmch6",
3612
+ "content_19dZVj2w",
3613
+ "content_GPfP2lsn",
3614
+ "content_6uevODtv",
3615
+ "content_DHukROVM",
3616
+ "content_G4UbhK6B",
3617
+ "content_zYyjjHrC",
3618
+ "content_yUser4kc",
3619
+ "content_1doIRyUW",
3620
+ "content_324wbAWH",
3621
+ "content_NCpaWQur",
3622
+ "content_dmMHs85S",
3623
+ "content_qdcnKMvg",
3624
+ "content_TOtrM3bG",
3625
+ "content_uLQJnLog",
3626
+ "content_udXwJtQJ",
3627
+ "content_jy5jjVga",
3628
+ "content_YaTiT8ne",
3629
+ "content_nD3Lsmty",
3630
+ "content_jvPIHdRG",
3631
+ "content_X5urqxkF",
3632
+ "content_HTs3Q2Oo",
3633
+ "content_GxMPofgY",
3634
+ "content_dJeWRg06",
3635
+ "content_anSkVNuH",
3636
+ "content_H1VlXTvl",
3637
+ "content_Pyp2sw3h",
3638
+ "content_o1clQ10g",
3639
+ "content_CdWFS5S0",
3640
+ "content_OqjWyYs5",
3641
+ "content_4wQhqGUH",
3642
+ "content_ngQQY7n4",
3643
+ "content_ViWD6RLy",
3644
+ "content_FQd7f1DI",
3645
+ "content_cWo1fx7F",
3646
+ "content_amv2SRq6",
3647
+ "content_EoQL8mY7",
3648
+ "content_z1Oou9pH",
3649
+ "content_iWlQjdUC",
3650
+ "content_IngrNwMm",
3651
+ "content_0dmwIlSP",
3652
+ "content_61uLOZQH",
3653
+ "content_0m9SzKAE",
3654
+ "content_KQpF90LW",
3655
+ "content_WzGKTocn",
3656
+ "content_vUqAYAKK",
3657
+ "content_G9lqpkzb",
3658
+ "content_w9NkpLWE",
3659
+ "content_5c0at0bg",
3660
+ "content_ABcXkliV",
3661
+ "content_agT9IKcO",
3662
+ "content_Zl97ZYu4",
3663
+ "content_m6o2lL5L",
3664
+ "content_LYa4q2JK",
3665
+ "content_mGmdeZGS",
3666
+ "content_wcIz9MEa",
3667
+ "content_Vq60Pem5",
3668
+ "content_qFBEMwga",
3669
+ "content_VJYna4sU",
3670
+ "content_ngGg1QUv",
3671
+ "content_PmJPyszN",
3672
+ "content_eUAyyPjh",
3673
+ "content_mBDp70x9",
3674
+ "content_u6USoGCZ",
3675
+ "content_R9hKxGiK",
3676
+ "content_YfWO9QPi",
3677
+ "content_VbkjNbt3",
3678
+ "content_2JzvMLZz",
3679
+ "content_uZJfjJKB",
3680
+ "content_lfmbKlDT",
3681
+ "content_dT7Nacyt",
3682
+ "content_BcCgtvc3",
3683
+ "content_1YTY42FO",
3684
+ "content_WbXVz21F",
3685
+ "content_95iq4VfM",
3686
+ "content_VBCLYSRx",
3687
+ "content_8tUHUMXl",
3688
+ "content_7VcmieZV",
3689
+ "content_2LGXaX5u",
3690
+ "content_nrp5yur3",
3691
+ "content_pZrv9jPb",
3692
+ "content_CEFSTQmy",
3693
+ "content_Ibd6w9Nq",
3694
+ "content_J3Us5kB5",
3695
+ "content_OUsHI6X5",
3696
+ "content_Daar9SgQ",
3697
+ "content_MxKJSCVd",
3698
+ "content_OPeoJgHR",
3699
+ "content_ljWpgIeC",
3700
+ "content_aXwGYopd",
3701
+ "content_vdY7n5WO",
3702
+ "content_YHUtdvT2",
3703
+ "content_iqW6eUwB",
3704
+ "content_AIeWsjoF",
3705
+ "content_7ZVK3DHR",
3706
+ "content_JVlahfnL",
3707
+ "content_8CLBPfqc",
3708
+ "content_ax0vQskf",
3709
+ "content_9t13p5hs",
3710
+ "content_kl7YnKnB",
3711
+ "content_HKzxSWei",
3712
+ "content_JVeEiLdt",
3713
+ "content_Hj5qNlME",
3714
+ "content_3OxIEgxT",
3715
+ "content_6HjgvBfj",
3716
+ "content_JNFWYCoR",
3717
+ "content_GcQgkp3m",
3718
+ "content_B5w0OKBD",
3719
+ "content_Smgbsivt",
3720
+ "content_34Syb0Jy",
3721
+ "content_w93cVuRe",
3722
+ "content_6p5GHcPd",
3723
+ "content_Enza4aca",
3724
+ "content_m9B2aq1w",
3725
+ "content_gK8YTn1t",
3726
+ "content_6XMhdwYF",
3727
+ "content_ntEL1am3",
3728
+ "content_l3tVmGpS",
3729
+ "content_Y5RvkrfS",
3730
+ "content_KhMaobjV",
3731
+ "content_SaANFgrB",
3732
+ "content_Azkn9P4w",
3733
+ "content_eGV2IBDX",
3734
+ "content_hUfyKBq8",
3735
+ "content_DFsjipgv",
3736
+ "content_cfkQWd6D",
3737
+ "content_bIdDZwey",
3738
+ "content_fMd87DPk",
3739
+ "content_ekxixpyj",
3740
+ "content_mxQ2GYIf",
3741
+ "content_cdpuZkKl",
3742
+ "content_Tjw5ZL4C",
3743
+ "content_tmx7g2zr",
3744
+ "content_6p2rOfgm",
3745
+ "content_J6ecE2Pf",
3746
+ "content_bY0XxyZe",
3747
+ "content_BmaMA0YL",
3748
+ "content_hy6qombB",
3749
+ "content_UfDBiLtG",
3750
+ "content_iwF4Y3SD",
3751
+ "content_pJy5d2GZ",
3752
+ "content_czKHneMH",
3753
+ "content_9zSerBA0",
3754
+ "content_Sbhb6RI6",
3755
+ "content_D4vL9ZOe",
3756
+ "content_bl1k5Iv6",
3757
+ "content_k6fU9s9Q",
3758
+ "content_wjHTC0sI",
3759
+ "content_dSuMeOWN",
3760
+ "content_K42jFl4U",
3761
+ "content_gi7Wbr3K",
3762
+ "content_mgJgDzcF",
3763
+ "content_vXaaZsZa",
3764
+ "content_tMem5Mbe",
3765
+ "content_KQcCE6Sj",
3766
+ "content_p6R3m539",
3767
+ "content_sNsJ3KlV",
3768
+ "content_FW24Vmum",
3769
+ "content_G4NXnAA7",
3770
+ "content_j5Ptpje5",
3771
+ "content_JDzlnzlM",
3772
+ "content_CYYETekq",
3773
+ "content_1zBYbSNm",
3774
+ "content_aIwueJvQ",
3775
+ "content_0QoMjW0m",
3776
+ "content_J6cuBIYs",
3777
+ "content_vhmC2kzN",
3778
+ "content_GUZnrkS9",
3779
+ "content_qx6MZXEa",
3780
+ "content_OHhdbcep",
3781
+ "content_byP7PuFa",
3782
+ "content_0lPFQP5r",
3783
+ "content_LH9WscbG",
3784
+ "content_qHnkrTKx",
3785
+ "content_e194fV46",
3786
+ "content_4JPpugRt",
3787
+ "content_jnbTOPAJ",
3788
+ "content_kZn4OIKL",
3789
+ "content_HUHDgjBs",
3790
+ "content_He4T0GAI",
3791
+ "content_Ljol8aBQ",
3792
+ "content_Be8jpYPv",
3793
+ "content_Ni7vqhqP",
3794
+ "content_oGpQeqlK",
3795
+ "content_RAHHX2kT",
3796
+ "content_lq6KdNMD",
3797
+ "content_UDaDU0ph",
3798
+ "content_3j1J9hJb",
3799
+ "content_UNdLnavS",
3800
+ "content_BsRnsA3A",
3801
+ "content_Jv1en7hi",
3802
+ "content_Dcpurtzf",
3803
+ "content_P8fpLKcf",
3804
+ "content_EwTeBWQQ",
3805
+ "content_QdJ6Xove",
3806
+ "content_6eRgWUvY",
3807
+ "content_R61CtTY5",
3808
+ "content_EhmDnd8z",
3809
+ "content_ZwjUtYeC"
3810
+ ],
3811
+ "reason": [
3812
+ "watched",
3813
+ "not_interested",
3814
+ "expired"
3815
+ ],
3816
+ "weekend_viewing": [
3817
+ false
3818
+ ],
3819
+ "prime_time": [
3820
+ false
3821
+ ],
3822
+ "kids_profile": [
3823
+ false
3824
+ ],
3825
+ "ad_fatigue": [
3826
+ false
3827
+ ]
3828
+ }
3829
+ },
3830
+ {
3831
+ "event": "search performed",
3832
+ "weight": 7,
3833
+ "properties": {
3834
+ "search_term": {
3835
+ "$type": "string"
3836
+ },
3837
+ "results_count": {
3838
+ "$range": [
3839
+ 8,
3840
+ 32
3841
+ ]
3842
+ },
3843
+ "search_type": [
3844
+ "title",
3845
+ "actor",
3846
+ "director",
3847
+ "genre"
3848
+ ],
3849
+ "weekend_viewing": [
3850
+ false
3851
+ ],
3852
+ "prime_time": [
3853
+ false
3854
+ ],
3855
+ "kids_profile": [
3856
+ false
3857
+ ],
3858
+ "ad_fatigue": [
3859
+ false
3860
+ ]
3861
+ }
3862
+ },
3863
+ {
3864
+ "event": "recommendation clicked",
3865
+ "weight": 9,
3866
+ "properties": {
3867
+ "algorithm": [
3868
+ "collaborative_filtering",
3869
+ "content_based",
3870
+ "trending",
3871
+ "editorial"
3872
+ ],
3873
+ "position": {
3874
+ "$range": [
3875
+ 2,
3876
+ 19
3877
+ ]
3878
+ },
3879
+ "weekend_viewing": [
3880
+ false
3881
+ ],
3882
+ "prime_time": [
3883
+ false
3884
+ ],
3885
+ "kids_profile": [
3886
+ false
3887
+ ],
3888
+ "ad_fatigue": [
3889
+ false
3890
+ ]
3891
+ }
3892
+ },
3893
+ {
3894
+ "event": "profile switched",
3895
+ "weight": 4,
3896
+ "properties": {
3897
+ "profile_type": [
3898
+ "main",
3899
+ "kids",
3900
+ "partner",
3901
+ "guest"
3902
+ ],
3903
+ "weekend_viewing": [
3904
+ false
3905
+ ],
3906
+ "prime_time": [
3907
+ false
3908
+ ],
3909
+ "kids_profile": [
3910
+ false
3911
+ ],
3912
+ "ad_fatigue": [
3913
+ false
3914
+ ]
3915
+ }
3916
+ },
3917
+ {
3918
+ "event": "ad impression",
3919
+ "weight": 8,
3920
+ "properties": {
3921
+ "ad_type": [
3922
+ "pre_roll",
3923
+ "mid_roll",
3924
+ "banner",
3925
+ "interstitial"
3926
+ ],
3927
+ "ad_duration_sec": {
3928
+ "$range": [
3929
+ 7,
3930
+ 28
3931
+ ]
3932
+ },
3933
+ "skipped": [
3934
+ false,
3935
+ true
3936
+ ],
3937
+ "ad_blocked": [
3938
+ false
3939
+ ],
3940
+ "kids_profile": [
3941
+ false
3942
+ ],
3943
+ "weekend_viewing": [
3944
+ false
3945
+ ],
3946
+ "prime_time": [
3947
+ false
3948
+ ],
3949
+ "ad_fatigue": [
3950
+ false
3951
+ ]
3952
+ }
3953
+ },
3954
+ {
3955
+ "event": "subscription changed",
3956
+ "weight": 2,
3957
+ "properties": {
3958
+ "old_plan": [
3959
+ "free",
3960
+ "standard",
3961
+ "premium"
3962
+ ],
3963
+ "new_plan": [
3964
+ "free",
3965
+ "standard",
3966
+ "premium"
3967
+ ],
3968
+ "change_reason": [
3969
+ "upgrade",
3970
+ "downgrade",
3971
+ "cancel",
3972
+ "resubscribe"
3973
+ ],
3974
+ "weekend_viewing": [
3975
+ false
3976
+ ],
3977
+ "prime_time": [
3978
+ false
3979
+ ],
3980
+ "kids_profile": [
3981
+ false
3982
+ ],
3983
+ "ad_fatigue": [
3984
+ false
3985
+ ]
3986
+ }
3987
+ },
3988
+ {
3989
+ "event": "download started",
3990
+ "weight": 5,
3991
+ "properties": {
3992
+ "content_id": [
3993
+ "content_A7YJdBpZ",
3994
+ "content_0eoBvwRj",
3995
+ "content_FDmORc2r",
3996
+ "content_mqY9dARs",
3997
+ "content_2zncbXYO",
3998
+ "content_hpzkSOsc",
3999
+ "content_9Zrg8a2y",
4000
+ "content_Yoo8qdiQ",
4001
+ "content_FnBl7i2D",
4002
+ "content_aycVKqTv",
4003
+ "content_Fw4g4JkN",
4004
+ "content_TwNzs2hG",
4005
+ "content_y3hap26A",
4006
+ "content_C5H7cs1k",
4007
+ "content_kDZyRAsE",
4008
+ "content_LxWmKy7G",
4009
+ "content_vnqZ4AkB",
4010
+ "content_ots5bEtU",
4011
+ "content_ZkKiXywP",
4012
+ "content_8P36Xgey",
4013
+ "content_0I93hGP4",
4014
+ "content_vR7jqHVc",
4015
+ "content_JTRI3JVL",
4016
+ "content_swcK0MZn",
4017
+ "content_LvO8AWK5",
4018
+ "content_vlPD5Mhl",
4019
+ "content_6KOW9CWF",
4020
+ "content_bWscJ6Kk",
4021
+ "content_jrPcEJ87",
4022
+ "content_2eUI3FHk",
4023
+ "content_jK9rIkaH",
4024
+ "content_HGwYFwUh",
4025
+ "content_J3jcNjKW",
4026
+ "content_ScEfAbEF",
4027
+ "content_43UFXQQ0",
4028
+ "content_891xPtWY",
4029
+ "content_lITWRI04",
4030
+ "content_w3JqKYV3",
4031
+ "content_StRFhyvQ",
4032
+ "content_rUv6qgr1",
4033
+ "content_k99Sibdc",
4034
+ "content_K2QuRHn1",
4035
+ "content_pM6kMMgv",
4036
+ "content_w8cZMd7y",
4037
+ "content_9fAzRWYh",
4038
+ "content_aAQkBl0A",
4039
+ "content_nvayonc5",
4040
+ "content_3A3fcMjP",
4041
+ "content_CJxyWOm8",
4042
+ "content_R5SREkXL",
4043
+ "content_dmGLTdsn",
4044
+ "content_PYn0fvWF",
4045
+ "content_8WPsUXir",
4046
+ "content_CXPY310K",
4047
+ "content_d4UcrwGh",
4048
+ "content_vtK91Xz6",
4049
+ "content_A3mAAzYf",
4050
+ "content_NKfDXmw7",
4051
+ "content_AWjaUMQj",
4052
+ "content_na03Ih7X",
4053
+ "content_EW348Rnd",
4054
+ "content_ULOm7K3t",
4055
+ "content_iIFRtUEq",
4056
+ "content_vsIYy9qL",
4057
+ "content_j9Hbygpp",
4058
+ "content_9C6BCex0",
4059
+ "content_TQWW2cyd",
4060
+ "content_CZb9cL6U",
4061
+ "content_D3sK9Anl",
4062
+ "content_t4xnXoqc",
4063
+ "content_SB8aF8Az",
4064
+ "content_APXxM8ph",
4065
+ "content_t0jGfeQD",
4066
+ "content_s61U6ODY",
4067
+ "content_TNbaVzYV",
4068
+ "content_ms9Zl25p",
4069
+ "content_1UsCV2pj",
4070
+ "content_Z6MoiNni",
4071
+ "content_APISf62T",
4072
+ "content_B52EGzEM",
4073
+ "content_AmoIB6XU",
4074
+ "content_iuvXIHBN",
4075
+ "content_qWZ27bcU",
4076
+ "content_Xg9r78fl",
4077
+ "content_MqV4SPBH",
4078
+ "content_oUrax3cq",
4079
+ "content_W23YbBC7",
4080
+ "content_mNyrcDTW",
4081
+ "content_Ul62ctUS",
4082
+ "content_Cc6lCNZ8",
4083
+ "content_Q8qX2c7n",
4084
+ "content_JHuoYugU",
4085
+ "content_SAWvu0s4",
4086
+ "content_JW7FORBm",
4087
+ "content_GJAjvY04",
4088
+ "content_i1KCbbmt",
4089
+ "content_GEt2DzST",
4090
+ "content_tvVPeWV7",
4091
+ "content_loHk1A1L",
4092
+ "content_h8Oiogqm",
4093
+ "content_vkNoPUhO",
4094
+ "content_7yBYrOEG",
4095
+ "content_kSCf95Qq",
4096
+ "content_xWtcdpOo",
4097
+ "content_L8f6uvzQ",
4098
+ "content_fUUUmMGt",
4099
+ "content_anUSQ67i",
4100
+ "content_tLetf8Qt",
4101
+ "content_q99nL7nc",
4102
+ "content_Wc4FGzsU",
4103
+ "content_GQ3abFOp",
4104
+ "content_JGoCCXUQ",
4105
+ "content_r1GRGYmz",
4106
+ "content_1LLQe8aP",
4107
+ "content_h2k46bHg",
4108
+ "content_nXKRG8mR",
4109
+ "content_HjzHA8Bq",
4110
+ "content_ZJU1I2yG",
4111
+ "content_fxjaSQPr",
4112
+ "content_iwazMsOB",
4113
+ "content_i29qOVVV",
4114
+ "content_jAikMvCa",
4115
+ "content_7W9kzF5X",
4116
+ "content_ErtX5pAa",
4117
+ "content_BkQz88lP",
4118
+ "content_IhciVAwi",
4119
+ "content_qA0hnsAn",
4120
+ "content_27L83eZf",
4121
+ "content_tzBXsTxu",
4122
+ "content_E4oGNtrl",
4123
+ "content_gciyZJCh",
4124
+ "content_PtuCvyV2",
4125
+ "content_vVSRiQPF",
4126
+ "content_Vq66ExhX",
4127
+ "content_DGup2Z42",
4128
+ "content_LMUh70jG",
4129
+ "content_vxhYdivI",
4130
+ "content_xUtAORZn",
4131
+ "content_QlQ72ogX",
4132
+ "content_5fVtPogW",
4133
+ "content_MlTmVUAa",
4134
+ "content_m1Hx92Vd",
4135
+ "content_I59032xE",
4136
+ "content_SgjC6Whx",
4137
+ "content_dbx8MprN",
4138
+ "content_zFBNGjVI",
4139
+ "content_qjNdhTNi",
4140
+ "content_xoWjW6ay",
4141
+ "content_KEZh5q7T",
4142
+ "content_yYZJJAsB",
4143
+ "content_mH6V5S0R",
4144
+ "content_KYDRLoFg",
4145
+ "content_PoWGfkGx",
4146
+ "content_aeelz3Zt",
4147
+ "content_GOXAzNET",
4148
+ "content_acU7Gmak",
4149
+ "content_SiT8XHUi",
4150
+ "content_qbaYTa8L",
4151
+ "content_wjbr1LW1",
4152
+ "content_5VCD4uPD",
4153
+ "content_8fBlcTIu",
4154
+ "content_bxCEvR8L",
4155
+ "content_grBL5Ksg",
4156
+ "content_Hdu6VRPB",
4157
+ "content_UMXdIC0c",
4158
+ "content_o3Q5FLwG",
4159
+ "content_jR06fl43",
4160
+ "content_qUBkJxCM",
4161
+ "content_VrLj50bs",
4162
+ "content_s9ZYEzei",
4163
+ "content_nzS9HOtD",
4164
+ "content_Lr0s1cRj",
4165
+ "content_vqJCDWCi",
4166
+ "content_bHD2G9MR",
4167
+ "content_uR30GvA0",
4168
+ "content_pk5goaDF",
4169
+ "content_qeWcFZaV",
4170
+ "content_KcsgX8ak",
4171
+ "content_SK7tEkOi",
4172
+ "content_2OM92OSi",
4173
+ "content_wLL3U3Zv",
4174
+ "content_yvgUq9Me",
4175
+ "content_AOv3QvGB",
4176
+ "content_K32WFpwx",
4177
+ "content_xHEfk6o7",
4178
+ "content_YS5KpAPx",
4179
+ "content_0Q9fkNuq",
4180
+ "content_2pmf7t9L",
4181
+ "content_SfSWIcIM",
4182
+ "content_vv98RaEB",
4183
+ "content_IRsG1XIG",
4184
+ "content_obn2fG4t",
4185
+ "content_zqufyq90",
4186
+ "content_DZOt9Kv6",
4187
+ "content_R6WcaDne",
4188
+ "content_BXTFb3Iw",
4189
+ "content_xMXoXser",
4190
+ "content_7NDLvEDo",
4191
+ "content_ZnBjWF2d",
4192
+ "content_fk0bwbbx",
4193
+ "content_FnbF9Ygx",
4194
+ "content_jrQKSVVc",
4195
+ "content_bFsvzYHn",
4196
+ "content_iwxQI7Sw",
4197
+ "content_Y0asCQ2D",
4198
+ "content_mA6LXXMT",
4199
+ "content_hIZalQo5",
4200
+ "content_3OLScbOQ",
4201
+ "content_JNfYiTnk",
4202
+ "content_W9hgYHHo",
4203
+ "content_WZfZEHk5",
4204
+ "content_EtP3Uu2h",
4205
+ "content_ZAn0jD0b",
4206
+ "content_sVOSEzXy",
4207
+ "content_hbHIUCOb",
4208
+ "content_dI3KmFac",
4209
+ "content_olJpwJRU",
4210
+ "content_ux7PH579",
4211
+ "content_9xFukeIo",
4212
+ "content_GeuH2P6t",
4213
+ "content_ujCrE0PA",
4214
+ "content_wITs5LYE",
4215
+ "content_xPVHjr5o",
4216
+ "content_G7AVPmb5",
4217
+ "content_Z9SPCgsx",
4218
+ "content_qs9VHrrO",
4219
+ "content_rnbBfX2d",
4220
+ "content_iqfLHpAo",
4221
+ "content_jjtE9dTu",
4222
+ "content_Dfsp8rMm",
4223
+ "content_eVOH34Pt",
4224
+ "content_RjFWaMPC",
4225
+ "content_NIQ1lDHn",
4226
+ "content_rkyjzaaL",
4227
+ "content_dHXk2WeJ",
4228
+ "content_fxKeCXZl",
4229
+ "content_smT0aEGu",
4230
+ "content_GC4i565s",
4231
+ "content_jOLFVfkn",
4232
+ "content_QoVgnsc5",
4233
+ "content_PRybWG0X",
4234
+ "content_zCJERwy6",
4235
+ "content_DSJwoIOj",
4236
+ "content_cX1ykron",
4237
+ "content_RbzLzFn0",
4238
+ "content_IOAXAVE9",
4239
+ "content_eZ5054JY",
4240
+ "content_Q28sdasW",
4241
+ "content_DCSVTl4l",
4242
+ "content_dSHk1C4W",
4243
+ "content_uRuPJVQM",
4244
+ "content_rtzVLOUI",
4245
+ "content_E527Lb0B",
4246
+ "content_AfImyd4u",
4247
+ "content_0LxRMjRr",
4248
+ "content_weYQUiBE",
4249
+ "content_IssRi6sZ",
4250
+ "content_Fa918lwh",
4251
+ "content_mxb68BKk",
4252
+ "content_NfJRhYxb",
4253
+ "content_RyCHYuLN",
4254
+ "content_dgMIdInO",
4255
+ "content_TwYruI3m",
4256
+ "content_zmR1UT7i",
4257
+ "content_WWGE9zaR",
4258
+ "content_Z6dZnkIP",
4259
+ "content_DiFXSUmw",
4260
+ "content_SsmOM1sc",
4261
+ "content_KKjx7Lxr",
4262
+ "content_2Or26IAN",
4263
+ "content_z8MaqGKP",
4264
+ "content_R0ta3yYP",
4265
+ "content_hecVKUmJ",
4266
+ "content_gvKrcbMs",
4267
+ "content_t1BEhxPe",
4268
+ "content_Y6R5wM5E",
4269
+ "content_bHklTFp7",
4270
+ "content_O2ig9jWh",
4271
+ "content_bG3KSWkE",
4272
+ "content_v6KKhpcU",
4273
+ "content_Yoz4xWMp",
4274
+ "content_rxlb6D9C",
4275
+ "content_Vthgdkut",
4276
+ "content_omXNeKfd",
4277
+ "content_kE9Jz8i5",
4278
+ "content_U0xSsy4d",
4279
+ "content_ZMYBWSJZ",
4280
+ "content_HuiwwFFI",
4281
+ "content_SCt5dxrJ",
4282
+ "content_1eNEoXcb",
4283
+ "content_JIUK7DlE",
4284
+ "content_qw7GTB8w",
4285
+ "content_Xi372Gja",
4286
+ "content_zOsWGwis",
4287
+ "content_uwEktuVK",
4288
+ "content_wD9KluRR",
4289
+ "content_6ATFurjl",
4290
+ "content_CmruJmpV",
4291
+ "content_xHYJTX3e",
4292
+ "content_Q8p2WOoV",
4293
+ "content_yVXtYWzk",
4294
+ "content_g6kQKcHk",
4295
+ "content_h7HWmch6",
4296
+ "content_19dZVj2w",
4297
+ "content_GPfP2lsn",
4298
+ "content_6uevODtv",
4299
+ "content_DHukROVM",
4300
+ "content_G4UbhK6B",
4301
+ "content_zYyjjHrC",
4302
+ "content_yUser4kc",
4303
+ "content_1doIRyUW",
4304
+ "content_324wbAWH",
4305
+ "content_NCpaWQur",
4306
+ "content_dmMHs85S",
4307
+ "content_qdcnKMvg",
4308
+ "content_TOtrM3bG",
4309
+ "content_uLQJnLog",
4310
+ "content_udXwJtQJ",
4311
+ "content_jy5jjVga",
4312
+ "content_YaTiT8ne",
4313
+ "content_nD3Lsmty",
4314
+ "content_jvPIHdRG",
4315
+ "content_X5urqxkF",
4316
+ "content_HTs3Q2Oo",
4317
+ "content_GxMPofgY",
4318
+ "content_dJeWRg06",
4319
+ "content_anSkVNuH",
4320
+ "content_H1VlXTvl",
4321
+ "content_Pyp2sw3h",
4322
+ "content_o1clQ10g",
4323
+ "content_CdWFS5S0",
4324
+ "content_OqjWyYs5",
4325
+ "content_4wQhqGUH",
4326
+ "content_ngQQY7n4",
4327
+ "content_ViWD6RLy",
4328
+ "content_FQd7f1DI",
4329
+ "content_cWo1fx7F",
4330
+ "content_amv2SRq6",
4331
+ "content_EoQL8mY7",
4332
+ "content_z1Oou9pH",
4333
+ "content_iWlQjdUC",
4334
+ "content_IngrNwMm",
4335
+ "content_0dmwIlSP",
4336
+ "content_61uLOZQH",
4337
+ "content_0m9SzKAE",
4338
+ "content_KQpF90LW",
4339
+ "content_WzGKTocn",
4340
+ "content_vUqAYAKK",
4341
+ "content_G9lqpkzb",
4342
+ "content_w9NkpLWE",
4343
+ "content_5c0at0bg",
4344
+ "content_ABcXkliV",
4345
+ "content_agT9IKcO",
4346
+ "content_Zl97ZYu4",
4347
+ "content_m6o2lL5L",
4348
+ "content_LYa4q2JK",
4349
+ "content_mGmdeZGS",
4350
+ "content_wcIz9MEa",
4351
+ "content_Vq60Pem5",
4352
+ "content_qFBEMwga",
4353
+ "content_VJYna4sU",
4354
+ "content_ngGg1QUv",
4355
+ "content_PmJPyszN",
4356
+ "content_eUAyyPjh",
4357
+ "content_mBDp70x9",
4358
+ "content_u6USoGCZ",
4359
+ "content_R9hKxGiK",
4360
+ "content_YfWO9QPi",
4361
+ "content_VbkjNbt3",
4362
+ "content_2JzvMLZz",
4363
+ "content_uZJfjJKB",
4364
+ "content_lfmbKlDT",
4365
+ "content_dT7Nacyt",
4366
+ "content_BcCgtvc3",
4367
+ "content_1YTY42FO",
4368
+ "content_WbXVz21F",
4369
+ "content_95iq4VfM",
4370
+ "content_VBCLYSRx",
4371
+ "content_8tUHUMXl",
4372
+ "content_7VcmieZV",
4373
+ "content_2LGXaX5u",
4374
+ "content_nrp5yur3",
4375
+ "content_pZrv9jPb",
4376
+ "content_CEFSTQmy",
4377
+ "content_Ibd6w9Nq",
4378
+ "content_J3Us5kB5",
4379
+ "content_OUsHI6X5",
4380
+ "content_Daar9SgQ",
4381
+ "content_MxKJSCVd",
4382
+ "content_OPeoJgHR",
4383
+ "content_ljWpgIeC",
4384
+ "content_aXwGYopd",
4385
+ "content_vdY7n5WO",
4386
+ "content_YHUtdvT2",
4387
+ "content_iqW6eUwB",
4388
+ "content_AIeWsjoF",
4389
+ "content_7ZVK3DHR",
4390
+ "content_JVlahfnL",
4391
+ "content_8CLBPfqc",
4392
+ "content_ax0vQskf",
4393
+ "content_9t13p5hs",
4394
+ "content_kl7YnKnB",
4395
+ "content_HKzxSWei",
4396
+ "content_JVeEiLdt",
4397
+ "content_Hj5qNlME",
4398
+ "content_3OxIEgxT",
4399
+ "content_6HjgvBfj",
4400
+ "content_JNFWYCoR",
4401
+ "content_GcQgkp3m",
4402
+ "content_B5w0OKBD",
4403
+ "content_Smgbsivt",
4404
+ "content_34Syb0Jy",
4405
+ "content_w93cVuRe",
4406
+ "content_6p5GHcPd",
4407
+ "content_Enza4aca",
4408
+ "content_m9B2aq1w",
4409
+ "content_gK8YTn1t",
4410
+ "content_6XMhdwYF",
4411
+ "content_ntEL1am3",
4412
+ "content_l3tVmGpS",
4413
+ "content_Y5RvkrfS",
4414
+ "content_KhMaobjV",
4415
+ "content_SaANFgrB",
4416
+ "content_Azkn9P4w",
4417
+ "content_eGV2IBDX",
4418
+ "content_hUfyKBq8",
4419
+ "content_DFsjipgv",
4420
+ "content_cfkQWd6D",
4421
+ "content_bIdDZwey",
4422
+ "content_fMd87DPk",
4423
+ "content_ekxixpyj",
4424
+ "content_mxQ2GYIf",
4425
+ "content_cdpuZkKl",
4426
+ "content_Tjw5ZL4C",
4427
+ "content_tmx7g2zr",
4428
+ "content_6p2rOfgm",
4429
+ "content_J6ecE2Pf",
4430
+ "content_bY0XxyZe",
4431
+ "content_BmaMA0YL",
4432
+ "content_hy6qombB",
4433
+ "content_UfDBiLtG",
4434
+ "content_iwF4Y3SD",
4435
+ "content_pJy5d2GZ",
4436
+ "content_czKHneMH",
4437
+ "content_9zSerBA0",
4438
+ "content_Sbhb6RI6",
4439
+ "content_D4vL9ZOe",
4440
+ "content_bl1k5Iv6",
4441
+ "content_k6fU9s9Q",
4442
+ "content_wjHTC0sI",
4443
+ "content_dSuMeOWN",
4444
+ "content_K42jFl4U",
4445
+ "content_gi7Wbr3K",
4446
+ "content_mgJgDzcF",
4447
+ "content_vXaaZsZa",
4448
+ "content_tMem5Mbe",
4449
+ "content_KQcCE6Sj",
4450
+ "content_p6R3m539",
4451
+ "content_sNsJ3KlV",
4452
+ "content_FW24Vmum",
4453
+ "content_G4NXnAA7",
4454
+ "content_j5Ptpje5",
4455
+ "content_JDzlnzlM",
4456
+ "content_CYYETekq",
4457
+ "content_1zBYbSNm",
4458
+ "content_aIwueJvQ",
4459
+ "content_0QoMjW0m",
4460
+ "content_J6cuBIYs",
4461
+ "content_vhmC2kzN",
4462
+ "content_GUZnrkS9",
4463
+ "content_qx6MZXEa",
4464
+ "content_OHhdbcep",
4465
+ "content_byP7PuFa",
4466
+ "content_0lPFQP5r",
4467
+ "content_LH9WscbG",
4468
+ "content_qHnkrTKx",
4469
+ "content_e194fV46",
4470
+ "content_4JPpugRt",
4471
+ "content_jnbTOPAJ",
4472
+ "content_kZn4OIKL",
4473
+ "content_HUHDgjBs",
4474
+ "content_He4T0GAI",
4475
+ "content_Ljol8aBQ",
4476
+ "content_Be8jpYPv",
4477
+ "content_Ni7vqhqP",
4478
+ "content_oGpQeqlK",
4479
+ "content_RAHHX2kT",
4480
+ "content_lq6KdNMD",
4481
+ "content_UDaDU0ph",
4482
+ "content_3j1J9hJb",
4483
+ "content_UNdLnavS",
4484
+ "content_BsRnsA3A",
4485
+ "content_Jv1en7hi",
4486
+ "content_Dcpurtzf",
4487
+ "content_P8fpLKcf",
4488
+ "content_EwTeBWQQ",
4489
+ "content_QdJ6Xove",
4490
+ "content_6eRgWUvY",
4491
+ "content_R61CtTY5",
4492
+ "content_EhmDnd8z",
4493
+ "content_ZwjUtYeC"
4494
+ ],
4495
+ "content_type": [
4496
+ "movie",
4497
+ "series",
4498
+ "documentary",
4499
+ "special"
4500
+ ],
4501
+ "download_quality": [
4502
+ "720p",
4503
+ "1080p",
4504
+ "4k"
4505
+ ],
4506
+ "weekend_viewing": [
4507
+ false
4508
+ ],
4509
+ "prime_time": [
4510
+ false
4511
+ ],
4512
+ "kids_profile": [
4513
+ false
4514
+ ],
4515
+ "ad_fatigue": [
4516
+ false
4517
+ ]
4518
+ }
4519
+ },
4520
+ {
4521
+ "event": "share content",
4522
+ "weight": 3,
4523
+ "properties": {
4524
+ "share_method": [
4525
+ "link",
4526
+ "social",
4527
+ "dm",
4528
+ "email"
4529
+ ],
4530
+ "content_type": [
4531
+ "movie",
4532
+ "series",
4533
+ "documentary",
4534
+ "special"
4535
+ ],
4536
+ "weekend_viewing": [
4537
+ false
4538
+ ],
4539
+ "prime_time": [
4540
+ false
4541
+ ],
4542
+ "kids_profile": [
4543
+ false
4544
+ ],
4545
+ "ad_fatigue": [
4546
+ false
4547
+ ]
4548
+ }
4549
+ },
4550
+ {
4551
+ "event": "subtitle toggled",
4552
+ "weight": 4,
4553
+ "properties": {
4554
+ "subtitle_language": [
4555
+ "none",
4556
+ "english",
4557
+ "spanish",
4558
+ "french",
4559
+ "japanese",
4560
+ "korean"
4561
+ ],
4562
+ "action": [
4563
+ "enabled",
4564
+ "disabled",
4565
+ "changed"
4566
+ ],
4567
+ "weekend_viewing": [
4568
+ false
4569
+ ],
4570
+ "prime_time": [
4571
+ false
4572
+ ],
4573
+ "kids_profile": [
4574
+ false
4575
+ ],
4576
+ "ad_fatigue": [
4577
+ false
4578
+ ]
4579
+ }
4580
+ }
4581
+ ],
4582
+ "funnels": [
4583
+ {
4584
+ "sequence": [
4585
+ "account created",
4586
+ "content browsed",
4587
+ "playback started"
4588
+ ],
4589
+ "isFirstFunnel": true,
4590
+ "conversionRate": 80,
4591
+ "timeToConvert": 0.25
4592
+ },
4593
+ {
4594
+ "sequence": [
4595
+ "content browsed",
4596
+ "content selected",
4597
+ "playback started",
4598
+ "playback completed"
4599
+ ],
4600
+ "conversionRate": 55,
4601
+ "timeToConvert": 2,
4602
+ "weight": 5,
4603
+ "props": {
4604
+ "genre": [
4605
+ "action",
4606
+ "comedy",
4607
+ "drama",
4608
+ "documentary",
4609
+ "horror",
4610
+ "sci_fi",
4611
+ "animation",
4612
+ "thriller",
4613
+ "romance"
4614
+ ]
4615
+ }
4616
+ },
4617
+ {
4618
+ "sequence": [
4619
+ "recommendation clicked",
4620
+ "playback started",
4621
+ "playback completed",
4622
+ "content rated"
4623
+ ],
4624
+ "conversionRate": 35,
4625
+ "timeToConvert": 1,
4626
+ "weight": 3
4627
+ },
4628
+ {
4629
+ "sequence": [
4630
+ "search performed",
4631
+ "content selected",
4632
+ "playback started"
4633
+ ],
4634
+ "conversionRate": 50,
4635
+ "timeToConvert": 0.5,
4636
+ "weight": 3
4637
+ },
4638
+ {
4639
+ "sequence": [
4640
+ "content browsed",
4641
+ "watchlist added",
4642
+ "content selected",
4643
+ "playback started"
4644
+ ],
4645
+ "conversionRate": 40,
4646
+ "timeToConvert": 12,
4647
+ "weight": 2
4648
+ },
4649
+ {
4650
+ "sequence": [
4651
+ "profile switched",
4652
+ "subtitle toggled",
4653
+ "playback started",
4654
+ "playback completed"
4655
+ ],
4656
+ "conversionRate": 45,
4657
+ "timeToConvert": 1,
4658
+ "weight": 2
4659
+ },
4660
+ {
4661
+ "sequence": [
4662
+ "ad impression",
4663
+ "playback started",
4664
+ "playback paused"
4665
+ ],
4666
+ "conversionRate": 60,
4667
+ "timeToConvert": 0.5,
4668
+ "weight": 2
4669
+ },
4670
+ {
4671
+ "sequence": [
4672
+ "playback completed",
4673
+ "share content",
4674
+ "download started"
4675
+ ],
4676
+ "conversionRate": 25,
4677
+ "timeToConvert": 1
4678
+ },
4679
+ {
4680
+ "sequence": [
4681
+ "content browsed",
4682
+ "subscription changed"
4683
+ ],
4684
+ "conversionRate": 15,
4685
+ "timeToConvert": 24
4686
+ }
4687
+ ],
4688
+ "superProps": {
4689
+ "subscription_plan": [
4690
+ "free",
4691
+ "standard",
4692
+ "premium"
4693
+ ],
4694
+ "device_type": [
4695
+ "smart_tv",
4696
+ "mobile",
4697
+ "tablet",
4698
+ "laptop",
4699
+ "desktop"
4700
+ ]
4701
+ },
4702
+ "userProps": {
4703
+ "preferred_genre": [
4704
+ "action",
4705
+ "comedy",
4706
+ "drama",
4707
+ "documentary",
4708
+ "horror",
4709
+ "sci_fi",
4710
+ "animation"
4711
+ ],
4712
+ "avg_session_duration_min": {
4713
+ "$range": [
4714
+ 39,
4715
+ 148
4716
+ ]
4717
+ },
4718
+ "total_watch_hours": {
4719
+ "$range": [
4720
+ 67,
4721
+ 439
4722
+ ]
4723
+ },
4724
+ "profiles_count": {
4725
+ "$range": [
4726
+ 1,
4727
+ 5
4728
+ ]
4729
+ },
4730
+ "downloads_enabled": [
4731
+ false,
4732
+ true
4733
+ ]
4734
+ },
4735
+ "scdProps": {
4736
+ "subscription_plan": {
4737
+ "type": "user",
4738
+ "frequency": "month",
4739
+ "timing": "fuzzy",
4740
+ "max": 6,
4741
+ "values": [
4742
+ "free",
4743
+ "basic",
4744
+ "standard",
4745
+ "premium"
4746
+ ]
4747
+ }
4748
+ }
4749
+ }