Created
February 15, 2023 09:20
-
-
Save vighnesh153/6303db5df10ec3176e89dc80c35625f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data class MovieImage(val url: String, val aspect: String) | |
data class Movie(val name: String, val images: List<MovieImage>, val root: String) | |
data class MovieCollection(val label: String, val items: List<Movie>) | |
val Movie.description: String | |
get() = "When the menace known as the Joker wreaks havoc and chaos on the people of Gotham..." | |
val movieCollections = listOf( | |
MovieCollection( | |
label = "Popular movies and shows", items = listOf( | |
Movie( | |
name = "Elvis", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcShW4T0PjNNSwoTcXDelIXHD0pLgNO7wHMybwjWSxaB5a5QXKBM", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQkC5RoW1CLF8FacbGRdz27Dqfgr5u9pooWGm3ntQpQ5Zknvqyu", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQkC5RoW1CLF8FacbGRdz27Dqfgr5u9pooWGm3ntQpQ5Zknvqyu", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQG9-hf3Vo1efjVRGZsKRo0gbnaqqR7RNAXgYU5Qm4M2lxteplo", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQvk2h0aGLo0fGKuOH5dMB_93Whgy82ZnXCe2IG3jmIIgoisT8u", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQqUgbu7Umnf_het6w8VZx5SJy6yym103CY-WbpLbGIs4MBhDAe", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRP-15NX0rT2lmClnA8K4SJBL8hdjNbkhsDelyvOY7scpuvf2EV", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRlysyn7I4j-vMA8VXkLYHeRpXjx0T0ODI7b0DgFsNiXTZSROKz", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ_Oh065HLEOhxrqP5X7Bx0nyAtX0oUTMcp3jXRT5F1PX82JnC4", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTNWiMq7IqWv6EqFmLbGdiWvQVrMYfMvrDa-A_ATiuVSdIG7x9Y", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSTymuR7zBZfgY0Uc0RTdUiBOCp8Ql8fzPjuqVz1r4L3NoOgRLT", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQMQl5KLVl5e06u-BXuVQpkHHeIJsT1H9StRFwr6CBgJ4L_nMnb", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/g/11frt88j0q" | |
), Movie( | |
name = "Moonfall", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQuqC9Vgf9LaRD_Op1BsJS-bInHK6tUOTUIBErYhzXDQzxo4N0a", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRpoyBIwuqtyEcPQRLll2JmdhS_AIk4rnISkn6pNe_XZEmx73hS", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRpoyBIwuqtyEcPQRLll2JmdhS_AIk4rnISkn6pNe_XZEmx73hS", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDe5TZ9Sal5Ycvmu8cGOMWH6afuZl9iZtjNbtWqIZiONL9x-6b", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtAN1NwR80erxpOWAimcLN3LvvTQMPqWxdlj1DgJW13huqJsip", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQSl-bfMGcHwo2WwxjgnSthSpovXOhOS8kQ4JGgAa31w66d6D2m", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTRVGLbA0uy9xK5P74Th-mTPpxT4LowOXZmbRgzePw_lU9IYPlo", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTWshA__EBlR4PUKQOem62eFiFdzaGi4wEqx3I82ZZHcsB5zO_3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQZ_5emjJXOeUlJLaWT-XYDmDTMaeii5ZRZtrjxEdLwjU2GVMHl", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTQB3Vzt-Niv6CWyTfD2JlmLJd0EAtfwz4NPUmMB1UQEerpe8xX", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRrOUovTKhuiNVyfpEaOlHrMNvn2cNG-zKIDl542PxE1NekFi89", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcToI6YpDbN7q-bQgG68A71GubnsZRVM1wpbcP8HOl5YIMPKd1PE", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTVu1WAGnlSJaU0bwXvMVyBICEGv6_zCf-BZ_U5ZfkEes4blauU", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRXOq8H9rKuaVupNDkRCYW601bQBPrijYkm4KdWfHTDevqcyTxJ", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRcviTpMfZBzA8hF1gKjUHFrvEy7GxPMDXWV2gPRntHmmYDRjPU", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_TwVruwVv4aLxdHR4M_VmCXbOtZ2ASdHPN7oRJj34Y_Qa5lN3", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSd9b1-fYne7AMcmkldRR68BC7-pYXXHYXxJAEAldaTmstrd0bG", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTwUVkpq3iGaRpNwCZIaSdOvMIQb13s-ddE8rIPH6BRt7xs7u18", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQt-7h5EsYBP7b1gGNrW6nx1LZYw7WhZS227L08kpFWC2xU68H6", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQPXZbbodZSPWs0JVXyLyY9L-jrS2Wpy_9zoQ7v8iKYSWVlswmQ", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQORShanjxPc1qeU10qBctKWhX5GxuhheFgngr6QsN2fYbaLLEl", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/g/11mv_562zv" | |
), Movie( | |
name = "Palmer", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR4pCFNPzbUgBUguIVdaPY-J3_EDiYRtuTJDq-y6EpXrUyAU_qR", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQH48W11qHScqfMoNC79Lo1tUGP39tQ7-EsaTubzBTqv_ZiKLbS", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRx_Had06w6hYLa_nhCHfIaK4OPso4yhbU-rjT-yWlBIHkXdSHf", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFbyVJExxaA21ZXCTWND8LyWLbDA_NcmZijt0bJ4mzlGqPVRnI", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQjoq2aTPIypjINfXYFYt2ArfqFA89ZsV9_iaiHEEmGL27ktAHd", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFbyVJExxaA21ZXCTWND8LyWLbDA_NcmZijt0bJ4mzlGqPVRnI", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRLmMBfKERDnn-wiu6Wp7ohNx07DoWz5bhKCEcITzEV-nqM7JBH", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSlLkWqpzl3XhEi6hh0fonijL58AmmjjeFari81PCuIQxNCF3Vn", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQwgbSTLucsFE7Vap5RWYnERAzhBv0C-BsJqMEprkhvU7C3d5G5", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRfUjLIvIXw2z-N63jRXl4ToPGbxnXPqlaWl0EcHFtTvKkCssF-", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/g/11h8f4gmqz" | |
), Movie( | |
name = "Old", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTEICpwaH5dQFCotaYfXrqo5T0_NBnp-DxF7h_o07b3oAR4bqNt", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQcnt8gOOVXWj1Mwb-ScdYi9IcLsrPdpQXb1bQT6bt7SDkXQtgt", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQm7ZymrBS8ZP6rmJFwcAOq91iKvSIgx_HEBABkuQzQ3484OOJF", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSV54M0HHHLkXy1uOTmC1YhvuWF1FpPhNa-VS0oBW2l7yInl7Rt", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRX2A1HMZHZcUjqyRR2O4bgmca8RRI_nmVjeq2TLOK4PcQWrqNv", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTDkpQ9QVTUC3q4wWmkQlJLUfZMhruepdphEV6tjCrybQ_enRFZ", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS8PR6dDHMfuTPaTP_ZWULI9uY_XFIAMIH1TzSltLJFMR6osYtH", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ81IEJMvm4pkzsC135dupGk-qWwvIR60-EkXzHfXfoVTwJm4_D", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS70UugJlv_bRfoTQry3LBjjcxPgKhjIJzfXZlKONyCYfsxQkVG", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcREGW0VoWXGWj3W6RPbHBczW6YFmXzQi6SOVWVjU_hNS3FmqIeU", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQHiXYYPfpvrsLbZQvpUG_pwskbGt3wa4pW20LAadxR35pKJ5Y1", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSQIwWLFeZatv1MCtDqEP-ZtRfCz2QGTQxhxV22H8QgyBYu2iYf", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR2rko00ME-s56NNF0snLM3__1gW5a-aHEDAsmGQQ5FDbu7cbxr", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcREGW0VoWXGWj3W6RPbHBczW6YFmXzQi6SOVWVjU_hNS3FmqIeU", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQEuJNlBay2DQ8pMihPh5Cxag16Vh7fcrY-eu7sB_VGpLiru8bS", | |
aspect = "orientation/vod_art_16x9" | |
) | |
), root = "/g/11kt_l6z9k" | |
), Movie( | |
name = "House of the Dragon", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQiYRZERvVOjAjDvj45fxP3u0uohsVqgiKkpg1Uud7rzgf2n15Q", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSnxHbQvpUN9KsXmgciDr9rHG1qQJHILm11_AP9UWYgfJ7dxLPY", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTX-cD5eCLyE9w1QNWRnwgNdIN-jLj_t6TExui4sGGQ-76MOwu2", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSQ2Q9hDpy5TXRUH4wTiJBuo1rcN06UhKknCO9LII28y1t4am6c", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQwXb1lO8udTmuboHRtOhpBr_eF8QuUEU1Wiin7qYzTzJz4P6Xy", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ2L2aJ6QlEotlk7eWK6vNEE7P-mA22zDl2knAcYonqkrrL3lJn", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSqd3hXPTllkfekfriAlW-UjALsbwzXdOzYGoc-8tthpzrEa_oe", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYFRy6aPRYQXK87Cssz6awaYxJPo686pBn_M__BvWLR-NUFKdY", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQwXb1lO8udTmuboHRtOhpBr_eF8QuUEU1Wiin7qYzTzJz4P6Xy", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQmdRq4se5mzRXnv53YknhHP2XBgIVYApfl_Gp17OejCORdff1h", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8nk9legpqBMpSUzRXuNykX1S8Zn0Go91mKOrmVrtvEmQkIQ4Y", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRGEEUJ5sjptOCPVGgan7WczRvGA-q0GOvs_576aQD3VMBgya-2", | |
aspect = "orientation/banner_1x1" | |
) | |
), root = "/g/11j0n257zd" | |
), Movie( | |
name = "Rick and Morty", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS8WbevxSugPlbfZv3m-WZ-GSyHng0VfnBSwqNkuYW4UIKwi1yV", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRYjhWbW07rrpEQq9sSb0TMAy51PZjhJlHcwm-jV0DJJr9Qgy6w", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSYOrG8AHh5sCDqdLK5fiaRY_IasQJCiQqKgW_k6p8JsqSvYsdS", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSGdw8eYpfYgYuel-zJkFhJlVeUzz2oV-EewXfqF32rZNiffwRe", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSWFP_biBEfSJHI-Ua_8_jheo3MQmWc7dfL8ZD4b0laxWTdRH3S", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSWFP_biBEfSJHI-Ua_8_jheo3MQmWc7dfL8ZD4b0laxWTdRH3S", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRl1I7oz-o-wVOhAMGKYPYe1wqo1QVqZQ0-IdTUMq3e9eTMQ4-E", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSWFP_biBEfSJHI-Ua_8_jheo3MQmWc7dfL8ZD4b0laxWTdRH3S", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbZooBhjHrAI31fQEvsHHavD-C-vNTUUKrX64Dh3tQkGBjTjRc", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/m/0z6p24j" | |
), Movie( | |
name = "Succession", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSN0uXO8qONINFLkqHYlWx1yBW9n4FtvnIBjdEMCnj939QL1KCX", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTOurmuGADFmZVvwKBuQb73hYwnEk3xpNo-ff7GcuAMUOsPBcs_", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTub6SN1v8zm4SshlhG4ifZov-kVB26lgLw2Y8me227MbFRZs7G", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTub6SN1v8zm4SshlhG4ifZov-kVB26lgLw2Y8me227MbFRZs7G", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSLKnC9XdgBRlDHkh0pUYrIOv7AKeOAOWVOLkY0zv9D0qrY_luj", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTW582tnTwjNc3keyXsytD2mU2YFoptykispFLKvvhfQEQbIeA_", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbOwbckGWiieNMukoUd8sBwzUR9-Ge2zVd9IND5cjStOYjgKds", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ-TRSIPic_IAnpMFhEg0Z5zWnzlSJEAADkakcrbopBVat4f_ep", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSFwIbvtqLv6iHxqVD21dvz5mJnk9rKM_OoXa8WfV7wF7mjUy5J", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRLjvIdAC600ZFat1DlYt-Dv56eLMUBR2S9sDbrsOykJtr-wR2V", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ-TRSIPic_IAnpMFhEg0Z5zWnzlSJEAADkakcrbopBVat4f_ep", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNDeGDy3JlOowjTDAm_85O4bscIvi_5Ji9uVTk4dUkjW_xIwj4", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTub6SN1v8zm4SshlhG4ifZov-kVB26lgLw2Y8me227MbFRZs7G", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQZktUj5_-fvcvYVmx3MYFoyide-9c06HPS8gYTTNxSAjgQbmKw", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTE4VUAxwzvjAZjiCQ9D9l07znUz0igkuddmOJmMx0PJL-i9AVA", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/g/11c37_t1x9" | |
), Movie( | |
name = "Station Eleven", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSnTapPSY_8yBfZxRqPoEcX53pCJba8NM24XvpkxxA1QiKznFpi", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT7ZDXw7FX4TOoYiqIpGJ9UMXcquJYrlWU5jKAWBuSZpPNge904", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQYAXd8LH-1J-eoYw3kXbt9gldS_zqXgV3H5T41SYaMkT6iS26u", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT24C5GoIJP1R0jFvqkB9472aMcX-p7rrIsIGSsXB64S8L0SMzH", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSTwtNKcymllrS36sf8-183kZcwjl2mYFGtv667lVKlmGFGdKHb", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTrKwbmOUrdWNx5qSStcyUpebvz2FP_Rgx9rEU-gz7wmC20yu0w", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT24C5GoIJP1R0jFvqkB9472aMcX-p7rrIsIGSsXB64S8L0SMzH", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11j7d_w_7k" | |
), Movie( | |
name = "Malignant", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYAYCTOZLFFCNSHdl1PJ6xEWXxGQLT0wN-EnRAi7QosVBsmHkY", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS4wfJeSlQ3FFyJDFsOK_tSOO2mPgVqtwbhm3HQTpDVIDvRhthE", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRLAviJ7-zJc_XmERbagwyA3S-NnqkriUKYEKFnoTrRPKutyo5J", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSm4kJC6E92HqeIDfJDSbmmuBQAuHSapKAuTj9Acw7tqHBijO6D", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYAYCTOZLFFCNSHdl1PJ6xEWXxGQLT0wN-EnRAi7QosVBsmHkY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTWSkrd7NXiWttbya8qWn-6je0nWw3L5o5QA35j93Uc1GDKO9w6", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSs3VKqQSxNUF1QzKj09J2V3eXRzB2WUUBLZvoJdujAMrxFmyiT", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYr25baB89INiJI0CzD5gi2NsF-lQ8LZKz7Lxa6T8OOtuJLdYO", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT1EoEtvmVtpSPvfslsHQy5Su8usatE3KCV2X45Mkp0q5kEWVzC", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSgLiLGQ4plyO61yFsX_goEqtB_iQqFnO0ctXhC5YARSzcqnhrv", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQoKXgN3_uA9DvfW9UWiWi93cSiczAQLN1Olg6tf5oLP90ayiCT", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11h5h_n9w2" | |
), Movie( | |
name = "The Fallout", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR2ERS_-ceSmif3GC85Q-aUviK-95wDiuFwefTCJAZbQt6rIXP9", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxz5ihk3SCqdzSHbH30HojdjCZ5X1sPQ5UwraXe9WngYIMFYqY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQkbLcK-m9HPDsoGODWTOHPZdTRWCwucfb3lezMy6U95Kd1iDyv", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRF6WMbnbCm_c3QH0YPPrA--U8Osbxqwd9IWy45023iKbIW6lke", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxz5ihk3SCqdzSHbH30HojdjCZ5X1sPQ5UwraXe9WngYIMFYqY", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfy3-Nzglj0PdTy9rPIXmXmzEHCED8ogjYLXgTFQdCFdBY9I2S", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ59qj3WrAW2rOBxCjfdoUX2JsUOOCPDs07n8dkA8i5jqXuqw-e", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTvkSrdwiT4cOA5JzU4WIOGKezlGwzxRWWAjufhNRSE34OiC5Pf", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIg6wrvS0YaJJ8oIqDejIKih1EA46zeR49XbvEaDEc_1hwP3w5", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRImj9sIwXZfry_DjEP29tPtss4CMY4NbO4NA60TLLj3WHu3MlW", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdPVXSSHVtplh0BavTYTii02_Gn9nQzWp2DICb8rlmYiUKYkA5", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSF4_ibqBX2buYWXHjoWhqbM4Ka_mXJ6TX5nw2KdzRqoYBM3hN1", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS2W8SBcVivlUelbzByErtZ4s8_B9EcVe98q_446_CJ2qAr2zuT", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRe9xkjacvPTXwDTK2w22ixJButorKSqMBtb_S5NVaot3FJbp_5", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSRFEdD0rgrCQxCV5SUJyv6PPyomtwEsoJ6N24mZzVCFXiyFVLn", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11k2x7sg_c" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Dramas", items = listOf( | |
Movie( | |
name = "Cherry", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSJzTA3YqMSXXgbbMgUEPSBiakoIrkS2Fa61CKgrdUPt7GslCMi", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT4xN0Od6MKT_5jtukQodkRgoc-0t2-O2TQqaAtLPlw9a04g0tX", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRrmkO12beyrYtAoWS5tZSTHioo8JzM8uU2o6NP2N3oZb7LgrYp", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSr_sSK7mJIjbZUDJ6ipevRogL0i39OJPSPmLEwV7NKQb3KS-Hk", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQrgMiflmrmM20oz7AG68bLLpnwfnbZgnTvvEvlx2wCZvtQew14", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRYj7MxuTdJGUlsgqF862cIVMv5Hlvz64McwqMWCaarzg1sri5m", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSh55mO5uuCGKJDANYQ1DtgZTeg0_Bo6Z2BcMLRdeo6doL7FZZe", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxaxI7k8NNWjB21ao6NJ_I-7EfWsRiMwaUFglXQS3cL9Wh5a1c", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTVHkzTYLq4fsLnh7_LwK6YzEFvHJ3P2MwLHiNV0GwxvHIb7Qrv", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRtTSUlTPtkVbZvEFPHmfbOO3nYOhPCIoLVCKUlmKd5oAMqnWYq", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS0EpseUXBbTHMnu_91SOlIgStjFsC7xl5gWjETD4Xaa5t-AqyC", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQrgMiflmrmM20oz7AG68bLLpnwfnbZgnTvvEvlx2wCZvtQew14", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRyHeIkfKfSGydlF6ytTL0ttPspmF12BaAvw9YBiHS6uLJi-BCi", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRnoRG_ZDunwa8WeFOGsumZCCrbc-AHfVGDJJHXqdfURdam7Rlc", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcROf-Xjd8iQY7RbyeR2ehjEDfQkxuYXxIiE7Qb_ES_N9rKnWr8U", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/g/11h_z7qh7k" | |
), Movie( | |
name = "The Fallout", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQkbLcK-m9HPDsoGODWTOHPZdTRWCwucfb3lezMy6U95Kd1iDyv", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRF6WMbnbCm_c3QH0YPPrA--U8Osbxqwd9IWy45023iKbIW6lke", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxz5ihk3SCqdzSHbH30HojdjCZ5X1sPQ5UwraXe9WngYIMFYqY", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxz5ihk3SCqdzSHbH30HojdjCZ5X1sPQ5UwraXe9WngYIMFYqY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfy3-Nzglj0PdTy9rPIXmXmzEHCED8ogjYLXgTFQdCFdBY9I2S", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ59qj3WrAW2rOBxCjfdoUX2JsUOOCPDs07n8dkA8i5jqXuqw-e", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTvkSrdwiT4cOA5JzU4WIOGKezlGwzxRWWAjufhNRSE34OiC5Pf", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR2ERS_-ceSmif3GC85Q-aUviK-95wDiuFwefTCJAZbQt6rIXP9", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS2W8SBcVivlUelbzByErtZ4s8_B9EcVe98q_446_CJ2qAr2zuT", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSRFEdD0rgrCQxCV5SUJyv6PPyomtwEsoJ6N24mZzVCFXiyFVLn", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRe9xkjacvPTXwDTK2w22ixJButorKSqMBtb_S5NVaot3FJbp_5", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIg6wrvS0YaJJ8oIqDejIKih1EA46zeR49XbvEaDEc_1hwP3w5", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRImj9sIwXZfry_DjEP29tPtss4CMY4NbO4NA60TLLj3WHu3MlW", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRdPVXSSHVtplh0BavTYTii02_Gn9nQzWp2DICb8rlmYiUKYkA5", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSF4_ibqBX2buYWXHjoWhqbM4Ka_mXJ6TX5nw2KdzRqoYBM3hN1", | |
aspect = "orientation/banner_2x1" | |
) | |
), root = "/g/11k2x7sg_c" | |
), Movie( | |
name = "Wolf", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ3QqEAlmQppg4S0N-P60t_6fOAxATbIDHJAjZQxlFhHOmj57Uq", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSbUc1yAsnD7Hk0JFHGL9OTS7A8oxALRC6wGDI71z-9Ssl58HlH", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTviNGMdzxqYDbvIMkcEq8642Er20AuNsO3DOoATE4RJdTBOpDq", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRVT6k8MVEhjZ_D5aR9VYS9OvF_wU1RVgClZdTp3F0_wdDEE8pI", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRBky-3SXCQz1FKnLMHIGtq-nbYY43op0aje-C-D9zHEwJlV7pY", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSdlQi_7b7Ht5x1IO9MRpnMq3gKu9Yt9ZPaBFiGQme3JqkgpAV6", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQJyT93bCUTPsyP0Ve3t8jIW1NqJ125rQU66-mgLN0SXWLwsYfc", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRIo6z-tB6sdFcIQGF9wL9qvciRVZ8RMWCDiDhPb9UJBFW_s2lA", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTSuqX4lTx4uDLDNKUNo_wP7nDsLejxu3PXAezhSl8UgBhdR9hP", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTK5u8CHyKyrm--iywsD3GR3D8OowDmPXQz_IyXBKoH-ZFN0hgM", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9kDitY5iicQ5XjPLkJT7fW3vmVNNqh5pkHktijfbHAOThrdC3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSrBKgKW6M6RDJnY8_gj1B_XwqHv_WCehuA5996Oq_xBfckcZaT", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2r3PqYRHaDy37snfcityNysOCZ962250JcgYXJoUa5t1ZBSta", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTfDYrwygL1srb5Wa6kVW4WEI7m1nMb2kahXbH6KlyiLZ595qk-", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRVT6k8MVEhjZ_D5aR9VYS9OvF_wU1RVgClZdTp3F0_wdDEE8pI", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11kx2v359k" | |
), Movie( | |
name = "Big Little Lies", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRmf_3fbK-kzBYoek0T-w_DP1-Y9yyBnaq6jLQ234Te1Lz2ZPio", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTJMndDxIAsJZ4ZdQViCjk8XaCNSAzWn490nI8y2NY7AViEO3dW", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRVhfeWxjf7Q2ejj49J-INAEzx9KQ3IaRED5qYmfrdYjWNsB6HY", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcROkDj8gY3n7acKZ6pDv8GUBgAS4v0Df5d1GoHlU3_83ayJzf0M", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRm31R0kRgYzOwagDb0RvPSKYB4XIDLYREBDxryZLeqjjGV8h8F", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSuWetryPvtgQKDNwe8m13w2v2dgrp4C8FJJ62lzdRECE_xKgKb", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTJMndDxIAsJZ4ZdQViCjk8XaCNSAzWn490nI8y2NY7AViEO3dW", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTmriCFXT-GlAPLfAV2SmMmerTsLQiC6j41_mIiZB5t2HcINQoQ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSiimQX08oBNexHVDX8kIHOWJv9chGl5E6raobKcTZPbPdlyeRj", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRgHr12uc5myuRiBBCsvat20__IRq7KhuvLol5Tb6KSDxkkxv4Q", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJSUKS_gCSJHJ2B3VLZHW7zzt-6EvtFBnKllbjVoJjtfJO77mN", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQjtaaBHs6E4D7UyrbA50VvKmd7B8uRHsqE4puYMOeSB_J4vGxR", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTJMndDxIAsJZ4ZdQViCjk8XaCNSAzWn490nI8y2NY7AViEO3dW", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR7QmmgSNUtapmOR8VXB2-9mwijgKj5kCVdgKjNoS_tWbZyHoBD", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSU8SZ6CwtkfwYERq52DHo_yS-tdBkDoQyfj6t5jOaQQseBhbHO", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQjtaaBHs6E4D7UyrbA50VvKmd7B8uRHsqE4puYMOeSB_J4vGxR", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/01371nmr" | |
), Movie( | |
name = "The Leftovers", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR6hB7ISbRLRhNQLEDNairAxxwsCMoj6wrfQQE5nEfbY8r-beqM", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTSP1Mlp33rQXtM1OHs1C8dks2GY63Ok1Tb3z8EiGIBOJWP4Su1", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRZf-T5cEewFLzITvHcnzDvFr30sXBYBWVzGiI6iHtVQHj0CFus", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZ3VbPIPkN9WTPeUxbRHfQWM1PJw2ap4as7ADKi9GKxbSk3W12", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR6hB7ISbRLRhNQLEDNairAxxwsCMoj6wrfQQE5nEfbY8r-beqM", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRimqiFxvv5XZ975QL9VJ5uKZO-jLwHQ9KS8v645VK2FSt5OBQD", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR6hB7ISbRLRhNQLEDNairAxxwsCMoj6wrfQQE5nEfbY8r-beqM", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSmFaYHIJ1RRqHpZzalHIPirzY3wogjyWU1LvMqHVfjk3gxO2NB", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ0OUSfoDQXURCqe5F-v2mv-LFHwnW8MJFvkXIJlE3ovE9iM6JY", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/m/0w1dzvx" | |
), Movie( | |
name = "All Rise", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTA-GAqOot_3z0iV35hIZfslIqQ9uHZf6jB3z9TQWVE8zUtGSc6", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDEQzx3u23RR5A1IChnbblNTUs1vGbyVEEeW0JenzGd6IweNEL", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPJZYm2hmYZfpY0vTOhIFnqlTUqDtkHTtkSWPUBN_DrLV0Rr49", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR2Zew_9B49Rowu9YwUuFgGir9Uk_UM_rqOG965KAGbroIeMjht", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR5QSt9qrn4R8WMCLJ_3ng-bzhDROKJ7SltB0IjaUdbp3U9Z5wV", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQDvuddgJC8JpA4oMJ6qSs__fZzMgyx5mbH8gV7ea3QPCLKVPZM", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS07jZfXGg-H1O1Ci4hjFenbIfN-pQvFIXBSY1d2jWh7v5OeFxy", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQDvuddgJC8JpA4oMJ6qSs__fZzMgyx5mbH8gV7ea3QPCLKVPZM", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT2syi8bq4UB_79kE0Fd4OHfJS3_YaUQ2LD2TH12f7Y9w_6fqVk", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/g/11h79n3mcm" | |
), Movie( | |
name = "Assassination Nation", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT7fqKaqu4zYI5_qieQAzmW3XE7FLXUlDg6c27y6A30tgWIkOAO", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR0iRb0-_W-zHppZHI04X2CeNLD705i-Uy5Gn81gEyZU0VuS1Je", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRQvGfKkWfdZzDNQyqzj3dWbD0ulPDMkvtx01ZiJyjTtmYCVCPv", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSnlDjkYWdb3pa4YF-pkRqzYGuTF0hHJ0_U_-U_Ol1mP5W6i9ly", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRT1z_aIVcH2WBrRUT3ku38qQKnkTXdLrNwc2aKr3Rr1H9U2VmZ", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQg4TqBvQctSviHQMu546fY2upFCQoVzc_DTSc7qOuVjY6ZowHg", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRxJdVUbzj8awX5B2mPi7oxgsRd81DErUetCWQ9BLlObFRQVUfh", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTd0tYtssxywjETquyshsr7L92zRFR4I-b0G9uRzrST4A8oqGsf", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRMoxq7kFkiTwSuAqod2UcGZ7_V8JhPUIpt_qSbCvlHUWMJFGux", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRKNY-GJL-DeAabDkQoK1k_pRUSvEMAJEhzMv82moLTv1DUKYDy", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR9Tg4dC1DRgUVTxRGovYeX2Zh0B9ncX7YfTBs8WziEGkCFA37N", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQX1zXBLYqo-s_pZDh8qZd7BdTGBZiIvwSlZU5jZKmYsF6YqGbU", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTyIr1rRGguiSAgamS_Ws8iDkz1vQp24040o-OZO94ru92UyBkn", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRFC-mcYAbXE4lkiLxjsLwZgV_-xL5hUSGEFtwZUqQ6OXOmlgkr", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRFC-mcYAbXE4lkiLxjsLwZgV_-xL5hUSGEFtwZUqQ6OXOmlgkr", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11f148l8yf" | |
), Movie( | |
name = "Thirteen", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTxvfdOfMyrZ9D9khpZmFqzdjXDOv4Vk73KF2iNZ2NVYheyI6vf", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQIjr7YfAVK_Y1q0-QdCgQmKmK2zGCsmBv1Dg2OGZbtyZjI_Z5L", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJqB7de7TcS-TbnrNQs5dmFOKG39QxwcGXjVRhFK48TUUv02yG", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJESxKMyfBvdduOLvxOH8Ml-b8oOteVlS5fyw7bfRhSr_yCXx5", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYhYYAmgBkxK1ILAW-k50lZtTYdq4q9rol9UfG-YbxrX3zG3pe", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSK40TPd5ZkVcW2u5R9kxnfgog0AbhW6ggJXwLW8MeX8OuxuQTs", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRsCmrnYk8NdUd3XEILg0X1emwo3Iyrt-4-Wr1yQRPSZFbnDWcv", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5GS2UFobC9W-TH-Rd3wMqyjzu4Qdkc8EvdWwEe2SaTog7i-hT", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSglDAWPPgFHGDWB7_yUCxYEKEvyth_LUVNPTJA3pGbGyoILBR8", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSTlpZQJ_1mobJOtXvSSbCGUG9QHJmfWpnSXSd7_h6NiGL0sxSO", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRADH2YiULa_GeB1ofJRMiJZ_MtIhpzddSbGvjxFeHc6Fc4v-oQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTalnuKQcGm9SuQ0o8YNgtGPvW0vPMmWgVLMJGSsTI93i62mf5w", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQd2Na_LUVsTp9qE05h6Vly8jYbLpmH7ZZj4qSy7LFB63rMvgcP", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSMBx1kN8OdYaydf_cHAQz5cVBq9h5K42_jHI0bs1hDAHlIO2F0", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRADH2YiULa_GeB1ofJRMiJZ_MtIhpzddSbGvjxFeHc6Fc4v-oQ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ-xQOnnOCMlm_OSlcshM2L33p18IpeMmYGKTFqh71zwNipr7-n", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSTlpZQJ_1mobJOtXvSSbCGUG9QHJmfWpnSXSd7_h6NiGL0sxSO", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/02d49z" | |
), Movie( | |
name = "The O.C.", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQvQ3BDN38xhIrl_QDJzQ4YKq7m8jJUDelpv7xqA6YZCNfJmPJb", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTGCPkOLzvOQBv4i4hCgaxOz5qRzp24kbQ28eKghZct0VqIZzgp", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRpYVfc4A3wEKK9ysO48fOY-R3up-zvZjzUtaJYnL4eGU9i9DG4", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTDkm6tk0GWRiquDQAlsNOqDcA8IF5QunIyL-yFvWLctqKC7WuU", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTUYVmTo0SnO2_t2hPM5RDG2vYgApIVrGy-MrNx3mrleFZA2s_k", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8BNAv2oaem2rmpGC1VrzSYdPwsQS1Ux3xZsCL46oOBrAG8eLa", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwMRFHIsVJaqAZy-c0lRsbBAu-Q7YZybpyFYBnbr7PijKIjpEH", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTGCPkOLzvOQBv4i4hCgaxOz5qRzp24kbQ28eKghZct0VqIZzgp", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTGCPkOLzvOQBv4i4hCgaxOz5qRzp24kbQ28eKghZct0VqIZzgp", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/01qn7n" | |
), Movie( | |
name = "Mare of Easttown", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQlVS5wqam0jyUhSQBPtoI9BtQa58kQEuKyNkq-QAs8xykjw1Ij", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTfa3T8oXAW3cg1ggBpHP9rJtM3FVsvjiVwPnDtA4Uji2USy4Jr", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQlVS5wqam0jyUhSQBPtoI9BtQa58kQEuKyNkq-QAs8xykjw1Ij", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT6UzcOxfgAYQGF3YScfBvygmdGb6zJ7tj5JmhQpJhDu_sXOwGq", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQOtJzAgwOFn6zuDPD2zjihqYt2v-7TImrKit6UOZEgknyfiRvt", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQUhQ1H5J3aqoRiL-Txl6h1uwjPAFOwtS_jy8B5O0XMwUt4uXgr", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRzIfgRSH5tx87z_mqbLqmIgKY7vPIjhcjTdtVDuR0O7zWPNiCk", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQTmrIxt-qg6sQ7EXYUNXeRFeefkRUL1wGp6xXdXoAhekdU6wfo", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/g/11g_z22chv" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Horror movies and shows", items = listOf( | |
Movie( | |
name = "It", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTa6IU5N8_xI24Go1yRV1Q-658ZexSBYx7Up8Dx2QL-OXEgOVvy", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSUrGKSknUMtgg6yCt5A2b3oZZqXq8bO7OiSSlp2BoM_mPE8Tv8", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTU7ddf9TW_hOOpY27hF-c3cp9moeIkQ68Xt4t4HSlFvWjcNYZo", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcToWrlRqmPzgEy7dhXc1_oWtBkL6kc8_F-fMTNArOtMAxxnyrRE", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR67vsa188_dfTZ1mkS2kiv_24b_HU_p9xL42LqUFdJmHHhuYp8", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxSXm79RUUNnC-xy8I7JuTkpoVHdidvf4I1DSD49F3WFB0xN2p", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ5jUzrgeA1Zip63YufdfGeayz14W-VHNI-h442LuG5LgzTpma_", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRBmizitXIiKLStN9fmT3DLAF6PFiomm-le6MlEcD_0W8T0QEvx", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTtWPP5OhviiMzSS2gBQr6hhIkinQUTCq74Z9EpJnyEeTt_MnzT", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1NrcNJmwp711Aj6bPM38v2AS9ogjweEYndiSr0pMXFAMrSa2c", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1NrcNJmwp711Aj6bPM38v2AS9ogjweEYndiSr0pMXFAMrSa2c", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRVSa0GqlxUpwtNlJiT9c6E-YX5Ov_xPiLxxq9G-GUsBCZFc06k", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1NrcNJmwp711Aj6bPM38v2AS9ogjweEYndiSr0pMXFAMrSa2c", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQDau-Em3qm-1yEuKJvKCY_S9tbL93O8sq0jVkQTiEd6m9fGMzR", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSM0d8oaVCJWSRl8MOZzPkXTMKza7jqwm8TBDTSBdlmfpMCXss_", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTC88mBRfZgze_uXBiB-C5w1Qepml2n353lZS3fARokPCoSlOlF", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRa6i1ly0F_RhSRVTa6bpstF4AjFSfHva5UipenxeCxFGzzy8US", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTNK_tWH3je7u60NDr4Wkt64cfU5j2bHD33ObvekExog2fmcy6i", | |
aspect = "orientation/vod_art_16x9" | |
) | |
), root = "/g/11b_0dntyr" | |
), | |
Movie( | |
name = "The Night House", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRRhtim8tHFDM9HxrXRevRPlttcA6Snug1fEk9kI3eb7_BY6GvQ", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTxIEcKpnmA1f7AQBNR6rcPC-ZJDGmZ7dZpE-A7eyFFd_yjTAw0", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSAyg0s2-rtc5v4cRjHtNHJPTCT0uFy_SE5SPBtEyUNnYcA1SLS", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTRORLt4Co4j28D7LhFmwj_Zcfz_FUBTIZ-t0q4h6tEeHOAidGh", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRundMOW8VuUAajP7qnokuQ5TrbXWIGyEIflwxdhT-qkRa7niPt", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRJrZy4uIdom59iiZwZtEUxX1u9ZwMCe9UFOxosnncFl29hND8L", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSAyg0s2-rtc5v4cRjHtNHJPTCT0uFy_SE5SPBtEyUNnYcA1SLS", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRiBw5qjjdJjIU6nzjhfTHScl2ePOSHlbTn78lmwhjICAlA9bGF", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRtzPK4eVZeTAqtoq0_rHzn5133MNAPuX8JDRVEr9x4PJ0ZGzfP", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTudqcT9sAX24jHwuH3LL0Sm_US_zmzKmJiiGvcMhx4sArS8ik4", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11h94jyh9x" | |
), | |
Movie( | |
name = "The Conjuring: The Devil Made Me Do It", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQKC8gyEI94JiCGm9IjpIZL62RNzPnTwqAhv9Q--HT9SRAoI00L", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSdheS6aoapnrPXfE65W86hdKwSF8mwoxAQzwVOj6dOlcZC-uHZ", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSRRhYa1XpS2fIMtquQCkk1J4p_LiUZf8lhmA_vqh-Do7N7XRLg", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQhzR31YFtw9JhEUNMaIhinQM5BrPAnUO6lcqSpyvpp94P5-cwS", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcThQHy9cn-wtGtDqpnampix8_KeJ0kxKcKLHTQMOxHCR-O7BWut", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ7ZKckijlYf3x4360RCnSN5wu6nW1gG6ZuXO7BoL0HAHokCtiO", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRDGJSjNcxb8WhKawszzZMtTDpcj_W9E-NMJ6dg71Uf9o7T3PpJ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRK0Onyb-FLN6GUTY5Uxv3sHqg-7Yc-7A8pxDo4NczME6px5Ix_", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQnwBbiBFZ07CWi-wRUahwD25FHXdlRBiLmV02ToUjBa7CZhoV3", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2x8v13VGezi7VQoGVSlUyG2Pn0W7WNmCfhzaeutYoFpFadwRi", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRd2QeEXt7rjv6mXJ30x1TnLGh3r2zl9mgWRYeEjVhxvpYz4du3", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3Tw9wCs2zTMzCXa28144DSgVhW9MtWZ2rdgCapbbcYPvCkHgF", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgdr6bJaYaXB1-YaXDTV-i0Pod1ya3jCV4ZAHMz_oaPAPukos0", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSG9IvkQ5BsT1XaPQH1vuG4c-RIPdmx1gfmEe4lrcM4Jd80HpBa", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ7ZKckijlYf3x4360RCnSN5wu6nW1gG6ZuXO7BoL0HAHokCtiO", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTuIaHJite13UqK9keKVX4lisN4ICyL1giOF6mM2rKXEhn6jM_y", | |
aspect = "orientation/key_art_16x9" | |
) | |
), root = "/g/11h1m5sjcq" | |
), | |
Movie( | |
name = "Friday the 13th", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSuc0QS3rRoCzGlzDbh23VjRippOyibmYcxFfOSlsxRAUzXE9Am", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSDV9cOjca6G34kjtOQ7VUy_LAObEkFqz44_N9FE_bNQVxkerVi", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQt1ApS6oy_4qLmeDgesAPB7M7beXtcjHKIDyCoSpqGLqQ3M8K4", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQQT45F4j2KG8Xivigh9guMfoihf42aKJhtcOlS_eu0TyMbTk42", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRvnhANiGj_fVOx_Xr8rZtKPcH38wRoWjDgJ2UOE2apR1aJRpTu", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSum0q07PkphYByiSZRaBOEtkFK3g_czx1veNSida-ZSaWxB36y", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRrMpv6G1hbwYraVVkouCQLfl5xwYr80o34s_Cx3Ufu-4K5ZAaf", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTmuis2uHCitLa1TdAAbb9y8fP3P7GcN4vA0ecHLLTEGACB8ppQ", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQhtovBOn6Cj6EjSm7c1skvd8Y86Zq4ztX3YOHFgz-JW9Ear12T", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRG4k0HDp8UuP6ORwMp9ChOj_i85bPlzPERPkfLMtenZVLjBqqx", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTL-meci7byfG_xZyh6ZAnyIv7Eu2n-M0mxBc1fc7aOyIPkCIlG", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQKYUEIpfalZIkXDd4DgYvBkalKM2jeFBQHUDNud40ehe3YMPgO", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSum0q07PkphYByiSZRaBOEtkFK3g_czx1veNSida-ZSaWxB36y", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQtOEyXkYxyYDWcb9_tzZLLcRtpTr7oAJ3q34gjIDbD5uulG50o", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQKqQyUVttdu0Hcbeoy8OrcW1w4nWe10phxUujLpA9_r7Gev_Hl", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSum0q07PkphYByiSZRaBOEtkFK3g_czx1veNSida-ZSaWxB36y", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/04czgnm" | |
), | |
// Movie(name = "A Nightmare on Elm Street", images = listOf(), root = "/m/0661q3h"), | |
Movie( | |
name = "It Chapter Two", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0eKhCX_x-w0NO7c53RIahFwz5iS-9-k_UT3pkOc97n0vtOgqw", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1-eqUobLz1b8h_Z9iNS9G8sZYeAC8lfgtIQRCaEWytzoaGy3x", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGhiKlx2CoaELU1c3Pt9d4zlY4UgciwymA2OXB_5wHj7qA9z_W", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQA-PbUnAiFgIlt-o3lGJm0M8rQ6vUUFOYuZqTSZdMbJb1PNe8U", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSCDF1bMAtJ2OKznmCtSRqCFs10oEpkCOzTldtpCmAwq0VZhou", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQnJvuMskIQJQWWrmdtCy7ZEEdpBqGYZajmaC4FQa344lV_Yb4q", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1-eqUobLz1b8h_Z9iNS9G8sZYeAC8lfgtIQRCaEWytzoaGy3x", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSOuxJ1m4EhCNlv7Ox20eKRT017by-V8boyKklyAmwc20UW673U", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQB5DoePSKYAcPuzWK1TYOmEQDblx7spPyljpL8l4MDzXV-Pfev", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR_q-Zsk_1w33qoTTDSkVSpV-thd8LiG0TADTmhuZtQxzMLpaFx", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEA1JfZp5_xP_jOhz6wpQAltYMPG1gKPi5-xKVGQXAytCPebAY", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQaLqSSWz1sLfvNMOoHO95An0Z33qvZWQ46q-d90LaQCXPbC3uC", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR7CT7eIm_9gYSXHE8SUPrbxM3htYGrrBfow_HNbRlMwB1D_GSJ", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQc5xS1_XykpjjIj64-LzUnWsD5GDnZympfsc5qcgyta0UMmAUc", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTuAPR7yX-Gmn0FA0oyWX6qAXOjKVBsyf40IJM6grG02NcoWoO0", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTpHWM-lCtiQWlwUhhA2KbV886WrKutq5TvfY9Is15ovA5Bjbgm", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSyqa5Q7YcDG2rl2yQ0ppt9kBIuu3dEABHiA7PYbwSZWtAuCOR4", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11hblcl111" | |
), | |
Movie( | |
name = "The Possession", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTKR69xJvwD1xahEsXhGRdzTQTIjbnEXmT6RkTsjfDCWYL3mjmy", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhq60UaF6h2wG9wwaJBj3Bkz39k2z_sfnJ_J0V3IHLDLxDwwRs", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSnB-ibT842krYY--OHmdc0MhJr3CTC7dvHGLRsWXnUUM9jaUHH", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQr_hC30MQn762reTx92-c8ElN-VNQePqZ61b4jMrkPeR2sjFLw", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhq60UaF6h2wG9wwaJBj3Bkz39k2z_sfnJ_J0V3IHLDLxDwwRs", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSh2oSzrTotKOjxUlPz9egBpoxcZSNLmKX6Krvz7cGk6eCkz0zI", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRGKZvl7zf-PaOZ05OSON1f6IxRceiYkuhaA7OobfvTLhmvt13z", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQr_hC30MQn762reTx92-c8ElN-VNQePqZ61b4jMrkPeR2sjFLw", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRSKueR-GintY4BoDdn7ZKc_cYBRkEoNYE_La-QnRRukIHwwxAX", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR6jYgKFNSlp4RuDbEYmjVO_WtkasGG5LG9ctUAHCcciRyNVmQL", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS_kGJTbMTXfOVpRcmcW1KUJsOFoRoh1i4gMNOmwmUNwOqej0GF", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQdtFMrw2YId2dOa3-9vEmoV0ZpPWI3ZGGYqMPF-LWGKHhsqHJC", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTe7tS3NY7ppNvG3NXV74vU4cw4KqKwhkeXj46n5KOCwJziGDql", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRoYKOkNkWU4JYgwgz8ZDyH38yxAM4cSkungxdbTcypo1_Zrpyz", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQwPAGoNFMouWzsIiyPpFoPjBWZNFz8rC8gDcqlBg2UVuFMgD2L", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRKGwGuzyU_xFrPGYJGewII5lUkhN5i_px_C_PCLKhr7_Sx5cfl", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/m/0h1n7r8" | |
), | |
Movie( | |
name = "The Empty Man", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQYlu9Ur3U7UK896dMJwkyZFYxdzRvLztuNt30YZJWRXKRCHOhF", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRVsfnDqwwJW0xaa2tczR8TdUL2rARYtbjT8OwdsNXLF_HeRq0H", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSUVt0NrAkx7NM-TWSwUyx9B57awcDH5I1VyZ8S4xe9AByJhmUA", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQYlu9Ur3U7UK896dMJwkyZFYxdzRvLztuNt30YZJWRXKRCHOhF", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTd5ucvn4IuL9KIvfsL0eN51bQHEysfjRT3Cctc1-6_2nVphYp5", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ4vavchEUW9at7907mGtIe6I7cLAWJfRaMo5dJ8JT1JUBMkca8", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTKuW-hKvF13VqWVBdDGIJwiGrsA3xFekiaLlmUzRX897rL9_Bn", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRc8HJW1FS9AWHwyznVtzcIeEqotaQ5HUV8kzzZ5TMoA4mMIQmA", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTFgBMAWOnhydmmz2e-upg_UiT5BfjYFw6Ch4c4Y5WLBMCuyTtu", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTtEiXi-iVdXhbPhUQTteF5ikJdsANhbdl4f5mqaJntisc8zN8o", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11fylk89td" | |
), | |
Movie( | |
name = "Last Night in Soho", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRzKCmNcIFXGC-BdnLHaLhqb2hbkTu8uDSBcxEEkBzf5N2ikh2M", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQmlC5zc6PCJ9M9FQao7Ta5c0Spb86sVzKXLsrwdj05C7S97jId", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQzO7dEr73V3pPQ4nznkAFZQZTToeef2GbqPJNf4JjdOjbFYgYS", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsxqeKOmj8Zg3m2GctRTDxHlJVbaVzqff8TmfY1ZL-FNHrJbnC", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRglYv_k3ArKINjJsHEkA6XrY6SQesHYsa3BEP4PE7vcIn91u2X", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWGMTgkQv-hLRdV1A8WMyUhWng6Hts2LHzVtTsTIg3YDuERTlB", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTT-L6FOOOLto0TCs_9zEHAIZqvp0mdBDpoxhvSIvaRmOOqNd7T", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTT-L6FOOOLto0TCs_9zEHAIZqvp0mdBDpoxhvSIvaRmOOqNd7T", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQcOX2A-TGK_nqXWmmDebS4a0jql15lIXf8LE4_S4bTjMqNBDMC", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS-uxb8UXb9LwRKezqJh8swo37L4jyjfTXZO6Rgeon2by84imb_", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSTmS-lsTPTHehad3Drcs-M2btFw8vcJP5y30E6ssqEt-WMkgI-", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/g/11fl9lygp6" | |
), | |
Movie( | |
name = "Malignant", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSgLiLGQ4plyO61yFsX_goEqtB_iQqFnO0ctXhC5YARSzcqnhrv", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQoKXgN3_uA9DvfW9UWiWi93cSiczAQLN1Olg6tf5oLP90ayiCT", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT1EoEtvmVtpSPvfslsHQy5Su8usatE3KCV2X45Mkp0q5kEWVzC", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYr25baB89INiJI0CzD5gi2NsF-lQ8LZKz7Lxa6T8OOtuJLdYO", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSs3VKqQSxNUF1QzKj09J2V3eXRzB2WUUBLZvoJdujAMrxFmyiT", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYAYCTOZLFFCNSHdl1PJ6xEWXxGQLT0wN-EnRAi7QosVBsmHkY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSm4kJC6E92HqeIDfJDSbmmuBQAuHSapKAuTj9Acw7tqHBijO6D", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRLAviJ7-zJc_XmERbagwyA3S-NnqkriUKYEKFnoTrRPKutyo5J", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTWSkrd7NXiWttbya8qWn-6je0nWw3L5o5QA35j93Uc1GDKO9w6", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS4wfJeSlQ3FFyJDFsOK_tSOO2mPgVqtwbhm3HQTpDVIDvRhthE", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYAYCTOZLFFCNSHdl1PJ6xEWXxGQLT0wN-EnRAi7QosVBsmHkY", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11h5h_n9w2" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Action movies and shows", items = listOf( | |
Movie( | |
name = "Suicide Squad", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKrhTrlz6OjqgVk2660n-UUnPFa5KFKYfJ7akaEqAv3jV_f97e", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT3GQcSwkgGdSojHEvdJqgfP1Jv6qY56r9RNn2--5DjpUUwuJ-c", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSpJbWINhL0g2V473QHgXOA0OKAoxsS1myHRujQhBFITW9mjye7", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTCj7qJi3fCi_jgf1F6GgMj5HKHHVUBvmlLeMo2FTSh7-5jZOf1", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSObL9kHvhw5o7VL5i3qsoyVzba1LW0ANsBzO-J3y-ayScQKVbo", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTCj7qJi3fCi_jgf1F6GgMj5HKHHVUBvmlLeMo2FTSh7-5jZOf1", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTcBMCsMHdRilWB2GfG2gll0D8RKLuXBj7lOd5Q-pXD2T46QVia", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQJ1iTSZoT_9SydSkKRwVxXm1XN41XOvnKXw6Sugu9SlhdvZ7Pw", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIqC4yX3ecXXnwhSnj6QSf4t9D1lGYFrJk4pH535l6mHciXByT", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTWp818apUKl8e0raONV36yJzkSYPzJYGsA6yDdd6qDO7ZOfrS2", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRyZ4MpwfFIGVdYdXL9aWlX2rTRHswjzGaNTXhNzD_ZJeVLY1BU", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRZUEFJgCE2yWTmzjKWJSwnCBMUqx_FiDBZC7O65nScb3fF80kZ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSedX1FelYSbVhwEkJlMkfgpYF-ryY_DRQERTCMmyLifaPTqKeI", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQIqC4yX3ecXXnwhSnj6QSf4t9D1lGYFrJk4pH535l6mHciXByT", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQzm-A4BRqYOGSJjLVixoQaEjjDfnduV8j2Q-age_kQxH6DV5s2", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTFjRg4UwVu5h5kuimw3KBzGUadV20tarAy8WM7cZLLRVag9Ycw", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSyiPjXHH9_yV2LNjl7g6-8Oi2pHKRs636-HRUBtpCGBsfoRopB", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/m/012dwdjr" | |
), Movie( | |
name = "The Incredible Hulk", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWV4dKR4dSkiw7WwYgsGXBvhoFCH_X5aRfhQG56Mfme-AMCd1P", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRUFt7A08ba4BPFql_UQQxEMA4Oox8oFTzYHlV7OGBSfXUlw9Xa", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTI52asjGHvrLcZ36sSbULnwVBYASwnIOZpcG1tfPaoIesr_wxU", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQmkjeLZnlLZmdgOOmP4q3N1Pod2FLmb8DjQBFNjokAzKEqfyOf", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQUs45pkjL7WzyrV6-sAaPy5kLPq5BPqZaGr-nqh9J5QGOHNQAo", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT2CGFu_BHL4w0C4KMgmY6mc8ucYhusIR6rs5T2pCyAR2p9GlPL", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTqQHeTSjCnaYKPezhIL0e0tIbadLFDknqRXwvGogqM8GyvqUjj", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ9Fs0hZ8re9JfXzP5pphTgoopfsgA0R8VhO05buiuiEIGy60UA", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSy36lFFAgl1wFDDfkxVNrMt_sMOVTrfFaA8QfDwRd7bH2iKOiN", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSG6VpXxvRt8AIZiIOYSyy_FlG9KkCnkHBKyP5NUp-XgR8dw_hX", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR8N447A8ycTXM34V5qd4wiVa3efdC3F5dNQKOd5HvF-UuDKr30", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRU8xxhSn5eICzzlH2IUbcloBPcR-ROXptC0gS-mXiVvEvz4n3R", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQmkjeLZnlLZmdgOOmP4q3N1Pod2FLmb8DjQBFNjokAzKEqfyOf", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRul9TgMf9HuIejYO8dVa25Yo7cCSZtLczM5MpPkgZ4WUjF4HeK", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWV4dKR4dSkiw7WwYgsGXBvhoFCH_X5aRfhQG56Mfme-AMCd1P", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRE5946cA9IomTxKeWGVPNlqJc0OkHMeGsXOrirZslcaVSIfLwx", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTibHFAZxLS6MljaB3J8d1TY8i8pgOHqE2CwrVR3MFOB8O_7vFT", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/m/0dnkmq" | |
), Movie( | |
name = "Free Guy", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSnXR0gnND6-aUW7vSX0i910JH-oIJ1HahQQa_Da3q_Sck1lTEy", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSEfR-HbbxADjnRb5OUtv1S0n1NmbCaTbLTBrmzjwY76-DPF4r5", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSvuvXK6xeqj7xeTAIvhkuAsAM-8HQaRb8BSgk9N0JcmDi0f7zr", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTG-pFhJFGrDg-97HQZThLqR9Om-1jM2pPRqayzXXVSUxYGtzim", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2GPYEPd8E5MAxtKJxqV99YM54qGvAtQ70Xizqp1PlBEAYgEoi", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTqB7gBJkw3UoWXp03RHO1wGQqDU9-K6cFIyHUBz2IjcLbf_18V", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTMmQXF4qs6DTMy3J5yijXy_OrJeiqX7PuoQC9RDt4nUvNYr6iM", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTrdRVe2txdCFL9HPwEdauxJ1zA52FBV4zxxGukfEAkQwuBTmnc", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTEnw-oq-n9ucORPbXJGd0xbG9Dcxv_rkBMoWmWjgFWTXSZmLSd", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRkD2n1YpY-7QN2qqhrD0Ll6L9GG00_2WbNElqoEG3yC0-GOZbT", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSEfR-HbbxADjnRb5OUtv1S0n1NmbCaTbLTBrmzjwY76-DPF4r5", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTjDWM7hZZcZ0wwoMUS8ZIu5yGJCiwryQ3rDL9samXufBG2i2XD", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQgGkGtcHsI5faMdkDDwNvM8USoj5XP2w2enqUj5srxczIgoN9v", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQJdCyI9w4PFMH96a6N6Eeq5cE4u-yCf-Kuz_32aUvxYWzRY1jV", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTxWISKJMy0CfhajgUpVASYvMpxQapqy9BrZLSYUtoM7BR4rwl2", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRcEuloG-ZJeYXQ5-tzoqbjb-oUnAVslDkxRcLm7ElT87VRkup6", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT3hRjnHNIc8NpkId9faXMBlbAnhI2MEtxd5j_Q78PArZl6zVlK", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/g/11h0d3623t" | |
), Movie( | |
name = "The Losers", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTuULD-GCMgjLVrP4A9Ggfsh_cJhKVEWxvIfKhIRprPNySFMZ-r", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRnJ12f3E-QsXKjPu1h1m8daIRa080_E9sMKJMKJaWlQ4HOdGiy", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT5tcCqejQYKVs72BJLhTtheQKR-qMcqCiidG62EUUY3zuhTxa3", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTdl21q2KeEpW0aBWw1kXqhZX3ZEn84RoVYQd8S_tgq2UR1Gmol", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQnrWf_goJ5H6qqNMaPDVozk5hhIHwvc4lrMpgfaWe72eD2Gb_i", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTuBgavVQ81lbTrX0ETI0RscsxKj6hAr70-LDT_P3IDz4GLnrHk", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTpYh7cZjcoYSFVPtXjAET1WxtxX6KmYRX033YkPvmf34X320g2", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQPt73ADaNa246w4-Hv0MuDVmzZHnNrVTZlym2SmyG6k93rZnTa", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRBdfwF5MpdhMc7vLfx_80OkUt5ZOuVrL6j5cOGoFXRyj2_jgXN", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRKc4A7DR0X7zl17EPnTA4sRsaFu60Cx0p9bK8cB0dMl1lTPvz7", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTY7R92j2YkJw6P8q6WM4EfT0iUUKIo_eFOG-ul3N-c9OK2yWIF", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRBdfwF5MpdhMc7vLfx_80OkUt5ZOuVrL6j5cOGoFXRyj2_jgXN", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRUJi4CMGeorAHfPFEeDvMYjzPVEcK_9uF0b7oK9Wt4My5bnakF", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTZhEGxmOxe20MIg9jVbwH0xK9XDGT6Vb6-xAPtDxiIAEfv81tT", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRuKULJcgq6sVXgQXkv1Hs1wLGftDDLezbgXV2WyAmI-_Dt39d3", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ4Or8sSf6H2p5t-ba5pKoH5knPMDp1X6G7ipJhwfVy0Jbq_uyb", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT5tcCqejQYKVs72BJLhTtheQKR-qMcqCiidG62EUUY3zuhTxa3", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0b6l1st" | |
), Movie( | |
name = "The Dark Knight Rises", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT_BIxFFBWLJEUI1hBdsnHukgW_d04ztaY6OVfe8N53j1W3e1if", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSBo9c2bFV5gHjb6yC_fuUxpVlFyhHKk0SQ2MyY7Yx50tsC8ZT5", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTBp1kVKA9nUIeW4E16KtZsSFLl6IN_p2vlU56jsOtZYRVX2K4n", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ3A7ATTqJ8Qcv4ukpaeIsDMQ3ln5SgUQcJR16sAbgqQMI9aeh6", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2D3-m9Y0uxwf8mkDjYlQdtKD85pVwUW5cMzH7hFI4pNTRreLo", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQbmXQ6UURbVFQtX8-JGdBdWlLmxRvkwH-x_Pp4O7DngO3FF75s", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTmEdxWcREFzMm4b1T4vFD4HBHroZ5nvJrn1utqwzpXusB6dYAB", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSNwSxV8I0KAuHQR9B3apgnLpreezfmgZhvWxBUe8QoDk0ZvErq", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTBp1kVKA9nUIeW4E16KtZsSFLl6IN_p2vlU56jsOtZYRVX2K4n", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS6_QkPWTQbSeh8eaL_1K5f91tmJAL8P5v_l0yKjqhYaU5Fba2X", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRkc6wpewZHXmv8dyDOSwyXLhtPp1eYRXfoNjO2mVasS1KjK1Bf", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQj8ldsNMWDOykKQreesatWfRk4OzXvr7MB5rIzOr0ZK2GEX_pU", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSNwSxV8I0KAuHQR9B3apgnLpreezfmgZhvWxBUe8QoDk0ZvErq", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSk67kRg_bT54kEPtvqlEczXmrMOzwOmsbwKCm1n4fQ6fKcNeBn", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRNCXvKa0NkHcVGiR53ozlPVOOHtBe7Z-0LknsmiglulhycbDUI", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRbUAlxHZ6ZktSNYDYOl65cvhsrc2xhQYgEydM05SzKLcHvtLZQ", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/m/0bpm4yw" | |
), Movie( | |
name = "Divergent", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRMWkKDb7GUai8Yd6bbOb3X6TrrQhyNHCLFVPvYOa7jFQ8BqP0h", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRhgeecyps3HBHRy3NLFH2b5H-TaGg65E3H7QPQfRio1nE2fpa8", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRocVpgUVRJRhy702jBBEUAzAEdWmw-6yujjV-q_TYKin6c9vYi", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQYHK0w5mhgFP54NleMa3xK1Kj6ao7t7ubcK2cpeR9Dto-oyQmC", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS_wHaamiL2T6DwzlTU1svqy0KcJiALq8HQI1JyuFrCr1JAPQtH", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQn5CgcErNy99JEHBPRnMEofmlV3_yiypzSOWpSx7X-xYaTKzTU", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRPa8YuReacOy62qYtu9JWzdFBWoeuOeVC5cPizwSL86O4IQBvM", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_frwpZ_Nv-CsvaTFeKvSEot7GTGj6xKKMdNHwHH24Y6RnvpV2", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTz8h-8RRFqiE0SS84onPj1HwynR4R8sEfDR9Z9-cnJVvIWCCur", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRFcB44A3LY8otpX7QYBUkdSMAjPQUv3jcMBMwxW3xcin_R5SLC", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTz8h-8RRFqiE0SS84onPj1HwynR4R8sEfDR9Z9-cnJVvIWCCur", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRw4mgb5A3TFwrvr_b2YI_55Vvv-8ovFmg0OQK_bUmaXfrSwKdw", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTz8h-8RRFqiE0SS84onPj1HwynR4R8sEfDR9Z9-cnJVvIWCCur", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTAcrubB6Dp8E9uCMTE7RaOWXPC3Jwnjs7PTUIOBpcFgtVui6w5", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRcpdsdBFRYS-IzzjlL_6ww52ag1UXdBIePwlurHPupSw-geFo1", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRS7vrtNFw0YvDLJb6FmVWrV9452aJXlLT2OXlH6U17bYFEUaqo", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQANQsAGjrqLQhCdiUnErQ2nQ6cubK0UcPVCnSnnoG43b8r5aHl", | |
aspect = "orientation/vod_art_16x9" | |
) | |
), root = "/m/0v93qv0" | |
), Movie( | |
name = "Aquaman", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSarDIaLNNgsUErz_ukBnFp4jhdGdef9WnosZAoa6St72mH8SH_", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSVU7mmZb0UbfoHo0KWlPwPfNizcEHjVZCL5ZybZZgdjFj2yM8A", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSVuEY4R9laiXtOiOAVSJheOPMhnSC3Zr5PZ45f6enjJenuTRnt", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS0Kh1TJ9_juXaX6PPDGNZoCVN_-fvanXZjjmj14Kg-nYgMsYrM", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSClWuwY_YXOOrDMeJ0KTp64j1qrN6wn5nQZelIYjY5Fqx4HQJ3", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSpwEfe6fdiewXtjNjQ_RU04nwQn8U-9Z9ziYboOiMDQcMd45T", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSdplQ9CKseJn3u20Cq5P6jmkDeoPTC8rTaPXg8VD3f4Pcm82z5", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSpwEfe6fdiewXtjNjQ_RU04nwQn8U-9Z9ziYboOiMDQcMd45T", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSVU7mmZb0UbfoHo0KWlPwPfNizcEHjVZCL5ZybZZgdjFj2yM8A", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTX2tuxHvwol4HD4iKK2cOKmFSVJlVeWFK8ACu8RGN1g29aEXRi", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTBWqLpd7QgEtYIur4g48rq8PhAApbpOuO2fwoRB1aPvZpijMnS", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/m/0126dxpv" | |
), Movie( | |
name = "Batman Forever", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgEmcWLtuuwyAsrRJoqhMSwgLryJ22m8sHrOR1Q11KGFXrlx_0", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTGA5FbdFoqvFkQRqb7QXQOlKIWw-vbbgNUiSMIImUDuPeA8ceZ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRlQEuSW43zabXkiLxi8MCtPTonaMLBY8n-5L349TdA4Kmd7mn-", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ_ihCbYjE1HkTk8kFRiZHcvm8RJutNTxK206IMjNO0RxafeKx7", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR0AuhZWY7---Y37g4Ve1gI1m4rQxxWwzOMMwBBoiuJu5TuXS5i", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTC94O7qr3l1i-rMOKxGQjAeOpHq46o-jKA-CmpwnLxEMoZiurk", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQy98AmRxi_3DCdMGMMk5njIXhBlHdER4thyOsAoUgQf2ot1kC4", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSbBRmm0u1Qss5YsaoBODjmlZBpZp2jqttyHZ_UTmHDrTnedU6N", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQgEmcWLtuuwyAsrRJoqhMSwgLryJ22m8sHrOR1Q11KGFXrlx_0", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTGA5FbdFoqvFkQRqb7QXQOlKIWw-vbbgNUiSMIImUDuPeA8ceZ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTsFDN_Mf0N_OId8DP-xfr8ITaZOBi5L1-mgc0IwCb-Fo_Bc8PW", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSJqYn8JeHJZK6-jqwwwEmdeaKHgzywhA7EYzEb4n4GIRaAC_PJ", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTSKoF_OUz6hbvmDEYeaWeOQfC7zf8OEApSLKLkWEaXLrn2KU14", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRsP4SgwC5etfeY2vrRogwO8Q8SllIlkP_w9qlCys3AFj1GPDmc", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSaT8O3A1BFVDb_C3NWpbWuvCdiAhrQ9gO4qA-dU8_TLXCDAIG8", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSlCuxElADFYSsCpJVzCn-jXwHKFga-t9JpsEZddhNljGjBHQ8F", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/01hr1" | |
), Movie( | |
name = "The Suicide Squad", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR8Qx8SNajsNgzZSL2lvmAB-hwwtC4jEWQFt3UAgCBB4yVJVypF", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQGMWQQgnxNYubPTBuZGTjCZd4XPf3RQNqWRqtzrJt3L0dokj_z", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQwqDycQleKiK55DczowypcK-omCcQHG7onUQLq5h6L0DzKufeT", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ9M6LBurHkMhkquWozL9J5oLJXKEp1gsrUrL4yJOJ426wBMB_h", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlii5Y_-aOALB95E_OQ5YMBryW9X7HfOEjXvfTclte6PItbOem", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSt7d8pb7De1xw7R51VNznrV3Jc0ZqKMf38m36GFDpINcOQ8ctt", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTW4k47nkcLlvdFEUURDSGTL6NvUDxE9NRHCjB5POxVANIZ3ZQ6", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcToCVFG8NaFiSeTIndy0ojHk1-FFW3WBAxZDi7iIWdQBGCialJ7", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRrGRTBbOPigWaIniODa08TcZIpSdmLE3G_Kzgp1O4_PvRTuH5q", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTVRW11w1hYKgWZs8OO5WVPhzVj3SBJeY2mHht9Frzg6S_Y67qU", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQTqQZSlN_7960hQHzy6Zk0kQFbBk2GxWLBeXjpP9s7tQ_2x5bv", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQbsWaO-efh09KkF9JsbnoY1Qks7v9yWwGsCLQ8xRPucScdUU1Y", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQNpBvPwTTUXERl2kllP7jrXn9F5V6orv7o-3L4sVaXBZN4x0Qr", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTwbbHVw34stKql2ITTqdYEIGxhCsb0S19jjTK1i5ytzGEEpQyE", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTzlwiJks5lU5IMfPgigtZ2hZntsm7gORP-Y3mSME1lbFJl8_Sa", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcToCVFG8NaFiSeTIndy0ojHk1-FFW3WBAxZDi7iIWdQBGCialJ7", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/g/11fk3ywt18" | |
), Movie( | |
name = "Greyhound", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSx89qKUgJoYU5IS694aAq8ysK1doPdlAT0FMmUhSKL2VUjKrgo", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRP_Zz1ItXursMk8pYKoH3qG74-oV6K5zAIdQ1iJG-ML_gScjCy", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTNOSK_GqOQ35xd2x6dxk4JpCkyhJvwtKFNI8zhGeRUi8AYZJJ2", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQhOwWBqQf6tTJaZx5e6trRTDQ63qT-ZHAyERnq2321XAa6PuIb", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRqxIHLGIYz46jxQuvMNPOMMj8OpSSm8RvCRHKgsspUIt4PiwHD", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTxmlz4g58WrF_Dkzois1e0hkW98M8NCzQkCxXzazJgknF4eaxA", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWQoujcoiPYBSnu02rRk4y9-evq1VecwQyZ7zt06cBNTkhgWGm", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWQoujcoiPYBSnu02rRk4y9-evq1VecwQyZ7zt06cBNTkhgWGm", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSpaj44IiaDu_eiD8fsstbRZT8FcFF9qnRX6WfW7XmaPtxjxTWn", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSqwr6RD3GqAYBaJmuF4oW-8QCVA76usXVROseKHVX1HOg5NgVg", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11ggr7rt2p" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Documentaries", items = listOf( | |
Movie( | |
name = "The Slow Hustle", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTUpT0BKg35B23Kdebw1g-vE1kJkp5fk3bILZloodb1AMGl-BYr", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQFRpnB9K59dWl92KJWHu_ip2DFrrO4kQbqGd-GaEFHYdBw4gGa", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKbuJSoiZiiuwxSeAb-fegGiKqbBFTK_RMbbU7gRa-EU2CL1UT", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSvx2JtdFgqZbScV-dIUW1neoskvr5ugT5yf-mzgWBrW5Yv1w4k", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYLkNcbheUZ-KWLFxM-cayCwL8jI0tNDxYMaKqEZGvYrOjhwPm", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ2j5Rntz9PbZMiOgAraBYu621By9L3c9oB7M9_RJw3_XWZ1BoQ", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSrw22wVvBPN0o4jJFky0WbpTKKo7cJ4NU0BJ9pGkPPXK0R-t_-", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRGIApw24NKZ3My0bhzkiogXMBugU23WAD5hRJTx1yxcIdH-zsQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSQFo3nhI1PyKhb6VV9KNsk334lHKV5oVwQb8TxbIUy5gWlft0T", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ4xxqqsUfrReZyXfQJRPjmwn7Wsz9aMzQi-Y3z6pD9fhTdWT9j", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRbbWbH8a7qlG-9cxIWsdqPZo2aCexK-lgIV_a1MwZEYkLSZy-Y", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYLkNcbheUZ-KWLFxM-cayCwL8jI0tNDxYMaKqEZGvYrOjhwPm", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTnp1YneoEq3uOPka3WGg1VI5hnqNFTQV6ADmh2TNIXR-z8kOKV", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSsjw2Q7_o-MhTvY5GTymnqyT3LGjTjJAw9QQzYvsD0bFHgokNk", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/g/11nnqsq6xx" | |
), Movie( | |
name = "Baby God", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQmlVnUlhJpW4TuWJG9FWWJSC5xamw2I8faCWz16HK2vRRhFdlt", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSEGxCrfzX_FYZpS1-GgLzkCp1-D_wRAtt9Pbdklt4ZrSsxh0cd", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ5PVrXpDXicAnnAZ6YGjLJS6VWQitGNRXn4hMStRxrTYFBnolI", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQjMDSyJ8BQLimrYZzSfHEzSu21J94C1__oHzuKfgYax6M7kFYX", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_rZfQjBXh9lrKVJRXgts7fsWS6wDeoh_Q-kS5Nm_FI-Aj4geQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRcKR_jcHWJQiExjjHqIZQdw-EizHuQSf7SKLvNqikVj-M_1YFD", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTlalIx1rs4bRcfyKQH_IzxReCNbGKMVCFZZO6nE-O5qqOO7bM-", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQTp-B66qwmSi8CY5na9TCxum4DORPMk4hzD82OqVhmrDAPtY6G", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDAQTXYvByqG8o65tEsI8SdxtyECNxUDCjYTKkr0AVja4otl41", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR6Vyg3qXAFczBbzE8gN13h00abt2lkgDh0ifLUHNVLyKC-zgKH", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTBv3sp3_VQ2Rod9vz9y-zDqaugCQKO0aBSwaCfay-rd_6IklXz", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcREVuc7siGsZDgIII1esj6UvluiDREvlv2VjQ9J35KDKC6_p3pd", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ5PVrXpDXicAnnAZ6YGjLJS6VWQitGNRXn4hMStRxrTYFBnolI", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSzmlUdPNl6pEteL3_M7Sj7LOErzJIizNWl-F0h0tl_IEpE-uyU", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTlqL1DUR3vV4nU3BiIJMaJiTIUOM5bs96qiGXPTxjLQp3vsYBb", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/g/11fsydlv6f" | |
), | |
Movie( | |
name = "The Undocumented Lawyer", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRicvj4I1ljgnz6RO4zYvg3c32oDSkLgYCGCb-nqFoFiTlGzKIs", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQxd3Lg9xC4CToa9vOIHvDF85lo_d21kHJURSn7ZZVrHXiQ6hbr", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRr2WIbBPyu92daQsCYhMhfzWAu-vCd281rJ5xGmwThuuoBq6Kp", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2gJYoECHtYU8El7QaaK2X2dBsPLg3q4obObmn7mlao_d0Kppu", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTAQFBRURW4PXIkUXxAAX19sGdClU3ROlxDVzwjLxoHAj96XqOv", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSzW08-uHABYE5YUW-_PUpkcM0LPEieHhv1_h_JnwsKZ4rErHJL", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQeQJ0vBOiuWiCtbd8bp4uvSs1q2ERbuCFW2wDiGlqiqM98zCwG", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQViQ84bsUrGAyvz7EFcuOKF4BX7rGZIK-62IH1LgR8U_6SBwii", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRE9A5n476ADzhk4Ybr1xV7TuFcsZr3p68A-54aeXL03Kp72qCQ", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwiSuriIVSwshNFMCJNbbFmIecfWmy08AHNd2aHwd0RDrbVQ7M", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRNd3Jp-feaQiMCQkA_2-F9yVfGzu5T1bVafnsEienuDu-9gyr2", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTsUxThH216xsT1WThZ0F5xwvzFnQE8r-ylGoqiXOsDJaI7vo20", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTAQFBRURW4PXIkUXxAAX19sGdClU3ROlxDVzwjLxoHAj96XqOv", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWuIEaSvNeJxHqHOKlKSStDOA8lzLnHyK0gVUhhxt4Gnd1TZr9", | |
aspect = "orientation/title_treatement_light_9x5" | |
) | |
), root = "/g/11kx0lg2tj" | |
), Movie( | |
name = "Crazy, Not Insane", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQWNDhQxLTlr5psVd9LqpRMbsqf1ZL-43UJi8QOjA_RLEoRZVb6", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR50IbuxL7-jGA1B2gFByM-VZju2tnQwZ0zd_rBKFkwljpQcfB_", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQyuzlRfzcYynN2XRTFnBmJZRmQYyOdDXO2G7updjPVSwSywBGP", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSupgzN1yv3mVHNafXTHjwBX2qwQMsN2TMbDZnBHHUNKHTi2GJ5", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRCksz0dbjpF4NgLIGmWBp3hL32Mr2ew54iSlbO8o-ymxyheI_Q", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRBCTTqLmEy-_czzx8AnizGBLjFaiiYSzseCN0V0OO_37aRJqI0", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSupgzN1yv3mVHNafXTHjwBX2qwQMsN2TMbDZnBHHUNKHTi2GJ5", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSCj-n3pqmWdsJu4OOoml3OB2DCrULVPMVEXCy_UHbsmQih3NKL", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR9RizjY3W2wzoomuL4owFjxnNum0uzxBblRMg1F0eLjQ87sIIA", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQNrcKgh2Dyenth9OE-SF6as_3n-EVc7KiLKEfC7j7DFyMFOM1f", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSAbknRDVJgVUqUu62eaZFgDCYGoKtAMNG-fZ6tMw2G2gH_Jtiw", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQZPCNySBJaTe09ICmsY1Ml3ZY-XV6GURLzLpjhEdxpbzywYIgM", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSaPaOMbAgvwOqkDVohB8XtH4evW3PSosLlRoiwvTTVvx-rI0ya", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSMYWRuVJdL3aUneiX7ZJg9tJ_NsSifZlIWxLVXL1le6u5iP0As", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSoaoGtM_4t4t5ftu08XiM3c0WRJaU0xf7YP7bBQTe4fgvtZAEU", | |
aspect = "orientation/key_art_16x9" | |
) | |
), root = "/g/11fsyz371_" | |
), Movie( | |
name = "They Shall Not Grow Old", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR33RF-kHSWqiDv68LjSI-z4qj5wfKGrIxMZ5j8PzCjj5Hz49DD", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSZ75lY0rMjf_DeKluUiiFkmM_LQ-JRykzfjwGFZsCJnE57TcFQ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSbkvRJSiGVs54vnFkhe83jCKiciOZ3vLJUZ6T6tx8fx7JkE8ZE", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTXl_VvsAlST0-OpwfGY20gxROEqAHBeCqwFckbNyQ1x99cF9Sl", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQtyaRneMiAV1IfbY6VFrlMcia4Om8a9ObT6s1-2oBEGIfZqhO6", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTi9pqMUk7_FYhYwzlZiQUjAc5Qq3iorHjEd4cOQ64Ke5MdAPWm", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTTfcH3dinxg-rHriUEZHvHmZbVZA0wPaniMOwjJ2ff1zw0YS_5", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQMtBrGWi3ah4PkVONlfnIZ5jRM7rJuIiaXtdD-h90eAUlrH0A6", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTtSjzsAPuTDUlgAc0Z4kot9Zgu0moLKfBKiROu4UOTafQMNITw", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQsEFLBQ80b9YpzRTJn9i5qFq_IRCvfaxNW1U-biOi2gU_6UzHS", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQx9JfxZ9hIOVX2XzQ8Cm_RbJmA8xHjWE7VBXuoBGKjaL8IzcMt", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtHsflzNoA31NAeZeO_tqGPQdt5MMbQ30ite2GBE_Aa-72mnVL", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQJAZteLVfTt7CsQ1iU9FEmDPa_LpZ1gI4lLgEKZdm4SppCGG2k", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQsEFLBQ80b9YpzRTJn9i5qFq_IRCvfaxNW1U-biOi2gU_6UzHS", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSH4-VcrcEozhYhO3VsqT1IWx1j7xCwkSxRplJObDlL-TSLOixB", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTTfcH3dinxg-rHriUEZHvHmZbVZA0wPaniMOwjJ2ff1zw0YS_5", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11fhm7nkns" | |
), Movie( | |
name = "At The Heart of Gold: Inside The USA Gymnastics Scandal", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS1vdnLa0Tf5UlAjyv6X9498sJYQvdiSvs8w76rBmdGkFXyv0en", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTiCTXVQhHAPOo0lomvG_BYMlDwM-Wi6GzkmYMj6HEtifXL4HgM", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT9dDVERB-LCqpoS50Yxo9eZPa8iKtH_OQmF_rJh5ttwsLpqq2o", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTf44mBqspQsS8tsuYKIhh4V6Ezvg1f4Nzz3_40OrTMzJvSMSy8", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSmr5juzd-t7Uh3Q97KOM1XImvFfgKBT7OQptnk6OHadr8oIXug", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRQVoDq57yGNPoG1VcG4kYr-ONuThWAspj2SYAuW4MIspNF-N0b", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT9dDVERB-LCqpoS50Yxo9eZPa8iKtH_OQmF_rJh5ttwsLpqq2o", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfSz7UPISQMIzgi71jNuA2eJ8K59I_CCMA7meWleoaFwECteJP", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTwfTwyMmdS63S0i3tt0BoJJ36lGVuwgAq3DVa3Soubw31hmz1b", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR6YKAsAqlC18aaw6QYmO_OPgm-1vA4yVZZuJpVrwipSEay8rGo", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSIQEjxBNmi7sW8_hegCiR7toVO4poC4FKXG9iYx7H0XJ6Gzp5i", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRWn9_o5tUcNBuzCf-YESMZU4K27uTrG3HbIohn2tLUh0YIJ_4o", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRfcSQOYmKffwwI7DhslN7lUvooqOld5jys-2QEfVzC1CBEfhRg", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTDnDe8Zhtz9qACeowdAczqUq2w7Z3DKmO4Dyh3wIdLgiS2eemT", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSMApG2LzyaQix9_iRKdg8RgcLmoswHNWNxtrBQUcbT-tt3iwBn", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/g/11h7cp68qb" | |
), Movie( | |
name = "Momentum Generation", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSTOsQ16IWYM28FmUD55DmMRpXvbdJ8xZn5NWvXEpp9AVZVT68d", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQu-8j6rpwMgRiEw4yGr0EDwdItZXwA5zwwHuq6tDIMhbqDYbIi", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTIqN7D50mZa00XccXypdTNTYy-lCYwUck0f3tv3DjpmqTyFCyz", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTNO_uawmO5wZbJLyNS6ShmCkNjSgIq48WWBixhXQmdenUiGdrq", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTNO_uawmO5wZbJLyNS6ShmCkNjSgIq48WWBixhXQmdenUiGdrq", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRQOF_X7PJ5rtlkqgLcbnUxK1kkPCjjZ-yI9VR2miWbRyX6RIJh", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRMDa9fcqZsRUPmGeYz8AouSw4Lj9r-IFaNwJL8YWfh9TNGhUM", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTIqN7D50mZa00XccXypdTNTYy-lCYwUck0f3tv3DjpmqTyFCyz", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTj_2eiUI2Hg--VC9rlCQc31kLmAeWLSGdDmqFKBJuEd4xFuq2o", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQB01gH9seEp4WB6MIcW3zqfB6RXCelEbvE__v7biMe_SmmCYTn", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWxmpC9Pz8gueBIWqOnez2lUX2p9stj4-B_K1SvWfIRH7sodXg", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTR4GDTt99EqyL-ctqnH872QrdEUr30De0kmeNJEF2QfX3GiEc1", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQgmwNYyLNl7V9QCwQBSRYSbQI8_xRzURUnGSDjnev3v_4F_Axu", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRuEfVjocYiXjh24_PrRYxp6r00KYrgA85apbaOdawLIDrJiK7D", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTDqx1onh8UsQZmGPrxguXirw9IQgYSyzpvlaKwgEYR3mTKU5cM", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSIYZLK-AKyD2ykY9MBYAch41uLfDedcwIVbqCpLQv2vwE0fAbD", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSgpz3jYd0RyTk8qE-Ru2QkoP49-8T1YgIsiSoFrvicddmbNxQT", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/g/11gh054mlt" | |
), Movie( | |
name = "On the Record", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEfr8UYajXm-NxQGA-Pox66zbMbr8zv1i0u-C4uWv78GpIv9qL", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTDVHXrhVgoVa6qvdOyRiGTFMq7r__T7Qxz-AiSEs3C9F-K27OQ", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRF6bhCXLwl1yQBIBkMmsMBSgSrC7Kw_N5DGprYMMGpagIdeLgT", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSCRea3QHT3YPu9E206DEB8hriN8EADZA_iTf5eM1vzPkSbp0tL", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEfr8UYajXm-NxQGA-Pox66zbMbr8zv1i0u-C4uWv78GpIv9qL", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0asZanT818NcDBmuGgVypIuERqOeWA_Jw_t0HV03fL63uV6Bu", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSMWN1V1P2e1WWzdmYKQ-NhUCAJQkMicK7HemQ_UnovwdDJFnao", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQlk2AVLhM8Vk1ep4d2GF__AWtcFzVz2jG0YdXN9zL3z9SNd47L", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQiCyv3Hu4h1ubGyeTLSx7On4qQidYFwqcosXrWDbVmEDeaaVux", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTCuRIRGIIHUom8WDV9cgCdiymjpA4ZQwNjtDoGHt_1CfEmdjRT", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPCzbT83WYbB9HO38KmXc46OS62UzMgdCNl4LpRWtASYiGvIbP", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS4O6k3FkApVJKm4QwD5EU6TZpacxCN1pxeLS0AoU6T1doL7GOF", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRrlPB_rCJ7Nb5W5c9YKjvmRNMRJzf816IEmMzsNDL8gJfrFfX9", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSIFBG2gsDPZsEzXMFTahlGnwZnj8Ey-pkiW5iYTw1IEvb1tEWS", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ1ikTp8LiPKVXsP6XyH4D_5ZWWfHnnRpFLp_dUslYVNVaDJCLn", | |
aspect = "orientation/poster_art_2x3" | |
) | |
), root = "/g/11j226c5hk" | |
), Movie( | |
name = "Endangered", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTfUfLJVAHm7d9PVhxNVIsPjNeh1Vqvgq3MJ7BZfnk0l28W3cDZ", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSLeSDdCFz8IUA0B4Y3PqV5FyoyoRuGxQfv6lZMWjs9BNhVLQh7", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSMqiin6GeeDn8BU1dGUqatwQa8EtNOaQqlB5gp2jrBkQP_skLo", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS1hjMpRkbcjrR38BcK8AQRLftcBpd1uycNGfddKJ3w9TvtWURD", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR0ouzSLNONfGUSGAv788iipl6nqvEeDMpsf7KT0lnKVMifL-UY", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfrU-mbRzZWP8QcJlgTQT9oy33xdZy87EjBg0yE6Vw3qavpNrY", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcToXAHxEk3WrXYuhVmbKwCCpEe_uugriSl8k1Wx4EyvuR3JFlp6", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTXJoeacSIwExY_SquzIJT54U9tNrwjsPPfWwpX0bDRGZSe2f0T", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQG__cYujG5qc5RsQJc06qIiGCqfHifr3tNLdwMDPbkn0nZyW0F", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRzxMEnv3QQ2n9ynXwAYqnkulQg92U4yl9BuirQL4HPRUadG_CA", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRwKfrO9ZoQZ-EOP5A-3kOCRNcIeBT__QlY57BFRG4PPRfnGuUW", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQtn9psjh7NcoQeius4kAW3jaZ1JnPEa0tc-96dvqn6l3xApXRz", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRzxMEnv3QQ2n9ynXwAYqnkulQg92U4yl9BuirQL4HPRUadG_CA", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTILmEWZVuSuV_gW5uMxo4skZRgWdeUm9P0gKyQ478_RTeMPBNa", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQEBTBMwUEeNo5aoY55Z0hZehX2zuoFpaucYCGVJgcVvt3Lgfru", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/g/11rzsfbbrx" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Oscar-winning movies", items = listOf( | |
Movie( | |
name = "Gravity", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTnCxdYQpkkBqAeL2Umbg3CdR60jNK9Qc48UBu-6n9e4KVRdVAU", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTPN0ecmJTjIj-EJio4wlC-LGySt24Dl8EfQHtWuOcnyfqbP5Wc", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRzau83tAqOz_N9SucRa2wPUbYvOM3y3xU8KTAMKoY-eJibnnoy", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcROlAV4pBZxSckJ3SRzEfGQYBHiJzd2eTH2SWIxfuPAu6awGegp", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQTzZ7O9sZFRgaPhiYhJKcKpzTkRE-8Wfp99fBl1bvS_TNE6BD", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcToJgcD2Owid-S8x46P9CNPnur7LHDKt23ABTNCLnB1Ab0162rN", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRMBdtD2waDmx6Te_IXzdE8ADtDYb8UGtJN-cx3engyXyfzncQJ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQwBxaDPLrgcbwQPY7xGEveiaKYQNjOgxP7mZdoM80NZLUDo5HQ", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-1RM9hEVT3d4AvFRld-bKauD_5bMU8rPh3Bpt1Oxdxp-CWyLf", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTQjfR2-6Ohrzn2Dbo_Rxab2JDP8JwGBNGRLr7VdtE30OtrpLmZ", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTnCxdYQpkkBqAeL2Umbg3CdR60jNK9Qc48UBu-6n9e4KVRdVAU", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSufK-q_DkxBkC8Csr_vJ5cDY-m63epRtD6w8UwrAlkg8v_1DsN", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQQS29IglE20xFFV4zu-IKCXUWnVC7fFZLQNEF3oVi3MBfgC7nt", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRJU-_YRJWEPZZaXMCiKYcN69HLgka-oZtffYiDLBb0_w2wKJ6B", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQG1__HjBgdbvufqTCfFkylfB8bRT4lWWLIrNbbFBCcgh0JbHL9", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTPN0ecmJTjIj-EJio4wlC-LGySt24Dl8EfQHtWuOcnyfqbP5Wc", | |
aspect = "orientation/key_art_16x9" | |
) | |
), root = "/m/0g5rm7s" | |
), Movie( | |
name = "The Queen", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQtd_iPY6Tqofezov0sLVk6Y7yOST6eWVMq_D0OaRIIn62kfQgg", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQbs3qDD_VFSgJjmrohjhnNfTLJWlX5-4TMyDoXYOhbGOBNO0xS", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRCwVC7YMfIr_aDSJNZRVwV7vDq9Wi9N7GGV83defnmmWdMuQkx", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQZO8AmYsmKO2t_1Shf12JSk73dwA-1B4Z7G6a_9n8Xm2pLzqpR", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQU2ji8NllXElu1QroYbODhragubdGBm40l5Lvv2DuDakDNNwEM", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSP-RX8hp_gHrNPBDKksm7VjJFqghsZXEFPfT406svqlFjeJlFC", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9Cabgykb50cyFM8Y9fW544r5M9y2dqwHLmgSySXGIBBGVYzDi", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0mi1vSYg8waxGBww-YNW8CAmkXB0HG2LMCSMvB6wZQvfPBmJY", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0F-uZaxnyIWEml6fAmbGO_anGd8WBZlqZEle6ZnGa_i8kShA6", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0mi1vSYg8waxGBww-YNW8CAmkXB0HG2LMCSMvB6wZQvfPBmJY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS1ZNUoHFmtMS9K4CIIwOwonAkGLHYiRcd3RHzSd_j1IbRyUu14", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS0M-lMKHi5k4OZkk0YGaUH-Cf5PeKSp-bGrQEqHwKNpaX0KYHU", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTNTRVeSkYzuAzuelidUIcsKQ83mPiAUyjIs9Cy_dcU3cxAqWia", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQh-7rn_uQYJv1V1jAjOHYKPrVNMcyfD-Ugl4NGXHAb8bAMbY-y", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRLPJpfoVcrZL2DPlm7h-EzJ7HFrPUjtRNohUb2so9qDQB7TXJk", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQT29WDPfSItppg_y3LDhYYDq3wcJ3dX7GX67cF3KZBE5k4VwRW", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTivi5JVEKqEPAcLH0fELQ8mH2OSqHpbfHFWH2rYBSNVFacdFWX", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0F-uZaxnyIWEml6fAmbGO_anGd8WBZlqZEle6ZnGa_i8kShA6", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0g9lm2" | |
), Movie( | |
name = "Little Miss Sunshine", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRkMh3_wYSrN2wHuOJ4IoJ4cbB4xpTomXzhCMo0uJcj-xdowAoR", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQVsGplV_PNReqJi_TYG3-aEbjQjSud3TfYeoS7Qn7Szi7o4dEU", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQt511-umxRvjC0FoldIxdP7NrylT9h1mNlKIN3c5oEPTeMNwRM", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQxfgmjz5LWb1KpE08VngGZyZrENEpxwpH4-oMEYNNiKukXCX2I", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQHvMg4NMz0hCZsGWqn4IgYxxEUlooSdHB4fVtIk6FnURvQGviE", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQHvMg4NMz0hCZsGWqn4IgYxxEUlooSdHB4fVtIk6FnURvQGviE", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS3ohWx_W736y8lt7z9vr52hHYfKvxhtrSbCBujyHLHRwdYx1zK", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTvYFlEjmvdHd2AZRcudzr98Bg3SYBLBl8XVW2-8y8CSMd3cDio", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR2OmMxP2zgighD495tarwNxtiIpaSu96Qugek5ep9zhpRX-_h0", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnEo4UHK0lHijgqbdpkeIjey1fCnzxRzrMvW3Plkuu6hB7sei5", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8bvqud3ri7O3BAgHwxT3lxgL3DLYFntQ2SefzxRgT3Umu8C2A", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ2RI2rncxn6d37Ed1pxGfDIznQOeMtVQFXRcyml003SY7qyh4p", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe8CA-oqvccQh1MZNT3Xt5Ni1eFFj_r9ubefVcMyJ_-7A1gyOR", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSJ4I5LQYwKab5m1roIaCie42EMncVm9ZYTbfhrckHF1QxqG-ev", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnEo4UHK0lHijgqbdpkeIjey1fCnzxRzrMvW3Plkuu6hB7sei5", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0h1x5f" | |
), Movie( | |
name = "The Eyes of Tammy Faye", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRbDXnAHsXQTajPiMQz0tETP5N9IDvH3Q7RiZpvGAMDL6eXFXRC", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRbDXnAHsXQTajPiMQz0tETP5N9IDvH3Q7RiZpvGAMDL6eXFXRC", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRVObGxjtw65qvymvgkItYRMTWMk-W5gggD3H-k1T4rAabiiEKy", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRowKKrF_TlgdCmZnk2W8Q6iNKs3Ny5l5c_x4hw-X6nsQ3mMgi1", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTLs0_XCfvTzNqR2HHkLXzCTIR-uZeycF0Hkhi-K8eWtuo4KBjE", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQWjU1qWTZRWPqoqwcgXJfL0ZI68L1gW6ctX4Fa5_W0XbCcUKLx", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcReS2dv9QLv5Xg0ixGGF5wZQVOtxJIa9Qcv1DqjUCjcivyT10_f", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSoZ0mLmGK9H70-NuLtHSrxMCAycPCCramSCJb_4p4Jie1IphFt", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSaItt5i0HIk_pjlItQRZkyWFehFzVNs2z_9MhLOqfzbhCqU-_h", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR8gq8xn6YkPM7MweAgjU-0i3OVd5SGGKi2e2gWpxXvvXjitRyo", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTS8ciLPqJn3ELcstONFVp51QCgpTAwdmbVIeqoQsCHOaUEORkd", | |
aspect = "orientation/poster_art_2x3" | |
) | |
), root = "/g/11hf15qqb6" | |
), Movie( | |
name = "No Country for Old Men", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTtRcyBQizH97XU-6o4CumdWGfzEUzc0yi2Z1SaQwyyPCLS8851", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQL5BPVtKXteuVUdUmVs-uMJczHQeERR-Hf6njktxwZlFo2nfMn", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSRh0pAx9k4cuChXqth71kXGRwJgxqHl0h4lpjeT3QviOg9tK0o", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRl8NMqpv17P_mmRuKibDhEID0fG7nj_Wujfhc7zXuZ2lwgJM03", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSqlQ7gyKMpMppKJdxxwe5x7o6olH2jgbV7iEI6I5CxCBNqEPX_", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSmW_QOSmuqfdgKINefpbDZqyJKRt0G_m6eGVek2yC0qmjzn7KT", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQr49hU1XHq6S0rg5UCaF9UQed9uNhp9V_KbifOu8fmlwkmJK0l", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQtCyPe5pw8EXAL36KsAVV8sbSu34vZ9OweuHjjCDx2NUaVjWi0", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1_caRDi-Axon17WeMzRaH7VVDb1pu4dYad_tXFONILXbBkB_o", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRLbR4TthDPdHiBsQNEWVs7bv7gcsZux5ke2ujzuAFc1Dp1wYTA", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTBTTmO-vcGfuQS1CqHvhs5chfkcpCa4GTb-Nxh07GbfHUXd78r", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSRh0pAx9k4cuChXqth71kXGRwJgxqHl0h4lpjeT3QviOg9tK0o", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQMpFG6bVF5HKOk0DW1vQRxxiaDqQFa-vzlKVBtriPRbb9tDe7l", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTBTTmO-vcGfuQS1CqHvhs5chfkcpCa4GTb-Nxh07GbfHUXd78r", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRWv1vUGF9vFBphyPy8dPbMQ-C0Mt2Ra4rDfhrtCoB1FOD_6TCQ", | |
aspect = "orientation/banner_2x1" | |
) | |
), root = "/m/0b6tzs" | |
), Movie( | |
name = "Good Will Hunting", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRgrE-jl_GHEFmotn7OnzGuTFcP70OsJHfhJgMrol75eK8iwDXB", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTrfd-XBp_rom-vBHBt14MSG4SvRpiZfa-14v1AnNhVUbPpVUo3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQeUvZ6ONsCAjaEPeXiUkJsE4eaKTu_9DA2dggtSmu34NNGMilQ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRgkp4htZYLRBiKFIJTRWbqu0-cAOeAD8W7z2dbUQCN0Edg9_i_", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQWRzAmATuAaVJLa47PEvH9uMJc6eYl8eX39wZ42L8GTStZ0Bct", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQpAAP2TLkbjw3UM3ckCcT4mMuKRsFOkmnlU04mRu9HUSas6C5U", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQWRbTZ7JdAFxA32hBJ1Vr6um3-6a_hS79yl1FVJJcqlA_eY8Rj", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSy62oLyAWdd2bIAq9EYqEkSNr40HKohHXdntg3OQc66LIeFew_", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQeUvZ6ONsCAjaEPeXiUkJsE4eaKTu_9DA2dggtSmu34NNGMilQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0Me1zR8jdnP5zc3Jp1l-qiB8lSskYAgi0X9T8wrRtRParuPy_", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQpAAP2TLkbjw3UM3ckCcT4mMuKRsFOkmnlU04mRu9HUSas6C5U", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSQQ0VOd-LZjw1diTGU3OdhqlO2hJtvWd0tpuUXRMO6DkVC9wbO", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSs1DsbRIXiNr8zlMj6dbg3cODkJMvc4zv33TabflVpKTdKgdR5", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcThwyvJmBLueGbUYqo1j94ZiHRyz_j-sX4iUdb3EO6ieTmcq2-p", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTljiRhYtDOQfDq9CwIagGAyZHAQgPa30OAPRG3uRdcfuDDaCqq", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSJ8KkU_PhNqKSZvHEWKAmj-Xftx7rOtnlb8cE9z0w32aVeei-2", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTYd2AWRpwxu97tIYDRKCdZSieFA6Z0lfxXtRrIbhzT_qlxIV_n", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTeA1QrQvaV7ZzyN6qoYad0Pn3TZJpL1xAdOcGOO-THwcs2yohd", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/m/011ypx" | |
), Movie( | |
name = "12 Years a Slave", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQUqBrNbYVLgWC8MF-Ahd1UjPlByPOtom-ZqLGipYkk40TTODzt", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1GbS9tPN3aRZ3LSmsYZFF03MBXU4XoOQOi-e1QHnJS_7b_Ujs", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTjJRvK8CrDOFoIDLvEPNXBOcTfVJ46c4PAR3VdGLE8lOoFs6tm", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQUqBrNbYVLgWC8MF-Ahd1UjPlByPOtom-ZqLGipYkk40TTODzt", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQF_435FJWsAOBwUpKFiBAwEtfs6Pnoobi9gcuKRKwPXuRTb0W6", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRrUR7kZxIRyPqQKHINMYUvUTIu1lYP1KFpL78Yhi3ODY4RZ10", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSI-o0kVJJvNQRBKDDel6afxg1qrPYJNLQrFnriB0tQdQPtAGld", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQAesWJN9idY58SCJDJW8L_a7syOQO6jSiqRMXED1yY0v3n-CBS", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTBCyTtyW7EDAcB2Ip0hODTQgyao0K_Plw9ibpjgebYotE3WUx-", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ4t45D4nKqin75t4l6rz814Ky26biqXMVQALlvUBERjgL3HOVJ", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQVcas9NJYy-1m0H9fP6ifKmcXU-PjzMmkhd8dvKrI_2tHobSYq", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTtZsDKUcaENKeGnzWPRq7SfSsgev5OdTzcj9YlZ8mFhQMbf2AJ", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSbWQag6_X2cXejzg57wdcM42EvHgrQxTwYo5X9dJGtrkDRDPNV", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSkDkde1_cTHlnNpe1kuzqGaKPhaUQaAPOQE7U7zbYsyKBiRaMy", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQUqBrNbYVLgWC8MF-Ahd1UjPlByPOtom-ZqLGipYkk40TTODzt", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQX4HjuEcWrgEQ1Ck4ZfGXSaJOL8tHEypVOtwrqbiewGg_U2eUg", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/m/0h32y7j" | |
), Movie( | |
name = "Judas and the Black Messiah", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQMpdxmb2TQO1vo_hJgt9SzgJIzlUiJQnP0QsDPYkhR6AuFqgI8", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQNeXUfhlhp_5oiZj4KlbP8LG_vIWKiEQPJ2J8KSRtnwxO43UtV", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSK6QBS-0W0SzmShhb8F6jsvjyR8FAipYdvEeaaqWPdqC5B7V2d", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcScVzVqtv3tfU5M0_Qz_tj8bZzM60fmUcqtOFV00m6gdFUMNdoc", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS2Ggz4VplPOrdiqwbmTrMofvQxZhi-HjqIRMfpfe4dw55R-rYy", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQn8w3WUB0iHsM4aFM-ANHgayvrS3AbvbWcDTiKvgkxngNV6TYu", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQyeLPuIaIaLZ4Jk0FSccVke10HxC6AoQ5YkndyXRviZibqPEfG", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcScVzVqtv3tfU5M0_Qz_tj8bZzM60fmUcqtOFV00m6gdFUMNdoc", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWTc9CU9GwxFS5c5qXDkOivjsD0ko9aRBMWdvk2JY1aCUBgNtY", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSiLhhtLBzYhxr_OQGZ7Qd8ZD17zzBZ6n-It7IngUGRgq8L31JE", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11fp3m8bkd" | |
), Movie( | |
name = "Room", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRO804EteIX4EwsuWaeiVGmNCK6ZLVIZGwD9nX47u_zAVRPeW6-", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTcjbVwys4c3aFzNY3-SAtjNLAu5SBVVO5RGrsIS04fkkWvFFwo", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTWu2MBMs0Qna_eCFU685SGxvfjaJZgcrdb64FGYDlHKQMchoeU", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT8FAgDHDY25mEiwiFKEiXUGoN1aXR3x0kth4IxEcibJdourDIh", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS2S6LEQSWoosykJ5YhqD6xP3iHrlz8F9oxTtE1gIJKYB9DoGaU", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQgb8ApSmDih4yLFuk8Q6NgPYNHneXgj9IGwhlQtI44ZidKTSrd", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRw4ZEQrVydvVCmb2WfTWtCKIQepHkajp9emKJDNkP8DIAZW8S9", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRw4ZEQrVydvVCmb2WfTWtCKIQepHkajp9emKJDNkP8DIAZW8S9", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSflY5UnEq-yVgWzBrm_WlClhJWJU75ZVy_jaMCEM_Uq98-7Uuo", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRzwJzIWd522qp5pGmiLBgdd9Tve25q7s8T56UFTz1Blyma5igF", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSnnA7ZxJmYuZJJtdSX8eZwF59BrGKqOxEuBzGR0qNXF9-P4zbg", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ0eox3Ph9BmHFKuc0_vymnth4O0FaO-F1zyhg6PEKD0_zh3vbH", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRO804EteIX4EwsuWaeiVGmNCK6ZLVIZGwD9nX47u_zAVRPeW6-", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFLVhe0OUDpEJhsOVbRmDWRR4MkbJYv54wb6f-Osq5jC1smoO1", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRIv98T4_zilcYROXo4y1bLirYxq944lhqAX7yHLZswQ4wP2szx", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRQTFIQTbOeTVzSe6gXAXeQHZbIS3yS5UaByaKvNlINPHJeqS7G", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSOgaVcUh7BpKRFdgHuH412iYsqXcn550ZSoAdeVWhz-2jFyNXR", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/m/010rjwt2" | |
), Movie( | |
name = "Drive My Car", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHHuCccVZVyE9YR4Ri3XSQft7dlKteWcYkz8YJ6A81HTj4dzZq", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ7OhH68G48HiK6A5ZtY_8CPklkdULD6q9TYWmdJJJ1iI4rPZbK", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTYztv7SatRyAhJh3hro1IIzrX45ndhlGlgDZbtF6W_H4zdEuS7", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRcQ_ScLnAQRs1MZBt-9ZPCZn_EdjEsQOXgspEtRFbectSMsI4Q", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR1KSQmub-VKIRsVKMzUN-9DRF6erAbmiwnBFRRzEbz4QfZdOpO", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9nxCdfsIvZkdJf6Cok1T-h-K_OQ5FbHrbI8w7dDLxFpQwlLUK", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSQb8Wqe0oXIjf8FQN10AeHzpB7aYKBaStj7qDzvHL378xJtNXp", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQFeBjSVRnJmPJihB1HCzq-WyZbj_XtQcawaip-ltrPwUMKiTnA", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRKNGpJZggKqvIC5HWvJx2KwbB13wMSgHdbPZ3a2BEnubXnhLmK", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSa0VnLEGSss2TeZgnZpHuR_SNdqFZ5cZ7owPIyvdtmA9ksOVsH", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS7OBPHzf_xVMt7DFztmvddFivzKItQmfPRX_SCIY946j36E6QY", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS7OBPHzf_xVMt7DFztmvddFivzKItQmfPRX_SCIY946j36E6QY", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTTT1BJWDucN_Ebdde1KNtfQ-Z6bNrPlnDMviB3ZmWjKbPXzLld", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTRX-_1cLMrfkgckcpHv4sS3e5tHpPfZGi0_KHI9d3VZnCLHnrL", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTcn2C03d-MJTtqUZM8qwZJ2y42Y93EPXcnGl8Pnupc-4_uoQIS", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSF4Jp6Bsun-PLYFs76QDkqV02NrSGfifhdEGR4i8KMWw-BDXi1", | |
aspect = "orientation/banner_1x1" | |
) | |
), root = "/g/11rfr8_q5q" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Sci-fi movies and shows", items = listOf( | |
Movie( | |
name = "Swan Song", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSa0v5aANcgl5c9ldCJAZ1ludkEjJ0_eNV2Qex7lQz6Abqxqhmr", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR9PVvN8RGr72t7-zOLUMFfmYPoWiHiF_LSnDGdxi1IM0lOPZMc", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRnKfOAyYBEmshHr2J3NQpz5epX2lSM77sZSwodXywlIXr2zJsb", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSazXCIw6upC7qcqX0Z6MRLgNvq1R82OeM9g2Kxq_PJBqJgPbVJ", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0XgQTOavEOOCkj2qeCROiMc30gWXjPG816aX3pyqg62mV8huz", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2Xl3xJMUFCE57PehXG2s_XOUE7qZU4CbqbmsqFFo1-BYgoBvc", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0XgQTOavEOOCkj2qeCROiMc30gWXjPG816aX3pyqg62mV8huz", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRBZyUWkS39mPbfodgDvAZyrmLgFDN23sfNNuRHJ9J6Ru4SGUzf", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSNIys0V-oiWXZvaZU2kEz8_hv0C-wDwzZ4xU3AX3rLVh6KHd14", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRMtLkyZZgk6g3Fg3V3dHZeboUy-h3SNT9Af5EfEfQuIBhHF-EM", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTQjIR_vqDKIuzZmBL-saky1MYJPEmLa1J_hoJ9RzC-alAT_j2W", | |
aspect = "orientation/poster_art_2x3" | |
) | |
), root = "/g/11mvtvyhps" | |
), Movie( | |
name = "Reminiscence", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTvKqGCuur1P1WMAIVNev-XqTqeyaxQd6hs0K9ORV5-GHwdEpNC", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSs63U3_R164QK2vI1bWIEIsQE5OJLAcK4yo47pKIq58_nfvwq1", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcReI0R7b35RA8NudxF3FdCwiZSIMj4IjIHIjch6EgWtlWiILmYX", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcShEvDzyhk9oE_ROSytkjBfljCBJ-dvvOd5oJ7VEgb7SIgTeAeM", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCjB_I9vaAL_ZpyWs8BZ0wOtYyqNishUAWRoFlsJlqpj7ujVXn", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQyzRvbK1zVx8PWhitti6lUIYrlo3DDEZxpjnO1giTp7Zjn9e-E", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTosEPpGQjB7s-jyISOyeDa5bqnhLW9CnFqy8F4Ck734p31L1_Q", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRPLAabI_Ztva3m4aFqOfBtfvzayxlNwlyYunx6ZHzgOwcbAsTS", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTfOTAwTsuKxf16Oo32_BH8KANIjLa5Vfkhc0oJ4jr4wnY11Hgc", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQPOyB_zTDEeIhJWq5PnVm36zTNSHwDe5qSoYWwQAYABf2AjbFW", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSvKgVCYC0gxgECvfmU4sAYQF4pT9QNr76fKU2Iyt8HZb_gvIXe", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCjB_I9vaAL_ZpyWs8BZ0wOtYyqNishUAWRoFlsJlqpj7ujVXn", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRtf4GSyadeFw6MXBcGs5CdbRe65HIZ55Ktk-CI2quA-VwJNsqj", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR5SvYn6hLVZjVxj0vYJqj5Ot2Ba5vw-rArjnnmHBVjk6T42GYQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSLzAwVJpqjN3bmcJhtuJfDMf-3gUa7ulD7UGAZzxJvxQ1S3GX8", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/g/11fp53rdh1" | |
), Movie( | |
name = "Avenue 5", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTCjQK_JBz1AWtSvjqGv05X_AfGtP7-0VI_sqt97zRFHiPNePj_", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTCjQK_JBz1AWtSvjqGv05X_AfGtP7-0VI_sqt97zRFHiPNePj_", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS9S2nEWzcSyPKqJZZbIqqgpf_jC9Kf-o6ZxGKagOIDEumfqMsJ", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSAeQn1JLv2tsOLQjwakEHDdQxS1Bqm39Il_59U28bYRDYpO744", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTilvkyffTS4wWYSX4X-TQ9zjUfxp4poUemxBrahYDbkDAuzALG", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQelOZdUO3s65bv77ApUAn69OPBcunVWG_8liDX45Mo8K8AaXig", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSbkbF1atpf2_d-xdp161S4mydOZBfKGnh_o0-vf86nMdbRBOdn", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTbC4QCZQu7qGs5uL0Ig_2zduuq12O4wYJ1oYftl_JB46vPe8iM", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/g/11h12shn5z" | |
), Movie( | |
name = "Solaris", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRP38oGecCPzmtjUO7fK7OsfZeh2fXb-WrvERubRMhZkifIxJgz", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQoutoEST00MDrt012TJY4KTnMl2_QLYwVx84wD7UxIC7fnDtvx", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTLGRS5HLQOVPcNmcnLEgROug5YPn097IOu7I6sSSAg2QpKLDzD", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR-ACh_bI39rvLL1apoxsdu_lAICMdFaJ9UiUkxvNf47rLKkcCe", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0I-43x7CyTjwjJXqkZw2n1kegg9RGYo1iMeB_la3KLHJ3Rn94", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTIZcM03SIyFZHw6FRg2WoXsDc_hioTZtxvWKeHX5_SCw-jr1WM", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS0I-43x7CyTjwjJXqkZw2n1kegg9RGYo1iMeB_la3KLHJ3Rn94", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR-ACh_bI39rvLL1apoxsdu_lAICMdFaJ9UiUkxvNf47rLKkcCe", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKdV9pfkkq6k5LG6Hp6dpZrMpztecHp3bOOFTExxCFlsBUlvjl", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSVT5wni6rMfyMRdlwe0cHkztxCRY3b8nNq2s77KZqCT6MvhboE", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT5f5ukIcPvTXdT3zgwF12jF3fFo1d4fu06obrHT2H-n_avC4HF", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/m/0ctnx9" | |
), Movie( | |
name = "Limitless", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSfp1JeoXloVr-iG0HqBw7jmKZf-jw3Hl5H_GyXX0uqlSdqpzPO", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRGc57UwdAn9KSZWyXf8YDibNx7nakIRNsJDILbQ0m2aub1-rSi", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTrGMml3YhNwQtAQUakWSUkSYYwulVGj_vq91N2Rr1ZMGcCfUNQ", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRxW3abnLHN8RCTwLH2--E36lWKInakUqH7-YCnC_7fcvDkZWyN", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ5nRNOHF0KzTcxKyzHPyTn17TTXlUYEifPW_ZI_ecftOAUoFT1", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQBiGKxhV94yggl5G1T0lfnTtmgRS-Ix5gIKBxQNBp-XgIED6qn", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSS0wtyBZ7bsEAi9jPgs-CFB4OS5WDfHkxZQ3-klepJK61zhHr3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTT0ESHPekbSEEw4XbHiszMhAxdrJvcPe_jGMoSOzEzlmakD1XZ", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTqlyE_ukZ2oOxPvVoY_pjMZsKD1UfkeQiqp80e3I4LlPavbmHR", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTiNMKr6OEov_SJMqCjrbe-w4CDuSSI-nIQAChw5bMVOhr4XE1t", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQBiGKxhV94yggl5G1T0lfnTtmgRS-Ix5gIKBxQNBp-XgIED6qn", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEGJc08qk81l2ck1D1Xi8f206D5F7dgYFJvPNS83cFaVno4GQK", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRwKoteUZG9plig28ZDxIqg6LvbcfT7RpEaj101qe-FKIeRuAvP", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSefmllu4ErDeeO6dacd5gnTU-ynAuTWo8Vxy45qna6kfnonqcq", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRGc57UwdAn9KSZWyXf8YDibNx7nakIRNsJDILbQ0m2aub1-rSi", | |
aspect = "orientation/key_art_16x9" | |
) | |
), root = "/m/0by17xn" | |
), Movie( | |
name = "Allegiant", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRb8VChOHmsiyatDpYdbXA_2PqHilYR4yQIu154S3fuigKG3mcS", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQAa9dlvkY9ACrJCLn1qjDwlell1Dd91OEXPbSQF6NCtH8Xs1ka", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8w1EQfH3_-BLxEtfaXtD4N326Kby2cO4-OkxrvBNkbegRJ58K", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSeYmWwvuyHyNrG40LRudiONCbZ9UTbY6qmLFcs8Xs4NCaZEa7Q", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQz74LGMv6-GEZvpDr2U6DMmEpbU9aW0CyGIHP9B6QBw6RRH4ki", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRrjuEIc3rvlmJkQ6upl1_BYrzACizlPadT5s0AQOF_pp-QuPDl", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTiKszFYEJ3owkywYK6EsMYxHFVDKI_giFyRUYMGJwoB5qfOaAW", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQUFp_W34UB2MndQoD-hde8Fifhke-WsUCnCeuNcQyMZs0YZSzG", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQz74LGMv6-GEZvpDr2U6DMmEpbU9aW0CyGIHP9B6QBw6RRH4ki", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQz34VQ5p8AX4p_Rpi4-hXGC4MxDcbPv3LpELmRUewxvrVo3F9J", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTlZ6aF0ZEhFCvKlAigujcWCr-yU-1n4X4tbFHpl7YsQjUJQLyz", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTDRw2GVlaXfJwE_lVF1idFfSalOTuDM09Wco3a5aWew4C7wVGq", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRwjcTcZ-rVadgeyNkHOWJjq5UxB1XTLdfgiArQiMxjFGcCqVkO", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTQYR6ky5l2ZX9H0DK-vaxJAC18ceC8PJ-h8eLDPYVfwWV-1yPI", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQUFp_W34UB2MndQoD-hde8Fifhke-WsUCnCeuNcQyMZs0YZSzG", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQLtxOam5vMS9lN0ZmkCXxwo_h9Bz_8fEvwTDPqiJTF4zZIuki1", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRwTrhEScPw3tt9FhNhHxpHggUsg5uQizba2a8gMtCPhvAAS5NT", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSVU924L7isuDvAtja1dkTa2CG2tgeehYI7H-UuTG5olNldAHtd", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ4e6dttU-8MweADTZig4PGMiOVOSE1BM0oiVbBjdKkjodIdluC", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQuyLwiNEYWYEb0ebY43Qe9-Qcun7ff6Rm3VhH3Pw_WaQ3cKaRD", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ8LIxLtwShGjtyqE9GhVREr3uoU5CoBp93bLVp2JmVj3sf7jUL", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRVHbhsmYQK0ouOXjDCrhcrsYQwOt338VFKyOHw_7u-l68tjl_f", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTAP2O4K8un5GOiN0mBCpLnVArWokygsqp-t6Bu2BDidlwObSHh", | |
aspect = "orientation/banner_1x1" | |
) | |
), root = "/g/11b7v4vnqj" | |
), Movie( | |
name = "Finch", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQmHov5K3pqMK7AEOp8WWR-9_csRBmeo7aRXcAp9CzRz7kaJ685", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQZ5XxefZAAFF8E3BK6XSeKzEwLdwbCbDZpAT46JUY2aHbx_b4w", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSPvYmvboIQnbdspgy90mHyHnszVFGZh-5ya_4Z2vyznhA1Ogzl", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT9j2aLkVAmGpfHiAdCPnkxIYV1oj5CrITwonpK1rZ6X6ILFbMz", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRhLA-_b-I-lY5p6kXhRTtNNl0CDRBDBbxTlgO5WRGlC85LQUnb", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQD1RVbHTwMbhdk-fs3gV7vYhZYUIwRzQEz_lTPrl3GM4efJWBC", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRhLA-_b-I-lY5p6kXhRTtNNl0CDRBDBbxTlgO5WRGlC85LQUnb", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTmT9jbilTjBC_REW4_22DkU9G3zxqlK24TWFTVo7Wrnq6mQich", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQd-ha8kcMk2sLGVSsTQZIO3B7oV-trbLhumjVhlRa2nxNfuC62", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQs3iWuCAdiHR3KdUVC1igAPjdqK1h_zKh4QDAETTKhTG2v2iZk", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTn2XHIKzho36so8giYyIgs2Eq9mjUPinPZxMnlDASqVoQinsne", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRqIYgm1kzZg404QhG8vL5mojlEpFDYt2CE2x0ZEPM3iIu3Sc2K", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSxN-_ym5sL8IP1aMV4mAV9Mg9bToH3w7hkzL9gJnkciFTef9u7", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRk3Mm-9P3Qwqn0GOGm-YZcFmJNkVocPUWWPNF_uxkORedvbjXJ", | |
aspect = "orientation/banner_1x1" | |
) | |
), root = "/g/11f6y3pqmz" | |
), Movie( | |
name = "The Host", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSCoxWAoz_sknEJKDfHMRFeILu-Q2mDGmiM_QVVhHhdUuR5WDYR", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcThde1gJdI4my31edXm7buDDmEgWYuxyGB-HN9vKAgz4XPJPUfo", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSLVhE5i4yFdXpmydELTzOTpPg4UruCypurQfpb1qySJf0Pequs", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTCEQQNJGDc6kGr1UoHHlW_wIKsm-m6BxV4zsv0eRyLyb0DVldJ", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT_FJ_M1wSun3-V3FKSD28vlXGMcCb25JPwG5us2K9nzyERGogL", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRSW8zV3cLP0QqhSYSSDd83qtMYKi8q4daB_mzB9vg_D_KuKFYS", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT_FJ_M1wSun3-V3FKSD28vlXGMcCb25JPwG5us2K9nzyERGogL", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR17ekMcyZrWTmppnrRThzI0vM6OsdGJgXfcmdzM0mznNgJQTas", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9mRy16urmqBWmO5gGlxPATp9kBSemhU6P08hOOVKYivAWgbNX", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR9mRy16urmqBWmO5gGlxPATp9kBSemhU6P08hOOVKYivAWgbNX", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQqDvuZbh81LA2tm6L5Rueg7JuWlTgOHYjO2md5_mFCS-hx88ol", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSu-ynCW7dIns_JBjldzcZYPjUMnhCfI9L3L9-LvFnNG0-bmFCI", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTvmsMmN_th37QzvCbzGkfY81QD7XtkzOKh5kgJkSSVww7E-t5u", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQO2FDJlJoMuZtY-qqCC3INMP3Jf8ZAHP1smcjbxJkkVPEZ0jnW", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQVqVz4iiIa4cUyLIMm3Ku2CD_oYMSychggoY-Ak698pUCbkyG9", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSaYD_cDnIeJSfljBoOHszt8MKjeSpUQEgGJfTC0wTUUqgDrd8d", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTWVxyiinQF-R938wDqN4BNctT4WAkOVpAcx4zzWl4ro6WTcOxf", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/m/0gy7bt5" | |
), Movie( | |
name = "Super 8", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQh1qdNqAzget4Qq5FUe5exAYJiYIE0NovZM3V1r9gKV3HbqvP1", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSdBdU5tAPdrOdRKBGx1nbG07ioy2nx8Yyqk4km19NSu8gQFHw5", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRPCIHQGfynbMRGLBoeE-riorKNbDXfT8zg5M04W7xbzP7SQ4yB", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTIbB6-8yazaivWqzPkSxS_DpI3nrW2Wh6mg5yrCu3JeSQy0twM", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTar-2xYGlZIo7dMZENIIhMKueRnOhWWEAWqgt_FckGZLcgyQT1", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSP-ltCALlCgeuCQkS2T-6NZkdVK66uP39un37z83aWvBlV3riV", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRPCIHQGfynbMRGLBoeE-riorKNbDXfT8zg5M04W7xbzP7SQ4yB", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQTqUORJkNQRB1vXP8qh4V3YfJAG6vdlQQ6ybqyqH4R1EMTnC8z", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS5bcZPyqwsQ4YfUcZK13P2KQSMLvFkPTBx8TpPcs44lj4ns4xd", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTjGGbeaUQR7pSUCKMRamlQ-EKkoBjEn0QOCW1oI14EMBqinSpx", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQHXou1u_0r1q1Wq6U1XYBDJPsBJqH9SCJHPf00goZ8zz-QimUH", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSAsailT9Jd5L6-od1rYlQ363wizNHFLwndlf8as2fZLWyZHvBv", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtNt4LfvZjOlHgO4wVfABSJOwG8FrLG8Coc4JZWA_v2Dml2Kjt", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTar-2xYGlZIo7dMZENIIhMKueRnOhWWEAWqgt_FckGZLcgyQT1", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTX80DTvDK1dJQMVyjipkPNW-8F52JWByGP1B6bPMuvH9O3iEqi", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT2DsNjLYYiOT5xJ7RuXthTqw7lw-ih12TDMskxIaj-8CF0PtjP", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/m/0bwfwpj" | |
), | |
) | |
), | |
MovieCollection( | |
label = "Comedies", items = listOf( | |
Movie( | |
name = "Little Miss Sunshine", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnEo4UHK0lHijgqbdpkeIjey1fCnzxRzrMvW3Plkuu6hB7sei5", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQHvMg4NMz0hCZsGWqn4IgYxxEUlooSdHB4fVtIk6FnURvQGviE", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS3ohWx_W736y8lt7z9vr52hHYfKvxhtrSbCBujyHLHRwdYx1zK", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTvYFlEjmvdHd2AZRcudzr98Bg3SYBLBl8XVW2-8y8CSMd3cDio", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR2OmMxP2zgighD495tarwNxtiIpaSu96Qugek5ep9zhpRX-_h0", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQHvMg4NMz0hCZsGWqn4IgYxxEUlooSdHB4fVtIk6FnURvQGviE", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT8bvqud3ri7O3BAgHwxT3lxgL3DLYFntQ2SefzxRgT3Umu8C2A", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQVsGplV_PNReqJi_TYG3-aEbjQjSud3TfYeoS7Qn7Szi7o4dEU", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRkMh3_wYSrN2wHuOJ4IoJ4cbB4xpTomXzhCMo0uJcj-xdowAoR", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQxfgmjz5LWb1KpE08VngGZyZrENEpxwpH4-oMEYNNiKukXCX2I", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQt511-umxRvjC0FoldIxdP7NrylT9h1mNlKIN3c5oEPTeMNwRM", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQe8CA-oqvccQh1MZNT3Xt5Ni1eFFj_r9ubefVcMyJ_-7A1gyOR", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnEo4UHK0lHijgqbdpkeIjey1fCnzxRzrMvW3Plkuu6hB7sei5", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSJ4I5LQYwKab5m1roIaCie42EMncVm9ZYTbfhrckHF1QxqG-ev", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ2RI2rncxn6d37Ed1pxGfDIznQOeMtVQFXRcyml003SY7qyh4p", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/m/0h1x5f" | |
), Movie( | |
name = "Chuck", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRSXnDtE4GWS9IqOjyTxrGvBBiyH-pbR21nKegkhRr2WcwNKrnw", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR9UkmE_dKhtDnghY_xJUlTkz1E0qGA6iTomxs6nPXvwd6InWui", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSeRGAJsql2IV31BZeYfTIc9qwl65lohuzUmMy2Mcc8zglWC_jN", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS-HidgdDCsbnXIkpTO66TzkPgEP53BGWnrAi5OJ0Lhp-UjT3Dg", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSeRGAJsql2IV31BZeYfTIc9qwl65lohuzUmMy2Mcc8zglWC_jN", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQdjRpj4ewxU6s1pZzLE7CASTP7G2HRj3pu7tPq5uyzzTmwCfPj", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS0sJWDkpNxLIqQposOhjujFkchw_KQHmqTK5um_cavB9IuK74V", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQdTpRz_u9JbO_qaFIfLpIqWO5NYl3udxPvJGqWdwYt2gXKP3Xl", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSeRGAJsql2IV31BZeYfTIc9qwl65lohuzUmMy2Mcc8zglWC_jN", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/02py9yf" | |
), Movie( | |
name = "The Grand Budapest Hotel", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRBkat8sA7CawBozCrgF0yC7ehwqPOnF-vNFHP_9osJAwEM4Irn", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRVaZF6RCMn6NFKU89R89kbz_jSmguwmAwl2KubPMkRWxhDmoB6", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRax3whXd9yMU-qNoakVLr6jpyJByOW10fnTBXfTOBrUiAW2bUg", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSPi_zxXfjfJ_hWc1XLm0tFIASsnY7YpFR-wZh0jEJNgFpjArQn", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQuX9Pd658pQOX8oS0C8sqvbTpIPCbIvXj9MQAApfmNb_HuhxWl", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTzL2DfM-DNtdGuXT4Kd61U-MIR49Y9UdCzDVq4DPGhlSQia5wr", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT_jJa_9ndEDu9zhbe9FJUTLB3-uwuvxIrlBoMsGiBJ3PojXprK", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRnBuvN4X9dcJwRLIBzN9p26O5BAg2TI8qzw6ewR2VV6vT-PBb2", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRmkfyjoPil14cd4gjFgbpNBQeYe9z9M37oe0IX416ZedSpLvid", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRax3whXd9yMU-qNoakVLr6jpyJByOW10fnTBXfTOBrUiAW2bUg", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTwvnfbzYIhkPe3HcixENsu-PNjoW33-B1lzq0E9tsosRrKvQR2", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSHEMvNvdnsZ37G36EMS5dSO0K1k5dWXw6Eh3lFXRknP6Pyz4X2", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRo5Eu-L41sD8UmoA1Mm1Y801-F1EeBbLcYU4s_-gVL-3QmbHH4", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRO1IrbsinUi8uMly_0ZhRfbm4DuSlbEMl63AWfUIct8lyZu9ho", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRmkfyjoPil14cd4gjFgbpNBQeYe9z9M37oe0IX416ZedSpLvid", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQx4f-wAgJvd8xQ5oFQsUyUoHu1-YhbCDaXNb7nulDVdqV7_mCf", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/0vps582" | |
), Movie( | |
name = "The Secret Life of Walter Mitty", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTqtyIK4XzH_UszWcDbgeIewa463UWZ218cssnS5beDJSkYku4I", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTN9hfvjD-EHjErNL9Qr1noF8JPVokUTeVPWQhiX3Q5ZpSheQ1H", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5y6TlzBrrlPwm59bYSp9ZVJMasJOnInv11lPNQXR7b8ycwbjS", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQW6q_MUR_3taKaISe8z5-EljAvZT6blod4VUNV3YP8GC5HDin-", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQELPGBGSDJvG_pTKfGDZV1JYUfSd_x58j_GpJJFPMwqJEff34A", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTJmFwuSjh3DafcA_ja7PaQLzPWQS1aoO7DIdXOgU17On-Xhc8G", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTzcTfIschxerFgiPsd-sgN9FwUz8zpbpx8RABVWcYM_bXliC8i", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTJmFwuSjh3DafcA_ja7PaQLzPWQS1aoO7DIdXOgU17On-Xhc8G", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ5VVZavtjCrzR9l37B2LWsueoDULvA1hAY53L_-s5S8oPoXVud", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5y6TlzBrrlPwm59bYSp9ZVJMasJOnInv11lPNQXR7b8ycwbjS", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQJJd7VyUSczIUcoDPjjdulIn0jPOFEPYJFPyogyNhPXTrSjEAo", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ688TtsCCUDUlayHO-7oaLtjYCCN1gbWGwZOxzEYlX8YPvPH2z", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRMSW-3dkXnyEstTl33svDuniHeE9CfgJH-ZeWTAqn3Oagcc3jy", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR7bKGbcauUM-yTgNhPRUBCifCDh1uAt3Dg32ecJOmPCdwX5ZBN", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTIoJmSr1NSVr3iU4SAECb18JvL8zsecsKQFFJxuDfCZX68a-Qe", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTWgLIMyUnyWnXMnh2XfCr0kidUfbh68ylouxi5LMIw3mdp7JpT", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQQszf-NAu3XGtOMVNrX_AJG7b9HnADBqC94e3iMgjObwtIMdoa", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRYBMp7jl31mXyZhBXTcWbia8n17kNdVXw9Nj1wqStbj4GSGYt_", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/m/0n4g112" | |
), Movie( | |
name = "Vacation", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTzkc4jAV1LOuRQAHWoJos4P7FBdpGV2ebS5-axQfAzWbFgQW2K", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSMQSw2iE63YfjgLgtDWNzo3I9yVZCQ-9UXCP08mWAREbkG-WB1", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR9PTBaWG7OI2Q0hZidrlr-EAwz2YdyZAxoIf7kK0SH22NWZ985", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQSzqf6pFvPj8-fsaRne35OQB4PAJBHF2OzYzkD8URK0tx9xQZu", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSt0vi9YqnuJk0E_XdtIqne7N4TXoD5QfMISUXZnqHNxD08oaRP", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS6i69gUY6L4yZ0Ucn_PzSgQbTWOcVog6_LBrB-_Kvmm-gr6IIh", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRwTSfXqzHNqO1MqrdvjYmW0YhVGP7WAiPoyoAZHhbh_w2ov4E6", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRwTSfXqzHNqO1MqrdvjYmW0YhVGP7WAiPoyoAZHhbh_w2ov4E6", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsQAbDHk6C32CwPhRJ67m--n1oUEvNb0m1vvpFKb682dLePnV6", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJs5daZ3iP7qi43BCqF-3S3VWy2wAH6wF2gZ5hqUEgMbwxuL4l", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSMQSw2iE63YfjgLgtDWNzo3I9yVZCQ-9UXCP08mWAREbkG-WB1", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSeOhBvn3PpbE5_nKAjsGJvJHHMEHEX6vLtgpl0s7XUJAFUIvOE", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2ArC8gemVV2HUd83nW53VjGC6OjScd79JFErAuzDymPPUoyGz", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSpHr8H3QAltR7vx7GDmnWGzw3c7fHJ6ZPeJiMlkwyKNcDIIyUS", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTsFMuGvGfPDuVUU4FYFier3tz8OvZW5iSpeNWaZz12g-f6PMYA", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKBgBY7hPwvfB76sN4iGlgMTyKigBpzMNIVNJwTGEgoKJMa0ZL", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/m/011v7yjl" | |
), Movie( | |
name = "Ella Enchanted", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRkXpk5AqZ6miZy0gx_HczffjtTEipA2YW6oCLegK_PI5077PKe", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSoai2vVVQ2E8iYGuUCPqrCrsHmqsnIGZBR8GRVjtUYNnu46xFs", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQOO6ipL21dd-Te7LHRTnr4wTC0yygAAaA0gx2CfkRAL4b_GJT7", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQngf-REgBBbv8gc-IUVTt-3f3zBFrSpSk4Bm0_zAzkxG8HeOrW", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRZiMTpuXOkuCwVuAUKHGvkMtbXL_fFN7_vDUW4V3-MRLTfJsS2", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQU_kstpRnJk4aRRN7BXvYzPMmw-BC70jLJY2oxFeH707lqX4wF", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS7pjWBNse46ChGbll4psrdrZSpWfhEMYSbzvaf3Fhxt-DZMer8", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSNdKB-dUUEKapSUNrwKXmuNy2R8g-KMy8IbQ64GtlhVYicCHy1", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT9y25pZ1Polz3nzx72PBhtoxP6bfN2JSuHTnBQFpm_KO5iUOFL", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSNdKB-dUUEKapSUNrwKXmuNy2R8g-KMy8IbQ64GtlhVYicCHy1", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRxYsj82ZGR5uLidHE7k-4vQ-sEeOu-2kIJfT60gSID5du5O5AL", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRZiMTpuXOkuCwVuAUKHGvkMtbXL_fFN7_vDUW4V3-MRLTfJsS2", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ6nTBE8S8FN0UtDNHoDorORu-Ipje4cZfLnPt0dOSLkv1sjzXZ", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRYY9unEM-lTGUrv1yrKMHUgiISu6gipR5C2dYvOv8XdhXds1eb", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTZGIR0nFfpzeFuEjrDz6rcgjyh91jdDhkKEpOck4sL3nAgQcIS", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRSfrDMPcv_WpcbO-28WshgUZl1gnByVV1UDWQ0E45FJqwFX078", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtOMjTItbSXTRE-1UZFHaQhZmtuDXVKvk7jq4g46xYF_G6GZhC", | |
aspect = "orientation/vod_art_16x9" | |
) | |
), root = "/m/0h5y0v" | |
), Movie( | |
name = "We're the Millers", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTozrmKXjLLuw_mloXwTFrhb9KED2M6sUVPuY_F5UVYFGZk1hAT", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQFj1K25T4l01S9t5M83mDTp65sEGuY-6f4fWsW7HsrgR2VvTTH", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTI2ag9qCjYyPKub38mayrB0AqfB2kUQk1AOLKXV8KD-eAipONN", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRGe3MUKkI21qH-KcTkdueG59bYAb3JLAmT6C_hh3WnsekHkHR7", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQFj1K25T4l01S9t5M83mDTp65sEGuY-6f4fWsW7HsrgR2VvTTH", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTN2yvGFhINiCQZXdvHzK13UFKscR_ivMojBSAXsv0Ep4Gbc3-n", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcST5fHYsKUPpjGzod9SgrKIMw3271iVNet5yg-DeBqs0CO2zKwF", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR525kWLJTDlCw2AXWPtrZ41QPdEyOQ-LB1KazuymJTMt7Sps62", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRY8CG_yehRcKwlJ6teCuDm1IJG-bnNV2qe2mKu1BMYh6fnp9v0", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRDwBz-7x7VrGa9MHvPMeZCHP1cY9CxBN4zL5NgpqfMxsZu5tCj", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTrLquuRoR_We2Q1JqqFV4HjWB-_gonDXvHwzL4pxXXC5x4_ai6", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQrfG4e17dDWLAjvw1J2F6h4d5jSJsytSPeVwEu_EpZVvRjdjVr", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSxab9rhI1LkNH-LQbwPhUTgWKC10gJXhJa9udGTeBZwRqQw9eH", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS4xXfFS5hOz0IgMhsx9mF48a0cgyTTpK2VN6_nM---dS0SwEMz", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRY8CG_yehRcKwlJ6teCuDm1IJG-bnNV2qe2mKu1BMYh6fnp9v0", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ5ALvqFag6Cfg0fbdf4VkQ_hfy1Pz1Syi1lIFyxxXJXRF5_k-h", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSuraUqbaNjZTtz44mUgwCwwx2Eg_c3JrODGjIjvilPCmR6Iuv5", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/m/0lgq7_r" | |
), Movie( | |
name = "The Internship", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRHhWVCMSk7rTlp53HQ4Aw8ztDaddVEyoXGLFkbNmydcpbZUtt7", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1ceopWLKyfKDDHOkeAxPSqOu6N9iYOP3FdYEdY6h99LC-wD4w", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7QIoLY2JplyyodV96iJGnCj0PKdrmRxLCQEV0OxCMy0QOptrO", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT5j2Kgd0iLeHtkOUI-M4Ad8gEF5_NY15Tc7kx52sR2Vx22uEde", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1ceopWLKyfKDDHOkeAxPSqOu6N9iYOP3FdYEdY6h99LC-wD4w", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7QIoLY2JplyyodV96iJGnCj0PKdrmRxLCQEV0OxCMy0QOptrO", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSP3wnt0g8ftO2u2joiGou4QD-raL9IgdaNsl7O4nJDaoqU7UD9", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTAYcMbf3hTbN6U_n6qlWCyNwq6Ni3-IbcusKLgtcnviulMLf66", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSCzaCCVuKK7zS3Tr-D95y4g5PJNJlJ3HJOuF8xgQNiQid3ewGI", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3NAKLqxv1K-BqKqrOSI2gZX12AyrTnNK5PUz9TyFjtrPwY8dk", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRjH3MMLs78FBbQNu34U8StPy1CtXhyRAnlzJQ-2kHjKEAWATFr", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT5j2Kgd0iLeHtkOUI-M4Ad8gEF5_NY15Tc7kx52sR2Vx22uEde", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTcnjf4KVlEKJqQFkEvDSG8BPMkOzNfmJaRWwiIcAyKtZYM1Ocx", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQtzFxH5ckvKbVzs3t4IuTHAoamhCOHuk6Sh4KB0tx95aU5TrrX", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSVjpxmlKFT5RE5JoE0--xaE4vKUcCFPRpwfwtAU_PB9ec5xdEu", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTtKxFXpB5u3tkqd0AnYfe-46_Bwz-wDrsybvlLqxncac0uGIwX", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcThb07-w1EHoWM7Z6-Mv7NGB0FkArKyjRjRoEx-071mK7y7BOSS", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/m/0km6w6l" | |
), Movie( | |
name = "The Other Woman", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQTLQ4Dir8PvP3TPENhJeq3xOTg8VQGQMP5KhGjFRcgsoHyCGQg", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQOCDuFdCGd0AeyivStxDpbmfQu8LFjM8_AerkdDbHYHucD3iRw", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRR3G4GbP0kWxQGBozFjuMpWhWj-uedaNgLaD9idJKrjcmxoeQg", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSWZYe4nnyeKtAiiEIIlMBWVcprUEdR_VyRKciRhilAjuadWPoh", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBUrRfaQv_lg3uB_zQIIxLODseZthwcxqsrYukV6n5NWQ6KDTT", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcShHE4coSA1zEPM2AYo38VD58oXSQodwoRKB4bh0J00opwzNFgu", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Uqk-hdG3XUB64-4DXugd6ZBlF2lrYIAMt1vowJHP9pFsOGAZ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR0p1S21d6wo7jc6GNQ81boajw75s2PkTO_0MtJfs4PAtQA8K0W", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQSXE8SfMdaBBswa1dVpRqGvmZxhmamq32akrr8CVqKjPPiZynN", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS8FwccrM7JE-stw7BM_YFq6qtU2n7An980mOWTnn_V2-CvHVR_", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBUrRfaQv_lg3uB_zQIIxLODseZthwcxqsrYukV6n5NWQ6KDTT", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT3ZfPPBrylBWPmAeo2XXib3-a_szTZWf7dKq3_5fXQ9fekESQF", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRxQ7l-Vr70xX0jOZFa06Qa_-yym_Enr9bu7vj4_3OuhQJF6J5-", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQcuQRXmKdgkt4WGQNcTVpilmvZ6677hFYAUrDzwu2ISkuoT67e", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtRWxVSO72MUxbsooBub9yDy3o244fQhgOqyVo0UGUoUwdVJxS", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTmG7bHnav4SX2hlDCsK-tCglPPymfTuRs66_SU-5euY6lx1Ot8", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR0Uqk-hdG3XUB64-4DXugd6ZBlF2lrYIAMt1vowJHP9pFsOGAZ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRRet9T7L_8bLxt1VHsuMXwATFMYZNnxj2z-j8WLTql1oPQGBwq", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/m/0tkcvdk" | |
), Movie( | |
name = "Silicon Valley", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRbQwdhU7RpHvIN0FcBfoY90e8fP0gfWM2Hsx-I_Z4gl7W3vvvD", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQD78Qh9Vb1q5yxt0gaUYO5JMCOLlGDyIKXgq7XSB3vX0nnINGn", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSebzW0jFhuxXznS-4phh1gFH_F8njtkcAmqVnUbx4DwAoKIGJq", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQM2EJtYBc5biqz-j6IP-E2ncUSb3pMY4YSz-kYnWXyLDSRJEU4", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTSK4-6awi3g4leze-3EuVRnssXTouZ5fpOZE6BsDzGYJu2Q8qG", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSTQJsz2J3i6AcfAGMP2ziaixYYPG6Bx30VoT2HnaTpRUnta2SN", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTnLBFRiSZHTNAOW2vfLEKb1TKIsm6yX8hrNaukHJh-5ZpxZ0hR", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSebzW0jFhuxXznS-4phh1gFH_F8njtkcAmqVnUbx4DwAoKIGJq", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSTQJsz2J3i6AcfAGMP2ziaixYYPG6Bx30VoT2HnaTpRUnta2SN", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTIeoguDvJ1YdCNZrNC31caTRhKcaZncslAbZO2lbP4chZN6_yq", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQyCY8HNdzkCJjlSp1AeGWl6i1Nl_d_ittAdOEVpOnTIfDKnBng", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTZVlYn4yHDtNATGybBQB7MdkbEniaBv2zydCQ4AsI4QcWq43pT", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSGfH8BrZm1EJOn0JYb1GZl-uUHu-2f6GwnYARzRAlqq-LlLiva", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRES1BSGsLnHewSTnhX6XAyeBvG-rUBNjWkHGCXV0G9esrNYP1i", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSTQJsz2J3i6AcfAGMP2ziaixYYPG6Bx30VoT2HnaTpRUnta2SN", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0_1n138" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Crime movies and shows", items = listOf( | |
Movie( | |
name = "Person of Interest", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSCYPtm8V_g7IufeS-OWyuEdYVanaDuRIuawPewS7BUUnQ-Mvjx", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSbhZBIv5yJt-kBbdSsv7F3BE3F2V_kq7CU_VwU6f_qVA5TRCtb", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsYtaDMlmgu-5TxYy0sFFVxhwoHu62XuhQDFr9SEz9tlMNZTZI", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTN8pEGOW5AdckFSPyfqPe8-6IZH4vcsf_3FsL_xImz0CoKmdNL", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSCYPtm8V_g7IufeS-OWyuEdYVanaDuRIuawPewS7BUUnQ-Mvjx", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSCYPtm8V_g7IufeS-OWyuEdYVanaDuRIuawPewS7BUUnQ-Mvjx", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTY9Gto3bgLSh0bmK9mT-MUS07LRXrN3mlaA-SXHphcIqnKvfXc", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT3VoVUpJWEWYA1SE84w96_dts745ySgndkvNObOdCIUcMxMdUw", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSWBbGo6mURk9hfxziiiUr_8VXuS9C50WzzZYCZaQ91WJ6EIiaN", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/m/0gtwsq1" | |
), Movie( | |
name = "The Outsider", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRztqPrQTIv09CFachGPp_Xw14vqn0RNn9KQ8_myfZ1FeJykEMR", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT2inn4gRNmUaRpvOD3eBUg5sVhIcMKzoYJt4rhK35DcWGdaP7_", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRztqPrQTIv09CFachGPp_Xw14vqn0RNn9KQ8_myfZ1FeJykEMR", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRztqPrQTIv09CFachGPp_Xw14vqn0RNn9KQ8_myfZ1FeJykEMR", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRii06FSr2I3UaAm_UHVoPm7TkrDxotQ8RnU5VMBXpzlSR_nKYv", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTvwnAfSRkmo5OHf9ZADKWihxqDqN9YRWJHrHdn4LesmfxPJI2D", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRGdaiRrDiu6l2Ddujk4WiQV2Ekw1h6tHRQwVHZsdKVQ63m6mf5", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSFDgNl-ehcyJMEgZiguS_x8Py6hR8Cy89lLMhJyera6FwcHgs-", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRBOPFeECBoZmsK7r70oHDVj3dfJUOK3HmZ5tRCcCi1J6JLvMKQ", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/g/11fj104nlw" | |
), Movie( | |
name = "Nightmare Alley", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRUjDQHauObHibLYVPpkiZu_WhvitN3a6B__hwQPiCOFONCXEH3", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQrNMikKhX6Imlkfs6DKtyqn0UHX0-BVFELzZM45gzCVDtJNPpo", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRtu12n5Qvcdy6iA4Om7Rhl81UjOWEgxs8E3qpIXKXIaW5-Ej1Q", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTEZ1T6p0EQUfg1HMNRfM-SpavaNj2fthXKLN_519RdwQWSEJx3", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ1b7ac068uFAjWFeJS6dGM3ojeeGK4rgoUvMWRHIiPoOzz7JZJ", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS_dKdimjsHMHrPMLD3Alycl4gtsMUlRYDjLh63VqqHX35tz78b", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRR35KBufw2AjdBmwyD0jfIOFNQvlmvE_LcQoRYINheUm9i8GfV", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWFNlKZVvBwoTpFzVlBf1Yz_fu9XxmSPfci2Ox2efPo7bVEsdf", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTBmRn17qnFECrmTaN1t8cGoiTrGENTBEzTpmw4RZS__2_uKx59", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRBnZSOjdk3xl3iVExesEKVYFo9Zlz-7me_Gp9WoyRplE02daQ2", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR38x2tMAJmI2hvlE4YHybrNV_0ruGREttx8qOnStTW8L7A3YCI", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSzmhqg0axb4IhMuYd16jOr38zutKkqna2YmAziBAQOr6apq4Ub", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTEZ1T6p0EQUfg1HMNRfM-SpavaNj2fthXKLN_519RdwQWSEJx3", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTE538wiDhhFjV-P9c-ijNxJr47tAHMjvhzyX4dq_cVtgoed_yr", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSApaNm0tEDPIzi3deBdZT_cpnQv7dpKKxshSzFosbYp0nslQaA", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQG3MQA0ilSSDLr_nv6mhKQmKFUvmRM_zmkN2q262qlslKw9QVv", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/g/11hzsqc1bk" | |
), Movie( | |
name = "Walker", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3MEySFg-YLVdXu6jCfKPtf0fOdqA1MBsjikIxyZEpSnOgZwUn", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSnJHAfcs406wDlUrKAqlDmDniRYmhA9zvkxKweCUfh_oW2i1bh", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3MEySFg-YLVdXu6jCfKPtf0fOdqA1MBsjikIxyZEpSnOgZwUn", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR2zEutwZtM08hbo970T_7NLgFVw27Asvk4k6W1TT5pJpXExZKG", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQn37hRfaVLVFng1LMPHBust_QaI3C1Lgyd1YgaD1EUs5v87PZM", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTvrI9qdmJlLi9cHIwdeY_ykb_mBokmNcwyH6ecoRlVL0K1Rskx", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQQ73UwFx3EWXSXThMVOYVPwNhBVmvBBmITfRj_o8snTur3mQX9", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT_563Y2e1kQroiXxBCtEEWeC0CRz66YOiK9a2OwkYayTDYxBQU", | |
aspect = "orientation/banner_1x1" | |
) | |
), root = "/g/11j6gg7j27" | |
), Movie( | |
name = "Pulp Fiction", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSek2m4kQ44J-bMZE-knui8XuPJ5QeqLBVky-4buJNMArxC-mec", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRzgy9XBGVyLJmGqDnQ68q4tSJNr0Jyas36qQmxa6XP2Uccxxxh", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQnG_i3Y2O1lrSBrPPIqMZVBu14GeRewtejx9bC5CwniV7HhL_F", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTWkwXlzhOT314Bhy9Dhsi7-SVP-crPqXvUgTa3tvhxTLbuXyPR", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR_Gwi2mG4OErM6MiyE-0bkeLsPqV3zbNk1-EfujgjkU4yC4LKu", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSR_NLfpNrcWD612Gj7J5RQhm2uy2dnbtmThKNJC8hj0_lh9zEN", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQBnaNCeiyaI7GjMNaLkbe6gTYNr1gs0wd-Dd4WPP6mOqUdhQH-", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTRlV5Y5wdIVoh7Z6LJ7SgBS2mlo2N0YBMFkKRrWw0EFKO8fpIC", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRqv0iIpMQWaDLoNdQyn2JQaCwmgDEzANgpe1k6ZAjcge7P1q-h", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRFQ2wAAFMLOmqKQpSJ3LLYV7lYyhRc9hdAaRJFuKsNt5q-w39E", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSiU6G_mXTjs6kHEBRYxfthezk26NzdWihR7TEZuu5VD_zrbYaQ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRF8xq1swGFi-yVNM6XUB5xr0LEzk93yf82oviPyeRXggGBLBXg", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQebZYcpT4vXxLDQvrRKE3_tzfznEdC_mjzjJGQaR_p1HXy6Vgf", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSiU6G_mXTjs6kHEBRYxfthezk26NzdWihR7TEZuu5VD_zrbYaQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT6GhomLBacUVPmb7ggBkvBftCDXbx1T_nsXQ5bTtZP1aUVZmRR", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTj6_ot-pRVfLMtc2vyguVf_0m0HUuvdBw2I-EuFXkUIEB_eoAS", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSek2m4kQ44J-bMZE-knui8XuPJ5QeqLBVky-4buJNMArxC-mec", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0f4_l" | |
), Movie( | |
name = "No Sudden Move", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGOgr4mx1ZPPGeYZaqzts9aCmlvLKx9jqdv_1zNrmyZu9otvEt", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTx4u9NTh1WI_ZIo5vdIAyarZsS1y5DkQry2E3Iho4EQsaOwQAc", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTingvW7IqF6WIW7XQgwgddYGFTXJbDCDrCwOmNJH29PyBXf-dv", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQKhKM42R1b2Q4gR5SjKtli2BQhoFQBLP34HwWgLnT1L2wIIr8_", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1GvSpqIHV0BAasVEZTRg2rbqortZpjv2GIw_f_cISQJOe0CDP", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR9hxfS1hKdp38-mj8G1QetPmZ7N_wOSTzIDbj0rrZY1XZHqVKd", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWsWLrGHtm72B2cosBCb4EE6GXw-dq1iShISDwFtWa2OYq-LqB", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDt2f8Yqthw1FibpwTRlUU_xvKEwFqNswkIl4PHmPM-UOKEGgf", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR2Jwqbjiw236lJZB-OiHZ-iiGpgiFE5KiaTbB14nGM5lR41rdl", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkaUta3tZgnXnehBcRfmw85lp8Ed8ymaZbUvCkcLYKM2Ilhjiu", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR_1LOM5koQUePjTZovM6gk7Dk966qYHBp77T_q0u-TDBTSkpea", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR9hxfS1hKdp38-mj8G1QetPmZ7N_wOSTzIDbj0rrZY1XZHqVKd", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0ThCf2uFGAopv2S48VGhrTUFHMArSj_BSm9zU2_H2seH-SHwA", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRAsMfPiNqMzzyokCQ8JRYQJrMoTPIuTgBn2ckmUxXMLHM22bBf", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1DnB29nRaKJobl8l_IJTwqpCV0VkG6E892kzcBqdZW5qLhMO9", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTC5x8cGjgmqWEyv8y-igviwj5tQOmcODNT92W6qwlQ-oOO3Nxi", | |
aspect = "orientation/portrait_3_4" | |
) | |
), root = "/g/11kvrb2lgt" | |
), Movie( | |
name = "True Detective", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSbLQC8-FZEkHRYtGXYbAHmCT1ZJw36gufewGV9FNr7F0i-j2bQ", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSb5ELfgPL924uxif8zpTzOiJFiFjW-A3_218lXnq9ZowX2leFy", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSI7e9M8WZ-qm_0_jt5DZqWVv9a_Z0CPG3uKkXJRKD7WbM9I7Uu", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR9_nnhX39orbqWUvSAnMJHIyt68QovCt0Di5nRwteSxrLigyQz", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ6djhlWhsLq0omhSX8sNad0p57kWnSVGIOEzt-FGZ6z7YSRLjK", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQCDxcN_gmpINnT_Kuude1nboSHDwCGn1EMCT7WZLrAEvPmx89f", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRowibHOxJnyNY3ekNknOD-NzqcU7elWd4IDSE16L9ldiDf8ZMc", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3iYtbDhiXFTcPD4TbMyL69h2xxvAr2OFwQBoeVYoX9lwel1Xv", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcToxIW3SUOhA30V7rI5sl0yca3V4DlngFtsyV1tPFVxUbvujoeD", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR6xjAJMnqF8u8ky0Q0kmdgF09nxq7W0VblR_oCpx-rwGJduhcT", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ87DiJpmBf3mr0TSwj85TaSfsSMzU_N5Aw0VgXLMBoDmKz5oxA", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTEp0Cxt0aiRCMZqHffiULlh7xHJGMVdNSrFkV8DcL2pIwwf2Yb", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQFVmu3MMD_qUv6H0P9K4D5QDXQVO-NnkmvkbWHJWK5xyMaOVt1", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR9_nnhX39orbqWUvSAnMJHIyt68QovCt0Di5nRwteSxrLigyQz", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT3U2ly8I4SNL3_P2INgNJdBqdzqgChNTPkl7jbtdfT75UGg2uM", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3iYtbDhiXFTcPD4TbMyL69h2xxvAr2OFwQBoeVYoX9lwel1Xv", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR3iYtbDhiXFTcPD4TbMyL69h2xxvAr2OFwQBoeVYoX9lwel1Xv", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0qrzyqw" | |
), Movie( | |
name = "The Wire", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTLVOxDpNIh_5sNlIC-SW1WVS3yYNtXL5F61l7nnRqot6MCdcLY", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-ONiHu9-0JbNJzQ3G_aSY2Awxy2XZvA_4UoW2liz-QhmSH-0y", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTrS9545ENpA7kD0seIddvKQTQXPnKx7fEbL6se6LOOMO3VFG3q", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQaiDPvrBxQpapK0m0i_fBlHI_ltQrdKcpr7bFpAL8CrWxuW905", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSGXK_GXhxe71TLJVoboiPsA0jRXTXmXmHYNh7rZntSgQM0w8s3", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-ONiHu9-0JbNJzQ3G_aSY2Awxy2XZvA_4UoW2liz-QhmSH-0y", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ-ONiHu9-0JbNJzQ3G_aSY2Awxy2XZvA_4UoW2liz-QhmSH-0y", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0464pz" | |
), Movie( | |
name = "Boardwalk Empire", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTHQoN3K-ZGGXnqkbj5Puw6RuknDMAvyk9IhZyuLXna6SzGGuFg", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSb-Apa2lOQKzTnyc-JXVD33-QOY5AN1watWGl3EQ2C94N7yF8N", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTxJoEtVreH48FQa7qRDwzs-tqJkcShIrXVKBdZZGVvc6LJ3Bqw", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSmNaKBYhUVMX64wtfEdjlYXhUwLUXTCqAloYeEYEQo6-LvoUML", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTxJoEtVreH48FQa7qRDwzs-tqJkcShIrXVKBdZZGVvc6LJ3Bqw", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTxJoEtVreH48FQa7qRDwzs-tqJkcShIrXVKBdZZGVvc6LJ3Bqw", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTYpPUQ-v6RLpn3F3YRVI7EF2_P5gzAABfLImhzYUVdS5dem8_e", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSKaQNNd3PAfiPEcs3LEbp0v9fxopvSHU1W7GKPSgLbXL3xa07B", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcThDfIX45ZbXTTzmVHGG3EeuyGrRtjltke8JEAd7ghMQXStpIXE", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/m/080dwhx" | |
), Movie( | |
name = "We Own This City", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTcCWv2Np8ZQ43EG8D4wvPYF4P-_I7-m380JdhHpxAZBgQeUcBi", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRSPEr0U0TfhbfCX4Rie969zFYK6IV0djUMH6H4PN-iuiokyCEF", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSwgu2OCQRuNn6vnF7M727CZVA9jByDtyz8mv29sSuO5iTfTRZR", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQZgJtOvscRTuMjAt7MAEBBUhd3n_RcHDYS4MH6BG_Q4FwdGSXG", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTqa-Bd9DVQ1h68HGbsQSwGkMqdUI1s9O8LfoUFNhiYrlxOahWq", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT4rq9cldQXbnEwb0qDQiPtbLwTCikKf0PnJY-lnSPaC6a9M9QU", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRAjQtTm1A_5VMuSmOyZO_7MU8nNRJwDezXXD-k1fka5P0hW9kU", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ021ms7SUwtsKIPB2UIMdtFlM98RbyCfJYnP214ppMQt7E9tuN", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT4rq9cldQXbnEwb0qDQiPtbLwTCikKf0PnJY-lnSPaC6a9M9QU", | |
aspect = "orientation/landscape" | |
) | |
), root = "/g/11rqfy4xyp" | |
) | |
) | |
), | |
MovieCollection( | |
label = "War movies and shows", items = listOf( | |
Movie( | |
name = "DMZ", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ3ZtQwwzVFQPUIeaOvSOb1WKzzE04QcS4uDg8_JyZJilQEQby1", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSSwOuzlFp9JcgwbGLevK1AfuHCLcdvp5uhBZjwifd665aq0jsm", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRDU0zxpDpMPiVbj6Ry4TtsJIs1BapabgsP7s6WI2Yg59tLYdjP", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSjhYR1CaTHUYji0AJ7xOXzUdbVLiDhqT_7SopEZoDQR_RjROT6", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQAhZiKYs07F5lApQXZAvElDocN-B0yDk1JOuQO0aJCHxcvMQzY", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQAUEqh9Mfez2Egk9SAiNjNBuo_UWA5-aFQstFxuyEU68L5CzS1", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSjhYR1CaTHUYji0AJ7xOXzUdbVLiDhqT_7SopEZoDQR_RjROT6", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTn7ipxTiH5mP0MQHdB4KLx0tE6Zg5CZz0E9fDH5Zdrmr6qC4fh", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/g/11lh3vkbj6" | |
), Movie( | |
name = "American Sniper", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTdq92DKlLTHaw3Ojc6Fuf07UX05VHgJIB0t993j3jQDkBPMmID", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRmxzvU8_F_BvMZClm0po6br190grG__INP-hg1eVEFd6k-JoXf", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSU-TUKA8VdsuZv2dlRvhPF3T1pxkKZgdbQsIYZ4IayeE-fGIt_", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTp9G4yrjSdeXh3H43z-9dvMCGi4XRPiRjhhw4iU6f2Bn7BNwGj", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSKNdIhvbl4bJJwZ_fft9M1F9yVIzrcknw0YLlHRXqq2Dc2if45", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQL27BWddKoh5N8pu2Lwtjqk40QkMmPFBjZqu3zbUSh2hlH58F7", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT45IuaqxiNbvOWWm8ueVm1XXiyf461tTX549BL3N_e4Ox_-RXe", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ1JeW1LFRWtqyN4T_xyEt2Q4G5rs-450fw4PYK65AGIepXCFU2", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcReQZBboKaY3IC33zHld9GkzdYiE0z55jLlLpgEdLdGQj4jhbHZ", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcReQZBboKaY3IC33zHld9GkzdYiE0z55jLlLpgEdLdGQj4jhbHZ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT45IuaqxiNbvOWWm8ueVm1XXiyf461tTX549BL3N_e4Ox_-RXe", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJd11l9e8VjqEA74UGjlGzC1UY-myuA6jC7YmzSYr5UBT6doED", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsifFnuayB-4b529ubU5z0P2kSQaoLDFR13cfm0NNMa025I2R6", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTjOmAR8hoxTm0ZHj9-092AJJC33jAlbZEM6CV6c4Tjtmufiekq", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTgoK8B5XQtc_-xPUhpULB8AmAK0ZpIW0R4eika87bccE9WfzIT", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSlQE2GLAZLXf190l76pTuDJ2RHOut7EPSpXwyq-nAzXGOqnRzG", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSasHcth625NsfkJWs6jsdFnA3Crzf2A9mNmxxQ8cuCrWr9nTuy", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTp2rwhsL75YgoVVqF9nNsyaTRQuAy9bdhdGnhDIeav4b8zbdQ9", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/0t_6jkd" | |
), Movie( | |
name = "Lord of War", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRK99eoH9BeXDDnAzRUnc7isZg9Khz7pTKM5jdN3JUYy4H8MKOX", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRqN2McmemXYF500maj3ir4mM6aHgJtAHolmI-dLwERqh-yXS2b", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR2929nAbnc1c3MwFtL9SL0k1w4-Zw_NY3CU8fSN8568N7iY5My", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR8biimQ21ElDTv_d2BtUmazJ9yH3r4GjEmP6Ra32socQhUFN5-", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRVILeyJ8Li4zoc3UsJlhNLiL-FirkMmzTYhx1NEvPZtSiQf96d", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSLxREMcRiMTPEQG6_VNB31ZLRdmNTFyFImVVb4Y1RtccNWCwYI", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQbyurpVeNgqLyR4L6ejAbM2b4D0ZUckURw0f0UA2lw9qT5dt6f", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRqSuxZ8bTNJhQ7ft8cBaqwLAEeOMsCbXOlVoKPAon9U4hlOR4N", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTf0146HMoxnqEKGJ5Kgbw47MTxH5VuxSeKO5iAymIROi8ciHCs", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSLxREMcRiMTPEQG6_VNB31ZLRdmNTFyFImVVb4Y1RtccNWCwYI", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSSWTkqePVpdHF7WItUV45ax6N0s8cE-vAP7CXFNMp09i0ocDqZ", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_A5dcocqFN3hciBTEbeALwA-EeTvFenUmNMNCDI0wPTm4JzjT", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRK99eoH9BeXDDnAzRUnc7isZg9Khz7pTKM5jdN3JUYy4H8MKOX", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQdhNvTURxwskYojQD4LOdj8NPSaYOZpOYqQ3MpHlBvowcrzcVj", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCtUVXR2CehS-adtrl0mNic9__OgMZLWhs4VXMCt8XNpBvYVfd", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTASwxIey1VStXS3aaxsZX6oUsrKJiucUtUzeF1D_MJiwiKE3R3", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSUP_ltur5zKUSE8AFxHbrdPL5ZnFfE6ZWVnENiqraeaOWP7_zy", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/07twr5" | |
), Movie( | |
name = "Lone Survivor", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSMBjtSF34yLcBtjD0yJ-qbaHLhHKq8TcFchmw6ndFLecngdr9g", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSexKg01EVH5bopljH-pbrT9Op5GwebIirGO_v8QjV57fcQx-Gg", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT4Gof5Ft9XR6bfD7a_F2JNDOzqtZp_CCN_31r8oaFLcJ9Vrbnl", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQVSlGiVMz8cLvUe9EptyYkk_bYV60l6w6pg8mryI9uZvkp6smV", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQY9Y1DMHfE46Li6ToKnY09Ny17h7NHnZiGw53UDEZAMmIwAfzz", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQd639ewEcHfXCXaJu6HpHCxRQGVF-dHJlYEhJoFDgwEE3mM_nE", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRCgTYhJXCdx1BZWxHr3PpcX3Pj9XJIKzjFefTZMDZ8gvbMuFKc", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSLJPK9NPF0Wixs3ywQUgeWk9QDMXbZ8Vip60gSN48vWa-3rTCS", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSYxnnXhqexwRTyFnX92cR-8xlJ4_KfhbHqbHEu-bJ74Q27cd1e", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR5a_M_cEyrLs06yy53D4Q2Y71Sio6hVXvXmjMmL6gT6EpOZ3Iu", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcT4Gof5Ft9XR6bfD7a_F2JNDOzqtZp_CCN_31r8oaFLcJ9Vrbnl", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT8ZKytZA_zN-lUyn9whwGMlLIbQlXb7lobY3QAwpNGmROxieTU", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQUjdCuUMopYuK4PN3hT4cuzuroBPHY3fYo4-d1MDkxyK3Dexhu", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSMBjtSF34yLcBtjD0yJ-qbaHLhHKq8TcFchmw6ndFLecngdr9g", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQOe3CdhZk8vdz8IraOb0aTsG6EZos2TDo7K6acbNxQli469ubl", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQO6QgzP4hqAUtAAtGessYt3b4Ed-T7KWrw6TlfERtsQCKzdJtX", | |
aspect = "orientation/vod_art_16x9" | |
) | |
), root = "/m/052pswp" | |
), Movie( | |
name = "Generation Kill", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQhypkSxoZOJfyUGtg5jPSGr2TgLMX6F6W41mD6u8R9NSa35lRq", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTi2hzr4_bcG7Tuw5mxqteUUN9jnkUP5vuqdDjd0gA4Rdqbbkqf", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT4hgnPvALzcBazBctoZPZAqoEeVgNBWQkocEljAusy9KmeR7lq", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFIRV-Nw8KurCsWBuZ0o333f3t4wgaFx3f5mUf-hJvR0JBb1uN", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSYalKSl7YeU2hxj38DY62ORvaU349s3W3KlCtZG23zUISAo74J", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTMFZXvjn3Yif_UzMI_pPekaXXD5zEVHNIjM6UeOyKuQ-DgNfBA", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2UmfU6SXcktKKB1NjCpQEkRJ6wSoO_eIJcS9ZrfOgAyUCHV5r", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2UmfU6SXcktKKB1NjCpQEkRJ6wSoO_eIJcS9ZrfOgAyUCHV5r", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2UmfU6SXcktKKB1NjCpQEkRJ6wSoO_eIJcS9ZrfOgAyUCHV5r", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/03cs4y4" | |
), Movie( | |
name = "Dunkirk", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRJGUB7klgRVfqKGQOCJSb8BdX40wXz1EryB71b-JrcBmIJoVMQ", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSNOUfn04UY_C2XpIuJUiAIURqIT5KWvGnji4Q4DnoiYipBzQt3", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS64DfeP0SL2xat-d45GIM8Q4CLKXcZMXO2Mhh9co-e6Hg6f4g1", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSegmFflrKXHtrSbS-g2EZMk6dG2XZ0393-HHg-byyLQFQWHBJJ", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1EeuSR4dehl1jRWwxgVRSJRRMbFey79xN8ldzakVwpEyB5Zf8", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR7gNMqiKPG_lYJQzBAMKlDii0mLBFCdsyjb-rZspdZE3CZgBUk", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTETBKeg2iE01VJj-CSuh0UX69J5zbDbYjw1QQ9iYLnT60_oeC-", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSdznWFT7QBlPCGir9Zhnt_gY6D9YFNXDPozXMncnZLJvkJqFC_", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQadKbFaefVILIRo_Nbn-z5SI-r6iOeFZjxmEVoBFd_5_OSajdA", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTumfnoHm_1CvCCAtBmxML-YCnnpr-mK7AmzCO9fEEG67HsZ90o", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRjhi1DMB4Mqx_QZq8WKeoVDZFXQkNVQlRRNsE0NZz0CsJ66dr-", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQsViQkheYbbwXxvyH423utk4CuPAn2hHngdGyoxvTh_r1SVqm-", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR7gNMqiKPG_lYJQzBAMKlDii0mLBFCdsyjb-rZspdZE3CZgBUk", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS-4lDuD94p_kh8dRxVUv3gqahwKW8n0sFNyaDSYGWpGKMJvd-M", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRjhi1DMB4Mqx_QZq8WKeoVDZFXQkNVQlRRNsE0NZz0CsJ66dr-", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQfgRfPGys3ZAZf7p0-m6vlhgk0zuU16PR5YLZz2sK5Q7CTHT3N", | |
aspect = "orientation/banner_2x1" | |
) | |
), root = "/g/11bxfwfy23" | |
), Movie( | |
name = "Act of Valor", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT4krgx56AabG9lACEwCkroCRwrKHWzRyG1FI0qsgXkNMcEW3px", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ_214ZyjM7g7JMfunvSx3eCM4vwpjVfvQBT8S0Gc-bmn-UkrMt", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT4krgx56AabG9lACEwCkroCRwrKHWzRyG1FI0qsgXkNMcEW3px", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRtfVUnzsMaUUFT9eyOLWBw3mpoSnfuZPDrB7DO2JpIr3OX1Sd4", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ6lp0pxW9RigagS7cOHVq9IZPi_3VdX790EOJtbFFBns2rXGPH", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSippb5bTsG07ymHxfrDJsnKb-OSTr_xAsC2ZoM8SJcbQK5-Y8D", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRw6QuONECfCMMmEUNJd4ByGgmxgiCwEl4u7v40M3XERrwwfaVK", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT432QmGl326zi4olwlqYwOpvuU2RLVdFzx73-ltJm81iVGQ1ZD", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRuKL538K8Dxz3tDM-3_z_V9IZ95A3t3LQ68UHKI8b6Y1kAowBZ", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTz_DyyATmPLoaf-fwN4N0wT02UTyPJtvFvdUKo0JKJXHLqgKjL", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSslg4rpoKCanBEhA3jW4w7nGwA2JWwdvNF6jyEn1KsVM9zkGVR", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSOl39W3ELYBRBDjheAbbxghvqTl1vLmwqAAbsHsV92QUPzDrCw", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSBvr3gtzo6dLiO5HuIAE87SrcJfnNYgYjChBf_r392vS-TRYg_", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTAfZZjzqjQKgROaJTrbsrGnt4gIMSLuW5wKvz3S7yjCFRbOINf", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTGtYQeW3tdZZVJRS-D36UhVBEzDx1ymh1MsPz5-bmTr0MP6fLk", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTPl97_HOA7o_kTWiiKi993MgpCYSXsR1JIpWdT-58DFuxzP-P8", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSippb5bTsG07ymHxfrDJsnKb-OSTr_xAsC2ZoM8SJcbQK5-Y8D", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0gwrh1q" | |
), Movie( | |
name = "Atonement", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQtIBkpBwgyO-xc6oE5uQaKE1shceJL6-fhJBETjd119zfO3m8u", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTgl0qy0WMb6gG0CrR7MUnNJDarOeud3qwuV12GeA4Ys_61zDKS", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSyZX8lb5ZUKnQOSnztiAIY_rZIAG3EVb_0U7Moyey5Z3q3dl5b", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTAUJ_kmIkeQQ-QgpQ2WRuTOgqWYNQe6JNb592aTeYGH07FLxkM", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRormonth7FoDapfpnC1KWGudafymdr29oVeOQC5jLDtT7fxl3E", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSffnN0qNIdWvyCI2WPGmcPgWXpEhZZe4l2F-Jexmn9yF5YSicX", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQb6aLzo_K0pzXgU_K5lb9g44X80vfV8iWldHSc5p3rkVKuLHNM", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTpUXoGM86D9uZMtVj07k0UtwLP1LK3i6WUXMnT861584NnvqSW", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR00ztX-SRGHPM8COa28cN8a9QMFQf3gePqLfRSuS5c6MnKCWEs", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTgl0qy0WMb6gG0CrR7MUnNJDarOeud3qwuV12GeA4Ys_61zDKS", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTpUXoGM86D9uZMtVj07k0UtwLP1LK3i6WUXMnT861584NnvqSW", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQRa9KqiBO6zJMVeRm8NMxnLeyv55sZiluPBnu4B7JucCX6BF0M", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRZp38s95EKhj6ou8--ljOQNiriYhIHGbuwXXSXGMzKCsxl2pz5", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRkw2xvQNdBQVWo_doBGT5-Q-HuE1kJhjjR-GTY1uBScF72byej", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTmHTKWfIMJuHV5YfvafsXPRn3idlQpsGbRKM0_5KjOFms4hdoW", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/m/0ctb4g" | |
), Movie( | |
name = "When Trumpets Fade", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTLUQMdSEcc4zEMfZlj2W4FkLNZ3LajaREmiLiDXjey4PByqAbX", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTJnAgF3yaJEn8eto1On7qwZosXq32ftU2bmm1CfpZ8M07f8AbU", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQW2vBm52FM6uPfnokBnq3fOs0n8EucpFAKhimKZfWNNxFTtYpa", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQp-4CMA9jI6KcWkr5FijwdH6AG8AvqEyZTqJdVbMHR5MO_wjhc", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQgRgg-9-Tjww280yN55fgq7wQgs1xucF6uagUXIwJSXjQ32kDe", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSF_0-8oVQjjpvu00GHjL6s4skz1r9ldW4Va3NULwt_kmQhu4IF", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ128aAqhc2j5SZdvv-yNBkn20jBM6cc-PE3douGd9M9jLrRg2t", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSjWZu87dQVE5ufKsfNgjhxLkvcA2Xs8oodAZj8i3CQvSjbxA37", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRa6AtOkEj40boNtfhRBle36zsTUsAnl8jP_6vAvBo6bUKw5l7N", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSACga3Yh4EBsG7s2BwrMZKFs472zwRmVBMnhlSa2ho6SZYvXAL", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQkL_usLUve9DCM9ClT5DJf4p45zordIyMkXeO2r30L8RWBRqNx", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSF_0-8oVQjjpvu00GHjL6s4skz1r9ldW4Va3NULwt_kmQhu4IF", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQAvdROlnzIPrmLx1hMOOGaFxWxkFt1Rm3za0iwFRY1Ha3JgdLX", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQZc1V58CpRZtncp8s6Z8__u9SlyczCX57rpPwr_qmqfbbsSnl8", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQlCjH5SabXb5K6F503RWlrl092sp8THVoWAYtPF8fJS5byKoDd", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSjWZu87dQVE5ufKsfNgjhxLkvcA2Xs8oodAZj8i3CQvSjbxA37", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/07m10j" | |
), Movie( | |
name = "Greyhound", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRqxIHLGIYz46jxQuvMNPOMMj8OpSSm8RvCRHKgsspUIt4PiwHD", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWQoujcoiPYBSnu02rRk4y9-evq1VecwQyZ7zt06cBNTkhgWGm", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWQoujcoiPYBSnu02rRk4y9-evq1VecwQyZ7zt06cBNTkhgWGm", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSpaj44IiaDu_eiD8fsstbRZT8FcFF9qnRX6WfW7XmaPtxjxTWn", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSqwr6RD3GqAYBaJmuF4oW-8QCVA76usXVROseKHVX1HOg5NgVg", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQhOwWBqQf6tTJaZx5e6trRTDQ63qT-ZHAyERnq2321XAa6PuIb", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSx89qKUgJoYU5IS694aAq8ysK1doPdlAT0FMmUhSKL2VUjKrgo", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRP_Zz1ItXursMk8pYKoH3qG74-oV6K5zAIdQ1iJG-ML_gScjCy", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTNOSK_GqOQ35xd2x6dxk4JpCkyhJvwtKFNI8zhGeRUi8AYZJJ2", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTxmlz4g58WrF_Dkzois1e0hkW98M8NCzQkCxXzazJgknF4eaxA", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/g/11ggr7rt2p" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Thrillers", items = listOf( | |
Movie( | |
name = "Kimi", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTDH0WJIk2pb-hnc4MGqOiTw8reYv3izMgarAiqdX0IWso4yNMH", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT6DyQELn0PFiMp3efF6cLxnsj6lUJKAMSLN1UyEBit1jgDQaM7", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTzLzEhtchTu8tSusEhNy3-fxRQVGk1_WG2qqkqyysFRmopAjv3", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4ktHi4of49XPtt3iCIMDEfmAk4y14jJB75kJaX6yKKXyH2Riv", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT694Fm8lSUgX3q_0HM24Kko-Q2lND-RgrmJKvnkH6xTTK2FUZ8", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQVrlVybKGQq38PwPLWn9eyYfmRQPm27QX1MrZzPNlWBdfc-XB3", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRMafZ-18hs_JFCvfIHHRtihSOUuZMZOQHajrZGGI5OB7b7atRU", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRGkjpyqCniVA2pS7crkQB_eyqQrFybpPOgDvRUk9o7xkXjRdmd", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS3MN8c7zrFIBgu2kfLXyMP6LZNtxv0qi8X-5UxHCBVSQMBxEQp", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR4PiajBd2m47Vad2bntxj5CO3SX3wKUW_8l-hHyxGpPOWhZtOJ", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRfLmD-WLj1Qb5L66ZjRqdaLFKdJ1pNWM2nFsqSWPQmZyPV54dg", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRxVAw7qhZjS5EIHtzqOMGW5zQotmDx0IDr8zDF8Z87RRHKuSeb", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSuYJF5LBBF-bKz_kHkqh-PEkiZ2NNJoW6MgCIU2TbZ3Gavg6LP", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTljpGOZ79z66GuELgozSHxysl_O0d3XV8o-FYMITIpRJaTsUDy", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS3MN8c7zrFIBgu2kfLXyMP6LZNtxv0qi8X-5UxHCBVSQMBxEQp", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRs-_g9qOs7RhwglKZB7ox3CuGznIUER9Ygw0P_woqm32M2sZfZ", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/g/11r7586qmj" | |
), Movie( | |
name = "Profile", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQv48P1rDokGFehpGwk0wPO5svbao5UuuASu-b67hx5tgSWSoMJ", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRuVSOYzg_63sEz0m1g2LF_hf1Xza4IR0W6ZmUIgFxDvEzvH8Dd", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTMIPXl8W_UnuKOV2yLaILNaKKZeO5qxM4k9lZDrioqDPwWniJ3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ1SCN5GqwUpJPTXbbLLSgvbR-8UwtXz2Lz69GpbkiR0tGFcMIr", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQOiG5l88XhrBl6o0sARmtteYYp2pgMijJWnPftp9uD7xdCcdGW", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTUl84e7WOwdTlua69ELBQIUkHBC9Acmyp_9ltjeDUeRL3Okc13", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRZ_aVgs0ABjl23E1ctzDDMl98JVD_jUbom8JlhoPs8y6HGAorW", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSCXDNQJVyYXQoQMJa5ZKxBNXXJ44sRROZ2I_0rmChTuhrzqzYg", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTGqaTo0mIvXXKvH1dY8SN-3K7LG9vx0WZpIoI0RqHUU81OI98l", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRJdVraCDYm9lSpVpSQyIej_HcYN7fGaTO1MzpMqwOJ2CSXR0sW", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTrYyJ-wh5d9gliOklwghQ8F2pOZ4yWTh8VV00sdiZ_W2s-DbW1", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRr4UE7_6yqjZcA0MMEfx8mgg7V6oVVupbfuY6_F5-znYsSpygh", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQKh3RKLKVB5nnnLgsAVPk22LHS5hZAIZHGvEjKnzmJLqda0HJg", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRr4UE7_6yqjZcA0MMEfx8mgg7V6oVVupbfuY6_F5-znYsSpygh", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRSr07rKGXEjl25LMS4r0vE0cJsarlq_a0W92xfLQ6lDhFCGeLM", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/g/11f3f1n964" | |
), Movie( | |
name = "The Captive", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRC0bQ_yAD6VZz43pcekpmZOoupkylfijtykVfJO3EFLS7QfZvk", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQoAwLABSeJvGRSaYPfi59QBXcITADR60ncxi2vY3au0aN39mML", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSX1BT7GQGXukGm78oKaFZBTtQklX8xuh-kr3IQjZDzmclLkEU_", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQfTD8vJHJEgl0yIC0XKh65tw6_wZbgCEhk_-Sw1WucfbOj7Ncq", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRWVCUtZA_jZzHR_trKnVPSiBVJQW_5_XHowrlRt_y6CWfnOnqK", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcToHUDiOlB-f6XUys30pC51gc6ySzUhl-0k0KojYrLs-FvxbLTi", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQazY-zfVnV84APiJkhAVvoojwbJ9r5s43hBSBMOofMK09UNHp8", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSX1BT7GQGXukGm78oKaFZBTtQklX8xuh-kr3IQjZDzmclLkEU_", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSqPtrld3b4Xy2A0BOYuFz8is76-mjv0V1JDvgaF_n_9r0uCx3x", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTqC5h0D_FLpEVr3A05mOrIrLUllcLung3Dw1_hOFaRnadm009c", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSqPtrld3b4Xy2A0BOYuFz8is76-mjv0V1JDvgaF_n_9r0uCx3x", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS1R-zMZodU_HAi7iOx1yIslxqKIPCCScGCLq5kHX8S5WWRu31D", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ6_dV29wKvUo0xjBP2fL3oAapwIMzxRgfTJARgyow45wvW7Xf5", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSsSxKMkqUrGpCN8mtWwAkAk-qXMZEz_QqF27fLO-t1yl0wZOxb", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ8I0MY3GoWqxayPfWSu81Ac2e5bBTc8N7sBBbHNuEIg9cwy43_", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQjuaht2RaRzriuGjPdqPkPACzoh9GsmC_CbnqRlrAeBHFIbJzd", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSx6r8eKuarSjPkC7xDBV3xD7pfwI0IQuOxjab4xVoYXgfTT-gj", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTN5SV6ClBhJkFJJRWiDi9WJ_FV61aCOEr-B9kaSU-G8nSWVcss", | |
aspect = "orientation/poster_art_2x3" | |
) | |
), root = "/m/0w33_v_" | |
), Movie( | |
name = "Enemy", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQplThF2Qf8dS4p3ojEaqeArRXY9gv91fyRdgyCKRLYdjXAZE6z", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQdyypjPhTM99yqD7dh7lQcR_zX2rqq6-9SpdZemhI6zH17X0qX", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ0u_AKuDs2z9ZC41EkEora6TPiBwmrvE6ePQxk_PGwXgkXcZ2K", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRp5agZLhaxnyawmJpFcsrzmCLSz1vCgGF1HXx75Xsnij1O_uq2", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSfE0dWPGwG5dj461g-w059MPDFNE6wAlcMUwmbqBun7_Q0b_FL", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSGdA9dq4vKo2DuVxQyeSgRIvV_4vmMr6igIbDhYE36xHQF1Khc", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQalIgQatzQsIovyNrtQ_WD7aPLifhTl9slbE3FqMbDU75MdP_S", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRkTWJ4g3M1agUpS-POO-RHaYew3FTJKLH92KwRgUQvl2b9MS7p", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRia0tIOfDM1AOsQUVDVgeG_BKPu8LSUb99S4QpiD03HuRhVpw8", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTluL221BNf8LLPxpaD6uEvaGDFqhXhG8KpBcXDu1Z5l_4AtwCU", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSGdA9dq4vKo2DuVxQyeSgRIvV_4vmMr6igIbDhYE36xHQF1Khc", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSZdwCgHfp7MekWeBc7wJoOm_EtwFGfEAiG4jxLxBjKFR3Jj2X2", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRKYXNoAGOrSfjur32wsMt9RSHmVtzAyETialXsYEFYI_57QniD", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTluL221BNf8LLPxpaD6uEvaGDFqhXhG8KpBcXDu1Z5l_4AtwCU", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTZo6lxESzzYByDLSh4bQHlqJvZeRd_tfTUpF6wc3dUqKulpHIW", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQrRDCZFg6yKa-cpThIUhg0Nr2ZEr0c2pIJzAvLT_PuQwCCcaKI", | |
aspect = "orientation/banner_2x1" | |
) | |
), root = "/m/0rytl2m" | |
), Movie( | |
name = "Source Code", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQwsbYoVhytrZUXYhtMAJ1ml5skcZ3G2-jRltzaAC7-Bo3asE59", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRfOsThbHUSOGIGKtpWmZMuinCu0T6lUORlN4KWUXs1xstdD4OR", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRUbynPraq2FtM661bqBEhEoL97FYbRrQFNABWDPUABjUyC919_", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRrLXhEvootpTVwEjMNw-fWRCiq3A-sMaQ1J6cLrLs5VQcE5R5b", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSWNGbL8pOnxBvPM0ovkvatIcpsNlL5R0YqJehoaDfLmwsfzbsM", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRIxeiAljBc0t1TycCR_X4TiAm5kl8qpdLoZySO_-FEtW0S1DtX", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShDdWLfWpxDpFaeOQclsEz9_UhBt401p4DJnZsq4XK78ed8TCe", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRGpbi1-gFwVErVFGSeKX9L5tcSabhXQQoslk6JnigcEO1wqXqe", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ-2ryGpLpp4k2uHnFBg-ZffVZ2WaIWRs_9tUxjcmtCWzpkFnFb", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS7NWPEHnZCHVIVsdS2DHrxRIXldg5DKzeeuXvnrMn29LEPPmb8", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR7Hq9-tK8j5UgJOC9pOXEBnCvbNzv4SPfDGFV5JJBy8I2iMK-j", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQU6XVI6cxMHwDylS2n7_8_-RNJGVH0GJAWsk1WKKdqmVQ_88mi", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShDdWLfWpxDpFaeOQclsEz9_UhBt401p4DJnZsq4XK78ed8TCe", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcShDdWLfWpxDpFaeOQclsEz9_UhBt401p4DJnZsq4XK78ed8TCe", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcThfb0YmAhczkJKQkc2igEaMMbpqNbt8ZjPjsfR7YRsKqHi8oy9", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT-fERYsaVBShX9RdO4dNxPYAZud9mli19-51Ha30h8twqxiscZ", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRDiubXiyAmg7ebWKk6MbRvUBuYWxUBXEzVtAcF7i93USKA-yaN", | |
aspect = "orientation/banner_16x9" | |
) | |
), root = "/m/0b6lqyd" | |
), Movie( | |
name = "The Happening", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcScDFhM5pghL7EXyRZAKqDmwNGmwSplDQLJc-p-YQPLkRtnbfFw", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSqCBZ8L1UNUlYMOQRf65hReJDBQKguV-EGftEhN2zFBSZupd0N", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ8CsI4O095zHXR4oVFHw6lpW6BJyMirbP7LrMtKDUnScTPuAed", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRlkGHYARQlnpeLiUsOz1Sw1xZuQyJDQCvAAeSytC66xxZyyf52", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTFQ46RpCCkYcsHDfMugo8cVCkd6BbiA88C5kTP-K7GjYdNkmFl", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCQzINlosKFHlCcA_RQ2KofqGlF2MxxyybiOqUAmNl8QdPN_S1", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTJSnEYADwBsGbDB_UrjxjUCmuXWMnzAFQLybXsD6C6JxSImrb7", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSywgR28QlO8y6KWAcgZ2B2p9qPB8N0aa2OaHG6akMJdXqhS9S8", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ8CsI4O095zHXR4oVFHw6lpW6BJyMirbP7LrMtKDUnScTPuAed", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRF2yMGjgCt4xdcXkQvIXTyitSEj2z35h5BO7Ix9ih6jmbFVviZ", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSAU2k3opYOW1roRYvc-Roy4c1QdFb1y99Vz6D6STXKpFoCAyA0", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcThzewzEwPjS1RKBoPWewUDjZmMG7mydMxN-31ij-bmg3RRydh1", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRK43EqIDxBjtgxY_zxnwhxrGcbRI0F9Z210vQGugAgzErMDw36", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRLee662YeWBaGvLOqgl95i5LH2BSDlUiHDtoSVWTz8pwerB6_5", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSqCBZ8L1UNUlYMOQRf65hReJDBQKguV-EGftEhN2zFBSZupd0N", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/02pxmgz" | |
), Movie( | |
name = "The Flight Attendant", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQuwSvJZloiKBUCFDDlmArOBsfce5A9kIMAd8P-Xhuhujr8aOns", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQB_MGlzxKKodSwxzf56yEquV9ipMxseFTmaf1BqxB0vuyH4-kU", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcR8qYJjsTJkkRTlcxpTzgvqZXkpSs9jHZMuo1n1CpXlkvWJjcsr", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-Jk42vu76_TRCzuyToosUboiqhv2paZT-07b9Mdcg7B2Bo0Sq", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT087JLT5LXoL3IBDX5yi3eFl7x9wOGSrGqPk_3L19JDI-nK6eT", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRl94b85Jij3_kr3Dqbj4L5dZzONoix-xdcwe5tfOWxVs-jKx3J", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSQnRKm7hzEoPIdnHwI-_vqDzCGUx5OWsnFZKOljbYa3rx_diGL", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR3mic8Sjzbxh4oEhH2f2kiAtI0OWhetiaHzhhKKwYPqaA8Fh9S", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTf4oou40gMBdH1ZTWm6E_2A6qpLSuNcYy4ORlTzBD_4IZhDSVx", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSoBjHp0q8PXEoMxL0550jd_u0I4nxkxpULMOhlV1kYkB-gszuI", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTyOezN0FPMW-9TuymQLchgRHcqiwkMo-tsIiQ0WX_emFAUPp1e", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTxYZOdzahO0UytacQ8f1eP_BmpiUzlAGgWW_xq3guHKcOqbxcv", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQaQD9lU9mVwdhq7MtKaK3JpzVFIopf0egKSnKlGaKl-8ETX4eG", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR-Jk42vu76_TRCzuyToosUboiqhv2paZT-07b9Mdcg7B2Bo0Sq", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRsxiipKkWjeS540xAp8TRGa5GGs99LoMDjkq0mGoZMPO0GybKH", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQwZnyU68xODrTFZFcqIZ-lGq-gcS3y0FTcG396VNfZavpI3NoF", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSoBjHp0q8PXEoMxL0550jd_u0I4nxkxpULMOhlV1kYkB-gszuI", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/g/11ghrc37kk" | |
), Movie( | |
name = "Limitless", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRGc57UwdAn9KSZWyXf8YDibNx7nakIRNsJDILbQ0m2aub1-rSi", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSfp1JeoXloVr-iG0HqBw7jmKZf-jw3Hl5H_GyXX0uqlSdqpzPO", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTrGMml3YhNwQtAQUakWSUkSYYwulVGj_vq91N2Rr1ZMGcCfUNQ", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRxW3abnLHN8RCTwLH2--E36lWKInakUqH7-YCnC_7fcvDkZWyN", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ5nRNOHF0KzTcxKyzHPyTn17TTXlUYEifPW_ZI_ecftOAUoFT1", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQBiGKxhV94yggl5G1T0lfnTtmgRS-Ix5gIKBxQNBp-XgIED6qn", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSS0wtyBZ7bsEAi9jPgs-CFB4OS5WDfHkxZQ3-klepJK61zhHr3", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTT0ESHPekbSEEw4XbHiszMhAxdrJvcPe_jGMoSOzEzlmakD1XZ", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTqlyE_ukZ2oOxPvVoY_pjMZsKD1UfkeQiqp80e3I4LlPavbmHR", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTiNMKr6OEov_SJMqCjrbe-w4CDuSSI-nIQAChw5bMVOhr4XE1t", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQBiGKxhV94yggl5G1T0lfnTtmgRS-Ix5gIKBxQNBp-XgIED6qn", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQEGJc08qk81l2ck1D1Xi8f206D5F7dgYFJvPNS83cFaVno4GQK", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRwKoteUZG9plig28ZDxIqg6LvbcfT7RpEaj101qe-FKIeRuAvP", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRGc57UwdAn9KSZWyXf8YDibNx7nakIRNsJDILbQ0m2aub1-rSi", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSefmllu4ErDeeO6dacd5gnTU-ynAuTWo8Vxy45qna6kfnonqcq", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/m/0by17xn" | |
), Movie( | |
name = "Reminiscence", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTvKqGCuur1P1WMAIVNev-XqTqeyaxQd6hs0K9ORV5-GHwdEpNC", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSs63U3_R164QK2vI1bWIEIsQE5OJLAcK4yo47pKIq58_nfvwq1", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcReI0R7b35RA8NudxF3FdCwiZSIMj4IjIHIjch6EgWtlWiILmYX", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcShEvDzyhk9oE_ROSytkjBfljCBJ-dvvOd5oJ7VEgb7SIgTeAeM", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCjB_I9vaAL_ZpyWs8BZ0wOtYyqNishUAWRoFlsJlqpj7ujVXn", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTosEPpGQjB7s-jyISOyeDa5bqnhLW9CnFqy8F4Ck734p31L1_Q", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQyzRvbK1zVx8PWhitti6lUIYrlo3DDEZxpjnO1giTp7Zjn9e-E", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTfOTAwTsuKxf16Oo32_BH8KANIjLa5Vfkhc0oJ4jr4wnY11Hgc", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRPLAabI_Ztva3m4aFqOfBtfvzayxlNwlyYunx6ZHzgOwcbAsTS", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQPOyB_zTDEeIhJWq5PnVm36zTNSHwDe5qSoYWwQAYABf2AjbFW", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSvKgVCYC0gxgECvfmU4sAYQF4pT9QNr76fKU2Iyt8HZb_gvIXe", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRCjB_I9vaAL_ZpyWs8BZ0wOtYyqNishUAWRoFlsJlqpj7ujVXn", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRtf4GSyadeFw6MXBcGs5CdbRe65HIZ55Ktk-CI2quA-VwJNsqj", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR5SvYn6hLVZjVxj0vYJqj5Ot2Ba5vw-rArjnnmHBVjk6T42GYQ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSLzAwVJpqjN3bmcJhtuJfDMf-3gUa7ulD7UGAZzxJvxQ1S3GX8", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/g/11fp53rdh1" | |
), Movie( | |
name = "No Sudden Move", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTingvW7IqF6WIW7XQgwgddYGFTXJbDCDrCwOmNJH29PyBXf-dv", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQKhKM42R1b2Q4gR5SjKtli2BQhoFQBLP34HwWgLnT1L2wIIr8_", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR1GvSpqIHV0BAasVEZTRg2rbqortZpjv2GIw_f_cISQJOe0CDP", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTx4u9NTh1WI_ZIo5vdIAyarZsS1y5DkQry2E3Iho4EQsaOwQAc", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSGOgr4mx1ZPPGeYZaqzts9aCmlvLKx9jqdv_1zNrmyZu9otvEt", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRDt2f8Yqthw1FibpwTRlUU_xvKEwFqNswkIl4PHmPM-UOKEGgf", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQWsWLrGHtm72B2cosBCb4EE6GXw-dq1iShISDwFtWa2OYq-LqB", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR9hxfS1hKdp38-mj8G1QetPmZ7N_wOSTzIDbj0rrZY1XZHqVKd", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR_1LOM5koQUePjTZovM6gk7Dk966qYHBp77T_q0u-TDBTSkpea", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkaUta3tZgnXnehBcRfmw85lp8Ed8ymaZbUvCkcLYKM2Ilhjiu", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR2Jwqbjiw236lJZB-OiHZ-iiGpgiFE5KiaTbB14nGM5lR41rdl", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRAsMfPiNqMzzyokCQ8JRYQJrMoTPIuTgBn2ckmUxXMLHM22bBf", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ0ThCf2uFGAopv2S48VGhrTUFHMArSj_BSm9zU2_H2seH-SHwA", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR9hxfS1hKdp38-mj8G1QetPmZ7N_wOSTzIDbj0rrZY1XZHqVKd", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTC5x8cGjgmqWEyv8y-igviwj5tQOmcODNT92W6qwlQ-oOO3Nxi", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1DnB29nRaKJobl8l_IJTwqpCV0VkG6E892kzcBqdZW5qLhMO9", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/g/11kvrb2lgt" | |
) | |
) | |
), | |
MovieCollection( | |
label = "Romantic movies and shows", items = listOf( | |
Movie( | |
name = "The Switch", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRaizgmTAju_YxR5PE1Qm-Nyky145klhbWXiRb2OOYC6eizyPCO", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR4pVutYvRcuEooWGm28MVsYP29lgQxTAC24P2LazFe9CzflDbv", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQl1jlmfGWXIKh7JdOHbKm1Sx7NfIeW1S50s9qiom2gVToFnJ_c", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTVaYr137lTxacwmsA25oSo50vSpC4YgMfcCxHnBvos0vqW0VQ3", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQVBt-3QEM2tKGJfFK6WdUFnR8BCiP9OHX-VW3YhjzYq1alL-nn", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRsls8cck6SxyXrgGBuOf3OJODg4hBcY5viKW2356V6OafUgESu", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQqMT7IDgLFUXHQQ9OEU91UzafH3t5g91eheMDZuqZ30O8cMSln", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQqMT7IDgLFUXHQQ9OEU91UzafH3t5g91eheMDZuqZ30O8cMSln", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQd7lTXVRC53EYUxHmfxRKkGfIxTkkE766FGnGUitE-aQvo7Zdl", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQFdPZEhJSq3T1XE6rHHswl8sRBycAIwRe7HWN-RNznGwf0kOvM", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQd7lTXVRC53EYUxHmfxRKkGfIxTkkE766FGnGUitE-aQvo7Zdl", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSk0t3r5OLo70euZIlLvtH0kk4Qsv_VQl5Zy2GyDbp-01k84kA7", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS_RQb3H_VfGcZhhzO7KRCM_uTWsvTK4Gkn92ORCygZa736EVgL", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS3T-B-77qfAd2t9V_2EZlwNzLaFSt7-Y3AzPy1zC3e_mMY3szL", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRSP09z3YGOR2-OlzIJ-o4yFp17awj4PWNmB8gaOOklAxAV6cWi", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT7iH5h88cvAIuB2AGQxl1kv4g4Acaaw1f7iGWyBnvbuGk0j2kp", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRlUMKfYKJjXWXv8rDRK_oVCsKXCBG9p4KJ98-cSj6fonyq9pwS", | |
aspect = "orientation/vod_art_2x3" | |
) | |
), root = "/m/05h4qj4" | |
), Movie( | |
name = "All My Life", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQMFIIQ0EG6reIRSM_SRFkCGjV53VbBawyCCekx_1h0WSdwwCM-", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTxph5JEt6m2ZvsOw3dZQi1s9WJnpm2vVtTQZlM-KLpZCLF0_w1", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT-_Pw6rvROsEZIjGpp0ucSJp-4qDwH5-rg5_yuO5TLIGd7lljE", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR8ir1IEKvS209FnRGRgR03nFF-35NfarEBqFXeceRcoN6qyajB", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR1vVr7rXhgpbNzIuV_oFbkrETadZRtpGnSQv9FKeRsyjNFBffK", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQmJ4_NBfOpADz589uq326X9feeROVbX8NeeXtzcMHaK-IyU1sB", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSv6dloRDS1co5c8ppx_68kSPKCWO0hw-zLHrPwK_QhjF8tfWPs", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRIY4qv9_kMH9RUd3wkRQ7ZTc7fwEodhMvn0EY4KBo8EHYgMWs4", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSrLiDToYqpZ9kecA34kQBoxZmjdfLiGyLDQCB9Y9cJ3aNG3nlA", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSGzKYkOqaqYDnmbdMcObjydmMo4df03WVLIoWRh2xzXBTVEFX5", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ4HdKQNd_BEAkGU_1wgSj3zECnZg89I7SD1LR8gmMuER-Go16W", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRIY4qv9_kMH9RUd3wkRQ7ZTc7fwEodhMvn0EY4KBo8EHYgMWs4", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQj6e2WjEu4hehSglmqLocJW0AxLj-upPNw8lC9wSSnZQYMylPH", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTgS-uKPP1QXRN3e9zkMbvXi19eyn3K3Kh8aN0LBAHwkA6vdh_c", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSgVZYGeuQ9a-lGWwZEndm9i0uMmbBSR7jWGCoidNuV3Rumd5hP", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSqkKdaGUFRdUy1m3YkfggYHaoX8f-TMKUtlJAvQeT114JQzWur", | |
aspect = "orientation/banner_4x3" | |
) | |
), root = "/g/11h8brzt68" | |
), Movie( | |
name = "My Big Fat Greek Wedding 2", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcScF9hpq2Y6OP5CJ1I2EA2wp-jaIZe84A-LHVYPER4qIeL-6IbU", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ3EnA8WAB1_D_OeMH5ixRXylRRBbehhAr_pPOArAS0p9MrGSoM", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRd1br1L32XBmOySXElRtUHvUQUqnhOSvH5tUYXR-WpmFdFV-G-", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRZI7bpv58Y-q2vBX_vER3TOgu2tN68TfK0kfMwDahjbRtG_oPI", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRZI7bpv58Y-q2vBX_vER3TOgu2tN68TfK0kfMwDahjbRtG_oPI", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRd1br1L32XBmOySXElRtUHvUQUqnhOSvH5tUYXR-WpmFdFV-G-", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQY7UJf9wAT4DGuZ33wbU1CezGl9eTCiCoP2CrCMZR5XYgNCh82", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSDmFcf70m1VJ88fJ5zB72SP1catZPb1RvyoFAkMpbrWUnFnper", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTNvK3jTBxth1kKIWW7rpWS-zimrqG8gpT0W_H9R2ew1lkcp6yI", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSi6uFKB-MnnJ17jE_8x6we0vx5MmN5H5WQSYccRgCSU_ydVcnu", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQJb-PWrkO6D5kOc5pfmM0yHE9OId9wCT36VDC0EBq6TA_NAWUj", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcS0QCU4ThFLooMM9hqomOH7FfXm43uCPokzbd_t26Vg5cBvQh08", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRzkyprbotPw9gcwp-NswKovm_F75R2vzKg8kBk6-QjvTSDWOIH", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSfXgwn2bZWZBH06wthy_R-khvSCLptgpHm-S27jtFSdWipgGpw", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQDazTdTo9TQ_pBsyv6OklPFFxTg9z1KeB2zIEFSdAsyVrOT5RR", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSd5JxdGdeO5oUQKvy6tQd8t0KV5Nb7DpYQMnR5tWmL-D7SBov5", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQNFRoWTSn_z-rc3ma6iqpxPWR0uXAyGPB-yNuYVHvBpNUhOfub", | |
aspect = "orientation/vod_art_1x1" | |
) | |
), root = "/m/0139_bjm" | |
), Movie( | |
name = "She's All That", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR-8DS0N6DKIqgZDvm_2TEOiQzAJLrk4qF6a-p6w8ad7_oSfkXo", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcS2_o4qUMg9vkcc9iqHcgz3Da4e5zrimn_dknlHbwAVry_ygW_T", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTE9fdeFR7LLG_gv5msetAtc01jkEs4kYk4hJIWejJAx4PVs3vD", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRMkiweIavHG2vAxMkrA-WIN89RaubJcf_2EZjrjmI7xbDMCUZj", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRyQK7rTKV0-Mo-RLpzFpQtvnsuRS1sfHzQBIbxQ8buiII9wpig", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTiQ-Xgj855FBNRztA-SRdfucmLQnuV2i7TDDYSTfhYDbEBaWW9", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRtRstK4EeCatH1l_hcCpGVVKKcoT0fVAo3etVjtPLrXsRzQtbo", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRxNL0PLDjvWIZVZ52DU754HNwdclUyMwC1kkzVWjftohIV0qKw", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT2pw11iOta_KmH9OeAbe1sEpnSzBNOKs0UfVSnP-1fZC8vwekK", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTSDiBiDA-G_AneANi1beUpi1654vBE0x4hoem2lAskCZ_zgbUt", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQOA2R5rxGiUpHMQxrT8jCl-qqRB_0n_GYXzKn0PLCV3JhCcwC-", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTE9fdeFR7LLG_gv5msetAtc01jkEs4kYk4hJIWejJAx4PVs3vD", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcR6lJ_FXa68dCgnynVgBOQxEvlsM5uB9bMrLqESsKU9W6pf_2In", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS7ii1yVyh8Ek_Rh7co-ZbGYRhq-wLQQICD1hse9YsX0EdYhxZh", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQMvgKRakXveQoR4xM1ykm1tfsm0EFO2ajD7ZQSSZGNm1GIPows", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTiQ-Xgj855FBNRztA-SRdfucmLQnuV2i7TDDYSTfhYDbEBaWW9", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSY6DIbiJ1S5KoANFC3KvWdbbohy5bqFwz25FAOnPN0fxQ4pGSf", | |
aspect = "orientation/banner_2x3" | |
) | |
), root = "/m/041s4z" | |
), Movie( | |
name = "The Sisterhood of the Traveling Pants", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQd2fR2QT6yzw1bM7gNjR74QFpGFSnUA1NleQFP6-KCfBMoaI-K", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSn9GLQ1NdRKx24HaTXHwRxoA7EfZHY1wcJ7BNZlTxpYTZ1QJEq", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS75Th6J9VitgNAcRkDW5TVq8Grx6nKd3Jn8pRz4Qy35iyXQ6tq", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRS0MxlYwh7wfMtoDfSuGTq1I_9QjZUtuWO1gx1LhgeI7A25soB", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSLuBZrv_ZDY99cIIO6AUebtXj-MpNuY-PjAZdFsRWroCcyJsTq", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTHWK56AwZlqTllrKFBJPxhUtMNXQHK9UG1r74Vk72FMPg8jfC0", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQpq6euk9_DgbQLAGZYIz7C-T1UWivDuai6gAMe9vNuWkm-8xfT", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQv21lxB-yA7EKL6YL6Xi5CczB5pdj5PZkE9vMwCl3ymcg7-jP5", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQXod5ngbk2eddOPjAQ9TqKt-oxE-nJqYfUXgP6B6WvDMeAkaJ4", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRagUWuzLj3--yBTV6qs09TN8tf1Myi9uNIDcg25ubjBJketWz1", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQd2fR2QT6yzw1bM7gNjR74QFpGFSnUA1NleQFP6-KCfBMoaI-K", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQv21lxB-yA7EKL6YL6Xi5CczB5pdj5PZkE9vMwCl3ymcg7-jP5", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTgNWdwiahvS4miTVhC0kzuPWd2ZlBB514z0B9bPjtFM6LPJPfa", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTINiVuafWOMq_O1ExdYlN4XhOfqfwZtC-j5gOIKq28ztfhQRVG", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT5agaXaIFz6nIRRfTw3JJmSFDnR9FqrcSNLUaSn1ZcQcn9be3T", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTuLKZ8Mipy2UjLENcwBe027cNosJIF3jc4olWj7SwAJcsJY2Om", | |
aspect = "orientation/backdrop_16x9" | |
) | |
), root = "/m/0d1n0q" | |
), Movie( | |
name = "Laggies", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT1-8SM5F4nmtYa8qsxUtO1NSZMXM4SWf8JhnukSbpSNiIx2rWH", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ6ODZAAfddjmGYOuGPoKvX2uWg7KuPhL4v3jeiamoPOBfhpMsB", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTNVOt1c8M9B8at4Us3BE92n7zGy4PORaO2ft4gGGF7xn1ydwx5", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT4cywOta2hFO6HLUv4UMqyfxM8PaZM6ks_J6pF6cewIMBP_AbM", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRcm2gakNjPVPvUAsmhGa8DZpy8ja_UZWPxh0S2li4hFmgExBWr", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRLqRhO4Z-neN6VWeUVS1ALeI2A3807CMY0-JaP8cHzfVQ1V1wM", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQDoxjGeFUuLMS3K0dJMl4PFeLUI_52qtx4JWK8diYcDqPfCglc", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTBSlj4TKbQxAO2j15-QXGxDzirhUVkylUN5YEP8NHjyzskDDJP", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQOuqp35sSmuWzKPLDGo9tFITASYLA9ScOGzJtw4ME-6zkkSom_", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQDoxjGeFUuLMS3K0dJMl4PFeLUI_52qtx4JWK8diYcDqPfCglc", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTuI460V63jsxWpNIJ5nRUqX_tWCPAodRaUk1ANw9cVhJkGzzyo", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQvOQjzZXtV3S4a9xnFbKiqGASzrDVVNtxRxfx1cj0fcypLT5EM", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSEL146XfjBXFnDxqx0va-twJQmYtL06refx3zFSXC9P1t8rS_f", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSly4cX9KfVt-EF5cl6rr4V134sAlijjTbBrt2c5dPZgVHdVVVP", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRrIEGaIjAREID3QU2NvVI9xEq5Q7AD0xudLny5I4Fg53SL2rL4", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ6ODZAAfddjmGYOuGPoKvX2uWg7KuPhL4v3jeiamoPOBfhpMsB", | |
aspect = "orientation/iconic_16x9" | |
) | |
), root = "/m/0wbn7kd" | |
), Movie( | |
name = "The Spectacular Now", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQ3abxIfYrHhE3fpDEyMlMV-Lw_402pU84GxX_ebu_5FkJm0qWW", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTT_FEathtVkCifVu4s0GrMyqcRug-eUBxtam1bpqEIZGANsK1J", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRpDFewy5jG0jAQC5TFGpt57rP6UHGsQbvcJsYh4SYhPwVZUaiy", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcR_zsds6khpCX8EQFh7mYIvcsdrfu9LmFmPxQFtVxzgxC_KBYvU", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSerKBkP3_WtnHV7ObPkMvUsmA4mohWe0ipQktQDf2P2liOrkBx", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ1f8syI_oBtgyWepYf49GH0j3p0fV1RTYAX6Wcqu2QNeFomSb8", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTB3z0wNYSYrVTqQkX3BOjBgO0JzcgEh3uS3gWSwEw9vUv95F78", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQDgrNcXqPSPJr0hrO-tnlRnuNCSEZ57H7tgUgElme7SCOSv4ia", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTPJ2_3fCCTW_K43yIPKrwvREe0lNLjRgXN9sq19mtHX5AL-9dU", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTdZA4cjY0hPL9Lj4ihbBmF1DL4-6LVxRYsjWSzOfkHwQXWD2rZ", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQ_t_XGyUxte8jN59ao2srMI4RC6cp2x5NWEzRCzevi-zmzDPAB", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcQkUg4V9RZ1hPh8MQ6fvz3uJiCCL0_mGczp6fqKSGA_iddkIhOU", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRrft8HY8yIj38Bo0vixBCCBu55cOKiHh2Fv_KV82Uec4_vFY0M", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQJ8Hg0YSeixF2l4TjE9oq1-X1BDSWS3YALcQw4PcsOCRM40jCE", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTdZA4cjY0hPL9Lj4ihbBmF1DL4-6LVxRYsjWSzOfkHwQXWD2rZ", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRpDFewy5jG0jAQC5TFGpt57rP6UHGsQbvcJsYh4SYhPwVZUaiy", | |
aspect = "orientation/landscape" | |
) | |
), root = "/m/0p3r8b_" | |
), Movie( | |
name = "Crazy, Stupid, Love", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbxTxJqZm1SoidSTGszt3PHQV6pfVVoVjWpjLjUYq3-lfmMNmi", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSTx3GZ4q4u5i0-Zf6hZrfXAQhBTexgiAaEzBYPsYfEzdOEC8K1", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT0VXNp_g66SUFnUxU9opyEctgLUm_xV9EhFNRwOr5QNYH86rke", | |
aspect = "orientation/title_treatement_dark_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSftybMbz4tbx8bvuCDngZW1VA5HlefN3tcteodZdyvgThloOow", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTLokqEa_6E4Pm4iRXqgv_tPqwlAxw2pifXcNnooHuDtHlQ21Tt", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQOkBvnea9t2UP6DOetO8vzZy--kb8hF_oryjGchgpYtc6gZso7", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQYDYNSYmRMmJ5IyYfi7Zl49gKwqP9s9iCxVF2UHbyxULDxN_ux", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSftybMbz4tbx8bvuCDngZW1VA5HlefN3tcteodZdyvgThloOow", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT-13uNVy-_gNtaOnMoUyiDFYNsfeF1uBJVc8PyIeqCNiwHqb3s", | |
aspect = "orientation/title_treatement_light_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSftybMbz4tbx8bvuCDngZW1VA5HlefN3tcteodZdyvgThloOow", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRpXj-GXM3e7AKTqUEaveqBf4eP_9xLZEZtLVFK9JUBjx58pky6", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTWyJM5vDc8Wh-FZ1VnfB0yd6wIIw-gqvMfause56hzVn4npdWO", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQiyt3RoIi5evwQfzsSZFWjy_R_MFFstXsPc_di9tis0oNs3MCV", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTRCLW42ma9WnSFkKZ-MSpDTwimZYzygOYC6Zc7NKMW4BYlN0fv", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTJUpSf2M1ovfQ54VfsWRRZ579DITZGWor1AYTn0yObRNFsY3ol", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcSZisocqWCA_dZki5v7j0UE7mSXNnTnN5nxUhff5QBKOt-5Z33P", | |
aspect = "orientation/poster_art_2x3" | |
) | |
), root = "/m/0ddf2bm" | |
), Movie( | |
name = "That Awkward Moment", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQo35izlJTKQSYH-r63KN5QU1FPY3_ZOvrby0PQ7xtEt9A3ghtt", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcSG95XqorVQLGrP4Z5FrskUZzkdGzaWfquvPs_7me4Pc7EakT_7", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSBkJi1BOCju1_vPjekezAbVf5okj7JbSvs_aYa9yqlGBtmLckC", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcT19XTKSIxprzZ_YsswMeMATrjtbkjn287K5DELZpGQYY4ifoEH", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQ1axjxcm8JmzYqIsmBCcDHTiV57NUP31Y08xt2V-AQSz3myNIL", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRWy4z93HkmoOuv8_UARvActUrbCjheR3-3nEMqdAeOTxCVNWFk", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcTo-LHd3hHjcOqttbUDtbtK53wJb6woZSfIYPjAHkU0yZRT-eum", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcRbmevqJuWeRQ_zDKGbqVTS5gKk7XTP6Bdwim3qewU4og5TcK5t", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTmVoex7NAbiAOeJE3hLj0SRy8MmB04rjfj36bXpQ8Vnu6QMD-Q", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTztcZYIy9SQFzz94Gw--7Fh-VKwWZCn82yV1G1JWkkHh8XceG9", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTOOS9OhQnuYyJJggmP_wxxElenSgdGONAByZ8dIz2GZRms_Ul9", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTOOS9OhQnuYyJJggmP_wxxElenSgdGONAByZ8dIz2GZRms_Ul9", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcR7_J7UVRHb-3jSU8IFn-sS0SVhTplorzdyTGsaw7m_hUt46_n1", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcTOOS9OhQnuYyJJggmP_wxxElenSgdGONAByZ8dIz2GZRms_Ul9", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRLCEqawiHu8nDBEhausb8Oelevqogk6TKnT8vwbQNLWWM74rQi", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/0ng0d9f" | |
), Movie( | |
name = "The Sisterhood of the Traveling Pants 2", images = listOf( | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSu-froDbRDFbjs6O7a_bNiq3eqW3Fk_cBXaH9Bb8TGWz2BhAZF", | |
aspect = "orientation/key_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcRhKdDMiU2VlOK7Y7nn90pbhqAdAET4Uec-my7x5NnVgRep3KTH", | |
aspect = "orientation/banner_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRomL_g4NfeYKet1_wg6IFZ8-9TCRWEj_gMNijHgDrXNpidQiW2", | |
aspect = "orientation/banner_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQCkbezzxDHSbVASllUsrYsGTwVVgJPkV0sQqq9YLX2bsvijlkO", | |
aspect = "orientation/vod_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTN8EfgiSRbFtrPcPUKNlQpHZHgxTJV12k51XyBb2xl3gJq2dFr", | |
aspect = "orientation/iconic_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSNmZafq1ugsUpGK1A5u9ePay4XEi0zxL-lQ9gPm5mKdQyEhLgH", | |
aspect = "orientation/backdrop_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn1.gstatic.com/images?q=tbn:ANd9GcRIWOMuoywAOXPcF69HjsAxVpnTwa-NptUxDXIXcYE4p6ho3H1Q", | |
aspect = "orientation/banner_2x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcS8JSo9HYmmIfcX9EWeGyuCJR-TTL6e9VdQmaiPFz274yDAJJW0", | |
aspect = "orientation/vod_art_16x9" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTtIJLK3n_n6ZsJgvLL-0N7C2KrpJM7NDjhZHlvcAF0mT2avjmL", | |
aspect = "orientation/title_treatement_neutral_9x5" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQvwSYarTztbKovtzKbh8ZDy4v7WJAHNGDRs_YkdYnro5SoOI7a", | |
aspect = "orientation/portrait_3_4" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcSu-froDbRDFbjs6O7a_bNiq3eqW3Fk_cBXaH9Bb8TGWz2BhAZF", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQfLkhH-jqKE-_N6O08Rm0gGX2tfzyokX9epovIpaxLAcM1ZkpX", | |
aspect = "orientation/vod_art_1x1" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcTN8EfgiSRbFtrPcPUKNlQpHZHgxTJV12k51XyBb2xl3gJq2dFr", | |
aspect = "orientation/landscape" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXJYF-WXaA3bT2H7e15XO_4vZDctn1AMlgtf6E_dv796GoEMvK", | |
aspect = "orientation/poster_art_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRds1Ql6AAuL5SyfRwBJRGnj_Bzd4Hxu-aJACvMKwzOlKufwuq6", | |
aspect = "orientation/banner_2x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcQiEdnggQCodVyi1oKbwCb19HnTA6Ea-Snkamig6WVFcbnB_fzw", | |
aspect = "orientation/banner_4x3" | |
), | |
MovieImage( | |
url = "https://encrypted-tbn3.gstatic.com/images?q=tbn:ANd9GcQaspPOl2bNk9mHH2xjrv5PdFGlanqrBXBZSCtAh1Jicnn2u3Zi", | |
aspect = "orientation/title_treatement_dark_9x5" | |
) | |
), root = "/m/02qrr8j" | |
) | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment