diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..0527a9b --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* tglaser diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 0000000..622a2eb --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,17 @@ +name: Java CI + +on: [push] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v1 + with: + java-version: 11 + - name: Build with Maven + run: mvn -B package --file pom.xml diff --git a/.gitignore b/.gitignore index f287ace..541c82a 100644 --- a/.gitignore +++ b/.gitignore @@ -73,6 +73,8 @@ cmake-build-*/ # IntelliJ out/ +.idea/ +serialseries.iml # mpeltonen/sbt-idea plugin .idea_modules/ @@ -94,3 +96,21 @@ fabric.properties # Android studio 3.1+ serialized cache file .idea/caches/build_file_checksums.ser + +# Eclipse stuff +*.pydevproject +.project +.metadata +bin/** +tmp/** +tmp/**/* +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath +.externalToolBuilders/ +*.launch diff --git a/README.md b/README.md index b22490d..1f10e1c 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # serialseries WCS Team Project "Serial Series" 2019 + +Username: user +Password: password diff --git a/pom.xml b/pom.xml index af146c1..e6f7a6a 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,18 @@ org.springframework.boot spring-boot-starter-data-jpa - + + + com.nulab-inc + zxcvbn + 1.2.3 + + + net.sourceforge.nekohtml + nekohtml + 1.9.21 + + org.springframework.boot spring-boot-starter-mail @@ -35,16 +46,29 @@ org.springframework.boot spring-boot-starter-thymeleaf + + org.thymeleaf.extras + thymeleaf-extras-springsecurity4 + 2.1.2.RELEASE + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + org.springframework.boot spring-boot-starter-web - + + org.projectlombok + lombok + 1.18.4 + provided + org.springframework.boot spring-boot-starter-security - org.springframework.boot spring-boot-starter-test @@ -78,6 +102,11 @@ spring-security-test test + + org.springframework.security + spring-security-web + ${spring-security.version} + mysql mysql-connector-java @@ -90,6 +119,10 @@ org.springframework.data spring-data-jpa + + org.springframework.boot + spring-boot-devtools + diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/ThymeleafApplication.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/ThymeleafApplication.java index e80e6f5..b971bca 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/ThymeleafApplication.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/ThymeleafApplication.java @@ -2,6 +2,9 @@ import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.context.annotation.Bean; +import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; +import org.springframework.security.crypto.password.PasswordEncoder; @SpringBootApplication public class ThymeleafApplication { @@ -9,5 +12,10 @@ public class ThymeleafApplication { public static void main(String[] args) { SpringApplication.run(ThymeleafApplication.class, args); } + + @Bean + public PasswordEncoder getPasswordEncoder() { + return new BCryptPasswordEncoder(); + } } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/WebSecurityConfig.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/WebSecurityConfig.java new file mode 100644 index 0000000..d4c45f6 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/WebSecurityConfig.java @@ -0,0 +1,80 @@ +/** + * Created by AEr on 06.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Configuration; +import org.springframework.jdbc.support.incrementer.AbstractDataFieldMaxValueIncrementer; +import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder; +import org.springframework.security.config.annotation.web.builders.HttpSecurity; +import org.springframework.security.config.annotation.web.builders.WebSecurity; +import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity; +import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.security.web.util.matcher.AntPathRequestMatcher; + +import java.util.concurrent.TimeUnit; + +@Configuration +@EnableWebSecurity +public class WebSecurityConfig extends WebSecurityConfigurerAdapter { + + private final UserDetailsService userDetailsService; + + private final PasswordEncoder passwordEncoder; + + @Autowired + public WebSecurityConfig(UserDetailsService userDetailsService, PasswordEncoder passwordEncoder) { + + this.userDetailsService = userDetailsService; + this.passwordEncoder = passwordEncoder; + } + + @Override + protected void configure(HttpSecurity http) throws Exception { + http + .csrf().disable() + .authorizeRequests() + .antMatchers("/", "/images/**", "/css/style.css", "/webjars/**").permitAll() + .antMatchers("/register").permitAll() + .antMatchers("/confirm").permitAll() + .anyRequest() + .authenticated() + .and() + .formLogin() + .loginPage("/login").permitAll() + .defaultSuccessUrl("/", true) + .and() + .rememberMe() // defaults to 2 weeks + .tokenValiditySeconds((int) TimeUnit.DAYS.toSeconds(21)) + .and() + .logout() + .logoutUrl("/logout") + .logoutRequestMatcher(new AntPathRequestMatcher("/logout", "GET")) + .clearAuthentication(true) + .invalidateHttpSession(true) + .deleteCookies("JSESSIONID", "remember-me") + .logoutSuccessUrl("/"); + } + + @Override + protected void configure(AuthenticationManagerBuilder auth) throws Exception { + auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder); + } + + @Override + public void configure(WebSecurity webSecurity) { + webSecurity.ignoring().antMatchers( + "https://json.schedulesdirect.org/20141201/image/assets/**" + ); + } + + public static void main(String[] args) { + System.out.println(new BCryptPasswordEncoder().encode("admin")); + } +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/bootstrap/BootstrapAdminUser.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/bootstrap/BootstrapAdminUser.java new file mode 100644 index 0000000..9c5d311 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/bootstrap/BootstrapAdminUser.java @@ -0,0 +1,43 @@ +/** + * Created by AEr on 11.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.bootstrap; + +import com.wildcodeschool.serialseries.thymeleaf.entity.User; +import com.wildcodeschool.serialseries.thymeleaf.repository.UserRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.CommandLineRunner; +import org.springframework.security.crypto.password.PasswordEncoder; +import org.springframework.stereotype.Component; + +import java.util.Optional; + +//@Component +public class BootstrapAdminUser implements CommandLineRunner { + + private final UserRepository userRepository; + private final PasswordEncoder passwordEncoder; + + @Autowired + public BootstrapAdminUser(UserRepository userRepository, PasswordEncoder passwordEncoder) { + this.userRepository = userRepository; + this.passwordEncoder = passwordEncoder; + } + + @Override + public void run(String... args) throws Exception { + Optional optionalAdmin = userRepository.findByName("admin"); + if (optionalAdmin.isEmpty()) { + System.out.println("*** No admin user, creating admin/admin"); + User admin = new User(); + admin.setName("admin"); + admin.setRole("ADMIN"); + admin.setPassword(passwordEncoder.encode("admin")); + userRepository.save(admin); + } + } + + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/EpisodeController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/EpisodeController.java new file mode 100644 index 0000000..21d0cf4 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/EpisodeController.java @@ -0,0 +1,27 @@ +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; + +import com.wildcodeschool.serialseries.thymeleaf.repository.EpisodeRepository; + +@Controller +public class EpisodeController { + + @Autowired + private EpisodeRepository episodeRepo; + + @GetMapping("/episode") + public String getAll(Model model) { + + model.addAttribute("episodes", episodeRepo.findAll()); + //model.addAttribute("series_name", seriesRepo.findAll()); + return "episodes"; + } + + + } + + diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/IndexController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/IndexController.java index f4750e8..bc16d13 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/IndexController.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/IndexController.java @@ -9,4 +9,7 @@ public class IndexController { public String home() { return "index"; } + +// @GetMapping("/login") +// public String login(){return "login";} } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/RegisterController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/RegisterController.java new file mode 100644 index 0000000..a3a25f0 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/RegisterController.java @@ -0,0 +1,153 @@ +/* + Created by AEr on 14.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import java.util.Map; +import java.util.UUID; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; + +import com.nulabinc.zxcvbn.Strength; +import com.nulabinc.zxcvbn.Zxcvbn; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.mail.SimpleMailMessage; +import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder; +import org.springframework.stereotype.Controller; +import org.springframework.validation.BindingResult; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RequestMethod; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.servlet.ModelAndView; +import org.springframework.web.servlet.mvc.support.RedirectAttributes; + +import com.wildcodeschool.serialseries.thymeleaf.entity.User; +import com.wildcodeschool.serialseries.thymeleaf.service.EmailService; +import com.wildcodeschool.serialseries.thymeleaf.service.UserDetailsServiceImpl; +//import com.wildcodeschool.serialseries.thymeleaf.Strength; +//import com.wildcodeschool.serialseries.thymeleaf.Zxcvbn; + +@Controller +public class RegisterController { + + private BCryptPasswordEncoder bCryptPasswordEncoder; + private UserDetailsServiceImpl userDetailsServiceImpl; + private EmailService emailService; + + @Autowired + public RegisterController(BCryptPasswordEncoder bCryptPasswordEncoder, UserDetailsServiceImpl userDetailsServiceImpl, EmailService emailService) { + + this.bCryptPasswordEncoder = bCryptPasswordEncoder; + this.userDetailsServiceImpl = userDetailsServiceImpl; + this.emailService = emailService; + } + + // Return registration form template + @RequestMapping(value = "/register", method = RequestMethod.GET) + public ModelAndView showRegistrationPage(ModelAndView modelAndView, User user) { + modelAndView.addObject("user", user); + modelAndView.setViewName("register"); + return modelAndView; + } + + // Process form input data + @RequestMapping(value = "/register", method = RequestMethod.POST) + public ModelAndView processRegistrationForm(ModelAndView modelAndView, @Valid User user, BindingResult bindingResult, HttpServletRequest request) { + + // Lookup user in database by e-mail + User userExists = userDetailsServiceImpl.findByEmail(user.getEmail()); + + System.out.println(userExists); + + if (userExists != null) { + modelAndView.addObject("alreadyRegisteredMessage", "Oops! There is already a user registered with the email provided."); + modelAndView.setViewName("register"); + bindingResult.reject("email"); + } + + if (bindingResult.hasErrors()) { + modelAndView.setViewName("register"); + } else { // new user so we create user and send confirmation e-mail + + // Disable user until they click on confirmation link in email + user.setEnabled(false); + + // Generate random 36-character string token for confirmation link + user.setConfirmationToken(UUID.randomUUID().toString()); + user.setName(user.getEmail()); + userDetailsServiceImpl.saveUser(user); + + String appUrl = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort(); + + SimpleMailMessage registrationEmail = new SimpleMailMessage(); + registrationEmail.setTo(user.getEmail()); + registrationEmail.setSubject("Registrierungsbestaetigung"); + registrationEmail.setText("Klicken Sie bitte auf den nachfolgenden Link um Ihre E-Mail-Adresse zu bestaetigen::\n" + + appUrl + "/confirm?token=" + user.getConfirmationToken()); + registrationEmail.setFrom("noreply@domain.com"); + + emailService.sendEmail(registrationEmail); + + modelAndView.addObject("confirmationMessage", "Eine Bestätigungs-E-Mail wurde gesendet an " + user.getEmail()); + modelAndView.setViewName("index"); + } + + return modelAndView; + } + + // Process confirmation link + @RequestMapping(value = "/confirm", method = RequestMethod.GET) + public ModelAndView showConfirmationPage(ModelAndView modelAndView, @RequestParam("token") String token) { + + User user = userDetailsServiceImpl.findByConfirmationToken(token); + + if (user == null) { // No token found in DB + modelAndView.addObject("invalidToken", "Oops! This is an invalid confirmation link."); + } else { // Token found + modelAndView.addObject("confirmationToken", user.getConfirmationToken()); + } + + modelAndView.setViewName("confirm"); + return modelAndView; + } + + // Process confirmation link + @RequestMapping(value = "/confirm", method = RequestMethod.POST) + public ModelAndView processConfirmationForm(ModelAndView modelAndView, BindingResult bindingResult, @RequestParam Map requestParams, RedirectAttributes redir) { + + modelAndView.setViewName("redirect:/"); + + Zxcvbn passwordCheck = new Zxcvbn(); + + Strength strength = passwordCheck.measure((String) requestParams.get("password")); + + if (strength.getScore() < 2) { + bindingResult.reject("password"); + + redir.addFlashAttribute("errorMessage", "Your password is too weak. Choose a stronger one."); + + modelAndView.setViewName("redirect:confirm?token=" + requestParams.get("token")); + System.out.println(requestParams.get("token")); + return modelAndView; + } + + // Find the user associated with the reset token + User user = userDetailsServiceImpl.findByConfirmationToken((String) requestParams.get("token")); + + // Set new password + user.setPassword(bCryptPasswordEncoder.encode((CharSequence) requestParams.get("password"))); + + // Set user to enabled + user.setEnabled(true); + + // Save user + userDetailsServiceImpl.saveUser(user); + + modelAndView.addObject("successMessage", "Your password has been set!"); + return modelAndView; + } + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/ScheduleController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/ScheduleController.java new file mode 100644 index 0000000..542b72c --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/ScheduleController.java @@ -0,0 +1,50 @@ +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import java.util.Optional; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Example; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import com.wildcodeschool.serialseries.thymeleaf.entity.Schedule; +import com.wildcodeschool.serialseries.thymeleaf.entity.Station; +import com.wildcodeschool.serialseries.thymeleaf.repository.ScheduleRepository; +import com.wildcodeschool.serialseries.thymeleaf.repository.StationRepository; + +@Controller +public class ScheduleController { + + @Autowired + private ScheduleRepository scheduleRepository; + + @Autowired + private StationRepository stationRepository; + + @GetMapping("/stations/schedule") + public String getStations(Model modul) { + + modul.addAttribute("stations", stationRepository.findAll()); + return "stations"; + } + + @GetMapping("/stations/findOne") + public String inscription(Model modul, + @RequestParam(required = false) Integer id) { + + + Optional optionalStation = stationRepository.findById(id); + Station station = new Station(); + if (optionalStation.isPresent()) { + station = optionalStation.get(); + } + + // ChannelProgram + modul.addAttribute("station", station); + Schedule schedule = new Schedule(); + schedule.setStation(station); + Example example = Example.of(schedule); + modul.addAttribute("allSchedules", scheduleRepository.findAll(example)); + return "schedule"; + } +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/SeriesController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/SeriesController.java new file mode 100644 index 0000000..b4bc6fa --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/SeriesController.java @@ -0,0 +1,158 @@ +package com.wildcodeschool.serialseries.thymeleaf.controller; + + +import com.wildcodeschool.serialseries.thymeleaf.repository.EpisodeRepository; +import com.wildcodeschool.serialseries.thymeleaf.repository.SeriesRepository; +import com.wildcodeschool.serialseries.thymeleaf.entity.User; +import com.wildcodeschool.serialseries.thymeleaf.entity.Episode; +import com.wildcodeschool.serialseries.thymeleaf.entity.Series; + +import java.util.List; +import java.util.Set; + +import javax.persistence.EntityManager; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.web.PageableDefault; +import org.springframework.security.core.Authentication; +import org.springframework.security.core.context.SecurityContextHolder; +import org.springframework.stereotype.Controller; +import org.springframework.transaction.annotation.Transactional; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestParam; + + +@Controller +public class SeriesController { + + @Autowired + private SeriesRepository seriesRepository; + + @Autowired + private EpisodeRepository episodeRepository; + + @Autowired + private EntityManager entityManager; + + private void userSubscriptions(Model out) { + Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); + User loggedOnUser = (User) authentication.getPrincipal(); + User user = (User) entityManager.merge(loggedOnUser); // get "non-detached" user object + entityManager.refresh(user); + Set subscriptions = user.getSubscriptions(); + out.addAttribute("subscriptions", subscriptions); + + out.addAttribute("user", user); + } + + @GetMapping("/series/all") + @Transactional + public String showAllSeries(Model out) { + + + String name=""; + String description=" "; + + out.addAttribute ("series", seriesRepository.findFirst30ByNameContainingOrDescriptionContaining(name,description)); + + + userSubscriptions(out); + + return "series_all"; + } + + @GetMapping("/series/one") + @Transactional + public String showOneSeries(Model out, @RequestParam String seriesId) { + + + + Series series = seriesRepository.findById(seriesId).get(); + out.addAttribute ("series", series); // Optional unwrap + + userSubscriptions(out); + + return "series_all"; + + } + + @GetMapping("/series/page") + @Transactional + public String showAllSeriesPaged(@PageableDefault(size = 10) Pageable pageable, Model out) { + + Page page = seriesRepository.findAll(pageable); + + out.addAttribute ("page", page); + + userSubscriptions(out); + + return "series_page"; + } + + @GetMapping("/series/table") + @Transactional + public String showAllSeriesTable(Model out) { + + out.addAttribute ("series", seriesRepository.findAll()); + userSubscriptions(out); + + return "series_table"; + } + + @PostMapping("/series/search") + @Transactional + public String showSeriesByFilter(Model out, @RequestParam String suchbegriff) { + userSubscriptions(out); + out.addAttribute ("series", seriesRepository.findByNameContainingOrDescriptionContaining(suchbegriff, suchbegriff)); + return "series_all"; + } + + + @GetMapping("/series/subscribe") + @Transactional + public String addSubscriber( + Model out, + @RequestParam String seriesId) { + + Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); + User loggedOnUser = (User) authentication.getPrincipal(); + User user = (User) entityManager.merge(loggedOnUser); // get "non-detached" user object + + Series series = findOne(seriesId); // get Series object for the id from requestparam + + series.subscribe(user); + + out.addAttribute ("series", series); + + + + + return "series_all"; + } + + @GetMapping("/series/unsubscribe") + @Transactional + public String removeSubscriber(@RequestParam String seriesId) { + + Authentication authentication = SecurityContextHolder.getContext().getAuthentication(); + User loggedOnUser = (User) authentication.getPrincipal(); + User user = (User) entityManager.merge(loggedOnUser); // get "non-detached" user object + + Series series = findOne(seriesId); // get Series object for the id from requestparam + + series.unSubscribe(user); + + return "series_all"; + } + + public Series findOne(String id) { + return seriesRepository.findById(id).get(); + + } + + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationController.java new file mode 100644 index 0000000..195f18f --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationController.java @@ -0,0 +1,54 @@ +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; +import org.springframework.web.bind.annotation.ResponseBody; +import com.wildcodeschool.serialseries.thymeleaf.entity.Station; +import com.wildcodeschool.serialseries.thymeleaf.repository.StationRepository; + +@Controller +public class StationController { + + @Autowired + private StationRepository stationRepo; + + @GetMapping("/stations") + + public String getAll(Model model, + @RequestParam(defaultValue = "0") int page) { + + model.addAttribute("stations", stationRepo.findAll()); + //model.addAttribute("series_name", seriesRepo.findAll()); + + model.addAttribute("currentPage", page); + return "stations"; + + } + + + @GetMapping("/findOne") + @ResponseBody + public Station findOne(Integer id) { + return stationRepo.findById(id).get(); + } + + @GetMapping("/search") + public String search(Model model, @RequestParam String name) { + model.addAttribute("stations", stationRepo.findByNameContaining(name)); + return "/stations"; + + } + +// @GetMapping("/stations") +// public String countryName(Expense expense,Model model){ +// model.addAttribute("c",categoryRepo.findAll()); +// return "stations"; +// } + + + + +} \ No newline at end of file diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationSerieController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationSerieController.java new file mode 100644 index 0000000..c517e66 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/StationSerieController.java @@ -0,0 +1,102 @@ +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestParam; + +import com.wildcodeschool.serialseries.thymeleaf.entity.Series; +import com.wildcodeschool.serialseries.thymeleaf.entity.Station; +import com.wildcodeschool.serialseries.thymeleaf.repository.SeriesRepository; +import com.wildcodeschool.serialseries.thymeleaf.repository.StationRepository; + +@Controller +public class StationSerieController { + + @Autowired + private StationRepository stationRepo; + + @Autowired + private SeriesRepository seriesRepo; + + @GetMapping("/stations/1") + public String getStation(Model out) { + + out.addAttribute("stations", stationRepo.findAll()); + return "stations"; + } + + @GetMapping("/stations/1/stationsSeries") + public String inscription(Model out, + @RequestParam Integer station_id) { + + Optional optionalStation = stationRepo.findById(station_id); + Station station = new Station(); + if (optionalStation.isPresent()) { + station = optionalStation.get(); + } + out.addAttribute("station", station); + out.addAttribute("allSeries", seriesRepo.findAll()); + + // call the method getSeries in Station + List series = new ArrayList<>(); + Method method = getMethod(station, "getSeries", + new Class[]{}); + if (method != null) { + try { + series = (List) method.invoke(station); + } catch (IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } + System.out.println(series); + out.addAttribute("stationSeries", series); + return "serie"; + } + + @PostMapping("/stations/1/stationsSeries") + public String inscription(@RequestParam Integer station_id, + @RequestParam String idSeries) { + + Optional optionalSerie = seriesRepo.findById(idSeries); + if (optionalSerie.isPresent()) { + Series serie = optionalSerie.get(); + + Optional optionalStation = stationRepo.findById(station_id); + if (optionalStation.isPresent()) { + Station station = optionalStation.get(); + Method method = getMethod(serie, "setStation", + new Class[]{Station.class}); + if (method != null) { + try { + method.invoke(serie, station); + } catch (IllegalAccessException | InvocationTargetException e) { + e.printStackTrace(); + } + } + seriesRepo.save(serie); + } + } + + return "redirect:/station/1/findOne?id=" + station_id; + } + + public Method getMethod(Object obj, String methodName, Class[] args) { + Method method; + try { + method = obj.getClass().getDeclaredMethod(methodName, args); + return method; + } catch (NoSuchMethodException e) { + e.printStackTrace(); + } + return null; + } +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/TemplateController.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/TemplateController.java new file mode 100644 index 0000000..3140782 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/controller/TemplateController.java @@ -0,0 +1,28 @@ +/** + * Created by AEr on 13.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.controller; + +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; + +@Controller +@RequestMapping +public class TemplateController { + + @GetMapping("login") + public String getLoginView() { + return "login"; + + } + + @GetMapping("customer") + public String getCustomer() { + return "customer"; + + } + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/AdminUserDetails.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/AdminUserDetails.java new file mode 100644 index 0000000..1eda021 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/AdminUserDetails.java @@ -0,0 +1,61 @@ +/** + * Created by AEr on 12.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.entity; + +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.userdetails.UserDetails; + +import java.util.Collection; +import java.util.Collections; + +public class AdminUserDetails implements UserDetails { + + + private final String userName; + + private final String password; + + public AdminUserDetails(String userName, String password) { + this.userName = userName; + this.password = password; + } + + @Override + public Collection getAuthorities() { + return Collections.singletonList(new SimpleGrantedAuthority("ROLE_ADMIN")); + } + + @Override + public String getPassword() { + return password; + } + + @Override + public String getUsername() { + return userName; + } + + @Override + public boolean isAccountNonExpired() { + return true; + } + + @Override + public boolean isAccountNonLocked() { + return true; + } + + @Override + public boolean isCredentialsNonExpired() { + return true; + } + + @Override + public boolean isEnabled() { + return true; + } +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Episode.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Episode.java index 338701b..55f39ed 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Episode.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Episode.java @@ -1,20 +1,59 @@ package com.wildcodeschool.serialseries.thymeleaf.entity; +import java.util.List; + +import javax.persistence.CascadeType; +import javax.persistence.Column; import javax.persistence.Entity; +import javax.persistence.FetchType; import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToOne; +import javax.persistence.OneToMany; @Entity public class Episode { @Id - private int id; - private int number; - private int season; + @Column(columnDefinition="VARCHAR(14)") + private String id; + + @Column(columnDefinition="VARCHAR(120)", nullable=false) + private String name; + + @Column(columnDefinition="VARCHAR(150)", nullable=false) + private String episodeTitle; + + @Column(nullable=true) + private Integer number; + + @Column(nullable=true) + private Integer season; + + @Column(columnDefinition="VARCHAR(3)", nullable=false) + private String language; + + @Column(columnDefinition="VARCHAR(1000)") private String description; + + @Column(columnDefinition="VARCHAR(200)") private String picture; - private float rating; - private boolean wanted; - - public Episode(int id, int number, int season, String description, String picture, float rating) { + + private Float rating; + + @Column(nullable=true) + private Boolean is_series; + + @Column(nullable=true) + private Boolean wanted; + + @ManyToOne(fetch=FetchType.LAZY) + @JoinColumn(name="series_id") + private Series series; + + @OneToMany(mappedBy="episode", fetch=FetchType.EAGER, cascade=CascadeType.ALL) + private List schedules; + + public Episode(String id, Integer number, Integer season, String description, String picture, Float rating) { super(); this.id = id; this.number = number; @@ -29,7 +68,7 @@ public Episode () { } - public Episode(int id, int number, int season, String description, String picture, float rating, boolean wanted) { + public Episode(String id, Integer number, Integer season, String description, String picture, Float rating, Boolean wanted) { super(); this.id = id; this.number = number; @@ -40,27 +79,35 @@ public Episode(int id, int number, int season, String description, String pictur this.wanted = wanted; } - public int getId() { + public String getId() { return id; } - public void setId(int id) { + public void setId(String id) { this.id = id; } - public int getNumber() { + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public Integer getNumber() { return number; } - public void setNumber(int number) { + public void setNumber(Integer number) { this.number = number; } - public int getSeason() { + public Integer getSeason() { return season; } - public void setSeason(int season) { + public void setSeason(Integer season) { this.season = season; } @@ -80,22 +127,68 @@ public void setPicture(String picture) { this.picture = picture; } - public float getRating() { + public Float getRating() { return rating; } - public void setRating(float rating) { + public void setRating(Float rating) { this.rating = rating; } - public boolean isWanted() { + public Boolean isWanted() { return wanted; } - public void setWanted(boolean wanted) { + public void setWanted(Boolean wanted) { this.wanted = wanted; } + public Boolean isIs_series() { + return is_series; + } + + public List getSchedules() { + return schedules; + } + + public void setSchedules(List schedules) { + this.schedules = schedules; + } + + public String getEpisodeTitle() { + return episodeTitle; + } + + public void setEpisodeTitle(String episodeTitle) { + this.episodeTitle = episodeTitle; + } + public String getLanguage() { + return language; + } + + public void setLanguage(String language) { + this.language = language; + } + + public Boolean getIs_series() { + return is_series; + } + + public void setIs_series(Boolean is_series) { + this.is_series = is_series; + } + + public Series getSeries() { + return series; + } + + public void setSeries(Series series) { + this.series = series; + } + + public Boolean getWanted() { + return wanted; + } } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Program.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Program.java deleted file mode 100644 index a56ea28..0000000 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Program.java +++ /dev/null @@ -1,75 +0,0 @@ -package com.wildcodeschool.serialseries.thymeleaf.entity; - - -import javax.persistence.Entity; -import javax.persistence.Id; -import java.sql.Date; - -@Entity -public class Program { - @Id - private String id; - private String programName; - private String station; - private Date airTimeStart; - private Date airTimeEnd; - - public Program() { - } - - - - public Program(String id, String programName, String station, Date airTimeStart, Date airTimeEnd) { - super(); - this.id = id; - this.programName = programName; - this.station = station; - this.airTimeStart = airTimeStart; - this.airTimeEnd = airTimeEnd; - } - - - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } - - public String getProgramName() { - return programName; - } - - - public void setProgramName(String programName) { - this.programName = programName; - } - - public String getStation() { - return station; - } - - public void setStation(String station) { - this.station = station; - } - - - public Date getAirTimeStart () { - return airTimeStart; - } - - public void setAirTimeStart (Date airTimeStart) { - this.airTimeStart = airTimeStart; - } - - public Date getAirTimeEnd () { - return airTimeEnd; - } - - public void setAirTimeEnd (Date airTimeEnd) { - this.airTimeEnd = airTimeEnd; - } - -} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Schedule.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Schedule.java new file mode 100644 index 0000000..c322fea --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Schedule.java @@ -0,0 +1,61 @@ +package com.wildcodeschool.serialseries.thymeleaf.entity; + +import java.time.LocalDateTime; +import java.util.Date; + +import javax.persistence.CascadeType; +import javax.persistence.Column; +import javax.persistence.Entity; +import javax.persistence.FetchType; +import javax.persistence.GeneratedValue; +import javax.persistence.GenerationType; +import javax.persistence.Id; +import javax.persistence.JoinColumn; +import javax.persistence.ManyToOne; +import javax.persistence.Temporal; +import javax.persistence.TemporalType; + +@Entity +public class Schedule { + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Integer id; + + @Column(nullable=false) + private LocalDateTime airDateTime; + + @ManyToOne(fetch=FetchType.EAGER, cascade=CascadeType.ALL) + @JoinColumn(name="station_id") + private Station station; + + public Station getStation() { + return station; + } + public void setStation(Station station) { + this.station = station; + } + public Episode getEpisode() { + return episode; + } + public void setEpisode(Episode episode) { + this.episode = episode; + } + @ManyToOne(fetch=FetchType.EAGER) + @JoinColumn(name="episode_id") + private Episode episode; + + public Integer getId() { + return id; + } + public void setId(Integer id) { + this.id = id; + } + public LocalDateTime getAirDateTime() { + return airDateTime; + } + public void setAirDateTime(LocalDateTime airDateTime) { + this.airDateTime = airDateTime; + } + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Series.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Series.java index 7a75a28..98455f4 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Series.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Series.java @@ -1,19 +1,50 @@ package com.wildcodeschool.serialseries.thymeleaf.entity; +import java.util.HashSet; +import java.util.List; +import java.util.Set; + +import javax.persistence.CascadeType; +import javax.persistence.Column; import javax.persistence.Entity; +import javax.persistence.FetchType; import javax.persistence.Id; +import javax.persistence.JoinTable; +import javax.persistence.ManyToMany; +import javax.persistence.OneToMany; @Entity public class Series { + @Id + @Column(columnDefinition="VARCHAR(14)") private String id; + + @Column(columnDefinition="VARCHAR(120)", nullable=false) private String name; + + @Column(columnDefinition="VARCHAR(1000)") private String description; + + @Column(columnDefinition="VARCHAR(200)") private String picture; + private Float rating; + + @Column(columnDefinition="VARCHAR(3)", nullable=false) private String language; + private Boolean watched; + + private Boolean is_series; + + @OneToMany(mappedBy="series") + private List episodes; + // this class is "owner" of many-to-many relation, class User is slave and has mappedBy parameter + @ManyToMany(fetch=FetchType.EAGER, cascade = CascadeType.ALL) + @JoinTable(name="Subscriptions") + private Set subscribers = new HashSet<>(); public Series () { @@ -103,5 +134,40 @@ public void setWatched(Boolean watched) { this.watched = watched; } + public Boolean getIs_series() { + return is_series; + } + + public void setIs_series(Boolean is_series) { + this.is_series = is_series; + } + + public Set getSubscribers() { + return subscribers; + } + public void setSubscribers(Set subscribers) { + this.subscribers = subscribers; + } + + public void subscribe(User user) { + if (subscribers == null) { + subscribers = new HashSet(); + System.out.print("Series.subscribers was null"); + } + subscribers.add(user); + System.out.println("User " + user.getName() + " subscribed to series " + this.name); + } + + public void unSubscribe(User user) { + subscribers.remove(user); + System.out.println("User " + user.getName() + " unsubscribed from series " + this.name); + } + + public boolean isSubscribedBy(User user) { + if (subscribers == null) { + return false; + } + return subscribers.contains(user); + } } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/SetPreferences.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/SetPreferences.java deleted file mode 100644 index 0466b66..0000000 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/SetPreferences.java +++ /dev/null @@ -1,13 +0,0 @@ - - -// public class SetPreferences { - -// ArrayList Watchlist = new ArrayList(); - - // TODO Wert aus Preferences eines Users auslesen - - // TODO CRUD - - // TODO Save with User Preferences - -// } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Station.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Station.java index 37ba3cd..6e81fcc 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Station.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/Station.java @@ -1,30 +1,56 @@ package com.wildcodeschool.serialseries.thymeleaf.entity; +import java.util.List; + +import javax.persistence.Column; import javax.persistence.Entity; +import javax.persistence.FetchType; import javax.persistence.Id; +import javax.persistence.OneToMany; @Entity public class Station { @Id - private int id; + @Column(columnDefinition="VARCHAR(12)") + private Integer id; + + @Column(nullable=false) private String name; + + @Column(columnDefinition="VARCHAR(3)", nullable=false) private String country; + private Boolean available; + + @Column(columnDefinition="VARCHAR(255)") + private String picture; + + @OneToMany(mappedBy="station", fetch=FetchType.LAZY) + private List schedules; + + + public List getSchedules() { + return schedules; + } + public void setSchedules(List schedules) { + this.schedules = schedules; + } - public Station(int id, String name, String country, Boolean available) { + public Station(Integer id, String name, String country,String picture, Boolean available) { super(); this.id = id; this.name = name; this.country = country; this.available = available; + this.picture = picture; } public Station () { } - public int getId() { + public Integer getId() { return id; } @@ -55,5 +81,13 @@ public Boolean getAvailable() { public void setAvailable(Boolean available) { this.available = available; } + + public String getPicture() { + return picture; + } + + public void setPicture(String picture) { + this.picture = picture; + } } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/User.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/User.java index b3e1289..08a873a 100644 --- a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/User.java +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/entity/User.java @@ -1,108 +1,165 @@ package com.wildcodeschool.serialseries.thymeleaf.entity; -import java.util.ArrayList; +import lombok.Getter; +import lombok.Setter; -import javax.persistence.Entity; -import javax.persistence.Id; +import org.springframework.security.core.GrantedAuthority; +import org.springframework.security.core.authority.SimpleGrantedAuthority; +import org.springframework.security.core.userdetails.UserDetails; -@Entity -public class User { - @Id - private int id; - private String name; - private String nickName; - private String eMail; - private String password; - private ArrayList Watchlist; // Preferred stations - private ArrayList Wantedlist; // Missing Episodes - private ArrayList StationsPositive; // Preferred Stations - private ArrayList StationsNegative; // Stations not available - - public ArrayList getWatchlist() { - return Watchlist; - } - - public void setWatchlist(ArrayList watchlist) { - Watchlist = watchlist; - } - - public ArrayList getWantedlist() { - return Wantedlist; - } - - public void setWantedlist(ArrayList wantedlist) { - Wantedlist = wantedlist; - } - - public ArrayList getStationsPositive() { - return StationsPositive; - } - - public void setStationsPositive(ArrayList stationsPositive) { - StationsPositive = stationsPositive; - } - - public ArrayList getStationsNegative() { - return StationsNegative; - } - - public void setStationsNegative(ArrayList stationsNegative) { - StationsNegative = stationsNegative; - } - - public User(int id, String name, String nickName, String eMail, String password) { - super(); - this.id = id; - this.name = name; - this.nickName = nickName; - this.eMail = eMail; - this.password = password; - } - - public User () { - - } - - public int getId() { - return id; - } - - public void setId(int id) { - this.id = id; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getNickName() { - return nickName; - } - - public void setNickName(String nickName) { - this.nickName = nickName; - } - - public String geteMail() { - return eMail; - } - - public void seteMail(String eMail) { - this.eMail = eMail; - } - - public String getPassword() { - return password; - } - - public void setPassword(String password) { - this.password = password; - } - +import javax.persistence.*; +import javax.validation.constraints.Email; +import javax.validation.constraints.NotEmpty; + +import java.util.Collection; +import java.util.Collections; +import java.util.HashSet; +import java.util.Set; +@Entity +@Getter +@Setter +public class User implements UserDetails { + + private static final long serialVersionUID = 5859759120668175499L; + + @Id + @GeneratedValue(strategy = GenerationType.IDENTITY) + private Long id; + + + @Column(columnDefinition = "VARCHAR(50)", unique = true) + private String name; + + @Column(columnDefinition = "VARCHAR(14)") + private String role; + + @ManyToMany(fetch = FetchType.EAGER, mappedBy = "subscribers", cascade = CascadeType.ALL) + private Set subscriptions = new HashSet<>(); + + @Override + public Collection getAuthorities() { + GrantedAuthority authority = new SimpleGrantedAuthority("ROLE_" + role); + return Collections.singletonList(authority); + } + + // User-Registrierung + @Column(name = "email", nullable = false, unique = true) + @Email(message = "Please provide a valid e-mail") + @NotEmpty(message = "Please provide an e-mail") + private String email; + + // @Transient + @Column(name = "password") + private String password; + + @Column(name = "first_name") + @NotEmpty(message = "Please provide your first name") + private String firstName; + + @Column(name = "last_name") + @NotEmpty(message = "Please provide your last name") + private String lastName; + + @Column(name = "enabled") + private boolean enabled; + + @Column(name = "confirmation_token") + private String confirmationToken; + +// public String getConfirmationToken() { +// return confirmationToken; +// } +// +// public void setConfirmationToken(String confirmationToken) { +// this.confirmationToken = confirmationToken; +// } + +// public int getId() { +// return id; +// } +// +// public void setId(int id) { +// this.id = id; +// } +// +// public String getPassword() { +// return password; +// } +// +// public void setPassword(String password) { +// this.password = password; +// } + +// public String getFirstName() { +// return firstName; +// } +// +// public void setFirstName(String firstName) { +// this.firstName = firstName; +// } +// +// public String getLastName() { +// return lastName; +// } +// +// public void setLastName(String lastName) { +// this.lastName = lastName; +// } +// +// public String getEmail() { +// return email; +// } +// +// public void setEmail(String email) { +// this.email = email; +// } +// +// public boolean getEnabled() { +// return enabled; +// } +// +// public void setEnabled(boolean value) { +// this.enabled = value; +// } + + // Login Einstellungen + @Override + public String getUsername() { + return name; + } + + @Override + public boolean isAccountNonExpired() { + return true; + } + + @Override + public boolean isAccountNonLocked() { + return true; + } + + @Override + public boolean isCredentialsNonExpired() { + return true; + } + + @Override + public boolean isEnabled() { + return true; + } + + public void subscribe(Series series) { + if (subscriptions == null) { + subscriptions = new HashSet(10); + System.out.println("subscriptions were null"); + } + subscriptions.add(series); + + } + + public void unsubscribe(Series series) { + subscriptions.remove(series); + } } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/matchers/Match.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/matchers/Match.java new file mode 100644 index 0000000..5b2e396 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/matchers/Match.java @@ -0,0 +1,259 @@ +/** + * Created by AEr on 14.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.matchers; + + + +import com.nulabinc.zxcvbn.Pattern; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class Match { + + public final Pattern pattern; + public final int i; + public final int j; + public final CharSequence token; + public final CharSequence matchedWord; + public final int rank; + public final String dictionaryName; + public final boolean reversed; + public final boolean l33t; + public final Map sub; + public final String subDisplay; + public final String sequenceName; + public final int sequenceSpace; + public final boolean ascending; + public final String regexName; + public final java.util.regex.Matcher regexMatch; + public final CharSequence baseToken; + public final List baseMatches; + public final int repeatCount; + public final String graph; + public final int turns; + public final Integer shiftedCount; + public final String separator; + public final int year; + public final int month; + public final int day; + + public Double baseGuesses; + public Double guesses; + public Double guessesLog10; + + private Match(Builder builder) { + this.pattern = builder.pattern; + this.i = builder.i; + this.j = builder.j; + this.token = builder.token; + this.matchedWord = builder.matchedWord; + this.rank = builder.rank; + this.dictionaryName = builder.dictionaryName; + this.reversed = builder.reversed; + this.l33t = builder.l33t; + if (builder.sub == null) builder.sub = new HashMap<>(); + this.sub = builder.sub; + this.subDisplay = builder.subDisplay; + this.sequenceName = builder.sequenceName; + this.sequenceSpace = builder.sequenceSpace; + this.ascending = builder.ascending; + this.regexName = builder.regexName; + this.regexMatch = builder.regexMatch; + this.baseToken = builder.baseToken; + this.baseGuesses = builder.baseGuesses; + if (builder.baseMatches == null) builder.baseMatches = new ArrayList<>(); + this.baseMatches = builder.baseMatches; + this.repeatCount = builder.repeatCount; + this.graph = builder.graph; + this.turns = builder.turns; + this.shiftedCount = builder.shiftedCount; + this.separator = builder.separator; + this.year = builder.year; + this.month = builder.month; + this.day = builder.day; + this.guesses = builder.guesses; + this.guessesLog10 = builder.guessesLog10; + } + + public int tokenLength() { + return token == null ? 0 : token.length(); + } + + public static class Builder { + + private final Pattern pattern; + private final int i; + private final int j; + private final CharSequence token; + + private CharSequence matchedWord; + private int rank; + private String dictionaryName; + private boolean reversed; + private boolean l33t; + private Map sub; + private String subDisplay; + private String sequenceName; + private int sequenceSpace; + private boolean ascending; + private String regexName; + private java.util.regex.Matcher regexMatch; + private CharSequence baseToken; + private double baseGuesses; + private List baseMatches; + private int repeatCount; + private String graph; + private int turns; + private int shiftedCount; + private String separator; + private int year; + private int month; + private int day; + + private Double guesses; + private Double guessesLog10; + + public Builder(Pattern pattern, int i, int j, CharSequence token) { + this.pattern = pattern; + this.i = i; + this.j = j; + this.token = token; + } + + public Builder matchedWord(CharSequence matchedWord) { + this.matchedWord = matchedWord; + return this; + } + + public Builder rank(int rank) { + this.rank = rank; + return this; + } + + public Builder dictionaryName(String dictionaryName) { + this.dictionaryName = dictionaryName; + return this; + } + + public Builder reversed(boolean reversed) { + this.reversed = reversed; + return this; + } + + public Builder l33t(boolean l33t) { + this.l33t = l33t; + return this; + } + + public Builder sub(Map sub) { + this.sub = sub; + return this; + } + + public Builder subDisplay(String subDisplay) { + this.subDisplay = subDisplay; + return this; + } + + public Builder sequenceName(String sequenceName) { + this.sequenceName = sequenceName; + return this; + } + + public Builder sequenceSpace(int sequenceSpace) { + this.sequenceSpace = sequenceSpace; + return this; + } + + public Builder ascending(boolean ascending) { + this.ascending = ascending; + return this; + } + + public Builder regexName(String regexName) { + this.regexName = regexName; + return this; + } + + public Builder regexMatch(java.util.regex.Matcher regexMatch) { + this.regexMatch = regexMatch; + return this; + } + + public Builder baseToken(CharSequence baseToken) { + this.baseToken = baseToken; + return this; + } + + public Builder baseGuesses(double baseGuesses) { + this.baseGuesses = baseGuesses; + return this; + } + + public Builder baseMatches(List baseMatches) { + this.baseMatches = baseMatches; + return this; + } + + public Builder repeatCount(int repeatCount) { + this.repeatCount = repeatCount; + return this; + } + + public Builder graph(String graph) { + this.graph = graph; + return this; + } + + public Builder turns(int turns) { + this.turns = turns; + return this; + } + + public Builder shiftedCount(int shiftedCount) { + this.shiftedCount = shiftedCount; + return this; + } + + public Builder separator(String separator) { + this.separator = separator; + return this; + } + + public Builder year(int year) { + this.year = year; + return this; + } + + public Builder month(int month) { + this.month = month; + return this; + } + + public Builder day(int day) { + this.day = day; + return this; + } + + public Builder guesses(Double guesses) { + this.guesses = guesses; + return this; + } + + public Builder guessesLog10(Double guessesLog10) { + this.guessesLog10 = guessesLog10; + return this; + } + + public Match build() { + return new Match(this); + } + } + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/EpisodeRepository.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/EpisodeRepository.java new file mode 100644 index 0000000..a1db835 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/EpisodeRepository.java @@ -0,0 +1,14 @@ +package com.wildcodeschool.serialseries.thymeleaf.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import com.wildcodeschool.serialseries.thymeleaf.entity.Episode; +import com.wildcodeschool.serialseries.thymeleaf.entity.Series; + + +public interface EpisodeRepository extends JpaRepository { + + List findBySeriesIs(Series series); + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/ScheduleRepository.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/ScheduleRepository.java new file mode 100644 index 0000000..d748c12 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/ScheduleRepository.java @@ -0,0 +1,9 @@ +package com.wildcodeschool.serialseries.thymeleaf.repository; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; +import com.wildcodeschool.serialseries.thymeleaf.entity.Schedule; + +@Repository +public interface ScheduleRepository extends JpaRepository { + } diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/SeriesRepository.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/SeriesRepository.java new file mode 100644 index 0000000..911004a --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/SeriesRepository.java @@ -0,0 +1,28 @@ +package com.wildcodeschool.serialseries.thymeleaf.repository; + +import com.wildcodeschool.serialseries.thymeleaf.entity.Series; + +import java.util.List; +import java.util.Optional; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.data.repository.PagingAndSortingRepository; +import org.springframework.stereotype.Repository; + +@Repository +public interface SeriesRepository extends PagingAndSortingRepository { + + Series findByNameContaining(String suchbegriff); + + Optional findById(String seriesId); + + List findByNameContainingOrDescriptionContaining (String name, String description); + + + List findFirst30ByNameContainingOrDescriptionContaining (String name, String description); + + + + +} + diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/StationRepository.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/StationRepository.java new file mode 100644 index 0000000..b0cba78 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/StationRepository.java @@ -0,0 +1,18 @@ +package com.wildcodeschool.serialseries.thymeleaf.repository; + +import java.util.List; + +import org.springframework.data.jpa.repository.JpaRepository; +import org.springframework.stereotype.Repository; + +import com.wildcodeschool.serialseries.thymeleaf.entity.Station; + + + @Repository + public interface StationRepository extends JpaRepository { + + List findByNameContaining(String name); + } + + + diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/UserRepository.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/UserRepository.java new file mode 100644 index 0000000..115c3ac --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/repository/UserRepository.java @@ -0,0 +1,18 @@ +/** + * Created by AEr on 07.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.repository; + +import com.wildcodeschool.serialseries.thymeleaf.entity.User; +import org.springframework.data.jpa.repository.JpaRepository; + +import java.util.Optional; + +public interface UserRepository extends JpaRepository { + + public Optional findByName(String name); + User findByEmail(String email); + User findByConfirmationToken(String confirmationToken); +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/EmailService.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/EmailService.java new file mode 100644 index 0000000..e3d08f5 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/EmailService.java @@ -0,0 +1,30 @@ +/* + Created by AEr on 14.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.service; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.mail.SimpleMailMessage; +import org.springframework.mail.javamail.JavaMailSender; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; + +@Service("emailService") +public class EmailService { + + private JavaMailSender mailSender; + + @Autowired + public EmailService(JavaMailSender mailSender) { + this.mailSender = mailSender; + } + + @Async + public void sendEmail(SimpleMailMessage email) { + System.out.println(email.toString()); + mailSender.send(email); + } + +} diff --git a/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/UserDetailsServiceImpl.java b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/UserDetailsServiceImpl.java new file mode 100644 index 0000000..7a208a0 --- /dev/null +++ b/src/main/java/com/wildcodeschool/serialseries/thymeleaf/service/UserDetailsServiceImpl.java @@ -0,0 +1,61 @@ +/** + * Created by AEr on 07.02.20. + */ + + +package com.wildcodeschool.serialseries.thymeleaf.service; + +import com.wildcodeschool.serialseries.thymeleaf.entity.AdminUserDetails; +import com.wildcodeschool.serialseries.thymeleaf.entity.User; +import com.wildcodeschool.serialseries.thymeleaf.repository.UserRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.security.core.userdetails.UserDetails; +import org.springframework.security.core.userdetails.UserDetailsService; +import org.springframework.security.core.userdetails.UsernameNotFoundException; +import org.springframework.stereotype.Service; + +import java.util.Optional; + +@Service +public class UserDetailsServiceImpl implements UserDetailsService { + + private final UserRepository userRepository; + + private final String adminPassword; + + @Autowired + public UserDetailsServiceImpl(UserRepository userRepository, @Value("${admin.password}") String adminPassword) { + + this.userRepository = userRepository; + this.adminPassword = adminPassword; + } + + public User findByEmail(String email) { + return userRepository.findByEmail(email); + } + + public User findByConfirmationToken(String confirmationToken) { + return userRepository.findByConfirmationToken(confirmationToken); + } + + public void saveUser(User user) { + userRepository.save(user); + } + + @Override + public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException { + + if ("admin".equals(username)) { + return new AdminUserDetails("admin", adminPassword); + } + + Optional optionalUser = userRepository.findByName(username); + + if (!optionalUser.isPresent()) { + throw new UsernameNotFoundException("User " + username + " not found"); + } + return optionalUser.get(); + + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 9e09f24..11593a3 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -1,4 +1,57 @@ +admin.password=$2y$12$0tne83x1oFeuM65Bey8iE.Yc6BFD42h5k.F.26lsRxwlh9hkNRRkG + +spring.jpa.hibernate.ddl-auto=create +spring.datasource.initialization-mode=always +spring.jpa.properties.hibernate.dialect = org.hibernate.dialect.MySQL5Dialect spring.datasource.url=jdbc:mysql://localhost:3306/serialseries?serverTimezone=GMT spring.datasource.username=springuser spring.datasource.password=Serial_Series_2019 -spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver \ No newline at end of file +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +# load database by with file src/main/resources/data.sql + + +# =============================== +# TOMCAT +# =============================== +server.address=127.0.0.1 +server.error.whitelabel.enabled=false +server.tomcat.accesslog.enabled=true + +# =============================== +# SMTP EMAIL +# =============================== +spring.mail.host = smtp.googlemail.com +spring.mail.username = markus.h.heinrichs@googlemail.com +spring.mail.password = xzskeypqybigdgcm +spring.mail.port = 587 +spring.mail.properties.mail.smtp.auth = true +spring.mail.properties.mail.smtp.starttls.enable = true + +# =============================== +# = LOGGING +# =============================== +logging.level.org.springframework.web=DEBUG +logging.level.org.hibernate=ERROR + +## =============================== +## = DATA SOURCE +## =============================== +#spring.datasource.url=jdbc:mysql://localhost:3306/demo_db +#spring.datasource.username=dbUser +#spring.datasource.password=dbPass +#spring.datasource.driver-class-name=com.mysql.jdbc.Driver +#spring.datasource.tomcat.max-wait=10000 +#spring.datasource.tomcat.max-active=5 +#spring.datasource.tomcat.test-on-borrow=true + +# =============================== +# = JPA / HIBERNATE +# =============================== +spring.jpa.show-sql = true +#spring.jpa.hibernate.ddl-auto = create + +# =============================== +# = Thymeleaf configurations +# =============================== +spring.thymeleaf.mode=HTML +spring.thymeleaf.cache=false \ No newline at end of file diff --git a/src/main/resources/data.sql b/src/main/resources/data.sql new file mode 100644 index 0000000..a939fbb --- /dev/null +++ b/src/main/resources/data.sql @@ -0,0 +1,105 @@ +-- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64) +-- +-- Host: localhost Database: serialseries +-- ------------------------------------------------------ +-- Server version 5.7.29-0ubuntu0.18.04.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Dumping data for table `station` +-- + +LOCK TABLES station WRITE; +/*!40000 ALTER TABLE station DISABLE KEYS */; +REPLACE INTO station (id, available, country, name, picture) VALUES ('90447',NULL,'DEU','Das Erste HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90447_ll_h3_aa.png'),('67217',NULL,'DEU','ZDF HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s67217_ll_h3_ab.png'),('83615',NULL,'DEU','KiKA HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83615_ll_h3_ab.png'),('87847',NULL,'DEU','ARTE HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s87847_ll_h3_ab.png'),('83545',NULL,'DEU','3sat HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83545_ll_h3_ab.png'),('83627',NULL,'DEU','PHOENIX HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83627_ll_h3_ab.png'),('90438',NULL,'DEU','ZDFneo HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90438_ll_h3_ab.png'),('90457',NULL,'DEU','one HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90457_ll_h3_ab.png'),('83543',NULL,'DEU','ZDFinfo HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83543_ll_h3_ab.png'),('90439',NULL,'DEU','tagesschau24 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90439_ll_h3_ab.png'),('83559',NULL,'DEU','Bayerisches Fernsehen Nord HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83559_ll_h3_ab.png'),('90459',NULL,'DEU','hr-fernsehen HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90459_ll_h3_ab.png'),('92104',NULL,'DEU','MDR Sachsen-Anhalt HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s92104_ll_h3_aa.png'),('84124',NULL,'DEU','NDR Fernsehen NDS HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84124_ll_h3_aa.png'),('90467',NULL,'DEU','RBB Brandenburg HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90467_ll_h3_ab.png'),('83775',NULL,'DEU','SWR Fernsehen RP HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83775_ll_h3_ab.png'),('97252',NULL,'DEU','WDR Köln HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s97252_ll_h3_aa.png'),('110440',NULL,'DEU','ARD-alpha HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110440_ll_h3_aa.png'),('83632',NULL,'DEU','ProSieben HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83632_ll_h3_ab.png'),('83871',NULL,'DEU','VOX HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83871_ll_h3_aa.png'),('83649',NULL,'DEU','Sat.1 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83649_ll_h3_aa.png'),('83641',NULL,'DEU','RTL HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83641_ll_h3_aa.png'),('83642',NULL,'DEU','RTLZWEI HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83642_ll_h3_ac.png'),('83643',NULL,'DEU','Super RTL HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83643_ll_h3_ac.png'),('84053',NULL,'DEU','kabel eins HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84053_ll_h3_aa.png'),('89070',NULL,'DEU','n-tv HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s89070_ll_h3_aa.png'),('83646',NULL,'DEU','Nitro HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83646_ll_h3_aa.png'),('83662',NULL,'DEU','sixx HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83662_ll_h3_aa.png'),('86881',NULL,'DEU','Sat.1 Gold HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s86881_ll_h3_aa.png'),('84352',NULL,'DEU','ProSieben MAXX HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84352_ll_h3_aa.png'),('83581',NULL,'DEU','DMAX HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83581_ll_h3_ab.png'),('84372',NULL,'DEU','Tele 5 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84372_ll_h3_aa.png'),('83625',NULL,'DEU','Welt HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83625_ll_h3_aa.png'),('83583',NULL,'DEU','Eurosport 1 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83583_ll_h3_ab.png'),('84002',NULL,'DEU','SPORT1 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84002_ll_h3_ac.png'),('110430',NULL,'DEU','Nick/MTV+ HD',''),('86871',NULL,'DEU','Disney Channel HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s86871_ll_h3_ab.png'),('83633',NULL,'DEU','QVC HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83633_ll_h3_ad.png'),('90465',NULL,'DEU','QVC Zwei HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90465_ll_h3_ac.png'),('90442',NULL,'DEU','Bibel TV HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90442_ll_h3_ab.png'),('83595',NULL,'DEU','HSE24 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83595_ll_h3_ab.png'),('90494',NULL,'DEU','1-2-3.tv HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90494_ll_h3_aa.png'),('30644',NULL,'GBR','BBC One London','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s30644_ll_h3_aa.png'),('17154',NULL,'GBR','BBC Two','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s17154_ll_h3_aa.png'),('17468',NULL,'GBR','ITV1 (London)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s17468_ll_h3_aa.png'),('17155',NULL,'GBR','Channel 4','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s17155_ll_h3_aa.png'),('17157',NULL,'GBR','Channel 5','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s17157_ll_h3_aa.png'),('20630',NULL,'GBR','ITV2','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s20630_ll_h3_aa.png'),('84926',NULL,'GBR','London Live','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s84926_ll_h3_aa.png'),('20684',NULL,'GBR','BBC Four','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s20684_ll_h3_aa.png'),('44643',NULL,'GBR','ITV3','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s44643_ll_h3_aa.png'),('48021',NULL,'GBR','Pick TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s48021_ll_h3_aa.png'),('62391',NULL,'GBR','Quest','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s62391_ll_h3_ac.png'),('25117',NULL,'GBR','E4','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s25117_ll_h3_aa.png'),('21494',NULL,'GBR','Film4','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s21494_ll_h3_ab.png'),('56892',NULL,'GBR','Channel 4 +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s56892_ll_h3_aa.png'),('21810',NULL,'GBR','QVC (European)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s21810_ll_h3_aa.png'),('45828',NULL,'GBR','Really UKTV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s45828_ll_h3_aa.png'),('47657',NULL,'GBR','More 4','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s47657_ll_h3_ab.png'),('24305',NULL,'GBR','Dave','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24305_ll_h3_aa.png'),('82575',NULL,'GBR','Drama','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s82575_ll_h3_aa.png'),('52335',NULL,'GBR','5USA','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s52335_ll_h3_aa.png'),('110927',NULL,'GBR','Ideal World (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110927_ll_h3_ab.png'),('110928',NULL,'GBR','Create and Craft (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110928_ll_h3_aa.png'),('48020',NULL,'GBR','ITV4','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s48020_ll_h3_aa.png'),('31783',NULL,'GBR','Yesterday','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31783_ll_h3_aa.png'),('90257',NULL,'GBR','ITV BE','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s90257_ll_h3_aa.png'),('110916',NULL,'GBR','ITV2 +1 (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110916_ll_h3_aa.png'),('33882',NULL,'GBR','E4 +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s33882_ll_h3_aa.png'),('31786',NULL,'GBR','4Music','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31786_ll_h3_aa.png'),('52336',NULL,'GBR','5 Star','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s52336_ll_h3_aa.png'),('109246',NULL,'GBR','Paramount Network','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s109246_ll_h3_aa.png'),('81450',NULL,'GBR','Sony Movies','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s81450_ll_h3_ab.png'),('65160',NULL,'GBR','ITV +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s65160_ll_h3_aa.png'),('98366',NULL,'GBR','ITV3 Freeview +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s98366_ll_h3_aa.png'),('110929',NULL,'GBR','QVC Beauty (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110929_ll_h3_ab.png'),('110930',NULL,'GBR','QVC Style (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110930_ll_h3_ab.png'),('58793',NULL,'GBR','DMAX','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s58793_ll_h3_aa.png'),('102471',NULL,'GBR','Quest Red','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s102471_ll_h3_aa.png'),('73970',NULL,'GBR','CBS Justice','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s73970_ll_h3_aa.png'),('46306',NULL,'GBR','Sony Movies Action','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s46306_ll_h3_aa.png'),('44718',NULL,'GBR','Food Network','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s44718_ll_h3_aa.png'),('21257',NULL,'GBR','HGTV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s21257_ll_h3_aa.png'),('110931',NULL,'GBR','Gems TV (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110931_ll_h3_ab.png'),('77749',NULL,'GBR','Channel 5 +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s77749_ll_h3_aa.png'),('25630',NULL,'GBR','Film4 +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s25630_ll_h3_aa.png'),('21793',NULL,'GBR','Challenge TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s21793_ll_h3_aa.png'),('75804',NULL,'GBR','4Seven','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s75804_ll_h3_aa.png'),('57747',NULL,'GBR','Sony Channel','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s57747_ll_h3_ac.png'),('30157',NULL,'GBR','The Jewellery Channel','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s30157_ll_h3_aa.png'),('44717',NULL,'GBR','Sony Movies Classic','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s44717_ll_h3_ab.png'),('56888',NULL,'GBR','5SELECT','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s56888_ll_h3_aa.png'),('97290',NULL,'GBR','5 Star +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s97290_ll_h3_aa.png'),('56890',NULL,'GBR','5USA +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s56890_ll_h3_ag.png'),('110553',NULL,'GBR','Smithsonian Channel HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110553_ll_h3_aa.png'),('110917',NULL,'GBR','ITVBe +1 (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110917_ll_h3_aa.png'),('110918',NULL,'GBR','ITV4 +1 (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110918_ll_h3_aa.png'),('97281',NULL,'GBR','Sony Movies +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s97281_ll_h3_ab.png'),('110919',NULL,'GBR','Blaze (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110919_ll_h3_ab.png'),('105388',NULL,'GBR','Free Sports','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s105388_ll_h3_aa.png'),('97332',NULL,'GBR','TBN UK','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s97332_ll_h3_aa.png'),('31756',NULL,'GBR','CBS Reality','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31756_ll_h3_aa.png'),('45510',NULL,'GBR','CBS Reality +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s45510_ll_h3_aa.png'),('102965',NULL,'GBR','CBS Justice +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s102965_ll_h3_aa.png'),('42762',NULL,'GBR','Horror Channel','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s42762_ll_h3_aa.png'),('110922',NULL,'GBR','CBS Drama (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110922_ll_h3_ab.png'),('102764',NULL,'GBR','Quest Red +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s102764_ll_h3_aa.png'),('29067',NULL,'GBR','Jewellery Maker','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s29067_ll_h3_aa.png'),('110921',NULL,'GBR','Quest +1 (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110921_ll_h3_aa.png'),('112597',NULL,'GBR','TCC','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112597_ll_h3_aa.png'),('44855',NULL,'GBR','Dave Ja Vu','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s44855_ll_h3_aa.png'),('110920',NULL,'GBR','Blaze +1 (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110920_ll_h3_aa.png'),('99024',NULL,'GBR','Talking Pictures TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s99024_ll_h3_ab.png'),('108488',NULL,'GBR','Now 80s','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s108488_ll_h3_ab.png'),('110742',NULL,'GBR','Now 90\'s UK','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110742_h3_aa.png'),('112565',NULL,'GBR','Hochanda','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112565_ll_h3_aa.png'),('47658',NULL,'GBR','More4 +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s47658_ll_h3_ab.png'),('103634',NULL,'GBR','Spotlight TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s103634_ll_h3_aa.png'),('24677',NULL,'GBR','Together','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24677_ll_h3_aa.png'),('112603',NULL,'GBR','Together TV +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112603_ll_h3_aa.png'),('32358',NULL,'GBR','TV Warehouse','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s32358_ll_h3_aa.png'),('73510',NULL,'GBR','PBS','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s73510_ll_h3_aa.png'),('66716',NULL,'GBR','Pick TV +1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s66716_ll_h3_aa.png'),('113392',NULL,'GBR','PBS America +1',''),('113588',NULL,'GBR','Paramount Network +1',''),('87987',NULL,'GBR','British Forces TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s87987_ll_h3_aa.png'),('87840',NULL,'GBR','BBC One HD (London)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s87840_ll_h3_aa.png'),('50059',NULL,'GBR','BBC Two HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s50059_ll_h3_ab.png'),('50523',NULL,'GBR','ITV1 HD (London)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s50523_ll_h3_ab.png'),('50716',NULL,'GBR','Channel 4 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s50716_ll_h3_aa.png'),('50717',NULL,'GBR','Channel 5 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s50717_ll_h3_aa.png'),('83282',NULL,'GBR','BBC Four HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83282_ll_h3_ac.png'),('83285',NULL,'GBR','BBC News HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83285_ll_h3_aa.png'),('89563',NULL,'GBR','Channel 4 +1 HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s89563_ll_h3_aa.png'),('89562',NULL,'GBR','4Seven HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s89562_ll_h3_aa.png'),('110932',NULL,'GBR','QVC HD (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110932_ll_h3_aa.png'),('110933',NULL,'GBR','QVC Beauty HD (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110933_ll_h3_aa.png'),('98986',NULL,'GBR','RT HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s98986_ll_h3_aa.png'),('105894',NULL,'GBR','Quest HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s105894_ll_h3_aa.png'),('113589',NULL,'GBR','The Jewellery Channel HD',''),('29324',NULL,'GBR','CBBC','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s29324_ll_h3_ab.png'),('29325',NULL,'GBR','CBeebies','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s29325_ll_h3_ab.png'),('49452',NULL,'GBR','Children\'s ITV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s49452_ll_h3_aa.png'),('83281',NULL,'GBR','CBBC HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83281_ll_h3_ab.png'),('83283',NULL,'GBR','CBeebies HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s83283_ll_h3_aa.png'),('33638',NULL,'GBR','Pop','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s33638_ll_h3_aa.png'),('110925',NULL,'GBR','Tiny Pop (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110925_ll_h3_aa.png'),('110923',NULL,'GBR','Pop Max (Freeview)','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s110923_ll_h3_aa.png'),('112601',NULL,'GBR','Ketchup TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112601_ll_h3_aa.png'),('19037',NULL,'GBR','BBC News','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s19037_ll_h3_aa.png'),('20685',NULL,'GBR','BBC Parliament','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s20685_ll_h3_aa.png'),('16234',NULL,'GBR','Sky News','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s16234_ll_h3_ac.png'),('49887',NULL,'GBR','RT','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s49887_ll_h3_aa.png'),('81004',NULL,'GBR','BBC Red Button 1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s81004_ll_h3_aa.png'),('112602',NULL,'GBR','365 Travel','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112602_ll_h3_aa.png'),('105390',NULL,'GBR','Kiss Me TV',''),('105391',NULL,'GBR','Proud Dating',''),('24226',NULL,'GBR','Racing TV HD','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24226_ll_h3_aa.png'),('67676',NULL,'GBR','SonLife Broadcasting Network','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s67676_ll_h3_aa.png'),('112594',NULL,'GBR','Vision TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112594_ll_h3_aa.png'),('112599',NULL,'GBR','Planet Knowledge','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112599_ll_h3_aa.png'),('112598',NULL,'GBR','Sports Channel Network','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112598_ll_h3_aa.png'),('44098',NULL,'GBR','ARISE','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s44098_ll_h3_aa.png'),('112604',NULL,'GBR','Adult Section',''),('105393',NULL,'GBR','Smile TV2',''),('105394',NULL,'GBR','Smile TV3','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s105394_ll_h3_aa.png'),('100427',NULL,'GBR','Babestation','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s100427_ll_h3_aa.png'),('112600',NULL,'GBR','ADULT Party',''),('77443',NULL,'GBR','xxXpanded TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s77443_ll_h3_aa.png'),('77448',NULL,'GBR','Studio 66 TV','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s77448_ll_h3_aa.png'),('112593',NULL,'GBR','xxXpanded TV 2',''),('24434',NULL,'GBR','BBC Radio 1','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24434_ll_h3_aa.png'),('31266',NULL,'GBR','BBC Radio 1 Xtra','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31266_h3_aa.png'),('24435',NULL,'GBR','BBC Radio 2','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24435_ll_h3_aa.png'),('24436',NULL,'GBR','BBC Radio 3','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24436_h3_aa.png'),('24437',NULL,'GBR','BBC Radio 4 FM','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24437_ll_h3_aa.png'),('24438',NULL,'GBR','BBC Radio 5 Live','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24438_ll_h3_aa.png'),('29920',NULL,'GBR','BBC Radio 5 Live Sports Xtra','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s29920_ll_h3_aa.png'),('30166',NULL,'GBR','BBC Radio 6 Music','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s30166_h3_aa.png'),('31790',NULL,'GBR','BBC Radio 4 Extra','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31790_h3_aa.png'),('24452',NULL,'GBR','BBC Asian Network','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24452_ll_h3_ab.png'),('24448',NULL,'GBR','BBC World Service','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24448_ll_h3_aa.png'),('33635',NULL,'GBR','The Hits Radio','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s33635_ll_h3_aa.png'),('25605',NULL,'GBR','Kiss Fresh','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s25605_ll_h3_aa.png'),('25151',NULL,'GBR','Kiss','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s25151_ll_h3_aa.png'),('112559',NULL,'GBR','Kisstory','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112559_ll_h3_aa.png'),('30639',NULL,'GBR','Magic FM','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s30639_ll_h3_aa.png'),('112564',NULL,'GBR','Heat Radio','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112564_ll_h3_aa.png'),('31788',NULL,'GBR','Kerrang! Radio','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s31788_ll_h3_aa.png'),('45752',NULL,'GBR','Smooth FM 102.2','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s45752_ll_h3_aa.png'),('24441',NULL,'GBR','Talk Sport','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24441_ll_h3_aa.png'),('30500',NULL,'GBR','Capital London','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s30500_ll_h3_aa.png'),('24469',NULL,'GBR','Premier - PREMIER','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24469_ll_h3_aa.png'),('82559',NULL,'GBR','BBC Radio Stoke','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s82559_ll_h3_ab.png'),('24440',NULL,'GBR','Absolute Radio','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24440_ll_h3_aa.png'),('24467',NULL,'GBR','Heart FM','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24467_ll_h3_aa.png'),('112560',NULL,'GBR','RNIB Connect','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s112560_ll_h3_aa.png'),('24439',NULL,'GBR','Classic FM','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s24439_ll_h3_aa.png'),('33579',NULL,'GBR','LBC','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s33579_ll_h3_aa.png'),('25225',NULL,'GBR','TWR','https://s3.amazonaws.com/schedulesdirect/assets/stationLogos/s25225_ll_h3_aa.png'); +/*!40000 ALTER TABLE station ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping data for table `schedule` +-- + +LOCK TABLES schedule WRITE; +/*!40000 ALTER TABLE schedule DISABLE KEYS */; +REPLACE INTO schedule (id, air_date_time, episode_id, station_id) VALUES (2969,'2020-02-27 00:20:00','EP015443450228','90447'),(2970,'2020-02-28 00:35:00','EP034422980003','90447'),(2971,'2020-02-27 00:30:00','EP019973301228','67217'),(2972,'2020-02-28 00:45:00','EP034191820005','67217'),(2973,'2020-02-26 20:35:00','EP031006840015','83615'),(2974,'2020-02-27 20:35:00','EP031006840028','83615'),(2975,'2020-02-26 19:40:00','EP026278450560','87847'),(2976,'2020-02-28 00:20:00','EP029497560002','87847'),(2977,'2020-02-27 00:55:00','EP019758060177','83545'),(2978,'2020-02-28 00:35:00','EP021099870025','83545'),(2979,'2020-02-27 00:45:00','EP023234070003','83627'),(2980,'2020-02-28 00:45:00','EP020064170228','83627'),(2981,'2020-02-27 00:00:00','EP027789770004','90438'),(2982,'2020-02-28 00:45:00','EP033561270002','90438'),(2983,'2020-02-26 23:50:00','EP031184410024','90457'),(2984,'2020-02-27 23:40:00','EP033100900006','90457'),(2985,'2020-02-27 00:35:00','EP016397722016','83543'),(2986,'2020-02-28 00:35:00','EP016397722017','83543'),(2987,'2020-02-27 00:15:00','EP022518890065','90439'),(2988,'2020-02-28 00:30:00','EP032161810005','90439'),(2989,'2020-02-26 23:30:00','EP015445920259','83559'),(2990,'2020-02-28 00:40:00','EP016937100166','83559'),(2991,'2020-02-27 00:40:00','EP019764290001','90459'),(2992,'2020-02-27 23:15:00','EP019729600113','90459'),(2993,'2020-02-26 23:33:00','EP032012092456','92104'),(2994,'2020-02-28 00:55:00','EP021851650073','92104'),(2995,'2020-02-27 00:45:00','EP015402000275','84124'),(2996,'2020-02-27 22:00:00','EP029227230001','84124'),(2997,'2020-02-27 00:00:00','EP029304850021','90467'),(2998,'2020-02-27 22:30:00','EP006921700343','90467'),(2999,'2020-02-27 00:15:00','EP018886850004','83775'),(3000,'2020-02-27 23:15:00','EP019885670098','83775'),(3001,'2020-02-26 22:55:00','EP019798080112','97252'),(3002,'2020-02-27 22:40:00','EP019618100247','97252'),(3003,'2020-02-27 00:30:00','EP020073300219','110440'),(3004,'2020-02-28 00:30:00','EP020073300220','110440'),(3005,'2020-02-26 23:45:00','EP028781520017','83632'),(3006,'2020-02-28 00:50:00','EP032225950006','83632'),(3007,'2020-02-27 00:25:00','EP021958510160','83871'),(3008,'2020-02-27 19:00:00','EP019384431709','83871'),(3009,'2020-02-26 23:50:00','EP028840320021','83649'),(3010,'2020-02-27 19:55:00','EP019560330275','83649'),(3011,'2020-02-27 00:30:00','EP018573670014','83641'),(3012,'2020-02-28 00:30:00','EP016991810154','83641'),(3013,'2020-02-26 23:20:00','EP034343610002','83642'),(3014,'2020-02-27 23:15:00','EP031747090013','83642'),(3015,'2020-02-26 23:20:00','EP018574310171','83643'),(3016,'2020-02-27 23:55:00','EP020364790112','83643'),(3017,'2020-02-26 18:55:00','EP028765600929','84053'),(3018,'2020-02-28 00:05:00','EP030403860164','84053'),(3019,'2020-02-27 00:10:00','EP021796150009','89070'),(3020,'2020-02-28 00:30:00','EP019679880008','89070'),(3021,'2020-02-26 19:45:00','EP019692430075','83646'),(3022,'2020-02-28 00:10:00','EP019388320181','83646'),(3023,'2020-02-27 00:45:00','EP027786700047','83662'),(3024,'2020-02-28 00:55:00','EP031193860015','83662'),(3025,'2020-02-27 00:10:00','EP022855020053','86881'),(3026,'2020-02-28 00:55:00','EP032380950013','86881'),(3027,'2020-02-27 00:45:00','EP029042750060','84352'),(3028,'2020-02-28 00:50:00','EP028004160013','84352'),(3029,'2020-02-27 00:18:00','EP019836710218','83581'),(3030,'2020-02-28 00:15:00','EP019567660084','83581'),(3031,'2020-02-26 22:20:00','EP032992490014','84372'),(3032,'2020-02-27 19:10:00','EP019952950212','84372'),(3033,'2020-02-26 22:25:00','EP028225170010','83625'),(3034,'2020-02-27 22:05:00','EP032153780005','83625'),(3035,'2020-02-27 00:30:00','EP019769291454','83583'),(3036,'2020-02-28 00:30:00','EP019769291455','83583'),(3037,'2020-02-27 00:30:00','EP003337730435','84002'),(3038,'2020-02-28 00:30:00','EP003337730430','84002'),(3039,'2020-02-27 00:10:00','EP029228150056','110430'),(3040,'2020-02-28 00:40:00','EP034185720007','110430'),(3041,'2020-02-27 00:50:00','EP019570890013','86871'),(3042,'2020-02-28 00:55:00','EP019684830018','86871'),(3043,'2020-02-27 00:00:00','EP018618750001','83633'),(3044,'2020-02-28 00:00:00','EP034258460005','83633'),(3045,'2020-02-28 00:00:00','EP034258460005','83633'),(3046,'2020-02-28 00:00:00','EP034258460005','83633'),(3047,'2020-02-28 00:00:00','EP034258460005','83633'),(3048,'2020-02-28 00:00:00','EP034258460005','83633'),(3049,'2020-02-28 00:00:00','EP034258460005','83633'),(3050,'2020-02-28 00:00:00','EP034258460005','83633'),(3051,'2020-02-28 00:00:00','EP034258460005','83633'),(3052,'2020-02-28 00:00:00','EP034258460005','83633'),(3053,'2020-02-27 00:50:00','EP030370410001','30644'),(3054,'2020-02-28 00:35:00','EP034276860003','30644'),(3055,'2020-02-27 00:15:00','EP032069840003','17154'),(3056,'2020-02-28 00:15:00','EP034216870005','17154'),(3057,'2020-02-27 00:45:00','EP025488890108','17468'),(3058,'2020-02-28 00:45:00','EP034446850004','17468'),(3059,'2020-02-27 00:30:00','EP017507530142','17155'),(3060,'2020-02-28 00:05:00','EP014129450241','17155'),(3061,'2020-02-26 23:00:00','EP034332130003','17157'),(3062,'2020-02-28 00:05:00','EP029671680012','17157'),(3063,'2020-02-27 00:50:00','EP012791830233','20630'),(3064,'2020-02-28 00:40:00','EP012595550203','20630'),(3065,'2020-02-26 23:00:00','EP022417610078','84926'),(3066,'2020-02-27 22:30:00','EP019060020003','84926'),(3067,'2020-02-27 00:00:00','EP023120050001','20684'),(3068,'2020-02-28 00:00:00','EP013457520004','20684'),(3069,'2020-02-27 00:00:00','EP012641900002','44643'),(3070,'2020-02-28 00:00:00','EP012641900003','44643'),(3071,'2020-02-27 00:00:00','EP024960890003','48021'),(3072,'2020-02-28 00:15:00','EP024960890004','48021'),(3073,'2020-02-26 23:30:00','EP030153770097','62391'),(3074,'2020-02-28 00:30:00','EP012823810371','62391'),(3075,'2020-02-27 00:35:00','EP012708730091','25117'),(3076,'2020-02-28 00:30:00','EP012708730094','25117'),(3077,'2020-02-28 00:30:00','EP012708730094','25117'),(3078,'2020-02-28 00:30:00','EP012708730094','25117'),(3079,'2020-02-27 00:35:00','EP016990740203','56892'),(3080,'2020-02-28 00:00:00','EP017507530143','56892'),(3081,'2020-02-28 00:00:00','EP017507530143','56892'),(3082,'2020-02-28 00:00:00','EP017507530143','56892'),(3083,'2020-02-27 00:00:00','EP025112790041','45828'),(3084,'2020-02-28 00:00:00','EP025112790042','45828'),(3085,'2020-02-27 00:05:00','EP014129450035','47657'),(3086,'2020-02-28 00:00:00','EP016113240044','47657'),(3087,'2020-02-27 00:40:00','EP012588680089','24305'),(3088,'2020-02-28 00:40:00','EP012822630074','24305'),(3089,'2020-02-27 00:20:00','EP013033150015','82575'),(3090,'2020-02-28 00:25:00','EP012736670046','82575'),(3091,'2020-02-27 00:55:00','EP012702080306','52335'),(3092,'2020-02-28 00:55:00','EP012702080308','52335'),(3093,'2020-02-28 00:55:00','EP012702080308','52335'),(3094,'2020-02-28 00:55:00','EP012702080308','52335'),(3095,'2020-02-28 00:55:00','EP012702080308','52335'),(3096,'2020-02-28 00:55:00','EP012702080308','52335'),(3097,'2020-02-26 19:45:00','EP014430320249','48020'),(3098,'2020-02-27 19:45:00','EP014430320251','48020'),(3099,'2020-02-27 00:00:00','EP028472930003','31783'),(3100,'2020-02-28 00:00:00','EP028472930004','31783'),(3101,'2020-02-27 00:00:00','EP033003560001','90257'),(3102,'2020-02-28 00:00:00','EP033003560002','90257'),(3103,'2020-02-27 00:50:00','EP012595550195','110916'),(3104,'2020-02-27 22:30:00','EP012846970242','110916'),(3105,'2020-02-27 00:00:00','EP012877770224','33882'),(3106,'2020-02-28 00:00:00','EP032868020010','33882'),(3107,'2020-02-27 00:50:00','EP012798330175','31786'),(3108,'2020-02-28 00:50:00','EP012798330176','31786'),(3109,'2020-02-27 00:00:00','EP033562230001','52336'),(3110,'2020-02-27 20:00:00','EP031661660001','52336'),(3111,'2020-02-27 00:05:00','EP034111460009','109246'),(3112,'2020-02-27 23:00:00','EP030143840010','109246'),(3113,'2020-02-27 23:00:00','EP030143840010','109246'),(3114,'2020-02-27 23:00:00','EP030143840010','109246'),(3115,'2020-02-27 00:45:00','EP030518540063','65160'),(3116,'2020-02-28 00:45:00','EP012794060108','65160'),(3117,'2020-02-27 00:00:00','EP014205450003','98366'),(3118,'2020-02-28 00:00:00','EP014205450004','98366'),(3119,'2020-02-28 00:00:00','EP014205450004','98366'),(3120,'2020-02-28 00:00:00','EP014205450004','98366'),(3121,'2020-02-28 00:00:00','EP014205450004','98366'),(3122,'2020-02-28 00:00:00','EP014205450004','98366'),(3123,'2020-02-27 00:00:00','EP017357350031','58793'),(3124,'2020-02-28 00:00:00','EP017357350033','58793'),(3125,'2020-02-27 00:00:00','EP013056440047','102471'),(3126,'2020-02-28 00:00:00','EP033199040003','102471'),(3127,'2020-02-27 00:00:00','EP020265790066','73970'),(3128,'2020-02-28 00:00:00','EP020265790067','73970'),(3129,'2020-02-26 13:15:00','EP016936530014','46306'),(3130,'2020-02-27 13:10:00','EP016936530015','46306'),(3131,'2020-02-27 00:30:00','EP018553660106','44718'),(3132,'2020-02-28 00:30:00','EP018553660107','44718'),(3133,'2020-02-27 00:00:00','EP013040330080','21257'),(3134,'2020-02-27 23:00:00','EP022222000065','21257'),(3135,'2020-02-27 23:00:00','EP022222000065','21257'),(3136,'2020-02-27 23:00:00','EP022222000065','21257'),(3137,'2020-02-27 00:00:00','EP034332130003','77749'),(3138,'2020-02-27 23:00:00','EP034460040001','77749'),(3139,'2020-02-27 23:00:00','EP034460040001','77749'),(3140,'2020-02-27 23:00:00','EP034460040001','77749'),(3141,'2020-02-27 00:30:00','EP013031190143','21793'),(3142,'2020-02-28 00:30:00','EP013031190084','21793'),(3143,'2020-02-27 00:05:00','EP034333430003','75804'),(3144,'2020-02-28 00:05:00','EP022574680028','75804'),(3145,'2020-02-26 21:30:00','EP012691630220','57747'),(3146,'2020-02-27 21:30:00','EP012691630260','57747'),(3147,'2020-02-26 22:00:00','EP031186390002','30157'),(3148,'2020-02-26 22:00:00','EP031186390002','30157'),(3149,'2020-02-26 22:00:00','EP031186390002','30157'),(3150,'2020-02-26 22:00:00','EP031186390002','30157'),(3151,'2020-02-27 00:00:00','EP018042140075','56888'),(3152,'2020-02-28 00:00:00','EP018042140075','56888'),(3153,'2020-02-26 23:00:00','EP034331040003','97290'),(3154,'2020-02-27 21:00:00','EP031661660001','97290'),(3155,'2020-02-27 00:00:00','EP012702080369','56890'),(3156,'2020-02-28 00:00:00','EP012702080371','56890'),(3157,'2020-02-27 00:30:00','EP032163690002','110553'),(3158,'2020-02-28 00:00:00','EP031539610002','110553'),(3159,'2020-02-28 00:00:00','EP031539610002','110553'),(3160,'2020-02-28 00:00:00','EP031539610002','110553'),(3161,'2020-02-28 00:00:00','EP031539610002','110553'),(3162,'2020-02-28 00:00:00','EP031539610002','110553'),(3163,'2020-02-28 00:00:00','EP031539610002','110553'),(3164,'2020-02-28 00:00:00','EP031539610002','110553'),(3165,'2020-02-27 00:30:00','EP014054720051','110919'),(3166,'2020-02-28 00:30:00','EP014054720162','110919'),(3167,'2020-02-27 00:00:00','EP016876850065','105388'),(3168,'2020-02-27 23:00:00','EP021336340177','105388'),(3169,'2020-02-27 23:00:00','EP021336340177','105388'),(3170,'2020-02-27 23:00:00','EP021336340177','105388'),(3171,'2020-02-27 00:00:00','EP030044550038','31756'),(3172,'2020-02-28 00:00:00','EP030044550039','31756'),(3173,'2020-02-27 00:00:00','EP034010480007','45510'),(3174,'2020-02-28 00:00:00','EP029025790045','45510'),(3175,'2020-02-27 00:00:00','EP012608380032','102965'),(3176,'2020-02-28 00:00:00','EP012608380033','102965'),(3177,'2020-02-26 21:00:00','EP012735490049','42762'),(3178,'2020-02-27 21:00:00','EP012735490050','42762'),(3179,'2020-02-27 00:00:00','EP012600970045','110922'),(3180,'2020-02-27 23:00:00','EP012597100044','110922'),(3181,'2020-02-27 00:00:00','EP017152750066','102764'),(3182,'2020-02-28 00:00:00','EP034332530003','102764'),(3183,'2020-02-28 00:00:00','EP034332530003','102764'),(3184,'2020-02-28 00:00:00','EP034332530003','102764'),(3185,'2020-02-27 00:30:00','EP030153770097','110921'),(3186,'2020-02-28 00:00:00','EP017951870057','110921'),(3187,'2020-02-28 00:00:00','EP017951870057','110921'),(3188,'2020-02-28 00:00:00','EP017951870057','110921'),(3189,'2020-02-27 00:00:00','EP031459900012','44855'),(3190,'2020-02-28 00:40:00','EP013050000169','44855'),(3191,'2020-02-27 00:00:00','EP014220620003','110920'),(3192,'2020-02-28 00:00:00','EP016932800048','110920'),(3193,'2020-02-26 22:00:00','EP012692140033','99024'),(3194,'2020-02-27 22:00:00','EP034418900001','99024'),(3195,'2020-02-27 22:00:00','EP034418900001','99024'),(3196,'2020-02-27 22:00:00','EP034418900001','99024'),(3197,'2020-02-27 22:00:00','EP034418900001','99024'),(3198,'2020-02-27 22:00:00','EP034418900001','99024'),(3199,'2020-02-26 13:00:00','EP033425310001','112565'),(3200,'2020-02-26 13:00:00','EP033425310001','112565'),(3201,'2020-02-27 00:00:00','EP034398560004','47658'),(3202,'2020-02-28 00:00:00','EP031196540022','47658'),(3203,'2020-02-28 00:00:00','EP031196540022','47658'),(3204,'2020-02-28 00:00:00','EP031196540022','47658'),(3205,'2020-02-26 21:00:00','EP018387870002','24677'),(3206,'2020-02-27 21:00:00','EP018387870003','24677'),(3207,'2020-02-26 22:00:00','EP018387870002','112603'),(3208,'2020-02-27 22:00:00','EP018387870003','112603'),(3209,'2020-02-27 22:00:00','EP018387870003','112603'),(3210,'2020-02-27 22:00:00','EP018387870003','112603'),(3211,'2020-02-27 00:00:00','EP021731320003','73510'),(3212,'2020-02-28 00:00:00','EP021731320004','73510'),(3213,'2020-02-27 00:00:00','EP020815760005','66716'),(3214,'2020-02-28 00:15:00','EP026229010025','66716'),(3215,'2020-02-26 23:50:00','EP016114010003','113392'),(3216,'2020-02-27 21:20:00','EP021731320004','113392'),(3217,'2020-02-26 22:00:00','EP012911720228','113588'),(3218,'2020-02-28 00:00:00','EP030143840010','113588'),(3219,'2020-02-27 00:00:00','EP012613230045','87987'),(3220,'2020-02-28 00:00:00','EP012613230046','87987'),(3221,'2020-02-27 00:50:00','EP030370410001','87840'),(3222,'2020-02-28 00:35:00','EP034276860003','87840'),(3223,'2020-02-27 00:15:00','EP032069840003','50059'),(3224,'2020-02-28 00:15:00','EP034216870005','50059'),(3225,'2020-02-27 00:45:00','EP025488890108','50523'),(3226,'2020-02-28 00:45:00','EP034446850004','50523'),(3227,'2020-02-27 00:30:00','EP017507530142','50716'),(3228,'2020-02-28 00:05:00','EP014129450241','50716'),(3229,'2020-02-26 23:00:00','EP034332130003','50717'),(3230,'2020-02-28 00:05:00','EP029671680012','50717'),(3231,'2020-02-27 00:00:00','EP023120050001','83282'),(3232,'2020-02-28 00:00:00','EP013457520004','83282'),(3233,'2020-02-26 12:00:00','EP023865520976','83285'),(3234,'2020-02-27 22:30:00','EP034276860001','83285'),(3235,'2020-02-27 00:35:00','EP016990740203','89563'),(3236,'2020-02-28 00:00:00','EP017507530143','89563'),(3237,'2020-02-27 00:05:00','EP034333430003','89562'),(3238,'2020-02-28 00:05:00','EP022574680028','89562'),(3239,'2020-02-28 00:05:00','EP022574680028','89562'),(3240,'2020-02-28 00:05:00','EP022574680028','89562'),(3241,'2020-02-28 00:05:00','EP022574680028','89562'),(3242,'2020-02-28 00:05:00','EP022574680028','89562'),(3243,'2020-02-28 00:05:00','EP022574680028','89562'),(3244,'2020-02-28 00:05:00','EP022574680028','89562'),(3245,'2020-02-26 23:30:00','EP030153770097','105894'),(3246,'2020-02-28 00:30:00','EP012823810371','105894'),(3247,'2020-02-26 22:00:00','EP031186390002','113589'),(3248,'2020-02-26 22:00:00','EP031186390002','113589'),(3249,'2020-02-26 21:25:00','EP023288320053','29324'),(3250,'2020-02-27 21:45:00','EP016608970095','29324'),(3251,'2020-02-26 19:50:00','EP013085690561','29325'),(3252,'2020-02-27 19:50:00','EP013085690635','29325'),(3253,'2020-02-26 21:29:00','EP020803320032','49452'),(3254,'2020-02-27 21:29:00','EP020803320036','49452'),(3255,'2020-02-26 21:25:00','EP023288320053','83281'),(3256,'2020-02-27 21:45:00','EP016608970095','83281'),(3257,'2020-02-26 19:50:00','EP013085690561','83283'),(3258,'2020-02-27 19:50:00','EP013085690635','83283'),(3259,'2020-02-27 00:45:00','EP024895730119','33638'),(3260,'2020-02-28 00:45:00','EP024895730125','33638'),(3261,'2020-02-26 22:45:00','EP030382680010','110925'),(3262,'2020-02-27 22:45:00','EP030382680019','110925'),(3263,'2020-02-26 21:45:00','EP024895730027','110923'),(3264,'2020-02-27 21:45:00','EP024895730038','110923'),(3265,'2020-02-27 21:45:00','EP024895730038','110923'),(3266,'2020-02-27 21:45:00','EP024895730038','110923'),(3267,'2020-02-26 12:00:00','EP023865520976','19037'),(3268,'2020-02-27 22:30:00','EP034276860001','19037'),(3269,'2020-02-27 00:30:00','EP014287220161','20685'),(3270,'2020-02-28 00:30:00','EP013046860221','20685'),(3271,'2020-02-28 00:30:00','EP013046860221','20685'),(3272,'2020-02-28 00:30:00','EP013046860221','20685'),(3273,'2020-02-28 00:30:00','EP013046860221','20685'),(3274,'2020-02-28 00:30:00','EP013046860221','20685'),(3275,'2020-02-27 00:42:00','EP017740050166','81004'),(3276,'2020-02-28 00:42:00','EP017740050166','81004'),(3277,'2020-02-28 00:42:00','EP017740050166','81004'),(3278,'2020-02-28 00:42:00','EP017740050166','81004'),(3279,'2020-02-28 00:42:00','EP017740050166','81004'),(3280,'2020-02-28 00:42:00','EP017740050166','81004'),(3281,'2020-02-28 00:42:00','EP017740050166','81004'),(3282,'2020-02-28 00:42:00','EP017740050166','81004'),(3283,'2020-02-26 21:45:00','EP012971894976','24226'),(3284,'2020-02-27 22:30:00','EP012971895069','24226'),(3285,'2020-02-27 22:30:00','EP012971895069','24226'),(3286,'2020-02-27 22:30:00','EP012971895069','24226'),(3287,'2020-02-27 22:30:00','EP012971895069','24226'),(3288,'2020-02-27 22:30:00','EP012971895069','24226'),(3289,'2020-02-27 22:30:00','EP012971895069','24226'),(3290,'2020-02-27 22:30:00','EP012971895069','24226'),(3291,'2020-02-27 22:30:00','EP012971895069','24226'),(3292,'2020-02-27 22:30:00','EP012971895069','24226'),(3293,'2020-02-27 22:30:00','EP012971895069','24226'),(3294,'2020-02-27 22:30:00','EP012971895069','24226'),(3295,'2020-02-27 22:30:00','EP012971895069','24226'),(3296,'2020-02-27 22:30:00','EP012971895069','24226'),(3297,'2020-02-27 22:30:00','EP012971895069','24226'),(3298,'2020-02-27 22:30:00','EP012971895069','24226'),(3299,'2020-02-27 22:30:00','EP012971895069','24226'),(3300,'2020-02-27 22:30:00','EP012971895069','24226'),(3301,'2020-02-27 22:30:00','EP012971895069','24226'),(3302,'2020-02-27 22:30:00','EP012971895069','24226'),(3303,'2020-02-27 22:30:00','EP012971895069','24226'),(3304,'2020-02-27 22:30:00','EP012971895069','24226'),(3305,'2020-02-27 22:30:00','EP012971895069','24226'),(3306,'2020-02-27 22:30:00','EP012971895069','24226'),(3307,'2020-02-27 22:30:00','EP012971895069','24226'),(3308,'2020-02-27 22:30:00','EP012971895069','24226'),(3309,'2020-02-27 22:30:00','EP012971895069','24226'),(3310,'2020-02-27 22:30:00','EP012971895069','24226'),(3311,'2020-02-27 22:30:00','EP012971895069','24226'),(3312,'2020-02-27 22:30:00','EP012971895069','24226'),(3313,'2020-02-27 22:30:00','EP012971895069','24226'),(3314,'2020-02-27 22:30:00','EP012971895069','24226'),(3315,'2020-02-26 15:00:00','EP013133670432','24435'),(3316,'2020-02-27 23:00:00','EP024596390013','24435'),(3317,'2020-02-26 23:45:00','EP012972321673','24436'),(3318,'2020-02-27 23:45:00','EP012972321674','24436'),(3319,'2020-02-27 00:15:00','EP026736400002','24437'),(3320,'2020-02-27 23:45:00','EP034417580004','24437'),(3321,'2020-02-26 21:00:00','EP013133341940','24438'),(3322,'2020-02-26 21:00:00','EP013133341940','24438'),(3323,'2020-02-26 13:00:00','EP034424150007','29920'),(3324,'2020-02-27 20:00:00','EP015248490405','29920'),(3325,'2020-02-26 05:00:00','EP015514470171','30166'),(3326,'2020-02-27 05:00:00','EP015514470172','30166'),(3327,'2020-02-27 00:30:00','EP024626900008','31790'),(3328,'2020-02-28 00:45:00','EP019599530007','31790'),(3329,'2020-02-28 00:45:00','EP019599530007','31790'),(3330,'2020-02-28 00:45:00','EP019599530007','31790'),(3331,'2020-02-28 00:45:00','EP019599530007','31790'),(3332,'2020-02-28 00:45:00','EP019599530007','31790'),(3333,'2020-02-28 00:45:00','EP019599530007','31790'),(3334,'2020-02-28 00:45:00','EP019599530007','31790'),(3335,'2020-02-28 00:45:00','EP019599530007','31790'),(3336,'2020-02-28 00:45:00','EP019599530007','31790'),(3337,'2020-02-28 00:45:00','EP019599530007','31790'),(3338,'2020-02-28 00:45:00','EP019599530007','31790'),(3339,'2020-02-28 00:45:00','EP019599530007','31790'),(3340,'2020-02-28 00:45:00','EP019599530007','31790'),(3341,'2020-02-28 00:45:00','EP019599530007','31790'),(3342,'2020-02-28 00:45:00','EP019599530007','31790'),(3343,'2020-02-28 00:45:00','EP019599530007','31790'),(3344,'2020-02-28 00:45:00','EP019599530007','31790'),(3345,'2020-02-28 00:45:00','EP019599530007','31790'),(3346,'2020-02-28 00:45:00','EP019599530007','31790'),(3347,'2020-02-28 00:45:00','EP019599530007','31790'),(3348,'2020-02-28 00:45:00','EP019599530007','31790'),(3349,'2020-02-26 20:00:00','EP014080750454','24441'),(3350,'2020-02-26 20:00:00','EP014080750454','24441'),(3351,'2020-02-26 20:00:00','EP014080750454','24441'),(3352,'2020-02-26 20:00:00','EP014080750454','24441'),(3353,'2020-02-26 20:00:00','EP014080750454','24441'),(3354,'2020-02-26 20:00:00','EP014080750454','24441'),(3355,'2020-02-26 20:00:00','EP014080750454','24441'),(3356,'2020-02-26 20:00:00','EP014080750454','24441'),(3357,'2020-02-26 20:00:00','EP014080750454','24441'),(3358,'2020-02-26 20:00:00','EP014080750454','24441'),(3359,'2020-02-26 20:00:00','EP014080750454','24441'),(3360,'2020-02-26 20:00:00','EP014080750454','24441'),(3361,'2020-02-26 20:00:00','EP014080750454','24441'),(3362,'2020-02-26 20:00:00','EP014080750454','24441'),(3363,'2020-02-26 20:00:00','EP014080750454','24441'),(3364,'2020-02-26 20:00:00','EP014080750454','24441'),(3365,'2020-02-26 20:00:00','EP014080750454','24441'),(3366,'2020-02-26 20:00:00','EP014080750454','24441'),(3367,'2020-02-26 20:00:00','EP014080750454','24441'),(3368,'2020-02-26 20:00:00','EP014080750454','24441'); +/*!40000 ALTER TABLE schedule ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping data for table `episode` +-- + +LOCK TABLES episode WRITE; +/*!40000 ALTER TABLE episode DISABLE KEYS */; +REPLACE INTO episode (id, description, episode_title, is_series, language, name, number, picture, rating, season, wanted, series_id) VALUES ('EP013518000165','Andrea and Nick welcome the other contestants to Northrise Lodge.','Northrise Lodge',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9715669_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP013518000164','James and Simon show off what their one-star Winterbourne Hotel has to offer.','The Winterbourne Hotel',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9715666_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP013518000167','It\'s decision day as the four sets of B&B owners discover what they\'ve been paid.','Payment Day',_binary '','GBR','Four in a Bed',NULL,NULL,4,NULL,NULL,'SH013518000000'),('EP012975000321','Melvyn Bragg and guests discuss the origins of horses, and their domestication.','The Evolution of Horses',_binary '','GBR','In Our Time',NULL,NULL,4,NULL,NULL,'SH012975000000'),('EP013518000166','Stephanie and Dominic try to prove their Salutation is value for money.','The Salutation',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9715671_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP027691220032','Celeb-obsessed Navid is wondering what went wrong with model Charlotte.','',_binary '\0','GBR','Eating with My Ex',NULL,NULL,4,NULL,NULL,'SH027691220000'),('EP031318390018','Inside the little Toy House, everybody is sharing a book with pictures of tidy things.','Tidying Up',_binary '','GBR','Moon and Me',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16801657_e_h3_aa.jpg',4,NULL,NULL,'SH031318390000'),('EP031318390019','Pepi Nana, Moon Baby and their friends discover the toy roundabout in the Toy House.','Dibillo\'s Juice Station',_binary '','GBR','Moon and Me',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16802651_e_h3_aa.jpg',4,NULL,NULL,'SH031318390000'),('EP013518000163','Ian and Ali begin a new week of competitive lodging at Wizards Thatch, Cheshire.','Wizards Thatch',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9715660_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP030596860006','Stand-up series exploring British Chinese culture from BBC New Comedy Award finalist Ken Cheng.','Money',_binary '','GBR','Ken Cheng: Chinese Comedian',NULL,NULL,4,NULL,NULL,'SH030596860000'),('EP031540030001','Landmark events from the 1920s are restored to colour, including the bombing of Wall Street.','The 1920s',_binary '','GBR','America in Color',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14226430_e_h3_aa.jpg',4,NULL,NULL,'SH031540030000'),('EP014249520083','District Attorney Ray Gricar fails to return from a short drive, investigators try to find clues.','A Family\'s Curse',_binary '','GBR','Disappeared',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8477908_e_h3_aa.jpg',4,NULL,NULL,'SH014249520000'),('EP012596590049','Computer hacker\'s findings put Scully\'s and Mulder\'s lives and sanity in question.','Anasazi',_binary '','GBR','The X-Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635894_e_h3_ab.jpg',4,NULL,NULL,'SH012596590000'),('EP014249520081','Three women vanish from a house. A criminal claims he knows where they\'re are buried.','The Springfield Three',_binary '','GBR','Disappeared',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8524353_e_h3_aa.jpg',4,NULL,NULL,'SH014249520000'),('EP033573420001','Fünf Paare betrachten den Beziehungsalltag der anderen und geben sich gegenseitig Noten.','Petra und Manfred',_binary '','DEU','Du & Ich - Unverbesserlich!?',NULL,NULL,4,NULL,NULL,'SH033573420000'),('EP020139710006','A traveller who\'s spent a long time abroad gets busted and a student learns a valuable lesson.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11119288_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP012749810211','A bike for the University of Michigan\'s C.S. Mott Children\'s Hospital, a \'My Name Is Earl\' bike.','Michigan Bike; My Name Is Earl - Part 1',_binary '','GBR','American Chopper',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2814446_e_h3_ac.jpg',4,NULL,NULL,'SH012749810000'),('EP030877800004','Ein Flugzeug am Boden kostet viel Geld. So schnell wie möglich ist die Flugunfähigkeit zu beheben.','Grounded',_binary '','DEU','Die Mega-Mechaniker - Retter fürs Große',NULL,NULL,4,NULL,NULL,'SH030877800000'),('EP020139710004','A baggage search turns cheesy and an agent must determine whether a traveller is telling a story.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11510040_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP019855911382','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Dortmund.','',_binary '\0','DEU','Lokalzeit aus Dortmund',NULL,NULL,4,NULL,NULL,'SH019855910000'),('EP029042750060','Die Kandidaten wagen sich in einen Hindernislauf, der dafür gemacht wurde, sie scheitern zu lassen.','Alltagshelden',_binary '','DEU','WipeOut - Mach dich nass!',NULL,NULL,4,NULL,NULL,'SH029042750000'),('EP019855911381','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Dortmund.','',_binary '\0','DEU','Lokalzeit aus Dortmund',NULL,NULL,4,NULL,NULL,'SH019855910000'),('EP029042750061','Die Kandidaten wagen sich in einen Hindernislauf, der dafür gemacht wurde, sie scheitern zu lassen.','Abrissbirne gegen Abschlepper',_binary '','DEU','WipeOut - Mach dich nass!',NULL,NULL,4,NULL,NULL,'SH029042750000'),('EP019560590331','Denise Beyer ist Auszubildende im Sternehotel und prostituiert sich dort auch heimlich nebenbei.','Kalter Abgang',_binary '','DEU','Im Namen der Gerechtigkeit - Wir kämpfen für Sie!',NULL,NULL,4,NULL,NULL,'SH019560590000'),('EP018575210121','Die kleinen Loks lernen, mit dem Schneepflug umzugehen, um für den Wintereinbruch gewappnet zu sein.','Wilson steckt fest',_binary '','DEU','Chuggington - Die Loks sind los!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8313847_e_h3_aa.jpg',4,NULL,NULL,'SH018575210000'),('EP029042750059','Die Kandidaten wagen sich in einen Hindernislauf, der dafür gemacht wurde, sie scheitern zu lassen.','Donnergott gegen Riesenbaby',_binary '','DEU','WipeOut - Mach dich nass!',NULL,NULL,4,NULL,NULL,'SH029042750000'),('EP023288320048','Choreographer to the stars Liam Lunniss puts the singers\' dance skills to the test.','Dance, Dance, Dance',_binary '','GBR','Got What It Takes?',NULL,NULL,4,NULL,NULL,'SH023288320000'),('EP019743701822','Das Nachmittagsbuffet des SWR Fernsehens bietet Wissenswertes aller Sparten. Mit Gesundheitstipps, Ratschlägen, Freizeitanregungen und Unterhaltung.','Der SWR Nachmittag',_binary '','DEU','Kaffee oder Tee?',NULL,NULL,4,NULL,NULL,'SH019743700000'),('EP019743701823','Nachmittägliches Service- und Ratgebermagazin mit unterschiedlichen Themen und abwechselnden Gästen.','',_binary '\0','DEU','Kaffee oder Tee?',NULL,NULL,4,NULL,NULL,'SH019743700000'),('EP019743701820','Das Nachmittagsbuffet des SWR Fernsehens bietet Wissenswertes aller Sparten. Mit Gesundheitstipps, Ratschlägen, Freizeitanregungen und Unterhaltung.','Der SWR Nachmittag',_binary '','DEU','Kaffee oder Tee?',NULL,NULL,4,NULL,NULL,'SH019743700000'),('EP034332130003','Si and Dave preside as the chocolatiers compete to have their own chocolate bar made and sold.','',_binary '\0','GBR','The Hairy Bikers Chocolate Challenge',NULL,NULL,4,NULL,NULL,'SH034332130000'),('EP033424480045','Ein kleines Mädchen und ihr bester Freund babysitten gemeinsam im Monstertal kleine Monsterchen.','Simon traut sich nicht',_binary '','DEU','Esme & Roy',NULL,NULL,4,NULL,NULL,'SH033424480000'),('EP033424480046','Ein kleines Mädchen und ihr bester Freund babysitten gemeinsam im Monstertal kleine Monsterchen.','Air Snugs',_binary '','DEU','Esme & Roy',NULL,NULL,4,NULL,NULL,'SH033424480000'),('EP033424480043','Ein kleines Mädchen und ihr bester Freund babysitten gemeinsam im Monstertal kleine Monsterchen.','Großmonstertag',_binary '','DEU','Esme & Roy',NULL,NULL,4,NULL,NULL,'SH033424480000'),('EP033424480044','Ein kleines Mädchen und ihr bester Freund babysitten gemeinsam im Monstertal kleine Monsterchen.','Die Monster-Feier',_binary '','DEU','Esme & Roy',NULL,NULL,4,NULL,NULL,'SH033424480000'),('EP022564860012','Kieran Kelly, the London Underground Serial Killer, targeted the homeless community.','Kieran Kelly',_binary '','GBR','Inside The Mind of a Serial Killer',NULL,NULL,4,NULL,NULL,'SH022564860000'),('EP013162310014','The Merched y Wawr, a Welsh organisation similar to the WI, show how to make petals using gelatine.','',_binary '\0','GBR','Kirstie\'s Homemade Home',NULL,NULL,4,NULL,NULL,'SH013162310000'),('EP012595550195','During Thanksgiving dinner, to everyone\'s surprise, Kevin Swanson returns home.','Thanksgiving',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8899184_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP013020940392','Elisabeth Brauss plays Beethoven\'s Piano Sonata in G, Op 14 No 2.','Elisabeth Brauss and Lise Berthaud',_binary '','GBR','New Generation Artists',NULL,NULL,4,NULL,NULL,'SH013020940000'),('EP023288320049','Lady Leshurr runs a rap masterclass, and Adebayo Akinfenwa gets the mums out on the football pitch.','Bars and the Beast',_binary '','GBR','Got What It Takes?',NULL,NULL,4,NULL,NULL,'SH023288320000'),('EP013518000176','Helen welcomes her competitors to the Tai\'r Bull Inn in the Brecon Beacons.','Tai\'r Bull Inn',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743169_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP013518000175','Veronica and Saida welcome their competitors to the Richwood in Torquay.','The Richwood',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743167_e_h3_ac.jpg',4,NULL,NULL,'SH013518000000'),('EP012596590053','Mulder and Scully suspect a teenager caused a series of lightning-related deaths.','D.P.O.',_binary '','GBR','The X-Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635897_e_h3_ab.jpg',4,NULL,NULL,'SH012596590000'),('EP012596590052','A reunited Mulder and Scully continue their investigation without the FBI\'s help.','Paperclip',_binary '','GBR','The X-Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635896_e_h3_ab.jpg',4,NULL,NULL,'SH012596590000'),('EP015829261065','Quiz show in which four players take on a machine in the hope of winning its £10,000 jackpot.','',_binary '\0','GBR','Tipping Point',NULL,NULL,4,NULL,NULL,'SH015829260000'),('EP013518000177','The rival owners come together for the final time to discover what they\'ve been paid.','Payment Day',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743170_e_h3_aa.jpg',4,NULL,NULL,'SH013518000000'),('EP012596590051','The FBI continues its search for the computer disk believed to contain information about aliens.','The Blessing Way',_binary '','GBR','The X-Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635895_e_h3_ab.jpg',4,NULL,NULL,'SH012596590000'),('EP017073230136','Unberührte Natur erleben - ohne Eltern, ohne Internet und Fernsehen?','Transsilvanien',_binary '','DEU','Durch die Wildnis',NULL,NULL,4,NULL,NULL,'SH017073230000'),('EP013518000174','Ben and Katie welcome their competitors to their B&B in Ashlack, Cumbria.','Ashlack',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743165_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP013518000173','Paul Workman welcomes his competitors to the Hamlet House B&B in Stratford-upon-Avon.','Hamlet House',_binary '','GBR','Four in a Bed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9741944_e_h3_ab.jpg',4,NULL,NULL,'SH013518000000'),('EP019658290267','Das MDR-Magazin Umschau setzt sich kritisch mit Veränderungen in der Lebenswirklichkeit der Menschen - vor allem in Ostdeutschland - auseinander. Im Fokus der Sendung stehen Themen u.a. aus den Bereichen Wirtschaft, Verbraucher und Soziales.','',_binary '\0','DEU','Umschau',NULL,NULL,4,NULL,NULL,'SH019658290000'),('EP015829261064','Quiz show in which four players take on a machine in the hope of winning its £10,000 jackpot.','',_binary '\0','GBR','Tipping Point',NULL,NULL,4,NULL,NULL,'SH015829260000'),('EP034258460005','Die Stylistin Astrid Rudolph präsentiert elegante und feminine Stücke für modebewusste Frauen.','',_binary '\0','DEU','VIA MILANO styled by Astrid Rudolph Sale',NULL,NULL,4,NULL,NULL,'SH034258460000'),('EP014249520078','Samantha\'s suitcase turns up miles from where she\'s last seen, her mother hopes that isn\'t too late.','A Mother\'s Mission',_binary '','GBR','Disappeared',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8524463_e_h3_aa.jpg',4,NULL,NULL,'SH014249520000'),('EP020611351072','Aus der Region für die Region: Von der harten Politik bis hin zu unterhaltsamen Heimatgeschichten.','',_binary '\0','DEU','Niedersachsen 18.00 Uhr',NULL,NULL,4,NULL,NULL,'SH020611350000'),('EP014249520076','A 32-year-old firefighter goes missing and her truck is found at the bottom of a pond.','Lost Hero',_binary '','GBR','Disappeared',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8524467_e_h3_aa.jpg',4,NULL,NULL,'SH014249520000'),('EP020611351071','Aus der Region für die Region: Von der harten Politik bis hin zu unterhaltsamen Heimatgeschichten.','',_binary '\0','DEU','Niedersachsen 18.00 Uhr',NULL,NULL,4,NULL,NULL,'SH020611350000'),('EP024603180082','Lincoln will ins Einkaufszentrum gehen, doch eigentlich soll er auf seine Schwestern aufpassen.','In der Shopping-Wildnis',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15142602_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP024603180081','Die Kinder planen eine Überraschungsfeier und wollen vermeiden, dass Leni das Geheimnis ausplaudert.','Überraschungs-Verräterin',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14622715_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP019690030070','Fuchs findet heraus, dass die Schlange noch lebt. Nun will er den kleinen Prinzen vor ihr warnen.','Der Planet der Rosen',_binary '','DEU','Der kleine Prinz',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12790936_e_h3_aa.jpg',4,NULL,NULL,'SH019690030000'),('EP019690030072','Königin Jade und die Dornenkönigin schließen einen Pakt zur Vernichtung der Bamalias.','Der Planet der Wolkenfresser',_binary '','DEU','Der kleine Prinz',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12589176_e_h3_aa.jpg',4,NULL,NULL,'SH019690030000'),('EP015406570096','Volker Kugel zeigt, wie man Zitrusgewächse pflegen muss, damit sie im Sommer gesund sind.','Gesunder Zitrus - Pflegetipps von den Profis',_binary '','DEU','Grünzeug',NULL,NULL,4,NULL,NULL,'SH015406570000'),('EP019690030069','Der kleine Prinz, Fuchs und die Rose sind am Ende der Galaxie und müssen nun zum Planeten der Rosen.','Der Planet der Rosen',_binary '','DEU','Der kleine Prinz',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12596237_e_h3_aa.jpg',4,NULL,NULL,'SH019690030000'),('EP022595580003','Ein besonderer Ort am Amur ist jene Stelle, an der sich die beiden Quellflüsse vereinen.','Die heiligen Quellen',_binary '','DEU','Amur: Asiens Amazonas',NULL,NULL,4,NULL,NULL,'SH022595580000'),('EP012736670046','The squad investigate a mysterious car accident that occurred several years earlier.','Burn Out',_binary '','GBR','Waking the Dead',NULL,NULL,4,NULL,NULL,'SH012736670000'),('EP024322000008','Jeff and Andy borrow a van from Frank, setting them on the road to ruin - or rather, a nude beach.','Van Crazy',_binary '','GBR','The Break',NULL,NULL,4,NULL,NULL,'SH024322000000'),('EP020128250035','Eve nimmt Fußballunterricht bei einem Privattrainer. Die Frauen entdecken andere Qualitäten an ihm.','Der Privattrainer',_binary '','DEU','Last Man Standing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743924_e_h3_ab.jpg',4,NULL,NULL,'SH020128250000'),('EP033750180007','Auf seiner Reise nach Sydney, Australien, erleidet Flug 32 der Airline Qantas einen verheerenden Triebwerkschaden in der Luft. Dabei wird auch die linke Tragfläche des A380 beschädigt und es läuft Treibstoff aus dem defekten Motor.','A380 in Not',_binary '','DEU','Drama in der Luft',NULL,NULL,4,NULL,NULL,'SH033750180000'),('EP020128250034','Mandy wird von Mike erwischt, wie sie sich ins Haus schleicht. Auch Kyle erlebt eine Überraschung.','Psychologische Kriegsführung',_binary '','DEU','Last Man Standing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9743898_e_h3_ab.jpg',4,NULL,NULL,'SH020128250000'),('EP024322000007','City burn-out Andy returns to his uncle\'s seaside home. Oddly, the town has been taken over.','The Longest Day',_binary '','GBR','The Break',NULL,NULL,4,NULL,NULL,'SH024322000000'),('EP023288320053','Pop megastar HRVY surprises the singers as they learn his hit song Personal.','Hello HRVY!',_binary '','GBR','Got What It Takes?',NULL,NULL,4,NULL,NULL,'SH023288320000'),('EP020128250036','Ryan gerät in eine Schlägerei. Währenddessen erhält Mandy Internet- und Handyverbot.','Gewalt ist keine Lösung',_binary '','DEU','Last Man Standing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9771789_e_h3_ab.jpg',4,NULL,NULL,'SH020128250000'),('EP020128250032','Mike soll anlässlich des Buffalo-Bill-Tags\' im `Outdoor Man\' eine Western-Show inszenieren.','Politisch korrekt',_binary '','DEU','Last Man Standing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9734199_e_h3_ab.jpg',4,NULL,NULL,'SH020128250000'),('EP017720231033','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 985',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP017720231032','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 984',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP017720231031','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 983',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP031505960027','After Goku\'s sudden defeat, Piccolo steps into the ring. Frost continues to be a challenge.','Piccolo vs. Frost: Stake It All on the Special Beam Cannon!',_binary '','GBR','Dragon Ball Super',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14494516_e_h3_aa.jpg',4,NULL,NULL,'SH031505960000'),('EP032153780005','Vorgestellt werden die außergewöhnlichsten Fahrzeuge wie das russische Kraftpaket Sherp.','Fahrzeuge - Technik am Limit',_binary '','DEU','Extreme',NULL,NULL,4,NULL,NULL,'SH032153780000'),('EP028018690002','Nahe der Heimat des berühmten Gruyère-Käses thront das Juwel der Voralpen: der Vanil Noir.','Der Vanil Noir',_binary '','DEU','Unsere wilde Schweiz',NULL,NULL,4,NULL,NULL,'SH028018690000'),('EP019580650239','Die Sendung enthält einen Beitrag zum Thema \"Billig-Bio - warum Bio nicht gleich Bio ist\".','',_binary '\0','DEU','MEX. das marktmagazin',NULL,NULL,4,NULL,NULL,'SH019580650000'),('EP021558850002','Alan\'s on space junk duty. Things change when a piece of debris is a heat-seeking SAT-MINE.','Space Race',_binary '','GBR','Thunderbirds Are Go',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11661723_e_h3_aa.jpg',4,NULL,NULL,'SH021558850000'),('EP021558850006','Thunderbird 5 picks up an unusual radiation spike from a remote corner of Africa.','Crosscut',_binary '','GBR','Thunderbirds Are Go',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11682900_e_h3_aa.jpg',4,NULL,NULL,'SH021558850000'),('EP013005830146','The team go out to rescue several people and also play a trick on the new member of staff.','',_binary '\0','GBR','Bondi Rescue',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11523066_e_h3_aa.jpg',4,NULL,NULL,'SH013005830000'),('EP027674930019','K3 are off to a beautiful tropical island in the pacific to film a video with director Tony Razzo.','Tiki-Boom-Boom Island',_binary '','GBR','K3',NULL,NULL,4,NULL,NULL,'SH027674930000'),('EP013005830142','The lifeguards let off some steam to celebrate the end of the season.','',_binary '\0','GBR','Bondi Rescue',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11520559_e_h3_aa.jpg',4,NULL,NULL,'SH013005830000'),('EP012603131721','Ex-lovers argue over loans and a woman sues her daughter when her home is used as collateral.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP030968260005','Judge Nutmeg dispenses punishment to an audience member and the Ghost Hunters are on the prowl.','',_binary '\0','GBR','Vic and Bob\'s Big Night Out',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17606277_e_h3_aa.jpg',4,NULL,NULL,'SH030968260000'),('EP031505960033','In the first fight, Botamo displays a surprising resilience to Goku\'s attacks. Goku faces Frost.','Surprise, 6th Universe! This Is Super Saiyan Goku!',_binary '','GBR','Dragon Ball Super',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14494505_e_h3_aa.jpg',4,NULL,NULL,'SH031505960000'),('EP027674930015','K3 are set to sing at the birthday party of the billionaire Mr. William Carson.','Happy Birthday, Mr. Carson!',_binary '','GBR','K3',NULL,NULL,4,NULL,NULL,'SH027674930000'),('EP006921640043','Als Overbeck die Tochter des Kriminalrats abholen will, fällt er K.O.-Tropfen zum Opfer.','48 Stunden',_binary '','DEU','Wilsberg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12165057_e_h3_aa.jpg',4,NULL,NULL,'SH006921640000'),('EP019667870428','Der Film erklärt mit Animationen die Zusammenhänge und Chronologie der weltweiten Pleite.','Wie entsteht eine Finanzkrise?',_binary '','DEU','Planet Schule',NULL,NULL,4,NULL,NULL,'SH019667870000'),('EP015460731184','Friends recall how their relationship survived since one of them became ill as a teenager.','Flora and Briony - Was I There for You?',_binary '','GBR','The Listening Project',NULL,NULL,4,NULL,NULL,'SH015460730000'),('EP019379550002','Laut einer altmarsianischen Prophezeiung steht im Jahre 3012 das Ende der Welt bevor.','Mars macht mobil',_binary '','DEU','Futurama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9198482_e_h3_aa.jpg',4,NULL,NULL,'SH019379550000'),('EP013687760005','Mark continues his comedy series on The Seven Deadly Sins. This programme examines Sloth.','Sloth',_binary '','GBR','Mark Watson Makes the World Substantially Better',NULL,NULL,4,NULL,NULL,'SH013687760000'),('EP019587410210','Themen: Primeln - farbenfrohe Frühlingsboten Gartentipps für den Februar: Hecke schneiden / Schneeglöckchen vermehren / Alternative Anzuchtschalen / Sommerblumen vorziehen / Anzucht im Tetrapack / Gräser schneide Problematische Neophyten.','',_binary '\0','DEU','rbb Gartenzeit',NULL,NULL,4,NULL,NULL,'SH019587410000'),('EP024603180044','Lisa gibt sich als dumm aus, um in ihrer neuen Klasse nicht anzuecken. Dad kauft einen neuen Van.','Die Verwandlung der Lisa Loud; Ohne Van und aber',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13779928_e_h3_ab.jpg',4,NULL,NULL,'SH024603180000'),('EP024603180043','Ein gemeinsames Wochenende in einem Spa artet für die Familie bald in Stress aus.','Die Spa-Sause; Eine ganz normale Untote',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13630390_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP020903360182','A decomposed foot is discovered in the woods and Dunne is horrified when the body is identified.','',_binary '\0','GBR','Red Rock',NULL,NULL,4,NULL,NULL,'SH020903360000'),('EP024603180046','Die Kinder übertreiben es mit den Sicherheitsvorkehrungen während der Abwesenheit der Eltern.','Keine Chance für Einbrecher; Bitte recht freundlich',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13779919_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP024603180045','Lola und Lana müssen einige Prüfungen bestehen, um bei den Bluebells aufgenommen zu werden.','Die Bluebell-Schwestern; Bobby geht fremd',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13874825_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP017428710413','Es wird heiß in Kenia - und die Reisenden Miriam und Stephan fühlen sich unterm Wasserfall der Shimba Hills fast wie Tarzan und Jane. Am weißen Sandstrand des Diani Beach treffen Gabi und Julia Thomas Spitzer, den musikalischen Kopf.','Der Rhythmus von Mombasa',_binary '','DEU','Verrückt nach Meer',NULL,NULL,4,NULL,NULL,'SH017428710000'),('EP017428710412','Nach einem aufregenden Anlegemanöver in Sansibar wechselt Kapitän Fronenbroek das Schiff: Die Crewmitglieder segeln per traditioneller Dhau ins Paradies. Das Passagierpaar Miriam und Stephan staunt in den Altstadtgassen von Stone Town.','Sonne, Sand und Sansibar',_binary '','DEU','Verrückt nach Meer',NULL,NULL,4,NULL,NULL,'SH017428710000'),('EP024603180042','Clyde ist fest davon überzeugt, dass ein Baby unterwegs ist und er ein großer Bruder wird.','Das Baby-Training; Familienzwist',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13630386_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP020903360183','Rory\'s web of lies and secrecy threatens to unravel before him, once and for all.','',_binary '\0','GBR','Red Rock',NULL,NULL,4,NULL,NULL,'SH020903360000'),('EP024603180041','Lincoln und Clyde werden während ihres Praktikums ausgenutzt. Lincoln besucht seinen Opa im Heim.','Der Praktikanten-Schreck; Alter Knochen, junger Hund',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13440994_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP013658660045','The Line draws some sporty challenges and Dipdap tries to compete.','Sports',_binary '','GBR','Dipdap',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8742699_e_h3_aa.jpg',4,NULL,NULL,'SH013658660000'),('EP015217781490','Highlights from the latest round of the FIS Alpine Ski World Cup.','Maribor, Slovenia',_binary '','GBR','FIS World Cup Alpine Skiing',NULL,NULL,4,NULL,NULL,'SH015217780000'),('EP013658660043','The Line draws books for Dipdap to read but when Dipdap tries to read them, the books disappear.','Disappearing Books',_binary '','GBR','Dipdap',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8742693_e_h3_aa.jpg',4,NULL,NULL,'SH013658660000'),('EP026953270005','Am El Dorado-Airport entpuppen sich ein paar sexy High-Heels als Versteck für harte Drogen.','Nationale Sicherheit',_binary '','DEU','Drehkreuz des Drogenschmuggels - Flughafen Kolumbien',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11935996_e_h3_aa.jpg',4,NULL,NULL,'SH026953270000'),('EP014205450004','A porn actress is arrested on suspicion of murdering her husband.','',_binary '\0','GBR','Scott & Bailey',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8711434_e_h3_ab.jpg',4,NULL,NULL,'SH014205450000'),('EP014205450003','A rape and murder case is complicated, as only one of the alleged victims is willing to testify.','',_binary '\0','GBR','Scott & Bailey',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8702767_e_h3_ab.jpg',4,NULL,NULL,'SH014205450000'),('EP012606065183','Abi begs Ray to withdraw his threat to Kevin\'s livelihood. Opportunity knocks for Bethany.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP012691600054','Spock attempts a dangerous mind fusion with the Medusan ambassador.','Is There in Truth No Beauty?',_binary '','GBR','Star Trek',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204008_e_h3_aa.jpg',4,NULL,NULL,'SH012691600000'),('EP014822530058','Justin, Robert and Little Monster try to protect Gem\'s jewels from naughty Captain Sinker.','Pirate Day',_binary '','GBR','Justin\'s House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11243109_e_h3_aa.jpg',4,NULL,NULL,'SH014822530000'),('EP012606065184','Eileen urges Abi to come clean to Kevin, and Sarah implores Bethany to put her career before Daniel.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP019658811182','Gezeigt werden aktuelle Informationen zu Wetter und Klima in Hessen und der Welt.','',_binary '\0','DEU','alle wetter!',NULL,NULL,4,NULL,NULL,'SH019658810000'),('EP031193860016','Als unerwünschte Besucher an der Schule auftauchen, setzt Hope alles daran, ihre Freunde zu retten.','Es gibt immer ein Schlupfloch',_binary '','DEU','Legacies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16678883_e_h3_aa.jpg',4,NULL,NULL,'SH031193860000'),('EP022626450056','Julian Norton is called to a rare emergency, a pig in a tough labour, and a cockerel with a lump.','',_binary '\0','GBR','The Yorkshire Vet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15852654_e_h3_aa.jpg',4,NULL,NULL,'SH022626450000'),('EP031193860015','Landon ärgert sich über Hopes Verhalten und die beiden Teenager geraten in einen Streit.','Ich erzähle dir eine Geschichte',_binary '','DEU','Legacies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16629361_e_h3_aa.jpg',4,NULL,NULL,'SH031193860000'),('EP022234250080','Liv und Clive arbeiten weiterhin am Fall des zerfleischten Zombie-Opfers. Doch die Frau bleibt nach wie vor spurlos verschwunden. Als sich das Überwachungsvideo, das den Mord aufgezeichnet hat, als Fake erweist, nehmen die Ermittlungen plötzlich.','Sport ist Mord',_binary '','DEU','iZombie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16835764_e_h3_aa.jpg',4,NULL,NULL,'SH022234250000'),('EP019569840126','Phineas und Ferb bauen einen Freizeitpark. Die Jungs basteln eine Anti-Gravitationsmaschine.','Der flinke Zusteller; Das Trampolin-Abenteuer',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9258360_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP019569840128','Phineas und Ferb erfinden spezielle Ninja Anzüge, und Baljeet reißt endgültig der Geduldsfaden.','Die Ninja Anzüge; Erfindungsverbot',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9211918_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP019743790039','Steve McGarrett mit der Bildung einer Task Force zur Bekämpfung von Verbrechen beauftragt.','Aloha, Steve McGarrett',_binary '','DEU','Hawaii Five-0',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8273743_e_h3_aa.jpg',4,NULL,NULL,'SH019743790000'),('EP022626450058','Julian Norton dashes to the scene of a freak accident, then helps elderly but loveable Gizmo.','',_binary '\0','GBR','The Yorkshire Vet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15897902_e_h3_aa.jpg',4,NULL,NULL,'SH022626450000'),('EP022626450057','Julian Norton meets Mia the meerkat, who suffered brutal injuries being rejected from her gang.','',_binary '\0','GBR','The Yorkshire Vet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15872195_e_h3_aa.jpg',4,NULL,NULL,'SH022626450000'),('EP018630230429','Riesige unterirdische Tanks beinhalten das Wasser für die Aquarien des Frankfurter Zoos.','Reinemachen in den Zoo-Katakomben',_binary '','DEU','Giraffe, Erdmännchen & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15366593_e_h3_aa.jpg',4,NULL,NULL,'SH018630230000'),('EP014267690224','When Spike stops making time for Rarity whenever she asks, she worries she\'s done something.','Dragon Dropped',_binary '','GBR','My Little Pony: Friendship Is Magic',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17180568_e_h3_ac.jpg',4,NULL,NULL,'SH014267690000'),('EP020149790037','Der `Late Movie\', das sind sinnliche Geschichten über Liebe, Verführung und Leidenschaft.','Summer Lovin',_binary '','DEU','SPORT1 Late-Movie',NULL,NULL,4,NULL,NULL,'SH020149790000'),('EP026953270017','Die Drogenpolizei nimmt zwei Frauen fest, die in ihren Laptops Kokain versteckt haben.','Flughafen Kolumbien',_binary '','DEU','Drehkreuz des Drogenschmuggels - Flughafen Kolumbien',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12727747_e_h3_aa.jpg',4,NULL,NULL,'SH026953270000'),('EP018771240079','Matt and Garry attempt to help an accountant who is asset rich but cash poor.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14589439_e_h3_aa.jpg',4,NULL,NULL,'SH018771240000'),('EP018630230430','Der junge Elefantenbulle Tamo liebt das Planschen. Eine Elefantenkuh macht ihm das Revier streitig.','Elefant Tamo beim Wasserballett',_binary '','DEU','Giraffe, Erdmännchen & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15371023_e_h3_aa.jpg',4,NULL,NULL,'SH018630230000'),('EP018095860006','Die neuartige Bettwäsche aus Nuvolafill, einem Füllmaterial aus Mikrofaser, wird vorgestellt.','',_binary '\0','DEU','Goldwolke: kuscheliger Schlafkomfort',NULL,NULL,4,NULL,NULL,'SH018095860000'),('EP018118040052','Aus Wuhan hat sich das Coronavirus innerhalb weniger Wochen in mindestens 25 Ländern verbreitet.','In Quarantäne - Chinas Kampf gegen das Coronavirus',_binary '','DEU','auslandsjournal - die doku',NULL,NULL,4,NULL,NULL,'SH018118040000'),('EP017428550022','Achim Kaschny ist der Präsident des Karnevalsvereins Schnüsse Tring in Köln.','unter Narren',_binary '','DEU','7 Tage...',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11419336_e_h3_aa.jpg',4,NULL,NULL,'SH017428550000'),('EP034417580003','In prison, Bassam learns more about the genocide that effected Rami\'s family.','',_binary '\0','GBR','Apeirogon',NULL,NULL,4,NULL,NULL,'SH034417580000'),('EP019658811162','Gezeigt werden aktuelle Informationen zu Wetter und Klima in Hessen und der Welt.','',_binary '\0','DEU','alle wetter!',NULL,NULL,4,NULL,NULL,'SH019658810000'),('EP034417580004','In the immediate aftermath of tragedy, two families search for answers about their daughters.','',_binary '\0','GBR','Apeirogon',NULL,NULL,4,NULL,NULL,'SH034417580000'),('EP019658811163','Gezeigt werden aktuelle Informationen zu Wetter und Klima in Hessen und der Welt.','',_binary '\0','DEU','alle wetter!',NULL,NULL,4,NULL,NULL,'SH019658810000'),('EP012977650085','Beautiful new music of every texture, colour and origin.','with Mary Anne Hobbs',_binary '','GBR','6 Music Recommends',NULL,NULL,4,NULL,NULL,'SH012977650000'),('EP024603180026','Lincolns schulische Leistungen lassen zu wünschen übrig, weshalb er einen Nachhilfelehrer bekommt.','Der Nachhilfe-Lehrer; Vom Winde verweht',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13319170_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP012977650087','Tom Ravenscroft curates an hour of his favourite new music.','with Tom Ravenscroft',_binary '','GBR','6 Music Recommends',NULL,NULL,4,NULL,NULL,'SH012977650000'),('EP024603180025','Lincoln fungiert als Luans Assistent, wenn sie als Clown auf Geburtstagen auftritt.','Ein Clown für alle Fälle; Der Schneefrei-Horror',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13323955_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP017428550027','Das Filmteam ist in der Gerichtsmedizin in Frankfurt am Main, die `Hauptstadt des Verbrechens\'.','in der Gerichtsmedizin',_binary '','DEU','7 Tage...',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11548845_e_h3_aa.jpg',4,NULL,NULL,'SH017428550000'),('EP012691600052','Children take control of the ship while under the control of an evil entity.','And the Children Shall Lead',_binary '','GBR','Star Trek',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204006_e_h3_aa.jpg',4,NULL,NULL,'SH012691600000'),('EP014267690219','Starlight realises that hiring the right pony for the job is going to be a hard.','A Horse Shoe In',_binary '','GBR','My Little Pony: Friendship Is Magic',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17181043_e_h3_ab.jpg',4,NULL,NULL,'SH014267690000'),('EP018771240080','Stewart and Iain are in Manchester to collect one of the largest debts they\'ve ever chased.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14617287_e_h3_aa.jpg',4,NULL,NULL,'SH018771240000'),('EP012691600051','Capt. Kirk marries Miramanee while trying to save her world from destruction.','The Paradise Syndrome',_binary '','GBR','Star Trek',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204003_e_h3_aa.jpg',4,NULL,NULL,'SH012691600000'),('EP027674930021','K3 are travelling in the Himalayas when K4 breaks down in the middle of a blizzard.','A Monster Blizzard',_binary '','GBR','K3',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12410272_e_h3_aa.jpg',4,NULL,NULL,'SH027674930000'),('EP014267690217','Twilight tries to make Celestia and Luna\'s last Summer Sun Celebration memorable.','The Summer Sun Setback',_binary '','GBR','My Little Pony: Friendship Is Magic',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17057681_e_h3_aa.jpg',4,NULL,NULL,'SH014267690000'),('EP014267690218','Zecora gives Fluttershy and Angel Bunny a potion to help them understand each other.','She Talks to Angel',_binary '','GBR','My Little Pony: Friendship Is Magic',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17057939_e_h3_ac.jpg',4,NULL,NULL,'SH014267690000'),('EP027674930024','K3 go to London. To boost their popularity, after reading an article by Caroline Archer.','Pop Darkness',_binary '','GBR','K3',NULL,NULL,4,NULL,NULL,'SH027674930000'),('EP016460840385','Die Dokumentation erzählt von muslimischen Piraten, die Weiße in die Sklaverei verschleppen.','Freibeuter der Meere: Die Korsaren',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12340596_e_h3_ab.jpg',4,NULL,NULL,'SH016460840000'),('EP013033650040','A Top 50 countdown of web clips from A-listers of the internet.','Web Stars',_binary '','GBR','Rude Tube',NULL,NULL,4,NULL,NULL,'SH013033650000'),('EP013033650042','Revealing the internet\'s 50 most loved-up clips that will melt your heart and split your sides.','Rom Dot Com',_binary '','GBR','Rude Tube',NULL,NULL,4,NULL,NULL,'SH013033650000'),('EP022804880008','Yann hat einfach keine Idee, was er Timeti, in die er verliebt ist, zum Geburtstag schenken könnte.','Der Südsee-Maler',_binary '','DEU','Zoom: Der weiße Delfin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11431422_e_h3_aa.jpg',4,NULL,NULL,'SH022804880000'),('EP022804880007','Ein Baby-Delfin und seine Mutter sind in großer Gefahr. Yann und Zoom müssen sie retten.','Mini-Zoom',_binary '','DEU','Zoom: Der weiße Delfin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11431429_e_h3_aa.jpg',4,NULL,NULL,'SH022804880000'),('EP022804880006','Die Einwohner von Maotou geraten in Panik, als plötzlich merkwürdige Dinge im Dorf passieren.','Falsche Geister',_binary '','DEU','Zoom: Der weiße Delfin',NULL,NULL,4,NULL,NULL,'SH022804880000'),('EP022804880005','Yann und seine Freunde treffen auf Aglagla, einen Pinguin. Er konnte seinen Entführern entkommen.','Ein Pinguin auf der Flucht',_binary '','DEU','Zoom: Der weiße Delfin',NULL,NULL,4,NULL,NULL,'SH022804880000'),('EP025072440016','Seit mehr als 40 Jahren sind Astronauten für sehr lange Missionen im Weltraum unterwegs.','Mythos Weltraumfahrt - Ufos, Aliens und die Landung auf dem Mond',_binary '','DEU','Spacetime',NULL,NULL,4,NULL,NULL,'SH025072440000'),('EP020149790056','Der `Late Movie\', das sind sinnliche Geschichten über Liebe, Verführung und Leidenschaft.','Caught - Ertappt',_binary '','DEU','SPORT1 Late-Movie',NULL,NULL,4,NULL,NULL,'SH020149790000'),('EP018438241117','Die aktuellen finanziellen Nachrichten von der Frankfurter Börse.','',_binary '\0','DEU','Börse vor acht',NULL,NULL,4,NULL,NULL,'SH018438240000'),('EP018438241118','Die aktuellen finanziellen Nachrichten von der Frankfurter Börse.','',_binary '\0','DEU','Börse vor acht',NULL,NULL,4,NULL,NULL,'SH018438240000'),('EP029067060060','Vicky Neale explores the qualities that underpin the most beautiful maths.','A Mathematician\'s Guide to Beauty',_binary '','GBR','The Art of Now',NULL,NULL,4,NULL,NULL,'SH029067060000'),('EP029081550033','Christmas has come to Sam and Billie\'s homes, and the families have a Christmas photoshoot together.','',_binary '\0','GBR','Sam and Billie Faiers: The Mummy Diaries',NULL,NULL,4,NULL,NULL,'SH029081550000'),('EP020139710052','A giant x-ray machine finds an odd shape in a shipping container.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10326763_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP029358600524','Die Übertragung erfolgt aus Southport, Großbritannien.','Coral Players Championship 2020 in Southport - 1. Runde',_binary '\0','DEU','Snooker:',NULL,NULL,4,NULL,NULL,'SH029358600000'),('EP032782500013','Der Selbstmordanschlag einer Palästinenserin an einem israelischen Checkpoint macht Schlagzeilen.','Die israelische Honigfalle',_binary '','DEU','Dem Terror knapp entkommen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15856130_e_h3_aa.jpg',4,NULL,NULL,'SH032782500000'),('EP024882830001','Das Attentat von 1914 verschärfte die Lage zwischen den Großmächten und führte zum Ersten Weltkrieg.','Anfang vom Ende',_binary '','DEU','Apokalypse - Der Erste Weltkrieg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936823_e_h3_aa.jpg',4,NULL,NULL,'SH024882830000'),('EP029358600521','Die Übertragung erfolgt aus Southport, Großbritannien.','Coral Players Championship 2020 in Southport - Viertelfinale',_binary '\0','DEU','Snooker:',NULL,NULL,4,NULL,NULL,'SH029358600000'),('EP018456820040','Ein Hund buddelt in einem Garten die Überreste einer fast vollständig verbrannten Leiche aus.','König der Gartenzwerge',_binary '','DEU','Alles Klara',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12877154_e_h3_ab.jpg',4,NULL,NULL,'SH018456820000'),('EP029358600526','Die Übertragung erfolgt aus Southport, Großbritannien.','Coral Players Championship 2020 in Southport - Viertelfinale',_binary '\0','DEU','Snooker:',NULL,NULL,4,NULL,NULL,'SH029358600000'),('EP029358600525','Die Übertragung erfolgt aus Southport, Großbritannien.','Coral Players Championship 2020 in Southport - 1. Runde',_binary '\0','DEU','Snooker:',NULL,NULL,4,NULL,NULL,'SH029358600000'),('EP024882830006','In ganz Europa fordert der industriell geführte Krieg enorm viele Soldatenleben.','Die Hölle der Front',_binary '','DEU','Apokalypse - Der Erste Weltkrieg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936826_e_h3_aa.jpg',4,NULL,NULL,'SH024882830000'),('EP024882830007','Das Elend und die Verzweiflung der Bevölkerung führt am 23. Februar 1917 zur Revolution in Russland.','Wut und Resignation',_binary '','DEU','Apokalypse - Der Erste Weltkrieg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11237359_e_h3_aa.jpg',4,NULL,NULL,'SH024882830000'),('EP024882830009','Die Unterzeichnung des Friedensvertrags von Versailles beendet den Ersten Weltkrieg.','Die Erlösung',_binary '','DEU','Apokalypse - Der Erste Weltkrieg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11237340_e_h3_aa.jpg',4,NULL,NULL,'SH024882830000'),('EP024882830003','Bei den erbitterten Kämpfen an der Westfront rennen Millionen Soldaten 1914 in den sicheren Tod.','Angst und Schrecken',_binary '','DEU','Apokalypse - Der Erste Weltkrieg',NULL,NULL,4,NULL,NULL,'SH024882830000'),('EP022234250079','Eine Frau wird von zwei Zombies angegriffen, brutal ermordet und anschließend zerfleischt. Liv und Clive nehmen sofort die Ermittlungen auf, doch diesmal müssen sie ohne das Gehirn des Opfers auskommen, das ihnen wichtige Hinweise.','Märtyrer',_binary '','DEU','iZombie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16457452_e_h3_aa.jpg',4,NULL,NULL,'SH022234250000'),('EP024603180003','Lincoln möchte beim Familienausflug den besten Platz im Auto ergattern.','Der Premiumplatz; Die Geschichte der zwei Tische',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12825119_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP012603131758','A woman, believing she had won an online lottery, asks her sister to cash a fraudulent check.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012603131756','Co-workers dispute a cancelled vacation, personal loan and charges of harassment.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP024603180002','Lincoln versucht, Leni das Autofahren beizubringen. Lincoln passt es nicht, dass Lori so streng ist.','Die Fahrprüfung; Feldwebel Lori',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12831046_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP012603131753','A woman\'s 16-year-old daughter is given alcohol and a tattoo at a slumber party.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP019227910193','Shaun wundert sich, warum die Schafe so merkwürdig reagieren, als er morgens aus der Scheune kommt.','Oben ohne',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936718_e_h3_ab.jpg',4,NULL,NULL,'SH019227910000'),('EP020139710064','A traveller swallows an unknown substance; a Thai holiday guide offers more than holiday advice.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10334627_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP019227910192','Der Lieblingssänger des Farmers hat vor dem Bauernhof eine Panne mit seiner Limousine.','Die Rockstar-Panne',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936712_e_h3_aa.jpg',4,NULL,NULL,'SH019227910000'),('EP020139710065','A repairman needs to fix his documents; a short trip in a borrowed truck looks suspicious.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10334629_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP019227910191','Ein entflohener Häftling verkleidet sich und versteckt sich auf dem Bauernhof vor der Polizei.','Das falsche Schaf',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936705_e_h3_aa.jpg',4,NULL,NULL,'SH019227910000'),('EP020139710063','A tattoo artist brings his machines on holiday; officers search a camera for banned images.','',_binary '\0','GBR','Border Security: Canada\'s Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10326765_e_h3_aa.jpg',4,NULL,NULL,'SH020139710000'),('EP012822630119','Rob Brydon, Lee Mack and David Mitchell return with previously unseen material.','The Unseen Bits',_binary '','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15045656_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP003337730400','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Gute Mädchen, böse Mädchen',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP015310190220','Das Thema lautet unter anderem: \"Robert Franken - ein Kämpfer für den Feminismus\".','',_binary '\0','DEU','frauTV',NULL,NULL,4,NULL,NULL,'SH015310190000'),('EP027699330056','Die Game Shakers sind beauftragt, ein Spiel zu erfinden, was auf einem fremden Spielzeug basiert.','Lumples',_binary '','DEU','Game Shakers - Jetzt geht\'s App',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15109674_e_h3_aa.jpg',4,NULL,NULL,'SH027699330000'),('EP020064170228','Timm Kröger nimmt die Zuschauer mit auf eine spannende Reise durch die Wiege der Menschheit.','Afrika-Logbuch - Reportagen zwischen Somalia und Senegal',_binary '','DEU','Mein Ausland',NULL,NULL,4,NULL,NULL,'SH020064170000'),('EP027699330057','Hudson und Trip öffnen einen Automaten, der zufällig Snacks in der U-Bahn ausgibt.','Snackpot!',_binary '','DEU','Game Shakers - Jetzt geht\'s App',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15109676_e_h3_aa.jpg',4,NULL,NULL,'SH027699330000'),('EP012603131788','Former roommates argue over the cost of an herbal cleansing kit.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP027699330052','Dub fordert Babe zum Tanz-Battle heraus, um zu zeigen, dass er besser tanzen kann als sie.','U-Bahn-Girl',_binary '','DEU','Game Shakers - Jetzt geht\'s App',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15109675_e_h3_aa.jpg',4,NULL,NULL,'SH027699330000'),('EP027699330053','Babe beschließt, ihr Glück mit Kenzies Dating-App zu versuchen, aber alles geht schief.','Babe und die Jungs',_binary '','DEU','Game Shakers - Jetzt geht\'s App',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15194753_e_h3_aa.jpg',4,NULL,NULL,'SH027699330000'),('EP012793972243','The Loose Women chat about all of the news and gossip that has everyone talking today.','',_binary '\0','GBR','Loose Women',NULL,NULL,4,NULL,NULL,'SH012793970000'),('EP019671070294','Die Dokumentation begleitet Norbert, Julia und ihre Familie durch eine Schlittenhunde-Saison.','Die Husky-Retter',_binary '','DEU','Typisch!',NULL,NULL,4,NULL,NULL,'SH019671070000'),('EP027699330054','Kenzie hat ohne sein Wissen beobachtet, wie Dub seine eigene Statue zerstört hat.','Der total hässliche Kopf',_binary '','DEU','Game Shakers - Jetzt geht\'s App',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15277367_e_h3_aa.jpg',4,NULL,NULL,'SH027699330000'),('EP012588780075','Poirot investigates when an intimate friendship between married acquaintances leads to murder.','Triangle at Rhodes',_binary '','GBR','Agatha Christie\'s Poirot',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685704_e_h3_ab.jpg',4,NULL,NULL,'SH012588780000'),('EP012793972242','The Loose Women chat about all of the news and gossip that has everyone talking today.','',_binary '\0','GBR','Loose Women',NULL,NULL,4,NULL,NULL,'SH012793970000'),('EP012588780073','Odd noises and boisterous neighbours lead Hercule Poirot to a murder in his building.','Third Floor Flat',_binary '','GBR','Agatha Christie\'s Poirot',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685703_e_h3_aa.jpg',4,NULL,NULL,'SH012588780000'),('EP030708580022','Eine junge Touristin wurde erschossen. Die Kommissare rekonstruieren die letzten Tage der Toten.','Die letzten Tage',_binary '','DEU','Heiter bis tödlich - Akte Ex',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12638100_e_h3_aa.jpg',4,NULL,NULL,'SH030708580000'),('EP016391740265','Eine Frau, Herz und Motor einer ambitionierten Bowlingrunde, wird am Morgen erstochen aufgefunden.','Strike!',_binary '','DEU','SOKO Stuttgart',NULL,NULL,4,NULL,NULL,'SH016391740000'),('EP012603131777','A loan officer says a friend stole thousands of dollars from him while serving time in prison.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012618300047','Wallander investigates when the body of a woman is discovered in the forest.','A Lesson in Love',_binary '','GBR','Wallander',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12419742_e_h3_aa.jpg',4,NULL,NULL,'SH012618300000'),('EP012603131772','Divorced parents of five dispute death threats and allegations of child abuse.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP029304850021','Der Mord an seiner Tochter Natasha bringt Vadim dazu, Blutrache an der Familie Godman zu schwören.','Skrupellos',_binary '','DEU','McMafia',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15121263_e_h3_aa.jpg',4,NULL,NULL,'SH029304850000'),('EP012618300043','Wallander is in a race against time as he embarks on his final case.','The Troubled Man',_binary '','GBR','Wallander',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12419745_e_h3_aa.jpg',4,NULL,NULL,'SH012618300000'),('EP023672320061','Today, Ottalie\'s friend Noah comes to play. They spend the morning making an outside den.','Ottalie\'s Playdate with Noah',_binary '','GBR','Our Family',NULL,NULL,4,NULL,NULL,'SH023672320000'),('EP019424841838','Wegen ihrer Schuldenprobleme kommt Sophia auf eine grandiose Idee für ihre Bewerbungsoffensive.','Freddys verzweifelte Suche',_binary '','DEU','Köln 50667',NULL,NULL,4,NULL,NULL,'SH019424840000'),('EP019424841837','Beate und Horst werden unverhofft noch mal Eltern. Doch es kommt zu Komplikationen.','Nicht mit dir, nicht ohne dich',_binary '','DEU','Köln 50667',NULL,NULL,4,NULL,NULL,'SH019424840000'),('EP012749810206','Work continues on the Army National Guard bike. Jason Pohl\'s ignorance of shop rules causes tension.','Army National Guard - Part 2',_binary '','GBR','American Chopper',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2814445_e_h3_ac.jpg',4,NULL,NULL,'SH012749810000'),('EP026736400002','Divorcee Spencer Pandy decides to prepare the children a Banquete Mexicano.','A Recipe for Disaster',_binary '','GBR','Cracking Up',NULL,NULL,4,NULL,NULL,'SH026736400000'),('EP022488570149','A look back at all the action from the latest round of LaLiga.','',_binary '\0','GBR','LaLiga World',NULL,NULL,4,NULL,NULL,'SH022488570000'),('EP029091910003','Anhand von historischen Fakten wird das Leben einer römischen Gladiatorin erzählt.','Gladiatorinnen in Rom',_binary '','DEU','Warrior Women',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15466891_e_h3_aa.jpg',4,NULL,NULL,'SH029091910000'),('EP020217450177','Highlights und Zusammenfassungen der UEFA Europa League.','Highlights und Zusammenfassung der anderen Spiele',_binary '\0','DEU','UEFA Europa League',NULL,NULL,4,NULL,NULL,'SH020217450000'),('EP020217450176','Highlights und Zusammenfassungen der UEFA Europa League.','FC Salzburg - Eintracht Frankfurt Halbzeitanalyse',_binary '\0','DEU','UEFA Europa League',NULL,NULL,4,NULL,NULL,'SH020217450000'),('EP018771240091','A Warwickshire debtor moves goods to a neighbouring house to stop the agents seizing them.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,NULL,4,NULL,NULL,'SH018771240000'),('EP020217450175','Highlights und Zusammenfassungen der UEFA Europa League.','Countdown - FC Salzburg - Eintracht Frankfurt',_binary '\0','DEU','UEFA Europa League',NULL,NULL,4,NULL,NULL,'SH020217450000'),('EP023672320057','Maia\'s friend Willow visits for a day of play. The girls pretend to go on holiday.','Maia\'s Playdate with Willow',_binary '','GBR','Our Family',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14094449_e_h3_aa.jpg',4,NULL,NULL,'SH023672320000'),('EP013556670433','A round-up of all the action from the latest round of the Vanarama National League.','Highlights',_binary '','GBR','National League Football',NULL,NULL,4,NULL,NULL,'SH013556670000'),('EP014051470224','One bride\'s second visit and her picky entourage; a dress with a top that is completely sheer.','Agree to Disagree',_binary '','GBR','Say Yes to the Dress',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11495757_e_h3_aa.jpg',4,NULL,NULL,'SH014051470000'),('EP019683710095','Jon, Garfield und Odie nehmen an einer Fernsehshow teil, in der sie ihr Haus nicht verlassen dürfen.','Trautes Heim, Glück allein',_binary '','DEU','Garfield',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11504256_e_h3_aa.jpg',4,NULL,NULL,'SH019683710000'),('EP019563830029','Deutschland ist geschockt. Auch Jan Böhmermann hat abgedankt. Es geht um die Hintergründe.','History Dezember 2019',_binary '','DEU','NEO MAGAZIN',NULL,NULL,4,NULL,NULL,'SH019563830000'),('EP019683710099','Nach einem Fernseh-Marathon sehnt Garfield sich nach viel Ruhe und einem schönen Nickerchen.','Die Quasselstrippe',_binary '','DEU','Garfield',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11530722_e_h3_aa.jpg',4,NULL,NULL,'SH019683710000'),('EP019683710098','Jon bekommt zum Geburtstag ein Dutzend Donuts geschenkt. Er gibt sogar Garfield einen davon ab.','Die Geburtstags-Donuts',_binary '','DEU','Garfield',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11530719_e_h3_aa.jpg',4,NULL,NULL,'SH019683710000'),('EP019683710097','Jon ist gestürzt und muss das Bett hüten. Wer soll sich um den Haushalt und um Garfield kümmern?','Was geschah wirklich mit Tante Ivy?',_binary '','DEU','Garfield',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11530714_e_h3_aa.jpg',4,NULL,NULL,'SH019683710000'),('EP015514470171','Chris Hawkins takes you through the early hours playing back to back music.','Cate Le Bon, William Orbit, Yazmin Lacey and more!',_binary '','GBR','6 Music\'s Jukebox',NULL,NULL,4,NULL,NULL,'SH015514470000'),('EP018771240092','A woman refuses to pay fees to a veterinary practice after she claims her dog has been misdiagnosed.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,NULL,4,NULL,NULL,'SH018771240000'),('EP015514470172','Chris Hawkins takes you through the early hours playing back to back music.','Jehnny Beth, Lauryn Hill, Jake Bugg and more!',_binary '','GBR','6 Music\'s Jukebox',NULL,NULL,4,NULL,NULL,'SH015514470000'),('EP023672320044','Four-year-old twins Josh and Zac and their brother Nathan live near a city with their mum and dad.','Josh, Zac and Nathan: Meet the Family',_binary '','GBR','Our Family',NULL,NULL,4,NULL,NULL,'SH023672320000'),('EP014051470230','Eternal bridesmaid Brittany, now the bride, wants to \"drop it low\" in a dress!','Worth the Wait',_binary '','GBR','Say Yes to the Dress',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11476461_e_h3_aa.jpg',4,NULL,NULL,'SH014051470000'),('EP023672320043','Today, Mum takes four-year-old Ottalie on a trip to visit her Grandma, Grandpa and Heidi the pony.','Ottalie Goes Horse Riding',_binary '','GBR','Our Family',NULL,NULL,4,NULL,NULL,'SH023672320000'),('EP012972321673','Poet Helen Mort asks whether an apology sometimes stands in for a failure to understand.','',_binary '\0','GBR','The Essay',NULL,NULL,4,NULL,NULL,'SH012972320000'),('EP012972321674','Poet and self-confessed apology addict Helen Mort explores the contemporary hunger for apology.','',_binary '\0','GBR','The Essay',NULL,NULL,4,NULL,NULL,'SH012972320000'),('EP026278450558','In Zeiten des großen Artensterbens fordert Greenpeace unbedingt mehr Schutz für die hohe See.','Rohstoffe in der Tiefsee - Ausbeutung oder Meeresschutz?',_binary '','DEU','Re:',NULL,NULL,4,NULL,NULL,'SH026278450000'),('EP026278450559','Die International Butler Academy bildet professionelle Diener für Luxushotels und Millionäre aus.','Traumjob Butler - Leben, um zu dienen?',_binary '','DEU','Re:',NULL,NULL,4,NULL,NULL,'SH026278450000'),('EP026278450560','Die Polizei in Frankreich steht aufgrund der Deomonstrationen und Übergriffe unter Druck.','Polizeigewalt in Frankreich - Viel zu brutal oder so hart wie nötig?',_binary '','DEU','Re:',NULL,NULL,4,NULL,NULL,'SH026278450000'),('EP012588942212','If it\'s got Britain talking then it will get talked about here, with stories that matter.','',_binary '\0','GBR','The One Show',NULL,NULL,4,NULL,NULL,'SH012588940000'),('EP012595501201','Jonnie Irwin is house hunting in the Northumberland countryside with a couple with a 500,000 budget.','Northumberland',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP013027040340','Questions to ministers in the House of Lords, from Tuesday 25 February.','',_binary '\0','GBR','Lords Questions',NULL,NULL,4,NULL,NULL,'SH013027040000'),('EP022444510052','Nach dem Tod des Filmemacher Allen Ross führt die Spur zu einem seltsamen Sektenführer.','Die letzte Klappe',_binary '','DEU','Crime Town USA - Verbrechen im Hinterland',NULL,NULL,4,NULL,NULL,'SH022444510000'),('EP012588942213','If it\'s got Britain talking then it will get talked about here, with stories that matter.','',_binary '\0','GBR','The One Show',NULL,NULL,4,NULL,NULL,'SH012588940000'),('EP019176880027','Als ein Polizist und eine Polizistin gemeinsam Nachtwache halten, wird sie brutal niedergeschlagen.','In guten wie in schlechten Zeiten',_binary '','DEU','Mord im Mittsommer',NULL,NULL,4,NULL,NULL,'SH019176880000'),('EP028455200048','The new district manager decides to make some cuts, Amy and Jonah plead with her to not fire anyone.','District Manager',_binary '','GBR','Superstore',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15245995_e_h3_aa.jpg',4,NULL,NULL,'SH028455200000'),('EP012595501200','Alistair Appleton is in South Devon with a couple who want to move closer to their daughter.','South Devon',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP028455200049','When local vendors set up shop inside Cloud 9, Glenn tries to sell his wife\'s handmade needlepoint.','Local Vendors Day',_binary '','GBR','Superstore',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15277078_e_h3_aa.jpg',4,NULL,NULL,'SH028455200000'),('EP012659190026','Pop and Ma Larkin are advised that Zinnia and Petunia would be better suited to a boarding school.','The Happiest Days of Your Life',_binary '','GBR','The Darling Buds of May',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1274855_e_h3_aa.jpg',4,NULL,NULL,'SH012659190000'),('EP019462190552','Raketenflieger Timmi und Teddynaut landen auf dem Musikplaneten und sogleich beginnt das Konzert.','Raketenflieger Timmi: Musikplanet',_binary '','DEU','Unser Sandmännchen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12535797_e_h3_aa.jpg',4,NULL,NULL,'SH019462190000'),('EP034135610083','Neben den Olympischen Spielen, ist die WM ein weiteres Highlight der Bahnprofis.','Weltmeisterschaft - Tag 1',_binary '\0','DEU','Bahnradsport',NULL,NULL,4,NULL,NULL,'SH034135610000'),('EP034135610084','Neben den Olympischen Spielen, ist die WM ein weiteres Highlight der Bahnprofis.','Weltmeisterschaft - Tag 2',_binary '\0','DEU','Bahnradsport',NULL,NULL,4,NULL,NULL,'SH034135610000'),('EP023540150037','Groom David pulls out all the stops for a Narnia-themed wedding for bride Conna.','',_binary '\0','GBR','Don\'t Tell the Bride Ireland',NULL,NULL,4,NULL,NULL,'SH023540150000'),('EP023540150035','Harry Potter fan Brendán attempts to conjure up a magical day for his beau, Victor.','',_binary '\0','GBR','Don\'t Tell the Bride Ireland',NULL,NULL,4,NULL,NULL,'SH023540150000'),('EP015942140034','Winter closes in, sending the gold dredgers sprinting down the season\'s homestretch.','Money Money Money',_binary '','GBR','Gold Divers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10463210_e_h3_aa.jpg',4,NULL,NULL,'SH015942140000'),('EP013319050029','Mike finds himself caught in the middle when Molly argues with her family.','Victoria Runs Away',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8871349_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP012615251141','Ackland and Valentine search for Carver to explain their affair.','Moving On',_binary '','GBR','The Bill',NULL,NULL,4,NULL,NULL,'SH012615250000'),('EP014190010128','Les and Ashley get reeled in by the World\'s Largest Fishing Lure; Les squares off with a hillbilly.','Fishing for Trouble',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10338388_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP034422980003','Mit Entführungen kennt sich der blinde Ex-Kommissar Alexander Haller aus seiner Zeit als Wiener Chefinspektor aus. Als seine Schwester Sophie bei einem Theaterbesuch mit seinem Chauffeur Niko gekidnappt wird, weiß Haller sofort.','Die verlorenen Seelen von Wien',_binary '','DEU','Blind ermittelt',NULL,NULL,4,NULL,NULL,'SH034422980000'),('EP014190010129','Les hears about a hook up for truckloads of brand new goods and makes a big change.','Growing Pains',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10407787_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP019855861375','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Münsterland.','',_binary '\0','DEU','Lokalzeit Münsterland',NULL,NULL,4,NULL,NULL,'SH019855860000'),('EP028455200050','Glenn thinks Jeff is poaching employees away from Cloud 9, so he tries his hand at poaching.','Target',_binary '','GBR','Superstore',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15220465_e_h3_aa.jpg',4,NULL,NULL,'SH028455200000'),('EP019855861376','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Münsterland.','',_binary '\0','DEU','Lokalzeit Münsterland',NULL,NULL,4,NULL,NULL,'SH019855860000'),('EP026062290025','Veronica worries that Archie is learning too much about her family\'s secret business dealings.','Chapter Twenty-Five: The Wicked and the Divine',_binary '','GBR','Riverdale',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14898741_e_h3_aa.jpg',4,NULL,NULL,'SH026062290000'),('EP026062290024','Jughead learns about Riverdale\'s history, Archie tries out for the Riverdale wrestling team.','Chapter Twenty-Four: The Wrestler',_binary '','GBR','Riverdale',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14898736_e_h3_aa.jpg',4,NULL,NULL,'SH026062290000'),('EP028455200054','Employees are given amnesty if they confess to bad things. Jonah and Amy must defuse a situation.','Amnesty',_binary '','GBR','Superstore',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15195006_e_h3_aa.jpg',4,NULL,NULL,'SH028455200000'),('EP026201320007','The Knights travel to the Hill Country in the northern part of Knighton to Axl\'s home town.','The Maze of Amazement',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12477298_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP026062290026','Veronica organises a face-to-face meeting after tensions between Hiram.','Chapter Twenty-Six: The Tell-Tale Heart',_binary '','GBR','Riverdale',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15032980_e_h3_aa.jpg',4,NULL,NULL,'SH026062290000'),('EP026201320008','Jestro, happy he has the real Book of Deception, uses it to create bad versions of the NEXO-Knights.','The Black Knight',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12477301_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP030689530026','Barbie has to prove her sisters innocence and catch a real thief.','Barbie Roberts: Undercover Mermaid Part 2',_binary '','GBR','Barbie Dreamhouse Adventures',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16357132_e_h3_aa.jpg',4,NULL,NULL,'SH030689530000'),('EP030689530024','Barbie has to figure out who is behind Malibu\'s sudden flea infestation.','A Dog\'s Day in Court',_binary '','GBR','Barbie Dreamhouse Adventures',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16269641_e_h3_aa.jpg',4,NULL,NULL,'SH030689530000'),('EP017844120222','Die Sendung widmet sich den Bildern zweier Raumsonden, die die Menschen staunen lassen.','Botschafter im All: Voyager',_binary '','DEU','Frag den Lesch',NULL,NULL,4,NULL,NULL,'SH017844120000'),('EP014190010132','Ashley smells weed in the warehouse, and the hunt is on to discover who is getting high at work.','Scent of Deception',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10407524_e_h3_ac.jpg',4,NULL,NULL,'SH014190010000'),('EP012838610155','A man with a shady track record in Iraq is found murdered, and revenge appears to be the motive.','America, Inc.',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289932_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP014190010135','Les is devastated when he suspects Seth of doing deals behind his back with a competitor.','Seth\'s Return',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10338283_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP012584291046','Jonathan and James find a selection of objects at the historic St Albans Cathedral and Abbey.','St Albans 12',_binary '','GBR','Flog It!',NULL,NULL,4,NULL,NULL,'SH012584290000'),('EP026201320005','Jestro calls forth Whipperella and uses her to trap the knights in the dark woods.','Fright Knight',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12477290_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP026201320006','The Book of Monsters tries to eat the script to learn more about modern society.','The Golden Castle',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12477292_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP013031190084','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP032083890007','A UFO is spotted over the Pentagon and a man and his kids are spooked by a ghost on a playground.','A UFO Spotted Over the Pentagon and More',_binary '','GBR','Paranormal Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16579848_e_h3_aa.jpg',4,NULL,NULL,'SH032083890000'),('EP013319050017','When Mike turns into a couch potato, Molly decides to go out of town with her sister.','Joyce & Vince and Peaches & Herb',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8534921_e_h3_ac.jpg',4,NULL,NULL,'SH013319050000'),('EP013319050016','Mike\'s big plans for his first Valentine\'s Day with Molly are thrown into jeopardy.','First Valentine\'s Day',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8513615_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP019568620274','Ein Thema der Sendung ist unter anderem: \"So arbeitet der Sicherheitsdienst in Washington D. C.\".','',_binary '\0','DEU','n-tv Wissen',NULL,NULL,4,NULL,NULL,'SH019568620000'),('EP012680930134','Fishy fun with Justin and his friends as they visit an aquarium and meet a diver.','Under the Sea',_binary '','GBR','Something Special',NULL,NULL,4,NULL,NULL,'SH012680930000'),('EP013344650117','Kwazii and Dashi become entangled in a strange deep-sea creature.','Siphonophore',_binary '','GBR','Octonauts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10171447_e_h3_aa.jpg',4,NULL,NULL,'SH013344650000'),('EP019758630001','Calimero geht zu seiner Lieblings-Eisdiele. / Calimero und sein Vater bauen einen Drachen.','Das leckerste Eis der Welt; Der schönste Drachen',_binary '','DEU','Calimero',NULL,NULL,4,NULL,NULL,'SH019758630000'),('EP012584291030','The team are at the Platform in Morecambe, with experts Charles Hanson and Catherine Southon.','Morecambe 13',_binary '','GBR','Flog It!',NULL,NULL,4,NULL,NULL,'SH012584290000'),('EP013344650115','Dashi uses the new, multi-purpose Octo Max Suit to rescue Inkling and Kwazi from hungry gulper eels.','Gulper Eels',_binary '','GBR','Octonauts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10171436_e_h3_aa.jpg',4,NULL,NULL,'SH013344650000'),('EP013344650116','The Octonauts use magnets to try to stop a meteor that\'s heading toward the Octopod.','Humphead Parrotfish',_binary '','GBR','Octonauts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10171441_e_h3_aa.jpg',4,NULL,NULL,'SH013344650000'),('EP018676910035','James makes meals with leftover food that tastes even better the second time around.','Luxury Leftovers',_binary '','GBR','James Martin: Home Comforts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11396591_e_h3_aa.jpg',4,NULL,NULL,'SH018676910000'),('EP018676910034','With a crowd coming over for lunch, James makes some show-stopping dishes guaranteed to impress.','Crowd Pleasers',_binary '','GBR','James Martin: Home Comforts',NULL,NULL,4,NULL,NULL,'SH018676910000'),('EP012680930133','Justin and his friends go on a fruit picking adventure. Polly judges the Fabulous Fruit Competition.','Fruity Fun',_binary '','GBR','Something Special',NULL,NULL,4,NULL,NULL,'SH012680930000'),('EP012974771788','A selection of newly published stories from F Scott Fitzgerald.','F Scott Fitzgerald: The Lost Stories',_binary '','GBR','Book at Bedtime',NULL,NULL,4,NULL,NULL,'SH012974770000'),('EP013344650112','When a gigantic saltwater crocodile wanders into freezing waters, the Octonauts try to get it home.','Saltwater Crocodile',_binary '','GBR','Octonauts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9955983_e_h3_aa.jpg',4,NULL,NULL,'SH013344650000'),('EP012974771789','A selection of newly published stories from F Scott Fitzgerald.','F Scott Fitzgerald: The Lost Stories',_binary '','GBR','Book at Bedtime',NULL,NULL,4,NULL,NULL,'SH012974770000'),('EP034417720001','Tim träumt davon, zu den Sternen zu fliegen. Also hat er sich eine Rakete gebastelt.','Timmilied',_binary '','DEU','Timmis Raketenflieger Lieder',NULL,NULL,4,NULL,NULL,'SH034417720000'),('EP020904421562','Der Mord an einer Studentin ist der Beginn eines grausamen Spiels gegen einen unbekannten Gegner.','Das Spiel',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP013319050026','Peggy gets a huge surprise while celebrating the birthday of her boyfriend Dennis.','Dennis\' Birthday',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8838063_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP013319050028','Molly wants to save money for their wedding, but Mike is tempted into buying Vince\'s car.','\'57 Chevy Bel Air',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8858323_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP027326810012','Robert has to be bailed out of jail after jumping in a fountain during a raucous night of revelry.','Go Jump in the Fountain',_binary '','GBR','That\'s My Boy',NULL,NULL,4,NULL,NULL,'SH027326810000'),('EP013319050027','Mike finally decides to leave his bachelor pad behind and move in with Molly and her family.','Mike in the House',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8847478_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP027326810013','Robert refuses to attend Wilfred\'s daughter\'s wedding and Ida and Angie forget the present.','Invitation to the Wedding',_binary '','GBR','That\'s My Boy',NULL,NULL,4,NULL,NULL,'SH027326810000'),('EP012680930123','Justin is down on the farm with his friends where they meet a chicken, find eggs and get creative.','Down on the Farm',_binary '','GBR','Something Special',NULL,NULL,4,NULL,NULL,'SH012680930000'),('EP017720230563','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 543',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP017720230562','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 542',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP017720230561','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft.','Folge 541',_binary '','DEU','Bares für Rares',NULL,NULL,4,NULL,NULL,'SH017720230000'),('EP019855771412','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Köln.','',_binary '\0','DEU','Lokalzeit aus Köln',NULL,NULL,4,NULL,NULL,'SH019855770000'),('EP012974771790','A selection of newly published stories from F Scott Fitzgerald.','F Scott Fitzgerald: The Lost Stories',_binary '','GBR','Book at Bedtime',NULL,NULL,4,NULL,NULL,'SH012974770000'),('EP012680930121','Lord Tumble attempts to teach Mr Tumble how to play golf, but things don\'t quite go to plan.','Golf',_binary '','GBR','Something Special',NULL,NULL,4,NULL,NULL,'SH012680930000'),('EP014190010111','Les offers to buy a watch from a customer but asks his watch expert to take a closer look first.','Harold\'s Gamble',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10213081_e_h3_ac.jpg',4,NULL,NULL,'SH014190010000'),('EP014190010112','With the store still losing money, Seth brings in a consultant to determine the best solution.','The Outsider',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10279907_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP019855771413','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Köln.','',_binary '\0','DEU','Lokalzeit aus Köln',NULL,NULL,4,NULL,NULL,'SH019855770000'),('EP019334250794','Masha wants to learn ice skating, but there\'s nobody around to teach her.','Holiday on Ice',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11793456_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP019855771414','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Köln.','',_binary '\0','DEU','Lokalzeit aus Köln',NULL,NULL,4,NULL,NULL,'SH019855770000'),('EP019334250795','Masha wants to go to school, so she asks the Bear to make her one.','First Day of School',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11791355_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP012659190020','The twins are found safe and sound after running away from boarding school.','The Happiest Days of Your Life',_binary '','GBR','The Darling Buds of May',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1274856_e_h3_aa.jpg',4,NULL,NULL,'SH012659190000'),('EP019658800425','Die Sendung berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 10.03.2020 um 16:45 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP014190010113','Les is hurt when he discovers Seth is at a rival pawn shop, and fears he is joining the competition.','Seth\'s Secret',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10282563_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP013319050019','Mike fears his mother is telling unflattering stories about him while at lunch with Molly.','Peggy Shaves Her Legs',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8567674_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP013319050018','After working too many double shifts together, Mike and Carl each find the other very annoying.','Mike\'s Feet',_binary '','GBR','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8535000_e_h3_ab.jpg',4,NULL,NULL,'SH013319050000'),('EP019578260051','Quinn ist heimlich in Link verknallt und obendrein die Tochter von Schurken.','Verrückt nach Mangos',_binary '','DEU','Die Thundermans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11910388_e_h3_ab.jpg',4,NULL,NULL,'SH019578260000'),('EP014190010118','With a major drop in the price of Gold, the store takes a huge financial hit.','Gold Crash',_binary '','GBR','Hardcore Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10212688_e_h3_aa.jpg',4,NULL,NULL,'SH014190010000'),('EP026201320026','The Nexo Knights have their powerful shields stolen by Robot Hoodlum and his Merry Mechs.','Storm Over Rock Wood',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13762187_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP026201320022','The kingdom is threatened by an army of Lava Monsters, and the NEXO Knights must come to the rescue.','The Cloud',_binary '','GBR','LEGO Nexo Knights',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13640465_e_h3_aa.jpg',4,NULL,NULL,'SH026201320000'),('EP012613440319','Six more amateurs try to prove they have the potential to be the 2020 MasterChef Champion.','',_binary '\0','GBR','MasterChef',NULL,NULL,4,NULL,NULL,'SH012613440000'),('EP012606065149','Gail is happy when Nick says he\'ll spend Christmas at home. Fiona worries about losing her job.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP012606065148','Denise refuses to speak to Ken. Fiona is shocked when Steve asks her to move in with him.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP030689690021','The girls are determined to protect the Heart of the Sea, and Heartlake\'s history.','Heart of the Sea',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,NULL,4,NULL,NULL,'SH030689690000'),('EP030689690022','The girls discover where The Heart of The Sea\'s shipwreck and its treasure can be located.','Map Quest',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,NULL,4,NULL,NULL,'SH030689690000'),('EP003331934629','Tobias freut sich auf einen intimen Abend mit Vivien, als Coco wider Erwarten nicht von Angelina abgeholt wird. In seinem Frust fährt er Vivien ungerecht an. Jakob versucht erfolglos, sich in die Geschäftsakten von Huber-Bau einzuarbeiten.','Desolater Zustand',_binary '','DEU','Unter uns',NULL,NULL,4,NULL,NULL,'SH003331930000'),('EP003331934627','Eva will unter keinen Umständen akzeptieren, dass Till bessere Chancen bei Noah hat.','Ewige Erinnerung',_binary '','DEU','Unter uns',NULL,NULL,4,NULL,NULL,'SH003331930000'),('EP003331934628','Diesmal unternimmt Leni den Versuch, Jana und Paco bei einem Essen zu verkuppeln.','Starthilfe',_binary '','DEU','Unter uns',NULL,NULL,4,NULL,NULL,'SH003331930000'),('EP030689690026','The girls are called into action as a mysterious blackout causes chaos in the city.','Lights Out',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,NULL,4,NULL,NULL,'SH030689690000'),('EP012810840392','KOTV Weekly, the all you need boxing show with fights from around the world.','',_binary '\0','GBR','KOTV Boxing Weekly',NULL,NULL,4,NULL,NULL,'SH012810840000'),('EP013065590096','Mike Brewer and Edd China make a Porsche 924 roadworthy again.','Porsche 924',_binary '','GBR','Wheeler Dealers',NULL,NULL,4,NULL,NULL,'SH013065590000'),('EP012822630074','Rob, David and Lee are joined by Miles Jupp, Heston Blumenthal OBE, Emilia Fox and Ed Byrne.','',_binary '\0','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11091949_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP013065590095','Mike Brewer and Edd China make a Porsche 924 roadworthy again.','Porsche 924',_binary '','GBR','Wheeler Dealers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2894511_e_h3_aa.jpg',4,NULL,NULL,'SH013065590000'),('EP012822630075','Rob, David and Lee are joined by Rhod Gilbert, Kelly Hoppen MBE, Carol Vorderman and Hal Cruttenden.','',_binary '\0','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11113713_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP012822630071','Rob, David and Lee are joined by Fiona Bruce, Micky Flanagan, Steve Jones and Claudia Winkleman.','',_binary '\0','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11025803_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP012822630072','Rob, David and Lee are joined by Bruno Tonioli, Adam Buxton, Kirsty Wark and Rob Beckett.','',_binary '\0','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11049622_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP012822630073','Rob, David and Lee are joined by Bob Mortimer, Mel Giedroyc, Adil Ray and Kian Egan.','',_binary '\0','GBR','Would I Lie to You?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11063337_e_h3_aa.jpg',4,NULL,NULL,'SH012822630000'),('EP019752360029','Käpt\'n Turbot, Ryder und die Hunde machen einen Ausflug und reden über die Meerfellfreunde.','Die Meerfellfreunde',_binary '','DEU','PAW Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11363158_e_h3_aa.jpg',4,NULL,NULL,'SH019752360000'),('EP020985130215','Assistenzarzt Ben Ahlbeck kommt mit seiner Tochter Raya ins Johannes-Thal-Klinikum. Dort wird er unerwartet von Dr. Matteo Moreau eingespannt, als der achtjährige Kai Krause mit schweren Brandverletzungen eingeliefert wird. Er hatte einen.','Herausforderungen',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,NULL,4,NULL,NULL,'SH020985130000'),('EP022804880012','Zoom und seine Freunde treffen Igor, einen gefährlichen Delfin. Yann und Patrick wollen ihm helfen.','Ein böser Delfin',_binary '','DEU','Zoom: Der weiße Delfin',NULL,NULL,4,NULL,NULL,'SH022804880000'),('EP018771240035','Stewart and Elmore are in Cheshire on one of the most confrontational cases they have ever faced.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12863464_e_h3_aa.jpg',4,NULL,NULL,'SH018771240000'),('EP012575570096','Bear Grylls faces arctic blizzards, uses a deer skin for shelter, and traps rabbits to eat.','Scotland',_binary '','GBR','Bear Grylls: Born Survivor',NULL,NULL,4,NULL,NULL,'SH012575570000'),('EP019668380075','Die Sendung zeigt die Firmengeschichte des Landmaschineneherstellers Krone im Emsland.','Made in Norddeutschland: Krone - der König der Landmaschinen',_binary '','DEU','Unsere Geschichte',NULL,NULL,4,NULL,NULL,'SH019668380000'),('EP012606065150','Betty is thrilled and proud to wear the Mayoral chain, while Denise asks Jon to buy the salon.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP030689690014','The girls save the day when a giant hungry turtle comes to town.','The Lake Monster',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15953244_e_h3_aa.jpg',4,NULL,NULL,'SH030689690000'),('EP022804880011','Maeva ist mit Onkel Patrick zum Einkaufen gefahren und Timeti ist verantwortlich für das Restaurant.','Timetis Restaurant',_binary '','DEU','Zoom: Der weiße Delfin',NULL,NULL,4,NULL,NULL,'SH022804880000'),('EP022240140024','Am Loki-Tag darf sich jeder dumme Scherze erlauben. Fischbein entdeckt das zweiköpfige Ungeheuer.','Der Loki-Tag',_binary '','DEU','Dragons: Auf zu neuen Ufern',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12453455_e_h3_aa.jpg',4,NULL,NULL,'SH022240140000'),('EP012606065152','Jack wants rid of Cliff, and Samir accuses Emily of calling the immigration officers on him.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP030689690016','The girls reunite feuding best friends and up their chances of winning the Grand Prix.','Together Again',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15960849_e_h3_aa.jpg',4,NULL,NULL,'SH030689690000'),('EP012606065151','Curly starts work at Soopascoopa, and immigration officers want to speak to Samir.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP018771240033','The agents face a pair of angry mums, and an underdressed debtor with something to hide.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12842751_e_h3_ab.jpg',4,NULL,NULL,'SH018771240000'),('EP018771240030','Stewart and Elmore track down nearly £3,000 owed by a garage mechanic.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12778735_e_h3_aa.jpg',4,NULL,NULL,'SH018771240000'),('EP012606065153','Raquel agrees to marry Curly, while Deirdre and Samir are interviewed separately at the airport.','',_binary '\0','GBR','Coronation Street',NULL,NULL,4,NULL,NULL,'SH012606060000'),('EP018771240031','Cases include violent tenants who threaten to burn down the house and a shifty contractor.','',_binary '\0','GBR','Can\'t Pay? We\'ll Take it Away!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12803708_e_h3_aa.jpg',4,NULL,NULL,'SH018771240000'),('EP030689690017','The girls help Andrea\'s Dad put on the annual Explorer\'s Day play.','Explorer\'s Day',_binary '','GBR','LEGO Friends: Girls on a Mission',NULL,NULL,4,NULL,NULL,'SH030689690000'),('EP022240140028','Fischbein ist immer noch in den Fängen der Drachen und die Drachenreiter versuchen, ihn zu befreien.','Die Verteidigung',_binary '','DEU','Dragons: Auf zu neuen Ufern',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12453454_e_h3_aa.jpg',4,NULL,NULL,'SH022240140000'),('EP019658800401','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 27.02.2020 um 16:45 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP019658800400','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 26.02.2020 um 22:15 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP019658800403','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 27.02.2020 um 22:30 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP019658800402','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 27.02.2020 um 17:50 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP013027100669','MPs take part in a Westminster Hall debate on the UK oil and gas industry, from Tuesday 25 February.','UK Oil and Gas Industry',_binary '','GBR','Westminster Hall',NULL,NULL,4,NULL,NULL,'SH013027100000'),('EP019569840172','Dr. Doofenschmirtz verwandelt Phin und Ferb in Babys. Phineas und Ferb reisen nach Südamerika.','Doofenshmirtz als Geheimagent; Das verlorene Amulett',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9199293_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP019569840175','Phin und Ferb bekommen einen Stern geschenkt und wollen ihn aus der Nähe betrachten.','Ein Stern für Phineas und Ferb',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3380292_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP023114600022','Mister Maker, the Mini Makers from Maidstone and Scrappz have a fantastic Arty Party all about gold.','Gold Party',_binary '','GBR','Mister Maker\'s Arty Party',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12582292_e_h3_aa.jpg',4,NULL,NULL,'SH023114600000'),('EP023114600023','Join Mister Maker, Scrappz and the Mini Makers from Maidstone for an Arty Party all about transport.','Transport Party',_binary '','GBR','Mister Maker\'s Arty Party',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12582311_e_h3_aa.jpg',4,NULL,NULL,'SH023114600000'),('EP026088954775','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 19:30 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP026088954776','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 21:45 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP026088954772','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 16:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP026088954773','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 17:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP026088954774','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 18:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP019383521611','Fünf Damen treten an, um die Frau mit dem besten Stil zu werden. Dieses Mal mit Jara.','Motto in Essen: Mustermania - Interpretiere den Klassiker Hahnentritt neu!, Tag 3: Jara',_binary '','DEU','Shopping Queen',NULL,NULL,4,NULL,NULL,'SH019383520000'),('EP017703990031','Rachael Ray shares recipes that take a half hour or less.','Burger Night Done Right',_binary '','GBR','30-Minute Meals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16700337_e_h3_aa.jpg',4,NULL,NULL,'SH017703990000'),('EP014069441886','All the action from the latest round of Spain\'s LaLiga.','Highlights',_binary '','GBR','LaLiga Football',NULL,NULL,4,NULL,NULL,'SH014069440000'),('EP018886850004','Nach einem Kneipenbummel wird Finn Kiesewetter Zeuge, wie eine Frau am Hafen ins Wasser springt.','Der Griff ins Leere',_binary '','DEU','Morden im Norden',NULL,NULL,4,NULL,NULL,'SH018886850000'),('EP019383521610','Fünf Damen treten an, um die Frau mit dem besten Stil zu werden. Dieses Mal mit Svetlana.','Motto in Essen: Mustermania - Interpretiere den Klassiker Hahnentritt neu!, Tag 2: Nadine',_binary '','DEU','Shopping Queen',NULL,NULL,4,NULL,NULL,'SH019383520000'),('EP014069441887','Action from LaLiga, the top tier of Spanish football.','Osasuna v Granada',_binary '','GBR','LaLiga Football',NULL,NULL,4,NULL,NULL,'SH014069440000'),('EP017703990033','Rachael Ray shares recipes that take a half hour or less.','Chicken Change-Up',_binary '','GBR','30-Minute Meals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16796460_e_h3_aa.jpg',4,NULL,NULL,'SH017703990000'),('EP012838610168','A grief counsellor who claims to talk to the dead ends up joining them the team.','Compassion',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289877_e_h3_ad.jpg',4,NULL,NULL,'SH012838610000'),('EP022546860004','Huck muss Ermittlungen gegen seinen Freund anstellen, der gerade aus dem Gefängnis entlassen wurde.','Ein ziemlich guter Freund',_binary '','DEU','Huck',NULL,NULL,4,NULL,NULL,'SH022546860000'),('EP019383521612','Fünf Damen treten an, um die Frau mit dem besten Stil zu werden. Dieses Mal mit Tina.','Motto in Essen: Mustermania - Interpretiere den Klassiker Hahnentritt neu! Tag 4: Tina',_binary '','DEU','Shopping Queen',NULL,NULL,4,NULL,NULL,'SH019383520000'),('EP023537470082','The Bermuda skinks have a ferocious approach to mating as Poptart meets Sharkface.','',_binary '\0','GBR','The Secret Life of the Zoo',NULL,NULL,4,NULL,NULL,'SH023537470000'),('EP034460040001','Farmer Gail has spent more time caring for her animals than herself.','',_binary '\0','GBR','10 Years Younger In 10 Days',NULL,NULL,4,NULL,NULL,'SH034460040000'),('EP026088954768','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 19:30 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP026088954769','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 21:45 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP022444510022','Die 25-jährige Kristen wird nach dem Besuch einer Autoraststätte am nächsten Tag Tod aufgefunden.','Verhängnisvoller Stopp',_binary '','DEU','Crime Town USA - Verbrechen im Hinterland',NULL,NULL,4,NULL,NULL,'SH022444510000'),('EP019739060930','Zu später Stunde informiert die Nachrichtensendung über die wichtigsten Ereignisse.','',_binary '\0','DEU','Rundschau-Nacht',NULL,NULL,4,NULL,NULL,'SH019739060000'),('EP026088954764','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 06:10 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP030448600017','Niko unexpectedly reveals a new demon while asking Mel for help.','Surrender',_binary '','GBR','Charmed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16593230_e_h3_aa.jpg',4,NULL,NULL,'SH030448600000'),('EP019668380097','Das Traditionsunternehmen Hanomag hat technische Meisterleistungen hervorgebracht.','Made in Norddeutschland - Hanomag - Aufstieg und Fall einer Legende',_binary '','DEU','Unsere Geschichte',NULL,NULL,4,NULL,NULL,'SH019668380000'),('EP026088954765','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 16:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP030448600018','When Harry mysteriously disappears, a substitute Whitelighter, Tessa, surprises the sisters.','The Replacement',_binary '','GBR','Charmed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16781577_e_h3_aa.jpg',4,NULL,NULL,'SH030448600000'),('EP026088954766','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 17:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP030448600015','Macy\'s memory lapses leave her unable to trust herself, so she goes to Harry and Charity for help.','Memento Mori',_binary '','GBR','Charmed',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16593229_e_h3_aa.jpg',4,NULL,NULL,'SH030448600000'),('EP026088954767','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 26.02.2020, 18:00 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP012692250058','Devon finds the connection between three homicides and sends Michael to chase a loan shark.','Custom Made Killer',_binary '','GBR','Knight Rider',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1138554_e_h3_aa.jpg',4,NULL,NULL,'SH012692250000'),('EP017703990046','Rachael Ray shares recipes that take a half hour or less.','Trendy Fried Chicken',_binary '','GBR','30-Minute Meals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16700355_e_h3_aa.jpg',4,NULL,NULL,'SH017703990000'),('EP012606270102','Allison helps Detective Scanlon deciphering some blast marks.','New Terrain',_binary '','GBR','Medium',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7899373_e_h3_ab.jpg',4,NULL,NULL,'SH012606270000'),('EP015402030204','Themen: Meniskus - operieren oder konservativ behandeln? Baker-Zyste: Wann reichen Kontrollen nicht mehr aus? Gefahr: Brandenburg hat hohen Blutdruck.','',_binary '\0','DEU','rbb Praxis',NULL,NULL,4,NULL,NULL,'SH015402030000'),('EP012606270103','Allison is suspicious of Ariel\'s new boyfriend; Bridgette posts embarrassing videos on the Internet.','Once in a Lifetime',_binary '','GBR','Medium',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7902900_e_h3_ab.jpg',4,NULL,NULL,'SH012606270000'),('EP014822530060','Justin wants to perform magic so Robert calls in the help of a real magician.','Magical Justin',_binary '','GBR','Justin\'s House',NULL,NULL,4,NULL,NULL,'SH014822530000'),('EP026088954770','SWR Aktuell liefert von Montag bis Samstag im SWR Fernsehen Themen, Hintergründe, Erklärungen und Analysen zum politischen und gesellschaftlichen Geschehen.','vom 27.02.2020, 06:10 Uhr',_binary '','DEU','SWR Aktuell Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH026088950000'),('EP019618100247','Die meisten Frauen bereiten sich auf die Geburt vor, doch es läuft nicht immer reibungslos ab.','Gewalt im Kreißsaal - Zwei Frauen brechen ihr Schweigen',_binary '','DEU','Menschen hautnah',NULL,NULL,4,NULL,NULL,'SH019618100000'),('EP019585290139','Marco Schreyl und seine Reisebegleiter paddeln mit Faltbooten von Goldberg bis an die Ostsee.','Durch das wilde Mecklenburg',_binary '','DEU','Wunderschön!',NULL,NULL,4,NULL,NULL,'SH019585290000'),('EP014054720049','A torrential storm in Santa Cruz, Calif., leaves some buyers soaked, and others singing in the rain.','Blame It on the Rain',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8992405_e_h3_ab.jpg',4,NULL,NULL,'SH014054720000'),('EP016928350090','Coverage of the men\'s and women\'s team sprint finals and the women\'s 10km scratch race.','Berlin: Day 1',_binary '\0','GBR','Live: UCI World Championship Track Cycling',NULL,NULL,4,NULL,NULL,'SH016928350000'),('EP012692250069','Michael gets suspicious when an expensive race horse collapses.','Knight by a Nose',_binary '','GBR','Knight Rider',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1138543_e_h3_ac.jpg',4,NULL,NULL,'SH012692250000'),('EP012692250065','While trying to corner a feared industrialist, K.I.T.T. is dropped into a vat of chemicals.','Junkyard Dog',_binary '','GBR','Knight Rider',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1138555_e_h3_aa.jpg',4,NULL,NULL,'SH012692250000'),('EP028289637910','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 12:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP003332230065','Maggie geht mit ihrem Freund Michael nach Japan. Bevor sie die Reise antreten, heiraten die beiden.','Woman in Love',_binary '','DEU','Die Nanny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659155_e_h3_aa.jpg',4,NULL,NULL,'SH003332230000'),('EP028289637911','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 14:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP003332230066','Fran erfährt von einer Wahrsagerin, dass Maxwell in Kalifornien eine Affäre haben will.','Affäre in blond',_binary '','DEU','Die Nanny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659157_e_h3_aa.jpg',4,NULL,NULL,'SH003332230000'),('EP003332230067','Fran möchte endlich ihre Babys bekommen, aber die Wehen lassen auf sich warten.','Die glücklichste Fran der Welt',_binary '','DEU','Die Nanny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659160_e_h3_aa.jpg',4,NULL,NULL,'SH003332230000'),('EP003332230068','Bei Fran kommen die Wehen in immer kürzeren Abständen, doch sie will, dass C.C. und Niles heiraten.','Die glücklichste Fran der Welt',_binary '','DEU','Die Nanny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659161_e_h3_aa.jpg',4,NULL,NULL,'SH003332230000'),('EP028289637916','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 02:23 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP028289637917','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 04:58 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP016928350092','Coverage of the men\'s team pursuit and keirin finals, and of the women\'s team pursuit final.','Berlin: Day 2',_binary '\0','GBR','Live: UCI World Championship Track Cycling',NULL,NULL,4,NULL,NULL,'SH016928350000'),('EP033080130001','A theme-park reviewer has become trapped in an tram, right above a hungry T-Rex hoping for a meal.','Mission Critical!',_binary '','GBR','Jurassic World: The Legend of Isla Nublar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17039842_e_h3_aa.jpg',4,NULL,NULL,'SH033080130000'),('EP028289637912','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 15:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP014054720051','Darrell buys on a hunch, praying for something that will lift him out of the danger zone.','Highland Anxiety',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9088933_e_h3_aa.jpg',4,NULL,NULL,'SH014054720000'),('EP016928350097','GB\'s women team pursuiters will be hoping for gold after finishing runner-up for the last two years.','Berlin: Day 2',_binary '\0','GBR','Live: UCI World Championship Track Cycling',NULL,NULL,4,NULL,NULL,'SH016928350000'),('EP028289637913','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 16:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP014054720052','In San Francisco, Barry finds an old pair of boxers and Darrell takes a big gamble.','Viva La San Francisco',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8992406_e_h3_ab.jpg',4,NULL,NULL,'SH014054720000'),('EP016928350096','Featuring the finals of the men\'s and women\'s team sprint, as well as the women\'s 10km scratch race.','Berlin: Day 1',_binary '\0','GBR','Live: UCI World Championship Track Cycling',NULL,NULL,4,NULL,NULL,'SH016928350000'),('EP028289637914','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 17:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP012839130059','In this episode, Colin\'s probation period is over.','',_binary '\0','GBR','London\'s Burning',NULL,NULL,4,NULL,NULL,'SH012839130000'),('EP028289637915','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 20:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP014054720050','In the Los Angeles community of Harbor City, Darrell bets big on a manly unit.','Operation Hobo',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8992402_e_h3_ab.jpg',4,NULL,NULL,'SH014054720000'),('EP013026930021','Woodpecker didn\'t always peck, he was the only bird who didn\'t make a sound.','Why Woodpecker Pecks',_binary '','GBR','Tinga Tinga Tales',NULL,NULL,4,NULL,NULL,'SH013026930000'),('EP016993350005','Ellie Harrison is in the UK\'s largest estuarine habitat in Morecambe Bay, Cumbria.','Estuaries',_binary '','GBR','The Great British Winter',NULL,NULL,4,NULL,NULL,'SH016993350000'),('EP028289637909','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 09:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP019576250029','Die Polizisten greifen einen blutverschmierten Mann auf der Straße auf.','Bin ich ein Mörder?',_binary '','DEU','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723053_e_h3_ac.jpg',4,NULL,NULL,'SH019576250000'),('EP021881570002','Foreign disappointments mirror Henry\'s deteriorating marriage, but he remakes himself.','Warrior (1509-1525)',_binary '','GBR','Henry VIII: The Mind of a Tyrant',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7840653_e_h3_aa.jpg',4,NULL,NULL,'SH021881570000'),('EP013792890123','McGarrett and the gang investigate the murder of a bounty hunter who had just apprehended a killer.','Luapo\'i',_binary '','GBR','Hawaii Five-0',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11682689_e_h3_ab.jpg',4,NULL,NULL,'SH013792890000'),('EP013792890122','During a solo outrigger trip, Kono encounters bad weather and must fight for her life.','Mo\'o \'olelo Pu',_binary '','GBR','Hawaii Five-0',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11686203_e_h3_ac.jpg',4,NULL,NULL,'SH013792890000'),('EP024053230122','Both the Naughticorns and the Pirates are having a party, but nobody has turned up to either.','The Two Parties',_binary '','GBR','Noddy: Toyland Detective',NULL,NULL,4,NULL,NULL,'SH024053230000'),('EP019576250023','Eine Frau wurde auf mysteriöse Art durch Stromschläge getötet. Die Ermittler tappen im Dunkeln.','Machtrausch',_binary '','DEU','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723050_e_h3_ac.jpg',4,NULL,NULL,'SH019576250000'),('EP019576250024','Da Erics Wohnung renoviert wird, beschließt er, in ein heruntergekommenes Motel zu ziehen.','Deluca Motel',_binary '','DEU','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723051_e_h3_ac.jpg',4,NULL,NULL,'SH019576250000'),('EP012839130060','Blue Watch race against time to rescue a young girl trapped in a silo.','',_binary '\0','GBR','London\'s Burning',NULL,NULL,4,NULL,NULL,'SH012839130000'),('EP019576250025','Ein Bauarbeiter stößt mit seinem Bohrer auf eine Kiste mit einem lebendig begrabenen Mann.','Sumpfblüten',_binary '','DEU','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723052_e_h3_ac.jpg',4,NULL,NULL,'SH019576250000'),('EP028289637905','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 02:38 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP022855020053','Der populäre Anwalt Ingo Lenßen berät in seiner Call-In-Show die Anrufer in Rechtsbelangen.','',_binary '\0','DEU','Lenßen Live',NULL,NULL,4,NULL,NULL,'SH022855020000'),('EP028289637906','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 26.02.2020, 04:58 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP016993350004','Ellie Harrison explores Britain\'s forests during the unforgiving winter months.','Forests',_binary '','GBR','The Great British Winter',NULL,NULL,4,NULL,NULL,'SH016993350000'),('EP022855020054','Lenßen live - Der Kultanwalt am Telefon mit Ingo Lenßen! Unter der kostenfreien Nummer 0800/9997777 oder per Email lenssen@sat1gold.de können sich die Zuschauer bei juristischen Alltagsproblemen direkt in der Live-Sendung von Ingo Lenßen.','',_binary '\0','DEU','Lenßen Live',NULL,NULL,4,NULL,NULL,'SH022855020000'),('EP013088890013','Richard is hosting a concert in the park for one of his favourite singers - but she has not arrived.','Pop Concert',_binary '','GBR','Sooty',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8840642_e_h3_aa.jpg',4,NULL,NULL,'SH013088890000'),('EP017028330246','Beim Gassigehen mit seinem Hund bewahrt Rentner Johann die suizidale Maja vor dem Äußersten.','Verlorene Seelen',_binary '','DEU','Der Bergdoktor',NULL,NULL,4,NULL,NULL,'SH017028330000'),('EP013088890014','It is Richard\'s day off so Sooty and Sweep help him prepare a picnic but it does not go to plan.','The Drive in the Country',_binary '','GBR','Sooty',NULL,NULL,4,NULL,NULL,'SH013088890000'),('EP013659580006','A woman must get control of her hoarding and part with her stuff before she is evicted.','Tara; Betty',_binary '','GBR','Hoarders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3536858_e_h3_aa.jpg',4,NULL,NULL,'SH013659580000'),('EP029820540254','Gezeigt werden Dokumentationen zu verschiedenen Themen.','Unsere Welt in Zukunft - Wirtschaft',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP003337730383','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Gute Mädchen, böse Mädchen',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP012598220796','A semi-detached house in Telford, a problematic property in Kent, and a promising house in Morden.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP012598220795','A promising property in Derby, a derelict house in Kent, and a picturesque cottage in Dorset.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP013659580001','Jake hoards garbage and fears that if things don\'t change he may take his life.','Jake; Shirley',_binary '','GBR','Hoarders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3634125_e_h3_aa.jpg',4,NULL,NULL,'SH013659580000'),('EP033109840009','In dieser Sendung werden alle möglichen Hilfsmittel präsentiert, die die Küchenarbeit erleichtern.','',_binary '\0','DEU','Lieblingsküche',NULL,NULL,4,NULL,NULL,'SH033109840000'),('EP019577750324','Patrick verhilft Plankton zu mehr Kunden. Und: Plankton vergisst seinen Hochzeitstag mit Karen.','Abfalleimer DeLuxe Maxi; Einzeller Jubiläum',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3622862_e_h3_ab.jpg',4,NULL,NULL,'SH019577750000'),('EP016876850065','The Toughest Sport on Dirt comes to major venues around America.','Manchester',_binary '','GBR','Pro Bull Riding',NULL,NULL,4,NULL,NULL,'SH016876850000'),('EP013026930002','Tinga Tinga tells the tale of why Flamingo stands on one leg.','Why Flamingo Stands on One Leg',_binary '','GBR','Tinga Tinga Tales',NULL,NULL,4,NULL,NULL,'SH013026930000'),('EP034149290005','Julie Montagu visits a fellow American to see how she turned Sudeley Castle into a wedding venue.','Sudeley Castle',_binary '','GBR','An American Aristocrat\'s Guide to Great Estates',NULL,NULL,4,NULL,NULL,'SH034149290000'),('EP021893680015','Each year, our brave Vikings have to plough the field so they can have enough vegetables and cereal.','The Forgotten Treasure',_binary '','GBR','Vic the Viking',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11341617_e_h3_aa.jpg',4,NULL,NULL,'SH021893680000'),('EP021893680016','Halvar and his men discover a mysterious cavern where Sven and his pirates hide their loot.','The Cavern of Frozen Words',_binary '','GBR','Vic the Viking',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11306612_e_h3_aa.jpg',4,NULL,NULL,'SH021893680000'),('EP023537470044','Young meerkats Beagle and Huskie become parents and painted dog Ville must look after his pups.','',_binary '\0','GBR','The Secret Life of the Zoo',NULL,NULL,4,NULL,NULL,'SH023537470000'),('EP026358110045','Ein Mann will seine Eltern finden, die vor mehr als fünfzig Jahren entführt wurden.','Die Entführung',_binary '','DEU','Starhunter',NULL,NULL,4,NULL,NULL,'SH026358110000'),('EP021893680018','Urobe is declared bravest Viking of Flake for this year but Ylvi thinks Vic should have \"won\".','Dance with the Wolf',_binary '','GBR','Vic the Viking',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11341624_e_h3_aa.jpg',4,NULL,NULL,'SH021893680000'),('EP023537470045','There is a power struggle on chimp island, otter Wallace is ill and bush dog Mana is pregnant.','',_binary '\0','GBR','The Secret Life of the Zoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16250327_e_h3_aa.jpg',4,NULL,NULL,'SH023537470000'),('EP021286690042','The Twirlywoos learn more and more when they watch a shopkeeper build up a display of apples.','More and More',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12649673_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP021893680012','Halvar has to face a new challenge to prove he\'s the right chief for the village.','Gorm\'s Seagull',_binary '','GBR','Vic the Viking',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11361620_e_h3_aa.jpg',4,NULL,NULL,'SH021893680000'),('EP021286690041','The Twirlywoos watch a pot being made on a potter\'s wheel and decide to have a go themselves.','Spinning',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12649518_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP033109840011','In dieser Sendung werden alle möglichen Hilfsmittel präsentiert, die die Küchenarbeit erleichtern.','',_binary '\0','DEU','Lieblingsküche',NULL,NULL,4,NULL,NULL,'SH033109840000'),('EP033109840010','In dieser Sendung werden alle möglichen Hilfsmittel präsentiert, die die Küchenarbeit erleichtern.','',_binary '\0','DEU','Lieblingsküche',NULL,NULL,4,NULL,NULL,'SH033109840000'),('EP019088410146','Patients include an ex-prisoner, a man with a painful groin, and a pregnant lady with painful ears.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15531998_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP033109840012','In dieser Sendung werden alle möglichen Hilfsmittel präsentiert, die die Küchenarbeit erleichtern.','',_binary '\0','DEU','Lieblingsküche',NULL,NULL,4,NULL,NULL,'SH033109840000'),('EP019088410148','Gazi gets angry when his GP suggests counselling and Philip is sent for cancer checks.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15872205_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP018442680006','Der Tod einer Kripo-Beamtin weist Parallelen zu einem Fall auf, in dem sie selbst ermittelt hatte.','Hinkebein',_binary '','DEU','Tatort',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10454985_e_h3_aa.jpg',4,NULL,NULL,'SH018442680000'),('EP019088410147','A woman is suffering from a case of chicken pox that has covered her body in large, painful spots.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15852369_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP019088410149','Jemima and her family have an itchy rash and Alisa comes in to discuss her menopause.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15897966_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP031948590005','Diesmal geht es um die lustigsten Kinderclips, da sie niedlich oder rotzfrech sein können.','Die lustigsten Kinder-Clips',_binary '','DEU','Einfach süß!',NULL,NULL,4,NULL,NULL,'SH031948590000'),('EP019765930173','Yugi tritt in einem Duell gegen Noah an und muss sich gegen neue Karten wappnen.','Noahs letzte Drohung',_binary '','DEU','Yu-Gi-Oh!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2581864_e_h3_aa.jpg',4,NULL,NULL,'SH019765930000'),('EP012793860024','Lewis questions the suicide of a professor whose dating video leaked online to a vicious media blog.','Generation of Vipers',_binary '','GBR','Lewis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9252579_e_h3_aa.jpg',4,NULL,NULL,'SH012793860000'),('EP018886850034','Inmitten der Lübecker Teufelsinsel liegt eine gepflegte Kleingartenanlage.','Die Teufelsinsel',_binary '','DEU','Morden im Norden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11378852_e_h3_aa.jpg',4,NULL,NULL,'SH018886850000'),('EP028289637922','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 09:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP028289637927','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 17:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP028289637928','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 20:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP003331975178','Brenda fühlt sich von Katrin ziemlich überfahren. Immerhin ist alles zwischen Felix und ihr in beiderseitigem Einvernehmen passiert. Wird Katrin ihr Ziel erreichen? Maren und Alexander sind im Stress.','Wackelndes Image',_binary '','DEU','Gute Zeiten, schlechte Zeiten',NULL,NULL,4,NULL,NULL,'SH003331970000'),('EP021286690051','The Twirlywoos watch a man as he covers his car in cleaning foam.','More About Covering',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13503997_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP021085570065','Die Sendung präsentiert Tipps und Tricks, die dabei helfen, den Alltag zu meistern.','Mythos LEGO-Technik',_binary '','DEU','Abenteuer Leben spezial',NULL,NULL,4,NULL,NULL,'SH021085570000'),('EP028289637923','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 12:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP003331975176','Aus dem geplanten Geschenk, welches Gerner Yvonne zum Geburtstag schenken wollte, wird nichts.','Erfreulicher Besuch',_binary '','DEU','Gute Zeiten, schlechte Zeiten',NULL,NULL,4,NULL,NULL,'SH003331970000'),('EP019088410151','One patient\'s wife teams up with Dr Khan to convince her husband to get his throat looked at.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,NULL,4,NULL,NULL,'SH019088410000'),('EP028289637924','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 14:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP003331975177','Katrin sorgt mithilfe von einer vertrauten Person dafür, dass sich Brendas Liebeskummer umwandelt.','Das Geburtstagsgeschenk-Dilemma',_binary '','DEU','Gute Zeiten, schlechte Zeiten',NULL,NULL,4,NULL,NULL,'SH003331970000'),('EP019088410150','The GPs face an unusual number of cases that require patients needing further treatment at hospital.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15920806_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP021286690052','The Twirlywoos find themselves in an office. They spin the office chairs round and round.','More About Round and Round',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13504002_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP028289637925','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 15:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP028289637926','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.','vom 27.02.2020, 16:00 Uhr',_binary '','DEU','Tagesschau',NULL,NULL,4,NULL,NULL,'SH028289630000'),('EP027671680049','Michelle is confused when her friends start to act strange and avoiding her.','Surprise Party',_binary '','GBR','PINY Institute of New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13901896_e_h3_aa.jpg',4,NULL,NULL,'SH027671680000'),('EP021393670043','Bumblebee hopes for a relaxing evening when he goes out to a concert, but the stadium is attacked.','Bumblebee\'s Night Off',_binary '','GBR','Transformers: Robots in Disguise',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12742437_e_h3_aa.jpg',4,NULL,NULL,'SH021393670000'),('EP013391170081','Erika DeNado told police her mother and brother had been murdered by Albanian thieves.','Slaying Sweethearts',_binary '','GBR','Crime Stories',NULL,NULL,4,NULL,NULL,'SH013391170000'),('EP015039310169','Trivette helps a student vindicate her father of a murder conviction.','Justice Delayed',_binary '','GBR','Walker, Texas Ranger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1603699_e_h3_aa.jpg',4,NULL,NULL,'SH015039310000'),('EP016841870033','Tim and Fuzz are off to West Sussex to rescue an iconic 1970s motor, the Datsun 240z.','Datsun 240z',_binary '','GBR','Car S.O.S',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12672066_e_h3_aa.jpg',4,NULL,NULL,'SH016841870000'),('EP016841870034','Tim and Fuzz go to Croydon to rescue a 1964 Volvo P1800, synonymous with TV series \"The Saint\".','Volvo P1800',_binary '','GBR','Car S.O.S',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12672072_e_h3_aa.jpg',4,NULL,NULL,'SH016841870000'),('EP018641230030','Hank is forced to dress up as a girl in order to catch someone trying to frame him.','Undercover Hank',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12728252_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP017507530137','Model Tahiry, 23, suffers from stage fright and seeks a man who can calm her nerves.','',_binary '\0','GBR','First Dates',NULL,NULL,4,NULL,NULL,'SH017507530000'),('EP016396211400','Regionale Themen und weiteres aus dem Service- und Boulevardbereich.','',_binary '\0','DEU','drehscheibe',NULL,NULL,4,NULL,NULL,'SH016396210000'),('EP021085570073','Die Sendung präsentiert Tipps und Tricks, die dabei helfen, den Alltag zu meistern.','Johannes on tour: Bali',_binary '','DEU','Abenteuer Leben spezial',NULL,NULL,4,NULL,NULL,'SH021085570000'),('EP018147800067','Drummond ranch, hot corn chili dip, and drip beef sandwiches and meat sauce.','Make Ahead Marvels',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10180973_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP015933320044','Franzi soll als Zeugin bei einem Jugendstrafverfahren aussagen.','Gefangen',_binary '','DEU','Notruf Hafenkante',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10373854_e_h3_aa.jpg',4,NULL,NULL,'SH015933320000'),('EP018641230037','Mr Joy\'s latest scheme sees the pupils of Westbrook vying to produce the best vlogs.','Vlog It!',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12917690_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230038','Hank accidentally gets his friends magazines confiscated by Miss Adolf.','Zipzers and Aliens',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12937413_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP012575570024','Bear Grylls heads to the African savannah to reveal vital techniques for finding food and water.','African Savannah',_binary '','GBR','Bear Grylls: Born Survivor',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3294366_e_h3_aa.jpg',4,NULL,NULL,'SH012575570000'),('EP013207650915','Contestants try to score as few points as possible by plumbing the depths of their knowledge.','',_binary '\0','GBR','Pointless',NULL,NULL,4,NULL,NULL,'SH013207650000'),('EP018641230039','Once more Miss Adolf is trying to get victims to sign up for her annual survival camp.','Hank Rocks Out',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12935503_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP013207650916','Contestants try to score as few points as possible by plumbing the depths of their knowledge.','',_binary '\0','GBR','Pointless',NULL,NULL,4,NULL,NULL,'SH013207650000'),('EP031196540022','Sharpe comes up with a way to help Max, as Kapoor receives some surprising news.','Luna',_binary '','GBR','New Amsterdam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16792269_e_h3_aa.jpg',4,NULL,NULL,'SH031196540000'),('EP018641230034','Hank has been drinking cans of Goodness Fizz in order to win games equipment for the school.','Captain Hank and the Last Picks',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12878005_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP019560340300','Ein Mordfall wird neu aufgerollt, weil Formfehler ein falsches Urteil verursacht haben könnten.','Unschuldig',_binary '','DEU','Navy CIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12288100_e_h3_ab.jpg',4,NULL,NULL,'SH019560340000'),('EP018641230036','Hank is looking forward to having a new form teacher at school, rather than Miss Adolf.','Teacher Torture',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12724906_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP015039310171','Walker and the team must prevent the distribution of deadly heroin.','Black Dragons',_binary '','GBR','Walker, Texas Ranger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1603701_e_h3_aa.jpg',4,NULL,NULL,'SH015039310000'),('EP022744040701','Nachdem ein Erstklässler im Unterricht ein verstörendes Bild gemalt hat, decken die Beamten tragische Familienumstände auf. Und: Ein Ehemann rastet in der Fahrschule seiner Frau komplett aus.','Kind malt Bild mit 7 Vätern; Fahrstunden in flagranti',_binary '','DEU','Der Blaulicht Report',NULL,NULL,4,NULL,NULL,'SH022744040000'),('EP015039310170','Walker and Sammo return from L.A. to capture the Ranger\'s killer.','The Day of Cleansing',_binary '','GBR','Walker, Texas Ranger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1603700_e_h3_aa.jpg',4,NULL,NULL,'SH015039310000'),('EP021393670033','New clues emerge about Decepticon Island and Steeljaw creates a plan to infiltrate the scrapyard.','Misdirection',_binary '','GBR','Transformers: Robots in Disguise',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12640399_e_h3_ab.jpg',4,NULL,NULL,'SH021393670000'),('EP022744040702','Bei ihrer Suche nach einem jungen Mädchen, das von zu Hause ausgerissen ist, stoßen die Beamten auf ein düsteres Familiengeheimnis! Ein brutaler Streit zweier Nachbarinnen um ein T-Shirt entwickelt sich zu einem heftigen Eifersuchtsdrama.','Teenietochter will auf Straße leben; Mann in Frauenunterwäsche',_binary '','DEU','Der Blaulicht Report',NULL,NULL,4,NULL,NULL,'SH022744040000'),('EP032590580002','Knapp 1400 Vulkane der Erde gelten als aktiv. Manche ruhen seit Jahrhunderten, gar Jahrtausenden.','Vulkane',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP017507530142','Footballer Reece worries that being 5\'4\" will stop him scoring with Ria.','',_binary '\0','GBR','First Dates',NULL,NULL,4,NULL,NULL,'SH017507530000'),('EP018147800064','Rigatoni with chicken thighs, salad bar with Italian dressing and chocolate peanut butter cookies.','Cutting Down Cedars',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10118385_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP032590580001','Gut ein Fünftel der Erde ist von Wüsten bedeckt und keine von ihnen gleicht der anderen.','Wüsten',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP021528680512','Die Erziehungsmethoden zweier verschiedener Familien werden geprüft. Diesmal mit Nadine und Daniela.','Nadine vs. Daniela',_binary '','DEU','Mein Kind, dein Kind - Wie erziehst du denn?',NULL,NULL,4,NULL,NULL,'SH021528680000'),('EP017507530143','Confident Chloe \"flirts her way through life\' and is looking for a `geezer\" who can handle her.','',_binary '\0','GBR','First Dates',NULL,NULL,4,NULL,NULL,'SH017507530000'),('EP018147800065','Rib-sticking lunch, lemon limeade, pepperoni pizza, basil tomato salad, and ice-cream pie.','Moving Cattle',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10180598_e_h3_ab.jpg',4,NULL,NULL,'SH018147800000'),('EP032590580004','Sie bestehen nur aus Wasser und haben doch die Oberfläche der Erde geformt: Gletscher.','Gletscher',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP018147800062','Citrus grilled pollo asado, cheesy refried beans, chili con queso, and pico de gallo.','Building Pens',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10117550_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP032590580003','Diesmal geht es um Küsten.Tosende Wellen nagen ständig an den Küsten und tragen Sand ab.','Küstenlandschaften',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP032450610076','Aiger lässt Revue passieren und erinnert dabei vor allem zwei Konstanten - Achilles und Valt.','Verbindung! Aiger gegen Valt!',_binary '','DEU','Beyblade: Burst Turbo',NULL,NULL,4,NULL,NULL,'SH032450610000'),('EP018147800063','Supreme pizza burgers, Italian salad, frozen fruit pops, and French silk pie.','Cowboy and Cowgirl Lunch',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10118232_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP018147800060','Apple tart, shrimp stir fry, and big steak salad with crispy onion strings.','Dear Pioneer Woman',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10053783_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP014134770073','Raa Raa and his friends are racing their vehicles through the Jingly Jangly Jungle.','Raa Raa and the Speedy Racers',_binary '','GBR','Raa Raa the Noisy Lion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14994640_e_h3_aa.jpg',4,NULL,NULL,'SH014134770000'),('EP018147800061','Pasta bar. grilled chicken. birthday cake. a chocolate chip caramel ice cream sundae.','Alex\'s 16th Birthday',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10053335_e_h3_ac.jpg',4,NULL,NULL,'SH018147800000'),('EP014134770072','Crocky doesn\'t know where his sticks have gone, until Pia realises Raa Raa took them by mistake.','Raa Raa and the Ladybird Den',_binary '','GBR','Raa Raa the Noisy Lion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14813092_e_h3_aa.jpg',4,NULL,NULL,'SH014134770000'),('EP018641230040','A film crew is coming to the school to make a documentary and everyone comes to school very excited.','Educating Zipzer',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12955517_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230041','Only Hank Zipzer would think of holding Christmas in the middle of summer.','Christmas in July',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996654_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018147800059','Alfresco dinner of crispy fried chicken. potato salad. coleslaw and key lime pies.','Big House Clean Up',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10052398_e_h3_ab.jpg',4,NULL,NULL,'SH018147800000'),('EP018641230042','Mr Rock is put in charge of doing an assembly on marine life.','My Girlfriend has Flippers',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12998441_e_h3_ac.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230043','There is a school inspector coming round and the school is to be on its best behaviour.','Hank\'s Good Turn',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12998485_e_h3_ab.jpg',4,NULL,NULL,'SH018641230000'),('EP032590580006','Flüsse verändern und formen die Erdoberfläche. Sie stürzen über Felskanten und bilden Wasserfälle.','Flüsse',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP032590580005','Menschenfeindliche Wüsten, imposante Gebirgslandschaften, brodelnde Vulkane, Leben spendende Flüsse: Faszinierende Erde stellt Landschaften der Superlative vor.','Gebirge',_binary '','DEU','Faszinierende Erde',NULL,NULL,4,NULL,NULL,'SH032590580000'),('EP022899640039','The team dives into action as Glitch\'s treasure hunt endangers the Great Barrier Reef.','The Great Barrier Reef, Australia',_binary '','GBR','Go Jetters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13300703_e_h3_aa.jpg',4,NULL,NULL,'SH022899640000'),('EP020868050004','`Kauf, Du Sau!\' heißt das aktuelle Soloprogramm des Münchner Kabarettisten Helmut Schleich.','Folge 12',_binary '','DEU','Helmut Schleich live auf der Bühne!',NULL,NULL,4,NULL,NULL,'SH020868050000'),('EP019764290001','Der Bau des neuen Gemeindehauses für eine Stadt am Sognefjord könnte Agnes\' Karriere beflügeln.','Sog der Gezeiten',_binary '','DEU','Liebe am Fjord',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10986791_e_h3_aa.jpg',4,NULL,NULL,'SH019764290000'),('EP018641230044','Mr Rock is holding a sponsored school sleepover and it\'s the best thing ever.','School Sleepover',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13045098_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230045','April Fool\'s Day is looming and Hank is pulling out all the stops to prank Miss Adolf.','Operation: Prank Adolf',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13062137_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230046','Rosa has the option to move the whole family to New York and open a new branch of the deli.','The Crunchy Pickle',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13160633_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP021286690089','Toodloo is standing on top of a cleaning pole whilst Chickedy and Chick make it taller.','More About Taller and Taller',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14813166_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP013065590038','Mike and Edd race to finish a Saab Turbo on time and within budget.','Saab',_binary '','GBR','Wheeler Dealers',NULL,NULL,4,NULL,NULL,'SH013065590000'),('EP019646620035','Jedes Jahr haben Abenteurer in Nome nur drei Monate Zeit, um nach purem Gold zu suchen.','Kampf der Titanen',_binary '','DEU','Die Schatzsucher - Goldtaucher der Beringsee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11456225_e_h3_aa.jpg',4,NULL,NULL,'SH019646620000'),('EP012701380024','Elmo finds out how birthdays are celebrated, how to wrap a present, and how to make a birthday cake.','Birthdays',_binary '','GBR','Elmo\'s World',NULL,NULL,4,NULL,NULL,'SH012701380000'),('EP022899640043','It\'s Go Jetters\' glow when Glitch uses some glowworms for his disco pizzazz in New Zealand.','Waitomo Glowworm Cave, New Zealand',_binary '','GBR','Go Jetters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13659061_e_h3_aa.jpg',4,NULL,NULL,'SH022899640000'),('EP022899640044','The team gets all shook up when Glitch sucks up the pink water of Senegal\'s Milkshake Lake.','Lake Retba, Senegal',_binary '','GBR','Go Jetters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13659129_e_h3_aa.jpg',4,NULL,NULL,'SH022899640000'),('EP021528680513','Die Erziehungsmethoden zweier Familien werden geprüft. Diesmal mit Kristina und Ann-Christin.','Kristina vs. Ann-Christin',_binary '','DEU','Mein Kind, dein Kind - Wie erziehst du denn?',NULL,NULL,4,NULL,NULL,'SH021528680000'),('EP033089030019','Mr. Magoo glaubt, im Königreich Goldensand zu sein; Bei Fizz und Wiesel geht ein Videodreh schief.','Der Drache von Goldensand; Die Riesenhornisse; Fizz, der Alien',_binary '','DEU','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17430577_e_h3_aa.jpg',4,NULL,NULL,'SH033089030000'),('EP033089030018','Mr. Magoo möchte mit Mr. Cat verreisen. Doch statt zum Flughafen, fährt er in den Supermarkt.','Der fünfte Kontinent ruft; Rettung im Regenwald; Kung-Fu-Magoo',_binary '','DEU','Mr. Magoo',NULL,NULL,4,NULL,NULL,'SH033089030000'),('EP014434780652','Jon Holmes chats to political comedian Matt Forde.','Matt Forde',_binary '','GBR','The Comedy Club Interview',NULL,NULL,4,NULL,NULL,'SH014434780000'),('EP029284430009','Nach der Trennung von Finn versucht Rae, Mitglied einer beliebten Mädchenclique zu werden.','Zickenterror',_binary '','DEU','My Mad Fat Diary',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10571721_e_h3_aa.jpg',4,NULL,NULL,'SH029284430000'),('EP018575210112','Weil der Strom plötzlich ausgefallen ist, schmilzt das ganze Eis von Frostini dahin.','Frostinis Eis schmilzt',_binary '','DEU','Chuggington - Die Loks sind los!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8292237_e_h3_ab.jpg',4,NULL,NULL,'SH018575210000'),('EP029284430008','Das College hat begonnen und Rae ist mit der neuen Situation völlig überfordert.','Unterm Radar',_binary '','DEU','My Mad Fat Diary',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10555326_e_h3_aa.jpg',4,NULL,NULL,'SH029284430000'),('EP031622240044','Die Moderatorin diskutiert mit Rolf Mützenich, dem Fraktionsvorsitzenden der SPD.','SPD vor dem Parteitag - Wie stabil ist die GroKo?',_binary '','DEU','Westpol: Eins zu eins',NULL,NULL,4,NULL,NULL,'SH031622240000'),('EP022744040703','Eine werdende Mutter verschwindet spurlos aus dem Kreißsaal. Noch ahnen die Beamten nicht, dass die Suche sie auf die Spur einer unfassbaren Verzweiflungstat führt.','Hochschwangere Frau flüchtet aus Kreissaal; Mutter erfährt Geheimnis',_binary '','DEU','Der Blaulicht Report',NULL,NULL,4,NULL,NULL,'SH022744040000'),('EP018575210116','Koko ist eifersüchtig auf Sophie, weil diese von Lara einen wunderschönen Anstrich bekommen hat.','Kokos neues Aussehen',_binary '','DEU','Chuggington - Die Loks sind los!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8292241_e_h3_aa.jpg',4,NULL,NULL,'SH018575210000'),('EP022744040704','Ein absolut skrupelloser Vater lässt seine Frau und auch die erfahrenen Beamten an seiner Eignung als Mensch zweifeln. Und: Eine Kinderhasserin überschreitet alle Grenzen, um eine ungeliebte Familie aus dem Mietshaus zu vergraulen.','Vater legt Baby in Babyklappe; Kinderhasserin macht in Kinderwagen',_binary '','DEU','Der Blaulicht Report',NULL,NULL,4,NULL,NULL,'SH022744040000'),('EP021286690088','The Twirlywoos are in a park hiding under some leaves. They see a man vacuuming the leaves.','More About Gone',_binary '','GBR','Twirlywoos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14808051_e_h3_aa.jpg',4,NULL,NULL,'SH021286690000'),('EP029820540223','In der Sendung zeigt der Reporter die Abläufe hinter den Kulissen der Notrufzentrale.','Polizei im Einsatz',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP019560590279','Als Laura ihren Mann beim Fremdgehen erwischt und die Scheidung will, entbrennt ein Rosenkrieg.','Der schmale Grat',_binary '','DEU','Im Namen der Gerechtigkeit - Wir kämpfen für Sie!',NULL,NULL,4,NULL,NULL,'SH019560590000'),('EP012595500784','Jules helps find a home for a couple who want to pursue a life with land, on a budget of £600,000.','South Devon',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP027671680052','Julia\'s in trouble. Michelle has discovered her lies. It\'s the perfect opportunity for revenge.','Coffee Girl',_binary '','GBR','PINY Institute of New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13901903_e_h3_aa.jpg',4,NULL,NULL,'SH027671680000'),('EP027671680051','Julia is working for Winfield, a prestigious fashion designer, and everything seems perfect.','Fashion Fake',_binary '','GBR','PINY Institute of New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13901900_e_h3_aa.jpg',4,NULL,NULL,'SH027671680000'),('EP032225950006','ProSieben fährt diesmal mit noch mehr Sport, Schmerz und Irrsinn für Joko und Klaas auf.','Folge 2',_binary '','DEU','Joko & Klaas gegen ProSieben',NULL,NULL,4,NULL,NULL,'SH032225950000'),('EP012595500781','Jules helps a couple find a new home and business in Dorset with a generous budget of £1.5 million.','Dorset',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP027671680050','Julia needs Lilith\'s help to make the best project for the annual science fair.','Everybody Hates Me',_binary '','GBR','PINY Institute of New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13901897_e_h3_aa.jpg',4,NULL,NULL,'SH027671680000'),('EP012595500780','Jonnie helps in the search for a countryside home for three generations of one family.','West Sussex',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP013065590040','Mike Brewer and mechanic Edd China to get a second hand Saab 900 Turbo back into cruising condition.','Saab',_binary '','GBR','Wheeler Dealers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2894474_e_h3_aa.jpg',4,NULL,NULL,'SH013065590000'),('EP022899640054','The team spring into action when Glitch\'s mini-master toys invade Hong Kong Harbour.','Hong Kong, China',_binary '','GBR','Go Jetters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13743866_e_h3_aa.jpg',4,NULL,NULL,'SH022899640000'),('EP018641230021','This year, Valentine\'s Day is doing funny things to people and Hank wants to take Anya to the dance.','Valentine\'s Confusion',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11930700_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP017507530124','Fred and his Cupids bid adieu to the winter blues as they welcome more hopeful singletons.','',_binary '\0','GBR','First Dates',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16782288_e_h3_aa.jpg',4,NULL,NULL,'SH017507530000'),('EP031622240056','Rupert Wiederwald diskutiert mit Ferda Ataman, Publizistin (Buch: Hört auf zu Fragen. Ich bin von hier!) und Sprecherin der neuen deutschen Organisationen über das Thema.','Mordanschlag von Hanau - wie rassistisch ist ?',_binary '','DEU','Westpol: Eins zu eins',NULL,NULL,4,NULL,NULL,'SH031622240000'),('EP018641230026','It is the last day of the summer term and Hank is determined to make it through without a detention.','Last Day',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12266181_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP017357350033','Otto decides to give his \'Wacky Yak\' to a friend, but the gift doesn\'t want to be given.','Homestead for the Holidays',_binary '','GBR','Alaska: The Last Frontier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10356301_e_h3_aa.jpg',4,NULL,NULL,'SH017357350000'),('EP018641230022','Emily is in hospital having her tonsils out so Hank decides to take her lizard to school.','Camouflage',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12171068_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230023','It\'s Hank\'s 13th birthday and he wants the greatest party of all time.','Hank\'s Birthday',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12192431_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP018641230024','Stan is determined to get Hank a good education at another school.','Hank\'s New School',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12214860_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP017357350031','The Kilchers come together to enjoy the fruits of their year-long labour.','Thanksgiving Special',_binary '','GBR','Alaska: The Last Frontier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10330359_e_h3_aa.jpg',4,NULL,NULL,'SH017357350000'),('EP018641230025','When Hank gets a good grade at school thanks to his grandad. Hank finds him a new girlfriend.','Papa Pete in Love',_binary '','GBR','Hank Zipzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12236689_e_h3_aa.jpg',4,NULL,NULL,'SH018641230000'),('EP016821990001','Featuring sugar craft, a masterclass in perfume making, and a lesson in Victorian style silhouettes.','',_binary '\0','GBR','Kirstie\'s Vintage Gems',NULL,NULL,4,NULL,NULL,'SH016821990000'),('EP019990870001','Friedrich I. schenkte das Bernsteinzimmer 1716 dem russischen Zaren, 1941 raubten es die Deutschen.','',_binary '\0','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9566321_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP021099870024','Themen: Film des Tages: Bad Tales von den D\'Innocenzo Brüdern Gast im Studio: Schauspieler Sebastian Blomberg Die neue Serie über Sigmund Freud von Marvin Kren (4 Blocks) 100 Jahre Das Cabinet des Dr. Caligari Ulrike Ottinger.','Folge 4',_binary '','DEU','Berlinale-Studio',NULL,NULL,4,NULL,NULL,'SH021099870000'),('EP012701380083','Elmo explores and discovers more about the seasons with his new friend, Smartie.','Seasons',_binary '','GBR','Elmo\'s World',NULL,NULL,4,NULL,NULL,'SH012701380000'),('EP021099870025','An sieben Tagen der Filmfestspiele berichtet das Berlinale-Studio über das Geschehen.','Folge 5',_binary '','DEU','Berlinale-Studio',NULL,NULL,4,NULL,NULL,'SH021099870000'),('EP019990870008','Das Honjo Masamune ist das legendärste Schwert Japans. Doch niemand weiß, wo es sich befindet.','Das verlorene Samurai-Schwert',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9565186_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP012701380089','Elmo explores and discovers more about counting with his new friend, Smartie.','Counting',_binary '','GBR','Elmo\'s World',NULL,NULL,4,NULL,NULL,'SH012701380000'),('EP018618750002','Eine breite Auswahl an unterschiedlichen Trinkwassersprudlern vom Marktführer zu entdecken.','',_binary '\0','DEU','Sodastream - Wassersprudler',NULL,NULL,4,NULL,NULL,'SH018618750000'),('EP019334253019','Masha falls ill after playing in the forest with penguin.','Best Medicine',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14731795_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP018618750001','Eine breite Auswahl an unterschiedlichen Trinkwassersprudlern vom Marktführer zu entdecken.','',_binary '\0','DEU','Sodastream - Wassersprudler',NULL,NULL,4,NULL,NULL,'SH018618750000'),('EP018618750003','Eine breite Auswahl an unterschiedlichen Trinkwassersprudlern vom Marktführer zu entdecken.','',_binary '\0','DEU','Sodastream - Wassersprudler',NULL,NULL,4,NULL,NULL,'SH018618750000'),('EP034226470010','Chase rents the house for a photo shoot as Savannah\'s stress prompts an emergency visit from Todd.','Stressed for Success',_binary '','GBR','Growing Up Chrisley',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17063684_e_h3_aa.jpg',4,NULL,NULL,'SH034226470000'),('EP016821990007','Kirstie helps Ellie and Nick create plates to complement their new 1930s dining room.','',_binary '\0','GBR','Kirstie\'s Vintage Gems',NULL,NULL,4,NULL,NULL,'SH016821990000'),('EP022073810010','The boys and girls are forced to share a dorm floor when the boys\' floor is declared toxic.','The Situation',_binary '','GBR','Make It Pop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11637540_e_h3_aa.jpg',4,NULL,NULL,'SH022073810000'),('EP012593140031','Hannibal and the A-Team set out to rescue a girl from a violent religious cult.','The Children of Jamestown',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264976_e_h3_ad.jpg',4,NULL,NULL,'SH012593140000'),('EP013786220019','Classic BBC comedy starring Tony Hancock, written by Galton and Simpson.','The Income Tax Demand',_binary '','GBR','Hancock\'s Half Hour',NULL,NULL,4,NULL,NULL,'SH013786220000'),('EP027196650012','Diese Dokumentation bietet einzigartige Einblicke in die Stirling Burg in Schottland.','Schottlands Schicksalsburg',_binary '','DEU','Giganten der Geschichte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14566928_e_h3_aa.jpg',4,NULL,NULL,'SH027196650000'),('EP020014790178','Das Automagazin widmet sich informativ, kritisch und emotional dem Thema Automobil.','',_binary '\0','DEU','WELT Drive',NULL,NULL,4,NULL,NULL,'SH020014790000'),('EP019468511623','Das Regionalmagazin berichtet von den wichtigsten Ereignissen im Freistaat Sachsen.','',_binary '\0','DEU','MDR Sachsenspiegel',NULL,NULL,4,NULL,NULL,'SH019468510000'),('EP022073810006','It\'s homecoming week and everyone\'s abuzz with who\'ll run for King and Queen.','Popular',_binary '','GBR','Make It Pop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11637539_e_h3_aa.jpg',4,NULL,NULL,'SH022073810000'),('EP020132550046','Hätte Mascha nicht den Besenstiel gefunden, hätte sie das Hockeyspiel gegen den Hasen nie gewonnen.','Weggefegt',_binary '','DEU','Mascha und der Bär',NULL,NULL,4,NULL,NULL,'SH020132550000'),('EP012664010345','Click travels to the most cyber attacked country in the world, Saudi Arabia.','Saudi Cyber Security',_binary '','GBR','Click',NULL,NULL,4,NULL,NULL,'SH012664010000'),('EP020132550045','Heute steht eine Inventur im Garten auf dem Tagesordnungspunkt. Die Tulpen vollkommen verwelkt sind.','Der wundersame Trank',_binary '','DEU','Mascha und der Bär',NULL,NULL,4,NULL,NULL,'SH020132550000'),('EP031598310702','A round up of today\'s racing action from Clonmel..','',_binary '\0','GBR','Irish Racing Replay',NULL,NULL,4,NULL,NULL,'SH031598310000'),('EP020132550044','Die Bärin spaziert an Bärs Haus vorbei, weshalb er nach drinnen eilt und die Gitarre holt.','Die Macht der Musik',_binary '','DEU','Mascha und der Bär',NULL,NULL,4,NULL,NULL,'SH020132550000'),('EP020132550043','Der Tiger und der Bär spielen zusammen Schach. Mascha will auch spielen. Sie lernt schnell.','Das lustige Ponyreiten',_binary '','DEU','Mascha und der Bär',NULL,NULL,4,NULL,NULL,'SH020132550000'),('EP025596200007','Adam tries to guide his eldest daughter through a momentous occasion when Andi is unavailable.','Adam Steps Up',_binary '','GBR','Man With a Plan',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13523696_e_h3_aa.jpg',4,NULL,NULL,'SH025596200000'),('EP006921700343','Taubers Selbstbewusstsein gerät ins Wanken, als ein Profiler zu Ermittlungen herangezogen wird.','Mit anderen Augen',_binary '','DEU','Polizeiruf 110',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14944229_e_h3_aa.jpg',4,NULL,NULL,'SH006921700000'),('EP012608630004','Gerry faces a blast from the past whilst the team reinvestigates an arson attack on a school.','Congratulations',_binary '','GBR','New Tricks',NULL,NULL,4,NULL,NULL,'SH012608630000'),('EP017450200055','When Mr Tod catches Squirrel Nutkin he takes him to Owl Island to get a recipe from Old Brown.','The Tale of the Squirrel Hotpot',_binary '','GBR','Peter Rabbit',NULL,NULL,4,NULL,NULL,'SH017450200000'),('EP022087220579','Es gilt, Fragen aus Wissenschaft, Tierwelt und dem Leben zu beantworten, um Geld zu erspielen.','Gäste: Ulrich Wickert und Wolfgang Kubicki',_binary '','DEU','Wer weiß denn sowas?',NULL,NULL,4,NULL,NULL,'SH022087220000'),('EP017450200058','When Peter uses a model owl to scare off Old Brown, he ends up scaring the squirrels too!','The Tale of the Scare Owl',_binary '','GBR','Peter Rabbit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11124969_e_h3_aa.jpg',4,NULL,NULL,'SH017450200000'),('EP013027640255','Questions in the Welsh Assembly to First Minister Mark Drakeford from 25 February.','',_binary '\0','GBR','Welsh First Minister\'s Questions',NULL,NULL,4,NULL,NULL,'SH013027640000'),('EP013063840005','Irene fears the worst when a famous restaurant critic books a table at the Ritz Cafe.','Culture',_binary '','GBR','Millport',NULL,NULL,4,NULL,NULL,'SH013063840000'),('EP022087220580','Es gilt, Fragen aus Wissenschaft, Tierwelt und dem Leben zu beantworten, um Geld zu erspielen.','Gäste: Ekaterina Leonova und Gil Ofarim',_binary '','DEU','Wer weiß denn sowas?',NULL,NULL,4,NULL,NULL,'SH022087220000'),('EP012701380072','Elmo discovers the imagination of playing dress-up.','Dress Up',_binary '','GBR','Elmo\'s World',NULL,NULL,4,NULL,NULL,'SH012701380000'),('EP017073230015','Unberührte Natur erleben - ohne Eltern, ohne Internet und Fernsehen.','Transsilvanien',_binary '','DEU','Durch die Wildnis',NULL,NULL,4,NULL,NULL,'SH017073230000'),('EP015445920259','Das Filmmagazin stellt die wichtigsten Neustarts und Themen aus der Filmwelt vor.','Folge 7',_binary '','DEU','kinokino',NULL,NULL,4,NULL,NULL,'SH015445920000'),('EP028431630001','Hear the harrowing yet inspiring story of Simon Wiesenthal - a survivor of the Nazi death camps.','',_binary '\0','GBR','Hunting Down the Nazis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14937814_e_h3_aa.jpg',4,NULL,NULL,'SH028431630000'),('EP019432910150','Die Wollnys feiern gleich zwei Feste: Die Taufe von Cataleya und Sarah-Janes 21. Geburtstag.','Sarah-Jane wird 21!',_binary '','DEU','Die Wollnys - Eine schrecklich große Familie!',NULL,NULL,4,NULL,NULL,'SH019432910000'),('EP032537830002','Die Dokumentation macht sich auf eine Spurensuche nach dem Mythos der Ozeanriesen.','Goldene Jahre',_binary '','DEU','Ozeanriesen',NULL,NULL,4,NULL,NULL,'SH032537830000'),('EP032537830001','Die Dokumentation macht sich auf eine Spurensuche nach dem Mythos der Ozeanriesen.','Wettlauf der Nationen',_binary '','DEU','Ozeanriesen',NULL,NULL,4,NULL,NULL,'SH032537830000'),('EP019334253024','Masha hears a story about Bear\'s childhood when Papa bear comes for a visit.','Quartet Plus',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16346703_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP012584290735','Will finds some 18th-century picnic bottles, and Mark discovers a collection of children\'s toys.','Oxford 18',_binary '','GBR','Flog It!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10744135_e_h3_aa.jpg',4,NULL,NULL,'SH012584290000'),('EP034226470009','Chase decides to try and move himself into the favourite child slot while Savannah is working in LA.','Going for Gold',_binary '','GBR','Growing Up Chrisley',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17063680_e_h3_aa.jpg',4,NULL,NULL,'SH034226470000'),('EP019831610151','Rechter Hass breitet sich aus. Zuspitzungen, Provokationen und populistische Parolen verstärken die aggressive Stimmung - insbesondere gegen Migranten. Die Angst steigt. Wie stoppen wir den Hass? Welche Mitschuld trägt die Politik?','Wie stoppen wir den Hass?',_binary '','DEU','Münchner Runde',NULL,NULL,4,NULL,NULL,'SH019831610000'),('EP018573670127','Ein Pärchen wird tot in einem Hotelzimmer des Sky View Motel gefunden. Es wurde brutal erstochen.','Zimmer 114',_binary '','DEU','CSI: Vegas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10296838_e_h3_ab.jpg',4,NULL,NULL,'SH018573670000'),('EP030803630044','Pingu and Pinga do their best to look after the house when their mum and dad are ill.','Household Helping Hands',_binary '','GBR','Pingu in the City',NULL,NULL,4,NULL,NULL,'SH030803630000'),('EP019990870045','Die Dokumentation beschäftigt sich mit der Legende des Rocky Mountains-Schatzes.','Der Schatz-Code des Thomas Beale',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11456327_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP015989410001','Lorraine creates food that is perfect for when friends or family turn up out of the blue.','Easy Entertaining',_binary '','GBR','Lorraine\'s Fast, Fresh and Easy Food',NULL,NULL,4,NULL,NULL,'SH015989410000'),('EP012593140002','Hannibal and the team try to rescue passengers from a hijacked plane, but BA is afraid of flying.','The Beast From the Belly of a Boeing',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264984_e_h3_ad.jpg',4,NULL,NULL,'SH012593140000'),('EP032330000039','Religion soll immer erlebbar sein. So sollen Gläubige ihren Weg in einer komplizierten Welt finden.','Die Stille und der Lärm der Welt',_binary '','DEU','STATIONEN',NULL,NULL,4,NULL,NULL,'SH032330000000'),('EP012593140001','A Texas heiress hires the team to keep her from marrying a man she believes murdered her father.','Till Death Do Us Part',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264983_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP019177590069','Ben, Danny and Tucker end up in jail when their plans to attend a big Halloween party go awry.','Strip or Treat',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11025572_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP012840010081','A dual storm system hampers the beginning of opilio crab season.','Storm Season',_binary '','GBR','Deadliest Catch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3127245_e_h3_aa.jpg',4,NULL,NULL,'SH012840010000'),('EP033494360001','Bunbury is planning a surprise for all animals on the occasion of its hundredth tram ride.','Bunbury\'s Big Day',_binary '','GBR','Ziggy and the Zoo Tram',NULL,NULL,4,NULL,NULL,'SH033494360000'),('EP030343741686','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 26.02.2020, um 13:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP030343741687','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 26.02.2020, um 16:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP015989410002','Lorraine turns her attention to dishes that put a smile on your face.','Feel Good Food',_binary '','GBR','Lorraine\'s Fast, Fresh and Easy Food',NULL,NULL,4,NULL,NULL,'SH015989410000'),('EP015443200124','Stand Up Comedyformat aus einem Waschsalon im Herzen von Köln.','Mit Simon Pearce und Suchtpotenzial',_binary '','DEU','NightWash',NULL,NULL,4,NULL,NULL,'SH015443200000'),('EP030343741688','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 26.02.2020, um 17:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP030343741689','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 26.02.2020, um 21:45 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP018573670139','Während eines Fluges werden die Passagiere bestohlen. Kurz darauf wird die Diebin tot aufgefunden.','Leichtes Handgepäck',_binary '','DEU','CSI: Vegas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10402234_e_h3_ab.jpg',4,NULL,NULL,'SH018573670000'),('EP003165340287','Der Ranzen ist ein täglicher Begleiter der Kinder. Es wird erklärt, auf was zu achten ist.','Folge 7',_binary '','DEU','WISO',NULL,NULL,4,NULL,NULL,'SH003165340000'),('EP019990870035','Die Suche eines Archäologen nach der Bibliothek von Iwan dem Schrecklichen wird beleuchtet.','Die verschollene Bibliothek von Iwan dem Schrecklichen',_binary '','DEU','Mythen-Jäger',NULL,NULL,4,NULL,NULL,'SH019990870000'),('EP016395030114','Die jüdischen Holocaust-Überlebenden Lena und Saul betreiben auf Hawaii ein Hemdengeschäft.','Abrechnung mit der Vergangenheit',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145602_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP012970810096','Newsjack is a scrapbook sketch show written entirely by the Great British public.','',_binary '\0','GBR','Newsjack',NULL,NULL,4,NULL,NULL,'SH012970810000'),('EP025551370002','Bei Mike im Autowerk ist die Stimmung schlecht. Das Aus für ihn und die Kollegen steht kurz bevor.','Folge 2',_binary '','DEU','Phoenixsee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13500150_e_h3_aa.jpg',4,NULL,NULL,'SH025551370000'),('EP018573670130','Sara, Finlay und Morgan müssen einen Mord in der Kleinstadt Larkson aufklären.','Wilde Mädchen',_binary '','DEU','CSI: Vegas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10296842_e_h3_ab.jpg',4,NULL,NULL,'SH018573670000'),('EP025551370001','Das Arbeiterviertel im Stadtteil Hörde muss den neugebauten Bungalows am Seeufer Platz machen.','Folge 1',_binary '','DEU','Phoenixsee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13500142_e_h3_aa.jpg',4,NULL,NULL,'SH025551370000'),('EP018573670131','Das Team wird mit einem toten Santa Claus konfrontiert, der auf einer Weihnachtsparty ums Leben kam.','Wunden der Weihnachtsnacht',_binary '','DEU','CSI: Vegas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10358167_e_h3_ab.jpg',4,NULL,NULL,'SH018573670000'),('EP012608630018','With Gerry, Brian and Jack hospitalised, Sandra takes on a new recruit.','Casualty',_binary '','GBR','New Tricks',NULL,NULL,4,NULL,NULL,'SH012608630000'),('EP013391170012','After a man was discovered dead, police find themselves in a frantic and cross-department pursuit.','Arbitary Assassin',_binary '','GBR','Crime Stories',NULL,NULL,4,NULL,NULL,'SH013391170000'),('EP012603131809','A teen throws a chair at a car, a fight wrecks property and custody.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP022087220565','Heinz Hoenig und Rebecca Immanuel rätseln zusammen mit Bernhard Hoëcker und Elton um die Wette.','Gäste: Heinz Hoenig und Rebecca Immanuel',_binary '','DEU','Wer weiß denn sowas?',NULL,NULL,4,NULL,NULL,'SH022087220000'),('EP022087220566','Zu Gast in der Sendung sind Marc Marshall und Michael Holm.','Gäste: Marc Marshall',_binary '','DEU','Wer weiß denn sowas?',NULL,NULL,4,NULL,NULL,'SH022087220000'),('EP032718060002','Es wird gezeigt, wie Mega-Giganten ihre Fracht in der Zukunft transportieren werden.','Reisen im Großformat',_binary '','DEU','XXL-Konstruktionen',NULL,NULL,4,NULL,NULL,'SH032718060000'),('EP012840010073','The Cornelia Marie experiences a power outage; a \"Hail Mary\" play.','No Season for Old Men',_binary '','GBR','Deadliest Catch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3127249_e_h3_ab.jpg',4,NULL,NULL,'SH012840010000'),('EP033494360012','Brian is feeling ill and wants to stay at home, but Miss Emilie thinks he just needs some medicine.','Brian\'s Silly Sneeze',_binary '','GBR','Ziggy and the Zoo Tram',NULL,NULL,4,NULL,NULL,'SH033494360000'),('EP012840010075','The Cornelia Marie may lose its captain for good.','Seeking the Catch',_binary '','GBR','Deadliest Catch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3127243_e_h3_ab.jpg',4,NULL,NULL,'SH012840010000'),('EP025551370003','Die Neuraths bekommen Besuch von der Steuerfahndung, die die ganze Wohnung auf den Kopf stellt.','Folge 3',_binary '','DEU','Phoenixsee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13514240_e_h3_aa.jpg',4,NULL,NULL,'SH025551370000'),('EP019340240041','When Pikachu encounters a group of wild Pikachu, he is torn between joining them and being with Ash.','Pikachu\'s Goodbye',_binary '','GBR','Pokémon the Series: Indigo League',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10784659_e_h3_aa.jpg',4,NULL,NULL,'SH019340240000'),('EP020364790112','Franks Mutter kommt zu Besuch und ist entsetzt, dass ihr Sohn ausgerechnet mit Liz zusammen ist.','Alexis Goodlooking und der Fall des verschwundenen Whiskeys',_binary '','DEU','30 Rock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9100617_e_h3_ab.jpg',4,NULL,NULL,'SH020364790000'),('EP019990870021','Die Dokumentation beleuchtet den Mythos um den Buren-Schatz, der in Südafrika vergraben sein soll.','Der verschollene Buren-Schatz',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10349861_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP016388730802','Das Nachrichtenmagazin mit aktuellen Berichten und Nachrichten aus dem In- und Ausland.','',_binary '\0','DEU','ARD-Mittagsmagazin',NULL,NULL,4,NULL,NULL,'SH016388730000'),('EP019758060177','Das Wirtschaftsmagazin von Schweizer Radio und Fernsehen wirft einen eigenständigen Blick auf das Wirtschaftsleben - mit Hintergrund-Berichten, Grafiken und Reportagen.ECO berichtet seit 2007 aus der Perspektive der Wirtschaft und brin.','',_binary '\0','DEU','ECO',NULL,NULL,4,NULL,NULL,'SH019758060000'),('EP019990870027','Seit über 2000 Jahren ist die Bundeslade verschollen, doch 1982 soll sie entdeckt worden sein.','Die Bundeslade',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9705611_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP019177590048','Riley and Ben learn the truth about Danny\'s feelings for Riley; Danny considers moving to Paris.','You Can\'t Go Home Again',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10780705_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP019177590046','Ben and Tucker pose as fraternity pledges after Bonnie sells their money-stuffed foosball table.','Foos It or Lose It',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10773009_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP019177590047','Ben hopes to rekindle his romance with Riley when he joins her on a train trip to Florida.','All Aboard the Love Train',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10780703_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP019357340001','A unique family builds a small shack in the Alaskan bush in which the nine of them will sleep.','Raised Wild',_binary '','GBR','Alaskan Bush People',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10598245_e_h3_aa.jpg',4,NULL,NULL,'SH019357340000'),('EP025766720014','Darren Vickers pretended to join the search for Jamie Lavis, but he was hiding an awful truth.','Darren Vickers',_binary '','GBR','Faking It: Tears of a Crime',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16085520_e_h3_aa.jpg',4,NULL,NULL,'SH025766720000'),('EP019340240037','Travelling through the woods, the group finds an Eevee tied to a tree; they search for its owner.','The Battling Eevee Brothers',_binary '','GBR','Pokémon the Series: Indigo League',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10784663_e_h3_aa.jpg',4,NULL,NULL,'SH019340240000'),('EP025766720015','Shana Grice was murdered after being stalked by her ex-boyfriend, Michael Lane.','Michael Lane',_binary '','GBR','Faking It: Tears of a Crime',NULL,NULL,4,NULL,NULL,'SH025766720000'),('EP019357340005','The Brown brothers must step up in the building of the cabin.','Human Wolf Pack',_binary '','GBR','Alaskan Bush People',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10749231_e_h3_aa.jpg',4,NULL,NULL,'SH019357340000'),('EP031676090026','In der Sendung erzählen und kommentieren die besten Kolumnisten, Komiker sowie Kabarettisten.','Folge 5',_binary '','DEU','Die Florian Schroeder Satire Show',NULL,NULL,4,NULL,NULL,'SH031676090000'),('EP024053230119','The Knights set off on their patrol but are delayed by someone playing tricks on them.','The Knights on Patrol',_binary '','GBR','Noddy: Toyland Detective',NULL,NULL,4,NULL,NULL,'SH024053230000'),('EP014875680148','Bananarama go antiquing with Charles Hanson and David Harper in Buckinghamshire.','',_binary '\0','GBR','Celebrity Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16346678_e_h3_aa.jpg',4,NULL,NULL,'SH014875680000'),('EP016388730803','Das Nachrichtenmagazin mit aktuellen Berichten und Nachrichten aus dem In- und Ausland.','',_binary '\0','DEU','ARD-Mittagsmagazin',NULL,NULL,4,NULL,NULL,'SH016388730000'),('EP016017230088','Sean Lock and Vic Reeves take on Jon Richardson and Sara Pascoe.','',_binary '\0','GBR','8 Out of 10 Cats Does Countdown',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14512479_e_h3_aa.jpg',4,NULL,NULL,'SH016017230000'),('EP020140110061','Neben der Weltmeisterschaft ist die Premier League das populärste Darts-Turnier des Jahres.','Highlights 3. Abend, Cardiff/WAL',_binary '','DEU','Darts',NULL,NULL,4,NULL,NULL,'SH020140110000'),('EP016017230087','Captain Jon Richardson and Jason Manford take on guest captain Alan Carr and Katherine Ryan.','',_binary '\0','GBR','8 Out of 10 Cats Does Countdown',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14471492_e_h3_aa.jpg',4,NULL,NULL,'SH016017230000'),('EP017808340021','People try to survive for three weeks in the freezing temperatures of the Himalayan foothills.','Himalayan Hell',_binary '','GBR','Naked and Afraid',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10968556_e_h3_ab.jpg',4,NULL,NULL,'SH017808340000'),('EP016571710046','Robbie prepares for the biggest house move in his career. Jason must transport a massive cargo.','',_binary '\0','GBR','Outback Truckers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14323733_e_h3_aa.jpg',4,NULL,NULL,'SH016571710000'),('EP019177590055','Ben and Tucker pretend to be sailors, while Riley\'s co-worker takes an interest in Danny.','An Officer and a Gentle Ben',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11425491_e_h3_ab.jpg',4,NULL,NULL,'SH019177590000'),('EP016571710045','Married couple Anthony and Danyelle, battle nature and transport water to cattle stations.','',_binary '\0','GBR','Outback Truckers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14304902_e_h3_aa.jpg',4,NULL,NULL,'SH016571710000'),('EP019177590056','Ben panics when he forgets his mother\'s birthday. Emma is injured while in Riley and Tucker\'s care.','Happy Birthday Two You',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11469245_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP019177590057','Tucker learns that he is still married to an old girlfriend. Riley abuses her company credit card.','House of Cards',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11369979_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP019177590058','Bonnie competes with her former boyfriend for the right to sell Jon Bon Jovi\'s New York penthouse.','You Give Real Estate a Bad Name',_binary '','GBR','Baby Daddy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11469246_e_h3_aa.jpg',4,NULL,NULL,'SH019177590000'),('EP016571710053','Mark Cromwell and the team are thrown off by corrugated roads and flash flooding in the desert.','',_binary '\0','GBR','Outback Truckers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14289360_e_h3_aa.jpg',4,NULL,NULL,'SH016571710000'),('EP012603131836','A woman sues for the cost of medical bills and a caregiver says she was wrongly fired.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP019759860002','Diesmal hat Köberle beschlossen, Frau Herbig ganz klar und offen zu helfen.','Einmal ist zweimal',_binary '','DEU','Köberle kommt',NULL,NULL,4,NULL,NULL,'SH019759860000'),('EP012603131832','Outrageous eBay scam and a woman denies owing her friend for bail money.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP030690410014','Rally driver Catie shows off three amazing machines that have propellers.','Propeller Machines',_binary '','GBR','Catie\'s Amazing Machines',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16160953_e_h3_aa.jpg',4,NULL,NULL,'SH030690410000'),('EP030690410013','Rally driver Catie shows off three amazing machines that move on snow.','Snow Machines',_binary '','GBR','Catie\'s Amazing Machines',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16160949_e_h3_aa.jpg',4,NULL,NULL,'SH030690410000'),('EP021063630002','Geheime Bruderschaften finden sich weltweit. Es gibt viele Verschwörungstheorien.','Der Code der Illuminaten',_binary '','DEU','Geheimbünde',NULL,NULL,4,NULL,NULL,'SH021063630000'),('EP021063630003','Die Geschichte der Menschheit ist voller Verschwörungstheorien. Sie halten sich oft für lange Zeit.','Die Masken der Verschwörer',_binary '','DEU','Geheimbünde',NULL,NULL,4,NULL,NULL,'SH021063630000'),('EP021063630001','Vier Millionen Freimaurer gibt es auf der Welt, wohl kein anderer Geheimbund hat mehr Mitglieder.','Die Erben der Templer',_binary '','DEU','Geheimbünde',NULL,NULL,4,NULL,NULL,'SH021063630000'),('EP017951870024','Dan must undo bad repairs on a 1968 Ford Mustang for Kansas City Royals pitcher Tim Collins.','Throwing Heat',_binary '','GBR','FantomWorks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12831437_e_h3_ab.jpg',4,NULL,NULL,'SH017951870000'),('EP034111460009','All the action from WWE NXT UK as the next generation of Superstars showcase their talents.','',_binary '\0','GBR','WWE NXT UK',NULL,NULL,4,NULL,NULL,'SH034111460000'),('EP017951870023','Dan performs work on a 1970 Chevrolet Corvette and a mangled 1964 Pontiac GTO.','Damaged Goods',_binary '','GBR','FantomWorks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12831438_e_h3_aa.jpg',4,NULL,NULL,'SH017951870000'),('EP017808340038','Survivalists try to withstand a barren tropical terrain on a deserted Dominican beach.','Playing With Fire',_binary '','GBR','Naked and Afraid',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10885539_e_h3_aa.jpg',4,NULL,NULL,'SH017808340000'),('EP019855781528','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Aachen.','',_binary '\0','DEU','Lokalzeit aus Aachen',NULL,NULL,4,NULL,NULL,'SH019855780000'),('EP019855781529','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Aachen.','',_binary '\0','DEU','Lokalzeit aus Aachen',NULL,NULL,4,NULL,NULL,'SH019855780000'),('EP033003670055','In order to free the Meka Artifact from the Darkans, the heroes have to face Omega Gredd.','Rockies United',_binary '','GBR','Gormiti 3D: The Herald of Gorm',NULL,NULL,4,NULL,NULL,'SH033003670000'),('EP033003670053','Eager to activate the third beacon, Riff rushes into the deepest mines of Gorm alongside Trek.','Deep Trouble',_binary '','GBR','Gormiti 3D: The Herald of Gorm',NULL,NULL,4,NULL,NULL,'SH033003670000'),('EP013016790047','Scientists explore the theoretical possibility of time travel.','The Time Travelers',_binary '','GBR','Ancient Aliens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9146095_e_h3_ab.jpg',4,NULL,NULL,'SH013016790000'),('EP019560690469','Die 16-jährige Inga steht plötzlich bei Frank vor der Tür und meint, dass er ihr Vater ist.','Plötzlich Papa',_binary '','DEU','Anwälte im Einsatz',NULL,NULL,4,NULL,NULL,'SH019560690000'),('EP031661660001','Vlogger Danielle faces a decision over botox and Nicole is coming to terms with life without her ex.','',_binary '\0','GBR','Who Needs a Man When You\'ve Got a Spray Tan?: Single Mum & Proud',NULL,NULL,4,NULL,NULL,'SH031661660000'),('EP019704301148','Das Magazin berichtet über Land und Leute und präsentiert aktuelle, informative Themen.','',_binary '\0','DEU','zibb',NULL,NULL,4,NULL,NULL,'SH019704300000'),('EP019577931593','Das Regionalmagazin greift auf, worüber die Menschen in Bremen sprechen.','',_binary '\0','DEU','buten un binnen',NULL,NULL,4,NULL,NULL,'SH019577930000'),('EP019704301147','Das Magazin berichtet über Land und Leute und präsentiert aktuelle, informative Themen.','',_binary '\0','DEU','zibb',NULL,NULL,4,NULL,NULL,'SH019704300000'),('EP019704301146','Das Magazin berichtet über Land und Leute und präsentiert aktuelle, informative Themen.','',_binary '\0','DEU','zibb',NULL,NULL,4,NULL,NULL,'SH019704300000'),('EP013016790049','Experts investigate who designed and built Puma Puka in Peru.','The Mystery of Puma Punku',_binary '','GBR','Ancient Aliens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9129665_e_h3_ac.jpg',4,NULL,NULL,'SH013016790000'),('EP013016790048','Experts examine depictions of dinosaurs in the world\'s largest ancient religious temple.','Aliens and Dinosaurs',_binary '','GBR','Ancient Aliens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9146314_e_h3_ab.jpg',4,NULL,NULL,'SH013016790000'),('EP033003670056','Trek has to choose between saving his friends and saving the world.','Solid as a Rock',_binary '','GBR','Gormiti 3D: The Herald of Gorm',NULL,NULL,4,NULL,NULL,'SH033003670000'),('EP026405550011','Charlie is on the stunning island of Malta, exploring its scenery, history and its best houses.','Malta',_binary '','GBR','Homes by the Med',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13984514_e_h3_aa.jpg',4,NULL,NULL,'SH026405550000'),('EP013827270060','Steve tells Traci he\'s about to raid a gambling den frequented by her husband.','Exit Strategy',_binary '','GBR','Rookie Blue',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10851003_e_h3_aa.jpg',4,NULL,NULL,'SH013827270000'),('EP024752950008','Gregg Wallace uncovers the secrets to baking four thousand loaves of bread at once.','Bread',_binary '','GBR','Inside the Factory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11719920_e_h3_aa.jpg',4,NULL,NULL,'SH024752950000'),('EP019227910288','Bitzer hat die Wiese gerade von Schrott befreit, als die Schafe dort Cricket spielen möchten.','Spielverderber',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12936714_e_h3_aa.jpg',4,NULL,NULL,'SH019227910000'),('EP031547100004','Three York wildcard properties are thrown into the mix, including an eco-friendly dream home.','York: Wildcard',_binary '','GBR','Best House in Town',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16533415_e_h3_aa.jpg',4,NULL,NULL,'SH031547100000'),('EP018541200074','Das politische Hintergrundmagazin vom Rundfunk Berlin-Brandenburg.','Folge 650',_binary '','DEU','Kontraste',NULL,NULL,4,NULL,NULL,'SH018541200000'),('EP031547100003','Three semi-detached properties battle it out for the title of the best house in York.','York: Semi-Detached',_binary '','GBR','Best House in Town',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16533414_e_h3_aa.jpg',4,NULL,NULL,'SH031547100000'),('EP019340240005','While in Pewter City Ash challenges Brock to a battle; Team Rocket falls into a trap.','Showdown in Pewter City',_binary '','GBR','Pokémon the Series: Indigo League',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8944003_e_h3_aa.jpg',4,NULL,NULL,'SH019340240000'),('EP019569840015','Phineas und Ferb erfahren, dass Oma Rollschuhlaufen kann. Ein fauler Tag macht Candace misstrauisch.','Die Rollschuhkönigin; Faulenzen mit Phineas und Ferb',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3380281_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP033003670049','Riff is determined to activate the Meka Rock Beacons in record time and rushes ahead.','Brain vs. Brawn',_binary '','GBR','Gormiti 3D: The Herald of Gorm',NULL,NULL,4,NULL,NULL,'SH033003670000'),('EP019340240007','Ash hopes to win trainer badges in Cerulean City by confronting the gym leaders.','The Waterflowers of Cerulean City',_binary '','GBR','Pokémon the Series: Indigo League',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8944047_e_h3_ab.jpg',4,NULL,NULL,'SH019340240000'),('EP019668290255','Grobi und Pferd erklären unter anderem den Unterschied zwischen Reden und Schweigen.','Folge 2816',_binary '','DEU','Sesamstraße',NULL,NULL,4,NULL,NULL,'SH019668290000'),('EP015403430305','Themen: Corona: Wie ansteckend ist das Virus? Corona-Virus: Gießener Wissenschaftler forschen an Medikament Grippe: Impfstoffe der Zukunft Antibiotika-Ersatz? Mit Viren Bakterien bekämpfen Mit Phagen gegen Salmonellen Essen oder fasten.','Thema: Viren',_binary '','DEU','Alles Wissen',NULL,NULL,4,NULL,NULL,'SH015403430000'),('EP033956960040','Eine neue Generation Shinobis betritt die Bühne - angeführt von Narutos und Hinatas Sohn, Boruto.','Die Kraft des Zusammenhalts',_binary '','DEU','Boruto',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15040357_e_h3_aa.jpg',4,NULL,NULL,'SH033956960000'),('EP012981780064','How effective is the Parole Board at predicting whether a criminal will reoffend?','On parole',_binary '','GBR','Law in Action',NULL,NULL,4,NULL,NULL,'SH012981780000'),('EP017450200008','Squirrel Nutkin angers Old Brown by taking his glasses; Peter and his friends must put things right.','The Tale of Nutkin on the Run',_binary '','GBR','Peter Rabbit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10008442_e_h3_aa.jpg',4,NULL,NULL,'SH017450200000'),('EP017450200007','Peter, Benjamin and Lily walk into a trap; Peter must rescue Lily before Mr. Tod reaches her.','The Tale of Mr Tod\'s Trap',_binary '','GBR','Peter Rabbit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10008441_e_h3_aa.jpg',4,NULL,NULL,'SH017450200000'),('EP020064170314','Der Völkermord kostete fast eine Million Menschen in gerade einmal 100 Tagen das Leben. Radikale Hutus hetzten die eigene Volksgruppe auf, die Minderheit der Tutsi zu töten. Heute, 25 Jahre später, ist Ruanda auf seinem Weg zur inneren.','Ruanda - Land der Opfer, Land der Täter',_binary '','DEU','Mein Ausland',NULL,NULL,4,NULL,NULL,'SH020064170000'),('EP033956960039','Eine neue Generation Shinobis betritt die Bühne - angeführt von Narutos und Hinatas Sohn, Boruto.','Team 7 - Die erste Mission',_binary '','DEU','Boruto',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15010262_e_h3_aa.jpg',4,NULL,NULL,'SH033956960000'),('EP014101610038','Exclusive J League coverage from the Nihondaira Sports Stadium for Shimizu vs FC Tokyo.','Shimizu S-Pulse v Tokyo',_binary '','GBR','J1 League Football',NULL,NULL,4,NULL,NULL,'SH014101610000'),('EP016460840268','Seit Jahrzehnten suchen Archäologen nach Überresten der einstigen Piratenhochburg `Port Royale\'.','Tauchfahrt in die Vergangenheit: Sir Henry Morgan - Pirat im Auftrag seiner Majestät',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11630003_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP033932220004','To help fight temptation, Tom invents treats for his gang which won\'t wreck their diets.','',_binary '\0','GBR','Lose Weight and Get Fit with Tom Kerridge',NULL,NULL,4,NULL,NULL,'SH033932220000'),('EP022786090006','Elizabeth van Lew\'s effective network even smuggled out messages in hollow eggs!','',_binary '\0','GBR','History\'s Ultimate Spies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12293042_e_h3_aa.jpg',4,NULL,NULL,'SH022786090000'),('EP034073570008','Tired of Olivia\'s drama, Jenny quits the Canton gymnastics team.','Sleepover',_binary '','GBR','My Perfect Landing',NULL,NULL,4,NULL,NULL,'SH034073570000'),('EP012568684415','Ned tells Linda to start pulling her weight. Betty\'s caravan goes for an unexpected journey.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP019668290269','Bert lernt, wie man richtig `Bitte\' sagt; Elmo vertieft sein Wissen über `Ja\' und `Nein\'.','Alle Lernen',_binary '','DEU','Sesamstraße',NULL,NULL,4,NULL,NULL,'SH019668290000'),('EP012568684417','Betty is worried that she might go to prison for hitting a policeman. Seth spies on the Dingles.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP012568684416','Betty gives the police a roasting, and Angharad tries to talk to Bernard about their future.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP012568684419','Betty prepares to face the police. Nick finds out that someone has placed a personal ad on his behalf. Angharad and Bernard call a family conference.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP016460840270','Vor seiner Hinrichtung spricht der Stalo-Indianer Charly Slumach einen Fluch aus.','Jäger verlorener Schätze: Der Fluch des Indianergoldes',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP012568684418','Alan threatens to call the police on Eric, and Dave tries to kiss Kathy.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP030038130042','Mehr als 1,5 Millionen Deutsche sind süchtig nach Beruhigungs- und Schlafmitteln.','Wege aus der Sucht',_binary '','DEU','Odysso',NULL,NULL,4,NULL,NULL,'SH030038130000'),('EP030803630055','Pingu attempts to make a movie, but finds it harder than he imagined when he gets interrupted.','Pingu Makes the Movie!',_binary '','GBR','Pingu in the City',NULL,NULL,4,NULL,NULL,'SH030803630000'),('EP017951870039','Dan takes a 1926 Ford Model T as part-payment and Robby wants to convert it to a rarer 1914 C Cab.','One Tough Customer',_binary '','GBR','FantomWorks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14093756_e_h3_aa.jpg',4,NULL,NULL,'SH017951870000'),('EP030343741690','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 27.02.2020, um 13:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP017951870038','Severe salt corrosion nearly destroys a 1970 Shelby GT500. Working on a 1970 Chrysler 300 Hurst.','One Salty Shelby',_binary '','GBR','FantomWorks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14093755_e_h3_aa.jpg',4,NULL,NULL,'SH017951870000'),('EP030343741691','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 27.02.2020, um 16:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP030803630053','When Pingu is asked to watch over some eggs, the eggs end up going all over the city.','Pingu and the Egg',_binary '','GBR','Pingu in the City',NULL,NULL,4,NULL,NULL,'SH030803630000'),('EP030343741692','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 27.02.2020, um 17:00 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP030803630054','Pingu and his friends form a band for a talent show, but nerves get the better of them.','Pingu is a Rock Star!',_binary '','GBR','Pingu in the City',NULL,NULL,4,NULL,NULL,'SH030803630000'),('EP030343741693','Die Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt über die Entwicklungen bis in den späten Abend hinein.','vom 27.02.2020, um 21:45 Uhr',_binary '','DEU','rbb24',NULL,NULL,4,NULL,NULL,'SH030343740000'),('EP019578090338','Svend Petersen-Fink ist autorisierter Wespen- und Hornissenexperte und betreibt einen Notfalldienst.','Keine Angst vor Wespen',_binary '','DEU','NaturNah',NULL,NULL,4,NULL,NULL,'SH019578090000'),('EP017808340067','An endurance athlete and a stay-at-home dad team up in a rugged Belize jungle.','All Falls Down',_binary '','GBR','Naked and Afraid',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12761082_e_h3_aa.jpg',4,NULL,NULL,'SH017808340000'),('EP014101610041','Watch all the highlights from the latest round of the J1 League.','Highlights',_binary '','GBR','J1 League Football',NULL,NULL,4,NULL,NULL,'SH014101610000'),('EP019577931592','Das Regionalmagazin greift auf, worüber die Menschen in Bremen sprechen.','',_binary '\0','DEU','buten un binnen',NULL,NULL,4,NULL,NULL,'SH019577930000'),('EP019668290270','Wie im Märchen von Hänsel und Gretel irren Ernie, Bert und sogar Krümel durch den Wald.','Der Wald ruft!',_binary '','DEU','Sesamstraße',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16812532_e_h3_aa.jpg',4,NULL,NULL,'SH019668290000'),('EP019668290273','Samson und seine Freunde erkunden die Welt und vermitteln, worauf es im Leben ankommt: Freundschaft.','Folge 2817',_binary '','DEU','Sesamstraße',NULL,NULL,4,NULL,NULL,'SH019668290000'),('EP012568684420','Seth isn\'t keen on moving into the cottage. Jan embarrasses Dave in front of his friends in the Woolpack. A furious row erupts between Frank and Chris.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP019800570342','Eichstätt ist eine geistliche Residenzstadt, die ihr Aussehen bis in die Moderne bewahren konnte.','Eichstätt. Die Stadt und ihr Stein',_binary '','DEU','Bilderbuch Deutschland',NULL,NULL,4,NULL,NULL,'SH019800570000'),('EP019800570340','Die Sendung über den Oberen Main ist eine leichte Kost, gewissermaßen ein Dessert.','Am Oberen Main - Von Bayreuth nach Bamberg',_binary '','DEU','Bilderbuch Deutschland',NULL,NULL,4,NULL,NULL,'SH019800570000'),('EP014480940348','A jailbreak reunites an outlaw family which then waits to ambush Matt and a lawman.','A Family of Killers',_binary '','GBR','Gunsmoke',NULL,NULL,4,NULL,NULL,'SH014480940000'),('EP014480940344','A fugitive and his wife refuse to take Newley\'s medical help for their baby.','A Child Between',_binary '','GBR','Gunsmoke',NULL,NULL,4,NULL,NULL,'SH014480940000'),('EP017603140082','When a vegetarian attempts to convert a meat-eating cattle town, he finds himself a hunted man.','The Small Parade',_binary '','GBR','The Virginian',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1225916_e_h3_aa.jpg',4,NULL,NULL,'SH017603140000'),('EP012593140086','When the team attend a friend\'s funeral, five hoodlum brothers try to force them to leave the town.','A Nice Place to Visit',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264985_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP029782290086','Gramma ist beschäftigt. Sie backt Kekse für kranke Kinder, so lange, bis die wieder gesund sind.','Vergnügungschaos; Gute-Besserung-Kekse',_binary '','DEU','Big City Greens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16516331_e_h3_aa.jpg',4,NULL,NULL,'SH029782290000'),('EP017808340073','Survivalists struggle to survive in a Philippine forest, combating hunger with the help of a skunk.','Contamination',_binary '','GBR','Naked and Afraid',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12761109_e_h3_ac.jpg',4,NULL,NULL,'SH017808340000'),('EP021796150009','Wilde Tiere, große Schluchten oder unberechenbare Naturkatastrophen, Gefahren drohen immer.','Knapp entkommen',_binary '','DEU','Überleben!',NULL,NULL,4,NULL,NULL,'SH021796150000'),('EP034427240001','The Richardsons decide to throw a huge birthday party for their daughter, Elsie.','',_binary '\0','GBR','Meet the Richardsons',NULL,NULL,4,NULL,NULL,'SH034427240000'),('EP024873100008','1996 begann Dr. Steven Collins, Sodom und Gomorrha zu suchen. In der Wüste machte er Ausgrabungen.','Die Suche nach Sodom',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11480695_e_h3_aa.jpg',4,NULL,NULL,'SH024873100000'),('EP014480940357','A reformed criminal (Nehemiah Persoff) meets with his former sweetheart (Gloria DeHaven).','Like Old Times',_binary '','GBR','Gunsmoke',NULL,NULL,4,NULL,NULL,'SH014480940000'),('EP024996290037','Using a special microscope camera, Maddie shows us exactly how the blades of hair clippers work.','Hairclippers and Ballet Shoes',_binary '','GBR','Maddie\'s Do You Know?',NULL,NULL,4,NULL,NULL,'SH024996290000'),('EP024996290038','Maddie is having fun outdoors, learning how we keep swinging on a swing.','Playground and Plant Pots',_binary '','GBR','Maddie\'s Do You Know?',NULL,NULL,4,NULL,NULL,'SH024996290000'),('EP019798080112','Hintergrundmagazin für Sportthemen, das Geschichten jenseits der glitzernden Sportwelt erzählt.','',_binary '\0','DEU','sport inside',NULL,NULL,4,NULL,NULL,'SH019798080000'),('EP029782290092','In dieser Folge klaut Nancys alte Bikergang ihren Wohnwagen. Cricket passt auf Remys Haus auf.','Stinkbomben; Schlacht um Saxon',_binary '','DEU','Big City Greens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16569095_e_h3_aa.jpg',4,NULL,NULL,'SH029782290000'),('EP015444020166','Natascha ist derart überfordert, dass sie sich Bedenkzeit erbittet.','Abgekühlte Emotionen',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP017951870057','Daniel Short aims to provide the finest classic car restoration service in the United States.','Easier Said',_binary '','GBR','FantomWorks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15503511_e_h3_aa.jpg',4,NULL,NULL,'SH017951870000'),('EP015444020167','Dr. Drescher verabreicht Charlotte unbemerkt Tropfen eines Medikaments.','Kind oder Karriere?',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP015444020164','Charlotte wird wegen ihrer Autofahrt unter Drogen zu einer Bewährungsstrafe verurteilt.','Der Verlobungsring',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP015444020165','Marlene hat den Verlobungsring fertig gestellt. Konstantin will Natascha einen Antrag machen.','Den Antrag üben?',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP020373850141','Der 13-jährige Henry führt ein geheimes Doppelleben. Als `Kid Danger\' erlebt er viele Abenteuer.','Captain Mom',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17515276_e_h3_aa.jpg',4,NULL,NULL,'SH020373850000'),('EP012812400005','Lynley and Havers investigate when a woman is killed on a street by being run over several times.','A Traitor to Memory',_binary '','GBR','The Inspector Lynley Mysteries',NULL,NULL,4,NULL,NULL,'SH012812400000'),('EP026040630132','Jett travels to Peru with pins for the Flying Fantastic Club.','Flight Fans',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12218155_e_h3_ac.jpg',4,NULL,NULL,'SH026040630000'),('EP015444020168','Kira und Xaver erfahren, dass die Bergkapelle für die Hochzeit nicht zur Verfügung steht.','Platzt die Hochzeit?',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP015444020169','Die Hochzeitsfeier von Kira und Xaver sorgt für romantische und heitere Momente.','Die magische Hochzeitsfeier',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP012593140060','BA\'s friend is held in a prison where the warden holds fight-to-the-death boxing matches.','Pros and Cons',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264974_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP026040630131','Jett brings costumes to dancers, but they will need to be coloured.','Flying Colors',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12175562_e_h3_ac.jpg',4,NULL,NULL,'SH026040630000'),('EP026040630130','A pirate hat and an eye patch for the British Virgin Islands.','Pirate Booty',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12200977_e_h3_ab.jpg',4,NULL,NULL,'SH026040630000'),('EP034366440001','Die Sendung begleitet vier Rettungsteams, die ihrem unvorhersehbaren Job nachgehen.','Folge 1',_binary '','DEU','112 - Retter im Einsatz',NULL,NULL,4,NULL,NULL,'SH034366440000'),('EP022513700895','Ein qualmender Wagen auf einem Schrottplatz lässt sich von den Spezialisten nicht löschen.','Der zieht richtig gut',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP022513700894','Die Spezialisten sind am Ende ihres Lateins, als eine 17-Jährige plötzlich schwere Atemprobleme hat.','Umgekippt',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP012593140068','The A-Team must fight the drug lord who has imprisoned a journalist in Mexico.','Mexican Slayride',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264987_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP012593140067','Reporter Amy Allen hires the soldiers to rescue a kidnapped colleague.','Mexican Slayride',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264986_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP012593140066','Guerrilla terrorists capture an Army general and his daughter.','One More Time',_binary '','GBR','The A-Team',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1264982_e_h3_ac.jpg',4,NULL,NULL,'SH012593140000'),('EP022513700898','Zwischen zwei Männern scheint sich auf einer Baustelle etwas Tragisches zugetragen zu haben.','Bedauernswerte Bauarbeiter',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP026040630129','Jett goes to Prague, but the boy he has a package for has moved.','Square Search',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12195813_e_h3_ab.jpg',4,NULL,NULL,'SH026040630000'),('EP022513700896','Als eine Mutter ihr Töchter besucht, kommt eine böse Überraschung nach der nächsten.','Prima Klima',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP024155100015','The royal family are tasked with cheering up post-Brexit Britain, but the four are on strike.','',_binary '\0','GBR','The Windsors',NULL,NULL,4,NULL,NULL,'SH024155100000'),('EP012601130017','A passenger stirs up conflict at Heathrow; customs officers target smugglers of animal products.','',_binary '\0','GBR','UK Border Force',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8196445_e_h3_aa.jpg',4,NULL,NULL,'SH012601130000'),('EP033100900006','Vier Menschen aus unterschiedlichen Bereichen haben ernsthafte Diskussionen über Serien.','Folge 6',_binary '','DEU','Seriös - Das Serienquartett',NULL,NULL,4,NULL,NULL,'SH033100900000'),('EP026040630126','A firefighter gives a talk about his job, in front of a class of children.','Fireman Dad',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12347319_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP012699852227','Live coverage of proceedings in the House of Commons on Wednesday 26 February.','',_binary '\0','GBR','House of Commons',NULL,NULL,4,NULL,NULL,'SH012699850000'),('EP025596200017','A blizzard prevents the Burns family from visiting the grandparents\' house for Christmas.','Winter Has Come',_binary '','GBR','Man With a Plan',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13542154_e_h3_ab.jpg',4,NULL,NULL,'SH025596200000'),('EP026040630125','A spacesuit for a boy in China who ends up going to space as a mistake.','Blast Off',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12175544_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP026040630128','A top hat is destined for a magician in Austria, who has a magic show to perform.','The Amazing Moritz',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12195799_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP012699852226','Live coverage of proceedings in the House of Commons on Thursday 27 February.','',_binary '\0','GBR','House of Commons',NULL,NULL,4,NULL,NULL,'SH012699850000'),('EP012699852234','Live coverage of questions in the House of Commons to Welsh Secretary Simon Hart.','Live Wales Questions',_binary '','GBR','House of Commons',NULL,NULL,4,NULL,NULL,'SH012699850000'),('EP020373850122','Henry ist ein 13-jähriger Junge, der nur einen Nebenjob sucht und ein Superhelden-Gehilfe wird.','Der gebrochene Arm',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16411833_e_h3_aa.jpg',4,NULL,NULL,'SH020373850000'),('EP020373850125','Pipers Schulpapagei Otto plappert gerne vor sich hin. Doch nicht alles sollte ausgesprochen werden.','Otto redet zu viel',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16512979_e_h3_aa.jpg',4,NULL,NULL,'SH020373850000'),('EP012699852230','Live coverage of the announcement of Commons business for the week ahead.','Live Business Questions',_binary '','GBR','House of Commons',NULL,NULL,4,NULL,NULL,'SH012699850000'),('EP029358700013','In Oxfordshire a motocross collision leaves 12-year-old-Lewis with a painful broken thighbone.','',_binary '\0','GBR','Emergency Helicopter Medics',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16672515_e_h3_aa.jpg',4,NULL,NULL,'SH029358700000'),('EP012699852231','Live coverage of questions in the House of Commons to Cabinet Office Minister Michael Gove.','Live Cabinet Office Questions',_binary '','GBR','House of Commons',NULL,NULL,4,NULL,NULL,'SH012699850000'),('EP029358700014','The helicopter medics race to help Helen, who\'s trapped in her car after a crash on the A66.','',_binary '\0','GBR','Emergency Helicopter Medics',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16696654_e_h3_aa.jpg',4,NULL,NULL,'SH029358700000'),('EP020373850126','Piper hat einen neuen Freund. Eines Tages lädt sie ihn und seine Familie zum Essen ein.','Familie Bilsky',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16539592_e_h3_aa.jpg',4,NULL,NULL,'SH020373850000'),('EP034271030004','The V&A\'s experts restore a Star Wars costume, and unlock secrets of a David Bowie photo.','',_binary '\0','GBR','Secrets Of The Museum',NULL,NULL,4,NULL,NULL,'SH034271030000'),('EP019641710274','Orange Hände, Leberflecke auf der Nase und viel zu lange Beine: Das sind die vermeintlichen Makel der GNTM-Kandidatinnen. / Promi-Auflauf bei Profi-Protzer Floyd Mayweather: red. ist bei der wohl prunkvollsten Promi-Geburtstagssause des Jahres dabei.','Thema u. a.: Die vermeintlichen Makel der GNTM-Kandidatinnen',_binary '','DEU','red',NULL,NULL,4,NULL,NULL,'SH019641710000'),('EP012598221155','Including a stunning renovation of a Grade II listed house in London\'s Camden.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP015402960465','Der Strahlenschildkröte Emma fällt das Laufen schwer. Die Kakadus bekommen eine neue Einrichtung.','Ein Sorgenkind',_binary '','DEU','Nashorn, Zebra & Co.',NULL,NULL,4,NULL,NULL,'SH015402960000'),('EP015402960464','Im Bantengrevier gibt es Nachwuchs. Der Kleine ist noch ziemlich scheu und versteckt sich gerne.','Freie Brüste',_binary '','DEU','Nashorn, Zebra & Co.',NULL,NULL,4,NULL,NULL,'SH015402960000'),('EP023174020138','Mason goes behind the Berlin Wall to defend a woman accused of murdering an East German agent.','The Case of the Fugitive Fraulein',_binary '','GBR','Perry Mason',NULL,NULL,4,NULL,NULL,'SH023174020000'),('EP022161470011','Die Räuberbande ist auf ein verlassenes Gehöft geflüchtet, welches aber von Truppen belagert wird.','Der falsche Hauptmann',_binary '','DEU','Rinaldo Rinaldini',NULL,NULL,4,NULL,NULL,'SH022161470000'),('EP029820540192','Ein Reporter berichtet von der Containerprüfanlage und ist mit dem Zoll am Hafen unterwegs.','Zoll im Einsatz',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP019243440094','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 16',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP018553660114','Fillmore and Western Railway owner is worried about missing supplies and unauthorised passengers.','Train Robbery',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11554630_e_h3_aa.jpg',4,NULL,NULL,'SH018553660000'),('EP014055970002','Freed from slavery, Ben Hur travels east to locate his family where an opportunity arises.','Son of Arrius',_binary '','GBR','Ben Hur',NULL,NULL,4,NULL,NULL,'SH014055970000'),('EP014055970003','The day of the great race arrives, and the stakes for Ben Hur and his Roman rival are high.','The Chariot Race',_binary '','GBR','Ben Hur',NULL,NULL,4,NULL,NULL,'SH014055970000'),('EP018553660112','Daniel hears rumours of his restaurant\'s signature cocktail being served at other bars.','The Spoils of Victory',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11553676_e_h3_aa.jpg',4,NULL,NULL,'SH018553660000'),('EP014055970004','Ben Hur\'s lost family are afflicted by leprosy, but Jesus of Nazareth brings new hope of a cure.','The King Comes into His Kingdom',_binary '','GBR','Ben Hur',NULL,NULL,4,NULL,NULL,'SH014055970000'),('EP025092500031','LeeAnne and Rich settle their marriage woes and vow to start the wedding planning process.','Rodeo Barbie',_binary '','GBR','The Real Housewives of Dallas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15837461_e_h3_aa.jpg',4,NULL,NULL,'SH025092500000'),('EP025092500032','Brandi gets a stressful visit from the social worker, and Kameron leaves for the pet expo.','Smashing Friendships',_binary '','GBR','The Real Housewives of Dallas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15837463_e_h3_aa.jpg',4,NULL,NULL,'SH025092500000'),('EP023174020133','Race driver is accused of killing the partner he thought was cheating him.','The Case of the Runaway Racer',_binary '','GBR','Perry Mason',NULL,NULL,4,NULL,NULL,'SH023174020000'),('EP023174020130','A police officer faces charges of slaying his sister\'s tormentor; guest Skip Homeier.','The Case of the Silent Six',_binary '','GBR','Perry Mason',NULL,NULL,4,NULL,NULL,'SH023174020000'),('EP025092500033','Brandi invites all of the ladies to sip and spend at her Brandiland pop-up shop.','Babes in Brandiland',_binary '','GBR','The Real Housewives of Dallas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15837464_e_h3_aa.jpg',4,NULL,NULL,'SH025092500000'),('EP023708800061','Eine Maschine fertigt Kopien von Catboy an. Nachtninja fordert die Helden zu einem Spiel heraus.','Catboy mal vier; Geckos Superspürsinn',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888502_e_h3_aa.jpg',4,NULL,NULL,'SH023708800000'),('EP019560641594','Als ein Mann von einer Domina angezündet wird, stellt sich die Frage, ob es Teil des Sexspiels war.','',_binary '\0','DEU','Auf Streife',NULL,NULL,4,NULL,NULL,'SH019560640000'),('EP019560641593','Die Mutter einer 19-Jährigen findet Drohbriefe in ihrem Zimmer, weshalb sie die Polizei einschaltet.','',_binary '\0','DEU','Auf Streife',NULL,NULL,4,NULL,NULL,'SH019560640000'),('EP019243440095','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 17',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440096','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 18',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440097','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 19',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440098','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 20',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP022939820016','Endlich erfahren wir, wo die Bärenjungen einst leben. Fast wären sie getrennt worden.','Wir und die Tierhandlung',_binary '','DEU','We Bare Bears - Bären wie wir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12292276_e_h3_aa.jpg',4,NULL,NULL,'SH022939820000'),('EP018553660107','The owner of Fuzion in Huntington Beach, California, believes one of her managers has been stealing.','Dusting for Prints',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11602481_e_h3_aa.jpg',4,NULL,NULL,'SH018553660000'),('EP019243440099','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 21',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP018553660106','The owners of the Gateway Restaurant and Lodge receive complaints about parties in their cabins.','Cabin Fever',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11553982_e_h3_aa.jpg',4,NULL,NULL,'SH018553660000'),('EP019769291438','Die Übertragung erfolgt aus Andalusien, Spanien.','Vuelta Andalucía 2020 - 5. Etappe',_binary '\0','DEU','Radsport',NULL,NULL,4,NULL,NULL,'SH019769290000'),('EP023708800065','Die Ninjalinos schließen sich Eulette an. Camerons Miniauto verschwindet plötzlich spurlos.','Eulette und die Euletteenies; Pass auf, Gecko!',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12981518_e_h3_ae.jpg',4,NULL,NULL,'SH023708800000'),('EP016396211399','Regionale Themen und weiteres aus dem Service- und Boulevardbereich.','',_binary '\0','DEU','drehscheibe',NULL,NULL,4,NULL,NULL,'SH016396210000'),('EP019560340296','Navy-Commander Runyan Hayes, dessen Sohn im Gefängnis ist, wird erschossen im Wald aufgefunden.','Das Sherlock-Konsortium',_binary '','DEU','Navy CIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12240237_e_h3_ab.jpg',4,NULL,NULL,'SH019560340000'),('EP019560340298','Im Südsudan wird eine Krankenstation, in der Ärzte und Navy-Angehörige arbeiten, überfallen.','Verbrannte Erde',_binary '','DEU','Navy CIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12279226_e_h3_ab.jpg',4,NULL,NULL,'SH019560340000'),('EP031349300002','In einem Teesalon in Edinburgh schreibt die noch unbekannte J. K. Rowling 1994 eine Fantasysaga.','Auf den Spuren von Harry Potter',_binary '','DEU','Wilde Drehorte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14886688_e_h3_aa.jpg',4,NULL,NULL,'SH031349300000'),('EP012608420789','Richie helps some BP fans plant trees at the UK\'s first young People\'s Forest.','Crunchy Critters and Green Machines',_binary '','GBR','Blue Peter',NULL,NULL,4,NULL,NULL,'SH012608420000'),('EP012847870504','There is a new girl at school and she quickly makes best friends with Peppa and Rebecca Rabbit.','Molly Mole',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14356494_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP012610100189','Just as Cooper and Walsh master the art of fighting crime, Barry spoils it.','A Short Introduction to Cooper\'s Rules',_binary '','GBR','Last of the Summer Wine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8329299_e_h3_aa.jpg',4,NULL,NULL,'SH012610100000'),('EP012944030061','Jeremy Wade hunts for a seriously gargantuan fish found in the dark depths of the Amazon River.','Amazon Titanic',_binary '','GBR','River Monsters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11093728_e_h3_aa.jpg',4,NULL,NULL,'SH012944030000'),('EP018438191284','Das Boulevardmagazin berichtet über Prominente und besonders dramatische Ereignisse.','',_binary '\0','DEU','Brisant',NULL,NULL,4,NULL,NULL,'SH018438190000'),('EP024895730020','Angela is heckled at the Christmas talent show, and Tom is determined to set things right.','Angela\'s Heckler',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888736_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP014480940366','Matt and another marshal are ordered to restore peace and order in a lawless town.','The Town Tamers',_binary '','GBR','Gunsmoke',NULL,NULL,4,NULL,NULL,'SH014480940000'),('EP023708800053','Romeo schleicht sich ins PJ-Masks-Hauptquartier und entdeckt dessen geheime Raumschifffunktion.','Eulette im Überschall-Modus',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12817549_e_h3_aa.jpg',4,NULL,NULL,'SH023708800000'),('EP024895730024','Tom challenges his friends to quit using technology, and he is confident that he can do it.','The Contest',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888763_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730023','Tom\'s living room fills with lava, so he moves in with Angela and hopes to get closer to her.','The Perfect Roommate',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888756_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730022','A CEO is stranded in Tom\'s garage during a blizzard, so Tom tries to sell the CEO some of his ideas.','CEO in Trouble',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888745_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730021','Ginger and Hank are both king of the castle when they build a fort -- until the peasants revolt.','Blanket Fort',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888742_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730027','To win Angela\'s heart, Tom writes a song for her; however, the lyrics fall into Ginger\'s hands.','Tom\'s Love Song',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888779_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730026','Talking Tom\'s picture-perfect day comes to life after Talking Ben invents a cool simulator app.','The Perfect Day',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888774_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730025','Angela\'s new song gets a bad review, and her positive nature is tested when she tries to fix it.','Angela\'s Critic',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888769_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP034390180002','Juvia will mithilfe eines Liebestranks das Herz von Gray erobern, doch hat das schwere Folgen.','Sonderauftrag: Pass auf, wen du liebst!',_binary '','DEU','Fairy Tail',NULL,NULL,4,NULL,NULL,'SH034390180000'),('EP034390180003','Lucys Vater taucht plötzlich auf und gesteht ihr, dass er sein gesamtes Vermögen verloren hat.','Love & Lucky',_binary '','DEU','Fairy Tail',NULL,NULL,4,NULL,NULL,'SH034390180000'),('EP028225170007','Videokameras auf dem Amaturenbrett zeichnen die unglaublichsten Manöver aus dem Straßenverkehr auf.','Folge 5',_binary '','DEU','Abgefahren - Die spektakulärsten Dashcam Clips',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14917913_e_h3_aa.jpg',4,NULL,NULL,'SH028225170000'),('EP028225170006','Immer mehr Dashcams - Kameras an der Windschutzscheibe - liefern haarsträubende Videos.','Folge 4',_binary '','DEU','Abgefahren - Die spektakulärsten Dashcam Clips',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14917912_e_h3_aa.jpg',4,NULL,NULL,'SH028225170000'),('EP023708800054','Als Romeo Eulettes Kräfte stiehlt, können er, Catboy und Gecko plötzlich fliegen.','Eulette, die Einzigartige',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13438639_e_h3_aa.jpg',4,NULL,NULL,'SH023708800000'),('EP014480940371','Settlers and travelers are taken captive by renegade Indians and sold as slaves.','Women for Sale',_binary '','GBR','Gunsmoke',NULL,NULL,4,NULL,NULL,'SH014480940000'),('EP028225170008','Videokameras auf dem Amaturenbrett zeichnen die unglaublichsten Manöver aus dem Straßenverkehr auf.','Folge 6',_binary '','DEU','Abgefahren - Die spektakulärsten Dashcam Clips',NULL,NULL,4,NULL,NULL,'SH028225170000'),('EP023708800055','Catboy will in jeder Situation cool aussehen und lernt, wann sich das wirklich lohnt.','Catboy und das Klebeklatscher-Katapult',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13563844_e_h3_aa.jpg',4,NULL,NULL,'SH023708800000'),('EP023708800056','In der Schule verschwinden Instrumente. Eulette bekommt einen neuen Superhelden-Move nicht hin.','Catboys großer Auftritt; Eulette und der neue Move',_binary '','DEU','PJ Masks - Pyjamahelden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12595987_e_h3_ab.jpg',4,NULL,NULL,'SH023708800000'),('EP020601050089','Für Hollywoods Goldenes Zeitalter gibt es wenig Zweifel, dass Männer die Bilder dominieren.','Gehören Bilder den Männern?',_binary '','DEU','Square Idee',NULL,NULL,4,NULL,NULL,'SH020601050000'),('EP013107230025','A pair of DIY novices learn how to reflect Victorian and Edwardian influences on a budget.','Dares',_binary '','GBR','Nick Knowles\' Original Features',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9806077_e_h3_aa.jpg',4,NULL,NULL,'SH013107230000'),('EP012944030059','Wade faces one of his greatest fears to uncover increasing missing persons cases.','Bone Crusher',_binary '','GBR','River Monsters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10592286_e_h3_aa.jpg',4,NULL,NULL,'SH012944030000'),('EP013107230028','In Somerset, Nick helps on a project to restore and find the story behind a Shaker-style house.','Lloyd',_binary '','GBR','Nick Knowles\' Original Features',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9822827_e_h3_aa.jpg',4,NULL,NULL,'SH013107230000'),('EP003337730430','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Nacktgymnastik',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP024895730017','Ginger is the only one with access to the GlovePhone, so Tom leads a mission to get one for himself.','GlovePhone',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888690_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730016','On his birthday, Hank wants to direct an episode of his favourite show, with his friends starring.','Hank the Director',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888682_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP023234070002','In der Region um die Xépon findet man immer noch Blindgänger aus dem Vietnamkrieg.','Folge 2',_binary '','DEU','Unterwegs auf dem Ho-Chi-Minh-Pfad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12401281_e_h3_aa.jpg',4,NULL,NULL,'SH023234070000'),('EP028225170010','Videokameras auf dem Amaturenbrett zeichnen die unglaublichsten Manöver aus dem Straßenverkehr auf.','Folge 8',_binary '','DEU','Abgefahren - Die spektakulärsten Dashcam Clips',NULL,NULL,4,NULL,NULL,'SH028225170000'),('EP024895730015','Hank gets sick with Jeremy the germ. Ben tries to stop Jeremy before they catch a worse cold.','The Germinator',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888669_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP023234070003','Im Annamiten-Gebirge verbirgt sich eines der seltensten Huftiere der Welt, die Saola.','Von Vinh bis Vongsykeo',_binary '','DEU','Unterwegs auf dem Ho-Chi-Minh-Pfad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12401277_e_h3_aa.jpg',4,NULL,NULL,'SH023234070000'),('EP024895730014','Hank will not change the channel, so Ginger changes Hank\'s life, and Hank questions his existence.','Think Hank',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888653_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP003337730435','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Nacktgymnastik',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP024895730019','Hank gets a medical degree online, has a breakthrough with Ben\'s health and tries to cure the world.','Doc Hank',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888728_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730018','Talking Ben\'s ping pong winning streak continues, until an unlikely defender rises to challenge him.','Ping Pong Wizard',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12888713_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP019769291455','Die Übertragung erfolgt aus den Vereinigten Arabischen Emiraten.','UAE Tour 2020 - 5. Etappe',_binary '\0','DEU','Radsport',NULL,NULL,4,NULL,NULL,'SH019769290000'),('EP019769291454','Die Übertragung erfolgt aus den Vereinigten Arabischen Emiraten.','UAE Tour 2020 - 4. Etappe',_binary '\0','DEU','Radsport',NULL,NULL,4,NULL,NULL,'SH019769290000'),('EP019769291453','Die Übertragung erfolgt aus den Vereinigten Arabischen Emiraten.','UAE Tour 2020 - 3. Etappe',_binary '\0','DEU','Radsport',NULL,NULL,4,NULL,NULL,'SH019769290000'),('EP018438191266','Das Boulevardmagazin berichtet über Prominente und besonders dramatische Ereignisse.','',_binary '\0','DEU','Brisant',NULL,NULL,4,NULL,NULL,'SH018438190000'),('EP019774951014','Servicemagazin des NDR, mit Tipps und Tricks zu alltäglichen Themen.','',_binary '\0','DEU','Mein Nachmittag',NULL,NULL,4,NULL,NULL,'SH019774950000'),('EP019774951013','Servicemagazin des NDR, mit Tipps und Tricks zu alltäglichen Themen.','',_binary '\0','DEU','Mein Nachmittag',NULL,NULL,4,NULL,NULL,'SH019774950000'),('EP028383900006','Jördis verfasst mit Saida einen Liebesbrief, der an Jördis\' Schwarm Haschim gerichtet ist.','Kallalabale und Liebe',_binary '','DEU','Das Institut - Oase des Scheiterns',NULL,NULL,4,NULL,NULL,'SH028383900000'),('EP016076680110','Highlights of Thursday 27 February in Parliament presented by David Cornock.','',_binary '\0','GBR','Thursday in Parliament',NULL,NULL,4,NULL,NULL,'SH016076680000'),('EP022239590021','The British Mission is welcomed to Kabul but, it transpires, on a false premise.','',_binary '\0','GBR','The Far Pavilions',NULL,NULL,4,NULL,NULL,'SH022239590000'),('EP030024180038','Karasuno muss sich gegen eine Mannschaft behaupten, die vor allem ruhig und standhaft spielt.','Weiter geht\'s',_binary '','DEU','Haikyu!!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12685389_e_h3_aa.jpg',4,NULL,NULL,'SH030024180000'),('EP018818890020','Doddy looks at the world of togetherness and twosomes, as only he can. From August 1975.','',_binary '\0','GBR','The Ken Dodd Show',NULL,NULL,4,NULL,NULL,'SH018818890000'),('EP025207040267','The Lemmings find a magic stick that can enchant objects and make them come alive.','Grizzy the Wizard',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14605629_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP015394800002','In der Sendung werden verschiedene Elektro- und Akkuwerkzeuge für den Garten vorgestellt.','',_binary '\0','DEU','Baricus - Gartenwerkzeuge',NULL,NULL,4,NULL,NULL,'SH015394800000'),('EP025207040268','Grizzy tries to steal the Lemming\'s salmon to impress a she-bear.','Moonwalk Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14605631_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP032951670001','Das Einhorn haut mit einem Maskottchen ab. Alice fliegt fast aus der Karategürtelprüfung.','Ein Einhorn als Partygast; Das Meeresmuseum',_binary '','DEU','Immer dieses Einhorn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15842706_e_h3_ab.jpg',4,NULL,NULL,'SH032951670000'),('EP012682700115','The class make a Chinese dragon and Timmy wants to be the head.','Timmy and the Dragon',_binary '','GBR','Timmy Time',NULL,NULL,4,NULL,NULL,'SH012682700000'),('EP003337730489','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Real Life',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP018456820005','Ein älterer Herr findet in seiner Post einen blutverschmierten Harzer Wandernadel-Pass.','Der letzte Stempel',_binary '','DEU','Alles Klara',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10491636_e_h3_aa.jpg',4,NULL,NULL,'SH018456820000'),('EP019569840040','Phineas und Ferb kreieren einen Cartoon. Doofenschmirtz\' Bruder wird Gouverneur.','Superhelden; Doofania',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3380290_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP012848310043','Ash must move a flock of lost Gilgar on its way while also teaching Turtwig a new move.','Riding the Winds of Change',_binary '','GBR','Pokémon the Series: DP Battle Dimension',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3442476_e_h3_ab.jpg',4,NULL,NULL,'SH012848310000'),('EP018456820004','Die Revierleiterin Müller-Dietz findet in ihrem Yogastudio die Leiche der Studiobesitzerin.','Letzte Ruhe Lotussitz',_binary '','DEU','Alles Klara',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10486594_e_h3_aa.jpg',4,NULL,NULL,'SH018456820000'),('EP012692740084','Romano is under attack for not apprehending a young cop killer and begins to question the Academy.','The Empty Gun',_binary '','GBR','T.J. Hooker',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1206200_e_h3_aa.jpg',4,NULL,NULL,'SH012692740000'),('EP012848310045','Ash and his friends find themselves distracted from their journey by the appearance of a Hippowdon.','Sleight of Sand',_binary '','GBR','Pokémon the Series: DP Battle Dimension',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8166855_e_h3_ab.jpg',4,NULL,NULL,'SH012848310000'),('EP019569840043','Phineas und Ferb erfinden ein Spiel. Doofenschmirtz will Phineas\' und Ferbs Teleskop stehlen.','Der Riesen-Kicker; Kermillians Komet',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3380285_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP012980450520','Paul Gambaccini has two \'Solid\' charts this week from 1985 and 1993. Ashford & Simpson feature.','1985 & 1993',_binary '','GBR','Pick of the Pops',NULL,NULL,4,NULL,NULL,'SH012980450000'),('EP025207040274','The Lemmings play a new game, floating like flags in the breeze from the fan set on maximum.','Mind in a Whirl',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968732_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP024895730031','Talking Tom\'s long-lost childhood friend, Will Zee, comes crashing in for a visit.','Lost Friend Will Zee',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13170021_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730030','Talking Tom buys a \"perfect-man starter kit\" to impress Talking Angela.','Every Girl\'s Dream',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13169970_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP032951670015','In dieser Folge wird Einhorn versehentlich hypnotisiert. Alice zerstört aus Versehen Einhorns Horn.','Einhorn, das Huhn; Das magische Horn',_binary '','DEU','Immer dieses Einhorn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16450359_e_h3_aa.jpg',4,NULL,NULL,'SH032951670000'),('EP024895730034','Free milkshake day is a highlight of the social calendar, but Tom gets distracted by online friends.','Online Romance',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13170122_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730033','Talking Hank gives Talking Ginger a lesson in the mysterious ways of the warrior.','Jetpack Ninja',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13170080_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730032','Talking Tom is shocked by the amount of fruit at Talking Angela\'s house.','Angela\'s Secret',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13170044_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP022239590018','Ash\'s increasing sense of his own difference from his friends drives him to make a move.','',_binary '\0','GBR','The Far Pavilions',NULL,NULL,4,NULL,NULL,'SH022239590000'),('EP024895730038','A director signs Tom up for a commercial, but when Tom\'s face freezes he thinks he can\'t do it.','The Famous Monster',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13233261_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP022239590019','Ash\'s reports seem to fall on deaf ears, and he wonders if the British want to avoid conflict.','',_binary '\0','GBR','The Far Pavilions',NULL,NULL,4,NULL,NULL,'SH022239590000'),('EP024895730037','Cleaning the garage was supposed to be dull for Ben, but his day goes from boring to parenting.','Daddy Ben',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13209172_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730036','Talking Tom is torn between saving his friends or tearing his friendship bracelet from Angela.','Friends Forever',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13185858_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP015394800005','In der Sendung werden verschiedene Elektro- und Akkuwerkzeuge für den Garten vorgestellt.','',_binary '\0','DEU','Baricus - Gartenwerkzeuge',NULL,NULL,4,NULL,NULL,'SH015394800000'),('EP014052660239','Nikki is given five menus, each put together by a potential blind date and is looking for love.','Nikki',_binary '','GBR','Dinner Date',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15611530_e_h3_aa.jpg',4,NULL,NULL,'SH014052660000'),('EP014052660238','Alex is given five menus, each put together by a potential blind date, and is looking to find love.','Alex',_binary '','GBR','Dinner Date',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15585493_e_h3_aa.jpg',4,NULL,NULL,'SH014052660000'),('EP015394800003','In der Sendung werden verschiedene Elektro- und Akkuwerkzeuge für den Garten vorgestellt.','',_binary '\0','DEU','Baricus - Gartenwerkzeuge',NULL,NULL,4,NULL,NULL,'SH015394800000'),('EP025107830007','Karin Jittenmeier hält kreativ Interessierte mit diversen Techniken und Produkten auf dem Laufenden.','',_binary '\0','DEU','Karins Bastelclub',NULL,NULL,4,NULL,NULL,'SH025107830000'),('EP015394800004','In der Sendung werden verschiedene Elektro- und Akkuwerkzeuge für den Garten vorgestellt.','',_binary '\0','DEU','Baricus - Gartenwerkzeuge',NULL,NULL,4,NULL,NULL,'SH015394800000'),('EP012692740077','A blind woman is afraid to give Hooker information that would aid his search for murderous thieves.','Blind Justice',_binary '','GBR','T.J. Hooker',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1206211_e_h3_aa.jpg',4,NULL,NULL,'SH012692740000'),('EP033509300016','Ein `Pflug-Pilot\' fährt mit seinem 35 Tonnen schweren Pflug über die Gleise bei Bremerhaven.','Folge 16',_binary '','DEU','Deutschland 24/7 - Ohne uns läuft nichts!',NULL,NULL,4,NULL,NULL,'SH033509300000'),('EP012610100193','Aunty Wainwright finds an old safe without a key, putting a jewel thief\'s skills to the test.','Is Jeremy Quite Safe?',_binary '','GBR','Last of the Summer Wine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8329328_e_h3_aa.jpg',4,NULL,NULL,'SH012610100000'),('EP033509300017','In Deutschland landen jedes Jahr mehr als 200 Kilogramm Müll pro Person im Abfall.','Folge 17',_binary '','DEU','Deutschland 24/7 - Ohne uns läuft nichts!',NULL,NULL,4,NULL,NULL,'SH033509300000'),('EP030024180057','Hinata schaut sich gemeinsam mit seinen Freunden das Spiel zwischen Aoba Jousai und Datekou an.','Die eiserne Mauer errichten wir immer wieder neu',_binary '','DEU','Haikyu!!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12724547_e_h3_aa.jpg',4,NULL,NULL,'SH030024180000'),('EP013041830106','While at their ranch, Jonathan and Jennifer encounter a sinister landowner -- and murder.','Murder in the Saddle',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122442_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP030106340014','Hayley learns an important lesson about respecting school rules.','Sheriff Skyfire',_binary '','GBR','Power Rangers: Super Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15901394_e_h3_aa.jpg',4,NULL,NULL,'SH030106340000'),('EP030024180056','Hinatas Mannschaft kämpft weiterhin gegen das Team von Wakutani. Ennoshita wird Kapitän.','Verlierer',_binary '','DEU','Haikyu!!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12724540_e_h3_aa.jpg',4,NULL,NULL,'SH030024180000'),('EP030106340013','Sarah and the team\'s overconfidence threatens to put everyone at risk.','Prepare to Fail',_binary '','GBR','Power Rangers: Super Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15892521_e_h3_aa.jpg',4,NULL,NULL,'SH030106340000'),('EP016460840222','1787 startete die `HMS Bounty\' auf eine Reise, die zu den Berühmtesten in der Geschichte zählt.','Tropenfieber: Logbuch Bounty - Das Rätsel der Meuterei',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP013041830109','Jonathan and Jennifer pose as swinging singles to investigate a ruthless gambling ring.','Slow Boat to Murder',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122441_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP020622510023','A man convicted of murdering a woman in Santa Ana awaits his execution on death row.','Murdered Babysitter',_binary '','GBR','Death Row Stories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15285010_e_h3_aa.jpg',4,NULL,NULL,'SH020622510000'),('EP014755510042','Billy Blue is taken hostage by an Army deserter accused of murder.','A Sea of Enemies',_binary '','GBR','The High Chaparral',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1124314_e_h3_ab.jpg',4,NULL,NULL,'SH014755510000'),('EP014755510041','A priest asks the Cannons for financial help to find a religious statue.','Our Lady of Guadalupe',_binary '','GBR','The High Chaparral',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1124321_e_h3_aa.jpg',4,NULL,NULL,'SH014755510000'),('EP019714521397','Die Sendung zeigt, was die Region bewegt, was emotionale Nähe hat.','',_binary '\0','DEU','rbb um 6 - Das Ländermagazin',NULL,NULL,4,NULL,NULL,'SH019714520000'),('EP022890250077','Mitch ist mit seinem Bruder Buzzy auf hoher See, als der einen Herzinfarkt erleidet.','Spuk im Hotel',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,NULL,4,NULL,NULL,'SH022890250000'),('EP014755510040','John is framed for the murder of a shepherd\'s daughter and will be killed unless a ransom is paid.','A Way of Justice',_binary '','GBR','The High Chaparral',NULL,NULL,4,NULL,NULL,'SH014755510000'),('EP019714521398','Die Sendung zeigt, was die Region bewegt, was emotionale Nähe hat.','',_binary '\0','DEU','rbb um 6 - Das Ländermagazin',NULL,NULL,4,NULL,NULL,'SH019714520000'),('EP022890250076','Die hübsche Jessie bittet Matt so zu tun, als seien die beiden miteinander verlobt.','Zwischen zwei Frauen',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1035506_e_h3_aa.jpg',4,NULL,NULL,'SH022890250000'),('EP022890250078','Mitch gerät in die Fänge einer schizophrenen Frau. Die verwickelt ihn in gefährliches Verwirrspiel.','Gefährliches Spiel',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1035510_e_h3_aa.jpg',4,NULL,NULL,'SH022890250000'),('EP022890250073','Eine alte Freundin von Mitch will die Strand-Olympiade am Venice Beach organisieren.','Strandolympiade',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1035505_e_h3_aa.jpg',4,NULL,NULL,'SH022890250000'),('EP019714521399','Die Sendung zeigt, was die Region bewegt, was emotionale Nähe hat.','',_binary '\0','DEU','rbb um 6 - Das Ländermagazin',NULL,NULL,4,NULL,NULL,'SH019714520000'),('EP022890250075','C.J. trifft in Sea-World den Mann ihrer Träume, Mitch seinen Bruder Buzzy und seinen Neffen Kyle.','Spuk im Hotel',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,NULL,4,NULL,NULL,'SH022890250000'),('EP030024180055','Im Halbfinale des Präfekturvorentscheids trifft die Karasuno-Mannschaft auf i...','Ausmerzen',_binary '','DEU','Haikyu!!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12757537_e_h3_aa.jpg',4,NULL,NULL,'SH030024180000'),('EP022890250074','Zwei rüstige Senioren unterstützen Matt und Summer bei einer Rettungsaktion am Strand von Malibu.','Damals und heute',_binary '','DEU','Baywatch - Die Rettungsschwimmer von Malibu',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1035507_e_h3_aa.jpg',4,NULL,NULL,'SH022890250000'),('EP015443450228','ttt-extra - die Sondersendung des ARD-Kulturmagazins - präsentiert die Höhepunkte und Trends der diesjährigen 70. Internationalen Filmfestspiele Berlin.','extra - Die Berlinale',_binary '','DEU','ttt - titel thesen temperamente',NULL,NULL,4,NULL,NULL,'SH015443450000'),('EP021731320003','This film interweaves stories of extraordinary courage, terrible suffering and miraculous survival.','Fight for Freedom',_binary '','GBR','Britain\'s Greatest Generation',NULL,NULL,4,NULL,NULL,'SH021731320000'),('EP021731320002','We meet one of the last surviving pilots of the Battle of Britain.','Their Finest Hour',_binary '','GBR','Britain\'s Greatest Generation',NULL,NULL,4,NULL,NULL,'SH021731320000'),('EP020803320032','Alvin forgets an important anniversary with Juliet; Max meets his second biggest fan.','The Duckfooted Dreadful Date',_binary '','GBR','Max & Shred',NULL,NULL,4,NULL,NULL,'SH020803320000'),('EP021731320004','Features Arctic Convoy survivor Austin Byrne and former Fleet Air Arm pilot Bobby Brown.','A Better World',_binary '','GBR','Britain\'s Greatest Generation',NULL,NULL,4,NULL,NULL,'SH021731320000'),('EP020622510022','Clarence Smith was tried for and found not guilty of five homicides in state courts.','Feds vs. Outlaws',_binary '','GBR','Death Row Stories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15415055_e_h3_aa.jpg',4,NULL,NULL,'SH020622510000'),('EP020803320036','When Max discovers that Alvin is entering a battle of the bands, he insists on joining the band.','The Rock and Roll Rodeo 540',_binary '','GBR','Max & Shred',NULL,NULL,4,NULL,NULL,'SH020803320000'),('EP014755510037','Victoria\'s idea that John buy a squatter\'s last turkey leads to complications involving a chief.','For What We Are About to Receive',_binary '','GBR','The High Chaparral',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1124312_e_h3_aa.jpg',4,NULL,NULL,'SH014755510000'),('EP019700570040','Ein Ehepaar kauft sich ein Landrestaurant, stößt bei den Nachbarn aber auf Probleme.','Der Öko-Bauer; Die Kündigung',_binary '','DEU','Höllische Nachbarn',NULL,NULL,4,NULL,NULL,'SH019700570000'),('EP024805100012','Phil visits Hampton Court Palace, once the home of King Henry VIII, and explores its labyrinth of rooms to discover how it was built and how much it cost.','',_binary '\0','GBR','Phil Spencer\'s Stately Homes',NULL,NULL,4,NULL,NULL,'SH024805100000'),('EP030024180040','Das Karasuno-Team sucht nach einer Antwort auf Kyoutanis gezielte Angriffe und schmiedet einen Plan.','Der Kaputtmacher',_binary '','DEU','Haikyu!!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12760577_e_h3_aa.jpg',4,NULL,NULL,'SH030024180000'),('EP029051540052','Waffle is banned from going anywhere near the school, so Gramps tries to cheer him up.','Waffle Learns to Read',_binary '','GBR','Waffle the Wonder Dog',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16760550_e_h3_aa.jpg',4,NULL,NULL,'SH029051540000'),('EP021209980146','Seit 20 Jahren wird das friedliche Jordanien von dem Königspaar Rania und Abdullah regiert.','Jordanien - Ein diskretes Land im Nahen Osten',_binary '','DEU','Mit offenen Karten',NULL,NULL,4,NULL,NULL,'SH021209980000'),('EP029051540049','Evie forgets her reading book, so Waffle takes it to her at school.','PE Waffle',_binary '','GBR','Waffle the Wonder Dog',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16750341_e_h3_aa.jpg',4,NULL,NULL,'SH029051540000'),('EP020985130106','Ralf Rösinger wird aufgenommen. Er verschweigt seiner Frau die schwerwiegende Diagnose der Ärzte.','Vertrau mir!',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14410237_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP020985130107','Erinnerungen brechen auf, als Dr. Koshkas Halbschwester Alexa ins Klinikum eingeliefert wird.','Herzensdinge',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14429481_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP016114010002','Neil Oliver traces the beginnings of a vast Viking trading empire.','',_binary '\0','GBR','Vikings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9458829_e_h3_ac.jpg',4,NULL,NULL,'SH016114010000'),('EP020985130108','Der Mann, mit dem sich Eva heimlich trifft, ist der Vater eines Jungen aus ihrer Gruppe.','Mit Leib und Seele',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14443691_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP016114010003','Neil Oliver investigates how the Viking Age finally came to an end.','',_binary '\0','GBR','Vikings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9473187_e_h3_aa.jpg',4,NULL,NULL,'SH016114010000'),('EP020985130105','Die Ärzte raten Zoe Sherbaz zu einem Kaiserschnitt. Doch Zoe möchte eine natürliche Geburt.','Gemeinsam durchs Leben',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14409941_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP030556050106','Ein bekannter Schauspieler aus Westernfilmen wird wegen eines Herzinfarkts in die Klinik gebracht.','Buckaroo, der alte Westernheld',_binary '','DEU','Trapper John, M.D.',NULL,NULL,4,NULL,NULL,'SH030556050000'),('EP027611940002','Richard Hawley looks back at a gig he wishes he had attended. First broadcast in 2009.','',_binary '\0','GBR','Wish You Were There',NULL,NULL,4,NULL,NULL,'SH027611940000'),('EP027611940004','Damon Gough (aka Badly Drawn Boy) experiences Bruce Springsteen at the Hammersmith Odeon in 1975.','',_binary '\0','GBR','Wish You Were There',NULL,NULL,4,NULL,NULL,'SH027611940000'),('EP034466520002','Ian McMillan goes on a literary tour of Yorkshire, from The Brontës to Ted Hughes.','From Haworth to Leeds',_binary '','GBR','Writing Yorkshire',NULL,NULL,4,NULL,NULL,'SH034466520000'),('EP026908680010','Alex Edelman looks into the future and tries to work out the next steps for humankind.','The Future',_binary '','GBR','Alex Edelman\'s Peer Group',NULL,NULL,4,NULL,NULL,'SH026908680000'),('EP027217420021','Chloe shows Topsy a trick, but Topsy turns out to be more skilled at making treats disappear.','Magic Cups',_binary '','GBR','My Petsaurus',NULL,NULL,4,NULL,NULL,'SH027217420000'),('EP027217420025','Chloe takes Topsy for a walk in the park with his new toy, where they meet Lewis and Peggy.','Sharing',_binary '','GBR','My Petsaurus',NULL,NULL,4,NULL,NULL,'SH027217420000'),('EP023839730038','Ein Bankier aus Denver bringt den Ku Klux Klan nach Colorado Springs und bedroht einen Einwohner.','Ein ehrenwerter Geschäftsmann',_binary '','DEU','Dr. Quinn - Ärztin aus Leidenschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1583136_e_h3_aa.jpg',4,NULL,NULL,'SH023839730000'),('EP023839730039','Die neue Lehrerin scheint ein wahrer Glücksfall zu sein, doch sie züchtigt ihre Schüler körperlich.','Mit strenger Hand',_binary '','DEU','Dr. Quinn - Ärztin aus Leidenschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1583138_e_h3_aa.jpg',4,NULL,NULL,'SH023839730000'),('EP026908680009','Alex Edelman draws from personal experience to talk about mental health and its relevance today.','Mental Health',_binary '','GBR','Alex Edelman\'s Peer Group',NULL,NULL,4,NULL,NULL,'SH026908680000'),('EP012587870264','Ric tries to escape hospital politics by returning to Ghana to work in his brother\'s clinic.','Tuesday\'s Girl',_binary '','GBR','Holby City',NULL,NULL,4,NULL,NULL,'SH012587870000'),('EP019842690075','Doggett wacht in einer mexikanischen Stadt auf und hat keinerlei Erinnerungen, wer er ist.','Häutungen',_binary '','DEU','Akte X - Die unheimlichen Fälle des FBI',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1636034_e_h3_ab.jpg',4,NULL,NULL,'SH019842690000'),('EP016986790022','DI Alec Hardy and DS Ellie Miller are called to investigate a serious sexual assault.','',_binary '\0','GBR','Broadchurch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13837473_e_h3_aa.jpg',4,NULL,NULL,'SH016986790000'),('EP029547070465','Die Sendung zeigt die aktuellsten Neuigkeiten aus dem Alltag aus allen Regionen Deutschlands.','',_binary '\0','DEU','Live nach Neun',NULL,NULL,4,NULL,NULL,'SH029547070000'),('EP012587870259','Jess tries to be more independent, and Mark and Carlos compete for Tricia\'s affections.','Ostrich Mode',_binary '','GBR','Holby City',NULL,NULL,4,NULL,NULL,'SH012587870000'),('EP016566710989','Will and Paul spy on John as he meets Marlena at the hospital.','',_binary '\0','GBR','Days of our Lives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15074913_e_h3_aa.jpg',4,NULL,NULL,'SH016566710000'),('EP029547070466','Die Sendung zeigt die aktuellsten Neuigkeiten aus dem Alltag aus allen Regionen Deutschlands.','',_binary '\0','DEU','Live nach Neun',NULL,NULL,4,NULL,NULL,'SH029547070000'),('EP016566710988','Hope learns that Gabi has been brought in for questioning, Valerie asks Abe to stop pressuring JJ and Lani to get married, and Will Lani finally reveal the identity of her baby\'s father?','',_binary '\0','GBR','Days of our Lives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15074912_e_h3_aa.jpg',4,NULL,NULL,'SH016566710000'),('EP018458000001','Dan Snow sets off on a historical adventure down the Grand Canyon, 1869-style.','',_binary '\0','GBR','Operation Grand Canyon With Dan Snow',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10455228_e_h3_aa.jpg',4,NULL,NULL,'SH018458000000'),('EP028586800123','Bonnies Dinosaurierknochen ist verschwunden. Bob hat seine Lieblingsgolfersocken verlegt.','Ein Knochen auf Abwegen; Bobs Socken-Schlamassel',_binary '','DEU','Welpen Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16569306_e_h3_aa.jpg',4,NULL,NULL,'SH028586800000'),('EP028586800122','Bingo und Rolly wollen den Lieblings-Imbisswagen von Bob finden. Sie nehmen an einer Wal-Tour teil.','Die Burger-Mission; Das Insel-Abenteuer',_binary '','DEU','Welpen Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16569140_e_h3_aa.jpg',4,NULL,NULL,'SH028586800000'),('EP028586800121','Bingo und Rolly helfen ihrem Cousin Cody. Hissys Lieblingsspielzeug ist verschwunden.','Cousin Cody; Hissys Lieblingsspielzeug',_binary '','DEU','Welpen Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16569021_e_h3_aa.jpg',4,NULL,NULL,'SH028586800000'),('EP031316040005','Shirley Anne Field sits down with Robert Ross and talks about her life and career.','Shirley Anne Field',_binary '','GBR','Talking Pictures with...',NULL,NULL,4,NULL,NULL,'SH031316040000'),('EP033425940034','Prominente Rategäste treten gegen die drei besten deutschen `Quizduell\'-Spieler an.','Folge 234',_binary '','DEU','Quizduell - Olymp',NULL,NULL,4,NULL,NULL,'SH033425940000'),('EP031484860281','Während sich die Jecken vom Karneval erholen, liefern sich die Parteien traditionsgemäß beim Politischen Aschermittwoch einen verbalen Schlagabtausch. Wobei die Ereignisse bei der Ministerpräsidenten-Wahl in Thüringen und der Machtkampf.','Politischer Aschermittwoch der Parteien',_binary '','DEU','phoenix vor ort',NULL,NULL,4,NULL,NULL,'SH031484860000'),('EP030556050105','Trotz ihrer Eignung lehnt eine Krankenschwester eine Stellung auf der Intensivstation ab.','Unbewältigte Vergangenheit',_binary '','DEU','Trapper John, M.D.',NULL,NULL,4,NULL,NULL,'SH030556050000'),('EP034240650008','Love Monster realises he misses Monster Teddy when they are apart.','Paint a Picture Day',_binary '','GBR','Love Monster',NULL,NULL,4,NULL,NULL,'SH034240650000'),('EP018580080111','Caillou pflegt einen kleinen Vogel, der aus dem Nest gefallen ist, und bringt ihm das Fliegen bei.','Der kleine Vogel; Im Dunkeln; Beim Zahnarzt; Hausarzt Doktor Caillou',_binary '','DEU','Caillou',NULL,NULL,4,NULL,NULL,'SH018580080000'),('EP029850720026','Die Sendung hinterfragt unter anderem Begriffe, die täglich in den Nachrichten vorkommen.','',_binary '\0','DEU','alpha-Demokratie-Weltweit',NULL,NULL,4,NULL,NULL,'SH029850720000'),('EP026229010025','A profile of the man responsible for the 1977 \"World\'s End Murders\" involving two teenage girls.','Angus Sinclair',_binary '','GBR','Britain\'s Most Evil Killers',NULL,NULL,4,NULL,NULL,'SH026229010000'),('EP029608370027','Bodkin Adams was a trusted GP who befriended older patients, and were often named in their wills after their deaths - which curiously seemed sooner than expected.','Eastbournes Dr Death',_binary '','GBR','Murder by the Sea',NULL,NULL,4,NULL,NULL,'SH029608370000'),('EP029051540012','AJ takes Evie and Anaya swimming, but Waffle must stay at home. He begins an adventure of his own.','Waffle\'s Day Out',_binary '','GBR','Waffle the Wonder Dog',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15241883_e_h3_aa.jpg',4,NULL,NULL,'SH029051540000'),('EP019691990073','Das Magazin berichtet über Entwicklungen in Politik, Gesellschaft und Kultur Sloweniens.','',_binary '\0','DEU','Slowenien Magazin',NULL,NULL,4,NULL,NULL,'SH019691990000'),('EP029051540013','An old friend of Gramps, Mr Willow, brings along his two dogs to play with Waffle.','Waffle\'s Doggy Buddies',_binary '','GBR','Waffle the Wonder Dog',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15241885_e_h3_aa.jpg',4,NULL,NULL,'SH029051540000'),('EP018486130064','Lisa springt bei Christian als Sprechstundenhilfe ein. Sie lernt den Referendar Nico kennen.','Sehstörungen',_binary '','DEU','Familie Dr. Kleist',NULL,NULL,4,NULL,NULL,'SH018486130000'),('EP018486130062','Piwi schreibt regelmäßig aus dem Sportinternat, nur Lisa hat sich lange nicht gemeldet.','Verstimmungen',_binary '','DEU','Familie Dr. Kleist',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12845073_e_h3_aa.jpg',4,NULL,NULL,'SH018486130000'),('EP018486130063','Marlene und Christian werden von Leonie Sturm nicht mehr in Ruhe gelassen, was Konflikte auslöst.','In höchster Not',_binary '','DEU','Familie Dr. Kleist',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12845093_e_h3_aa.jpg',4,NULL,NULL,'SH018486130000'),('EP034240650009','Rain is forecast in Fluffytown, but Love Monster is excited because his friends are coming round.','Yay for Rain Day',_binary '','GBR','Love Monster',NULL,NULL,4,NULL,NULL,'SH034240650000'),('EP012682700122','Timmy plays superhero and is desperate to save the day, but his efforts aren\'t always appreciated.','Timmy the Hero',_binary '','GBR','Timmy Time',NULL,NULL,4,NULL,NULL,'SH012682700000'),('EP019990870057','Eine französische Expedition soll angeblich im 18. Jahrhundert einen Goldschatz vergraben haben.','Der Fluch des Treasure Mountain',_binary '','DEU','Mythen-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11345372_e_h3_aa.jpg',4,NULL,NULL,'SH019990870000'),('EP019577750459','SpongeBob will gerne normal werden und trainiert dafür fleißig. Aber das hat Folgen.','Normal ist das nicht; Fort gegangen',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222590_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP026165010078','Two families who are multi-generational shire horse breeders exhibit their prize-winning pedigrees.','Shire Horses',_binary '','GBR','The Farmers\' Country Showdown',NULL,NULL,4,NULL,NULL,'SH026165010000'),('EP026165010079','Two Welsh pedigree cattle farmers are at Europe\'s largest agricultural event, The Royal Welsh Show.','Cattle',_binary '','GBR','The Farmers\' Country Showdown',NULL,NULL,4,NULL,NULL,'SH026165010000'),('EP019302540165','Alan demolishes the Snail family\'s holiday home by bouncing and Pip and Alba build them a new home.','Shelling Out',_binary '','GBR','Pip Ahoy!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15874251_e_h3_aa.jpg',4,NULL,NULL,'SH019302540000'),('EP019302540161','After a huge storm sweeps Pasty\'s home out to sea, Skipper lets him stay in the lighthouse.','Come Home Pasty',_binary '','GBR','Pip Ahoy!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15874240_e_h3_aa.jpg',4,NULL,NULL,'SH019302540000'),('EP020985130148','Tobias wird nach einem Unfall ins Klinikum eingeliefert und muss sofort operiert werden.','Kontrollverlust',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15699273_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP020985130149','Die Ärzte übernehmen die junge Patientin Anna, die mit einer Alkoholvergiftung eingeliefert wird.','Keine Kompromisse',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15721870_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP027580960103','Nina and Leon are make bird masks like the ones in a book they found.','Louise',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP030864510001','This episode has remarkable shots and commentary on a 1930s Canterbury.','',_binary '\0','GBR','Canterbury',NULL,NULL,4,NULL,NULL,'SH030864510000'),('EP013031190141','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP027580960101','A little girl left a book in the bookshop especially for Yetili, and it will be in today\'s story.','Henry\'s Little Saucepan',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP013031190140','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP013031190143','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP013031190142','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP034391700002','Lucy Worsley discovers how the history of the Spanish Armada has been manipulated.','The Spanish Armada',_binary '','GBR','Royal History\'s Biggest Fibs with Lucy Worsley',NULL,NULL,4,NULL,NULL,'SH034391700000'),('EP022939820049','Panda verabredet sich über das Internet mit einer Dame. Die Rangordnung der Bären wird verändert.','Wir und das Online-Date; Wir und die Frage nach dem Anführer',_binary '','DEU','We Bare Bears - Bären wie wir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13569971_e_h3_aa.jpg',4,NULL,NULL,'SH022939820000'),('EP019576310206','Aprils Hochzeit wird von den Problemen und Streitereien ihrer Kollegen überschattet.','Aprils großer Tag',_binary '','DEU','Grey\'s Anatomy - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10349056_e_h3_ab.jpg',4,NULL,NULL,'SH019576310000'),('EP022939820045','Die Bären ermahnen Kinobesucher. Der Bigfoot Charlie quartiert sich bei den Bären ein.','Wir sind die Pst-Ninjas; Wir und Charlie',_binary '','DEU','We Bare Bears - Bären wie wir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13559588_e_h3_aa.jpg',4,NULL,NULL,'SH022939820000'),('EP022939820044','Die Bären nehmen Chloe unter ihre Fittiche. Grizz findet eine Krabbe und bringt sie nach Hause.','Wir und neue Freunde für Chloe; Wir und der Notfall',_binary '','DEU','We Bare Bears - Bären wie wir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12501450_e_h3_aa.jpg',4,NULL,NULL,'SH022939820000'),('EP016340370070','Follow the work of the New Zealand Customs agents in their quest to prevent illegal items.','',_binary '\0','GBR','Border Patrol',NULL,NULL,4,NULL,NULL,'SH016340370000'),('EP013031190144','The dartboard quiz game that tests contestants darts skills and their general knowledge.','',_binary '\0','GBR','Bullseye',NULL,NULL,4,NULL,NULL,'SH013031190000'),('EP020904421426','Während der Dreharbeiten zu seinem neuen Film bricht der Porno-Regisseur Günter zusammen und stirbt.','Günters letzter Ritt',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP019576310201','Aprils drei Schwestern sind angereist, um April bei ihrer Hochzeit zu unterstützen.','Pioniere',_binary '','DEU','Grey\'s Anatomy - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10349043_e_h3_ab.jpg',4,NULL,NULL,'SH019576310000'),('EP020904421427','Die Konditor-Auszubildende Franziska Arlmann wird tot in der Backstube ihres Betriebs gefunden.','Tod nach Rezept',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP031186390002','Sankom specialize in the development of health and weight management programs.','With Mark',_binary '','GBR','Sankom',NULL,NULL,4,NULL,NULL,'SH031186390000'),('EP019559740057','Psychiater Eli kann seit einer Nahtod-Erfahrung die Stimmen der Toten hören.','Der Feuerteufel',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP019559740056','Lucas wird von einem Geist verfolgt und bittet Melinda um Hilfe.','Tödliches Gewissen',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP015039310057','Walker and Trivette bust a drug ring; a serial rapist victimizes Alex\'s student.','Something in the Shadows',_binary '','GBR','Walker, Texas Ranger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1603536_e_h3_ab.jpg',4,NULL,NULL,'SH015039310000'),('EP015039310056','Walker helps a young Navaho man who has been framed for murder - possibly by the FBI.','Legend of the Running Bear',_binary '','GBR','Walker, Texas Ranger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1603535_e_h3_ab.jpg',4,NULL,NULL,'SH015039310000'),('EP019559740059','Ein Avatar aus einem Computerspiel verlässt die Spielebene und steht plötzlich in Melindas Laden.','Der Avatar',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP030936480013','Nach Emilios Abschiebung übernimmt Jackie die Vaterrolle und arbeitet einen penibel genauen Geburtsplan für Becky aus. Darlene ist in eine komplexe Dreiecksbeziehung mit David und Ben verwickelt. Harris hat währenddessen ein ganz eigenes Problem.','Die Frühgeburt',_binary '','DEU','Die Conners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17114309_e_h3_aa.jpg',4,NULL,NULL,'SH030936480000'),('EP019576450401','Natascha hofft auf eine Versöhnung mit Richard. Als sie einen Anruf von David bekommt, ist sie froh.','Briefwechsel',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP030936480014','Darlene hat Schwierigkeiten sich zwischen David und Ben zu entscheiden. Becky beginnt an sich selbst als Mutter zu zweifeln. Mark gerät in der Schule in Schwierigkeiten, als ein Foto, auf dem er und sein Freund sich küssen, viral geht.','Ein Kuss ist nur ein Kuss',_binary '','DEU','Die Conners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17372295_e_h3_aa.jpg',4,NULL,NULL,'SH030936480000'),('EP016340370068','New Zealand Customs Service work the frontline, checking for drugs and illegal goods.','',_binary '\0','GBR','Border Patrol',NULL,NULL,4,NULL,NULL,'SH016340370000'),('EP023584390003','A three part documentary series examining Hitler\'s rise to power and the event\'s of World War Two.','',_binary '\0','GBR','The Life Of Adolf Hitler',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p12560835_st_h3_aa.jpg',4,NULL,NULL,'SH023584390000'),('EP023584390002','Hitler\'s rise to power and the event\'s building up to World War Two.','',_binary '\0','GBR','The Life Of Adolf Hitler',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p12560835_st_h3_aa.jpg',4,NULL,NULL,'SH023584390000'),('EP016340370069','Follow the work of the New Zealand Customs agents in their quest to prevent illegal items.','',_binary '\0','GBR','Border Patrol',NULL,NULL,4,NULL,NULL,'SH016340370000'),('EP013290710009','George and Carol return from a weekend away to find a nasty surprise. From March 2003.','',_binary '\0','GBR','The Change',NULL,NULL,4,NULL,NULL,'SH013290710000'),('EP033209960019','Leonard Compson, ein ruhiger Geschäftsmann mittleren Alters, hat kein leichtes Leben. Der verhinderte Abenteurer musste vor Jahren seine Reiselust und seine Entdeckerwünsche nach einem Urlaubsunfall seiner Frau Elsie.','Scheidung auf Amerikanisch',_binary '','DEU','Alfred Hitchcock präsentiert',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016462_e_h3_aa.jpg',4,NULL,NULL,'SH033209960000'),('EP023922950005','A maverick fishing crew take on an adrenaline-filled fishing trip in Laos.','Laos',_binary '','GBR','Fishing Impossible',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12926291_e_h3_ab.jpg',4,NULL,NULL,'SH023922950000'),('EP019559740067','Nach dem Tod eines jungen Mannes wacht Jim eines Tages plötzlich in dessen Körper auf.','Herz & Seele',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP019559740066','Diana Morrisson bricht plötzlich tot zusammen, sie findet nach ihrem Tod jedoch keine Ruhe.','Blutsverwandt',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP019559740069','Auf einer Kreuzfahrt begegnet Melinda gleich mehreren schrecklich verängstigten Geistern.','Das Geisterschiff',_binary '','DEU','Ghost Whisperer - Stimmen aus dem Jenseits',NULL,NULL,4,NULL,NULL,'SH019559740000'),('EP034428350003','At Aberdeen University naive Martha\'s horizons are beginning to widen. Abridged by Rosemary Goring.','',_binary '\0','GBR','The Quarry Wood',NULL,NULL,4,NULL,NULL,'SH034428350000'),('EP027878460081','Pablo loves his fluffy jacket so much that he decides to keep it on inside.','Mr Fluffy Friend',_binary '','GBR','Pablo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17587413_e_h3_aa.jpg',4,NULL,NULL,'SH027878460000'),('EP027878460080','Mum tells Pablo not to touch the doughnuts, the flowers and the vase on the table.','Can\'t Touch This',_binary '','GBR','Pablo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17587410_e_h3_aa.jpg',4,NULL,NULL,'SH027878460000'),('EP034428350004','As Martha nurses her poorly aunt, a figure from the past reappears.','',_binary '\0','GBR','The Quarry Wood',NULL,NULL,4,NULL,NULL,'SH034428350000'),('EP023226570013','Die Folge widmet sich den Skandalen um Peter Graf, dem Strippenzieher hinter Steffi.','Der Fall Peter Graf',_binary '','DEU','Skandal!',NULL,NULL,4,NULL,NULL,'SH023226570000'),('EP012702020030','An alien war party monitors the Doctor\'s daydreams to gather intelligence for an attack on Voyager.','Tinker, Tenor, Doctor, Spy',_binary '','GBR','Star Trek: Voyager',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1749579_e_h3_aa.jpg',4,NULL,NULL,'SH012702020000'),('EP023226570014','Die Sendung beleuchtet den Justizirrtum im Fall Harry Wörz, der unschuldig im Gefängnis saß.','Der Fall Harry Wörz',_binary '','DEU','Skandal!',NULL,NULL,4,NULL,NULL,'SH023226570000'),('EP025069640180','Greta ist sauer auf Rocco und sein Verhalten. Finn hingegen ist richtig nett und unkompliziert.','Das Mathenachhilfe-Date',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP012595500659','A couple are looking for a country home that can also house one of their parents and B&B guests.','Devon',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP023226570016','Diese Sendung handelt von der Insolvenz des Unternehmens Schlecker im Jahr 2012.','Die Schlecker-Story',_binary '','DEU','Skandal!',NULL,NULL,4,NULL,NULL,'SH023226570000'),('EP025069640181','Zum wiederholten Male wurde Tim geprankt und ein neuer Verdächtiger steht schnell fest.','Hummel fett, Mücke laktoseintolerant',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP031993090012','Bei einem Verkehrsunfall auf dem Highway sind auf nasser Fahrbahn zwei Autos kollidiert.','Folge 82',_binary '','DEU','Highway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14387253_e_h3_aa.jpg',4,NULL,NULL,'SH031993090000'),('EP023226570010','Die Folge beschäftigt sich mit den verdeckten Spenden des Flick-Konzerns an den Bundestag.','Die Flick-Millionen (1982)',_binary '','DEU','Skandal!',NULL,NULL,4,NULL,NULL,'SH023226570000'),('EP019560930053','Ein Serienkiller hält seine Opfer gefangen und infiziert sie mit Tollwut, bevor er sie tötet.','Tollwut',_binary '','DEU','Criminal Minds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10560371_e_h3_ab.jpg',4,NULL,NULL,'SH019560930000'),('EP022939820021','Die Bären begreifen, dass sie Stofftaschen brauchen, denn sie wollen umweltfreundlicher werden.','Wir und die Nachhaltigkeit',_binary '','DEU','We Bare Bears - Bären wie wir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12292273_e_h3_ab.jpg',4,NULL,NULL,'SH022939820000'),('EP031993090011','In dieser Episode kommen die Beamten der Victoria Police gleich zwei Rauschgiftsündern auf die Spur.','Folge 81',_binary '','DEU','Highway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14371359_e_h3_aa.jpg',4,NULL,NULL,'SH031993090000'),('EP019577750495','Sandys übertriebener Ehrgeiz unterbricht SpongeBob und Patricks friedlichen Tag des Quallenfischens.','Quallenfischer-Stress; Der Faden',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15644299_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP012896130001','Jean and Lionel receive an unwelcome guest and a shocking announcement.','Alistair\'s Engagement',_binary '','GBR','As Time Goes By',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1617716_e_h3_aa.jpg',4,NULL,NULL,'SH012896130000'),('EP012595500660','Nicki helps a couple and their award-winning dogs find a home in West Sussex.','West Sussex',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP021707140130','Es wird der Frage nachgegangen, ob jeder Mensch das Recht auf einen selbstbestimmten Tod hat.','Urteil zur Sterbehilfe',_binary '','DEU','ZDF spezial',NULL,NULL,4,NULL,NULL,'SH021707140000'),('EP019576450427','Jojo und Lily sind verzweifelt, denn Jojo hat keinen Pass. Maiks Pass soll nun weiterhelfen.','Der Fluchtplan',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP016391700139','Davon haben wir nichts gewusst, so lautete nach Kriegsende die Antwort auf Fragen zum Holocaust.','Davon haben wir nichts gewusst: Die Deutschen und der Holocaust',_binary '','DEU','ZDF-History',NULL,NULL,4,NULL,NULL,'SH016391700000'),('EP019479410031','Ryan denkt noch immer, Wilfred wäre der böse Gott Krungel, den die Sekte seines Vaters verehrt.','Vorangehen',_binary '','DEU','Wilfred',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10851636_e_h3_aa.jpg',4,NULL,NULL,'SH019479410000'),('EP019672501102','Das werktägliche Kulturmagazin mischt sich in kulturelle und gesellschaftspolitische Fragen ein.','',_binary '\0','DEU','Kulturzeit',NULL,NULL,4,NULL,NULL,'SH019672500000'),('EP019479410032','Ryan erfährt, dass die ehemalige Sekretärin Genevieve einem Fremden jeden Monat Geld übergibt.','Muster',_binary '','DEU','Wilfred',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10866930_e_h3_aa.jpg',4,NULL,NULL,'SH019479410000'),('EP019672501103','Das werktägliche Kulturmagazin mischt sich in kulturelle und gesellschaftspolitische Fragen ein.','',_binary '\0','DEU','Kulturzeit',NULL,NULL,4,NULL,NULL,'SH019672500000'),('EP019672501104','Das werktägliche Kulturmagazin mischt sich in kulturelle und gesellschaftspolitische Fragen ein.','',_binary '\0','DEU','Kulturzeit',NULL,NULL,4,NULL,NULL,'SH019672500000'),('EP012757430144','Stella risks her life to solve the case of a woman, linked to an unsolved murder, is found dead.','Rest in Peace, Marina Garito',_binary '','GBR','CSI: NY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8053556_e_h3_aa.jpg',4,NULL,NULL,'SH012757430000'),('EP025302610179','Street racers follows the stars of Formula E giving a driver perspective of the season.','',_binary '\0','GBR','Formula E: Street Racers',NULL,NULL,4,NULL,NULL,'SH025302610000'),('EP012757430145','A death row inmate\'s final request brings Dr Hawkes to a prison just as a riot erupts.','Redemption',_binary '','GBR','CSI: NY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8068794_e_h3_ac.jpg',4,NULL,NULL,'SH012757430000'),('EP026964060080','Flint baut für einen Australier ein Raumschiff. Tims Bruder Jim ist ein Rebell und eifersüchtig.','Auf ins All!; Tim oder Jim?',_binary '','DEU','Wolkig mit Aussicht auf Fleischbällchen',NULL,NULL,4,NULL,NULL,'SH026964060000'),('EP026964060083','Flint führt einen Erfinder-Kodex ein. Flint und Sam geraten in Streit mit einem Schauspieler.','Der Erfinder-Kodex; Das Riesenbaby',_binary '','DEU','Wolkig mit Aussicht auf Fleischbällchen',NULL,NULL,4,NULL,NULL,'SH026964060000'),('EP026964060082','Flint erzählt Sam, wieso er die Rattenvögel erfunden hat. Flint verkauft seine Erfindungen.','Rattenvögel und Käsewürmer; Alles muss raus!',_binary '','DEU','Wolkig mit Aussicht auf Fleischbällchen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14397103_e_h3_aa.jpg',4,NULL,NULL,'SH026964060000'),('EP012896130056','Noise from the empty house next door disturbs the Hardcastles as enjoy a quiet evening together.','The House Next Door',_binary '','GBR','As Time Goes By',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1617717_e_h3_aa.jpg',4,NULL,NULL,'SH012896130000'),('EP012615430451','This time a builder falls through a ceiling and a bulldog fires snot at his owner.','Gold',_binary '','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP012595540132','Robert administers IQ tests to Ray and Debra and then tests their reactions to false results.','Standard Deviation',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926108_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP034267290060','Etwa auf halber Strecke von Los Angeles nach Paris muss eine A380 dringend notlanden.','Triebwerksexplosionüber dem Atlantik',_binary '','DEU','Drama in der Luft',NULL,NULL,4,NULL,NULL,'SH034267290000'),('EP015402280423','Fasten ist weit verbreitet und neueste Forschungen sagen, dass Hungern sogar gesund sei.','Ist Fasten gesund?',_binary '','DEU','Planet Wissen',NULL,NULL,4,NULL,NULL,'SH015402280000'),('EP012608400240','The team investigates a Mossad officer\'s murder; Tony and Ziva pursue her father\'s killer.','Berlin',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9866505_e_h3_aa.jpg',4,NULL,NULL,'SH012608400000'),('EP034352240005','Rickys Cousin Dasher ist zu Besuch in der Stadt, und Ricky denkt, dass seine Freunde Dasher lieber mögen als ihn.','Besuch für Ricky',_binary '','DEU','Ricky Zoom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17276640_e_h3_aa.jpg',4,NULL,NULL,'SH034352240000'),('EP034352240006','Ricky versucht, seinen Geschwindigkeitsrekord zu brechen, doch der kleine Buster Blinker ist so auf die Einhaltung aller Regeln bedacht, dass Ricky es wohl nie schafft, auch nur von der Startlinie loszufahren.','Buster regelt das',_binary '','DEU','Ricky Zoom',NULL,NULL,4,NULL,NULL,'SH034352240000'),('EP034352240007','Ricky lässt sich von seinem wackelnden Vorderrad bei einem Auftritt verunsichern.','Eine wackelige Angelegenheit',_binary '','DEU','Ricky Zoom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17232674_e_h3_aa.jpg',4,NULL,NULL,'SH034352240000'),('EP012588500104','Arthur\'s good deed towards an old friend spells trouble for Terry.','You Gotta Have Friends',_binary '','GBR','Minder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1153481_e_h3_aa.jpg',4,NULL,NULL,'SH012588500000'),('EP028050090007','Ein mysteriöser Banküberfall mit einer Geiselnahme gewinnt die Aufmerksamkeit des CIA.','Totenmesse',_binary '','DEU','Arne Dahl',NULL,NULL,4,NULL,NULL,'SH028050090000'),('EP034352240008','Toot möchte unbedingt, dass die Freunde mit ihr spielen. Also tut sie so, als würden ihre Fernsteuerungen sie dazu bringen, alles zu tun, was sie wollen.','Die verrückte Fernsteuerung',_binary '','DEU','Ricky Zoom',NULL,NULL,4,NULL,NULL,'SH034352240000'),('EP019580552865','Die Rundschau ist die tägliche Nachrichtensendung des Bayerischen Fernsehens.','vom 27.02.2020, 16:00 Uhr',_binary '','DEU','Rundschau',NULL,NULL,4,NULL,NULL,'SH019580550000'),('EP012608400242','A Navy reservist returns home to find her husband missing and her living room covered in blood.','Chasing Ghosts',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9824597_e_h3_aa.jpg',4,NULL,NULL,'SH012608400000'),('EP020861460014','Das Winzerhäuschen der Familie Lüscher fliegt in die Luft. Es war Brandstiftung.','Stiereblut',_binary '','DEU','Der Bestatter',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11745632_e_h3_aa.jpg',4,NULL,NULL,'SH020861460000'),('EP034446850002','Helen, Jake and Natalie are shocked when they discover Vivien plans to sell their childhood home.','',_binary '\0','GBR','Flesh and Blood',NULL,NULL,4,NULL,NULL,'SH034446850000'),('EP012595540144','Ray fears getting his adenoids removed, but Debra convinces him to go through with the surgery.','The Finale',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926319_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP012595540148','Ray must convince Debra of his innocence after a waitress at Nemo\'s catches his eye.','Look Don\'t Touch',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926110_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP012606380013','A World War II B-25 Mitchell goes from the bottom of a lake to a museum.','B-25 Bomber',_binary '','GBR','Mega Movers',NULL,NULL,4,NULL,NULL,'SH012606380000'),('EP012595540145','Frank decides he would like to have his own newspaper column.','Frank the Writer',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926109_e_h3_ad.jpg',4,NULL,NULL,'SH012595540000'),('EP016889010193','Nelson Müller will herausfinden, ob man verschiedenen Lebensmitteln bedenkenlos vertrauen kann.','Nelson Müllers Essens-Check: Wie gut sind Olivenöl, Lachs & Obst to go?',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15499619_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP012702020028','Seven of Nine is followed by three renegade Borg drones who want her knowledge.','Survival Instinct',_binary '','GBR','Star Trek: Voyager',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1749577_e_h3_ab.jpg',4,NULL,NULL,'SH012702020000'),('EP016889010195','Die Reportage testet die Erholungsreisen auf See der beiden Anbieter AIDA und TUI.','AIDA oder TUI Cruises?',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15550059_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP034446850004','Vivien tries to dismiss her children\'s fears about Mark, even as serious doubts creep into her mind.','',_binary '\0','GBR','Flesh and Blood',NULL,NULL,4,NULL,NULL,'SH034446850000'),('EP012702020029','Torres begs to be allowed to rescue her disgraced mother from a Klingon death barge.','Barge of the Dead',_binary '','GBR','Star Trek: Voyager',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1749578_e_h3_ab.jpg',4,NULL,NULL,'SH012702020000'),('EP034446850003','Vivien and Mark plan their trip, but the children\'s distrust starts to strain their relationship.','',_binary '\0','GBR','Flesh and Blood',NULL,NULL,4,NULL,NULL,'SH034446850000'),('EP012692060001','Philippa Vale gives sanctuary to a Canadian Olympic track star whose life has been threatened.','Old Acquaintance',_binary '','GBR','Bergerac',NULL,NULL,4,NULL,NULL,'SH012692060000'),('EP012608400236','A massive storm brings the NCIS team aboard the USS Borealis, where everyone becomes a suspect.','Squall',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9806428_e_h3_aa.jpg',4,NULL,NULL,'SH012608400000'),('EP020305500004','Der Kurs bietet die Möglichkeit, vorhandene Englischkenntnisse aufzufrischen und zu vertiefen.','America - The freedom to be',_binary '','DEU','TELEKOLLEG Englisch',NULL,NULL,4,NULL,NULL,'SH020305500000'),('EP029671680012','Delving into the hidden world of female submissives by following four sex workers.','Spank Me Harder',_binary '','GBR','The Sex Business',NULL,NULL,4,NULL,NULL,'SH029671680000'),('EP012595540157','After having a fight with Frank, Marie moves in with Ray and his family.','Your Place or Mine?',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926111_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP012606380026','Lifting a historic diner out of a building that has covered it for over 50 years.','Lost & Found',_binary '','GBR','Mega Movers',NULL,NULL,4,NULL,NULL,'SH012606380000'),('EP019692430061','Alf liest eine Geschichte über eine kosmische Frau in der Zeitung, über die er sich aufregt.','Mr. Universum',_binary '','DEU','ALF',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016194_e_h3_ab.jpg',4,NULL,NULL,'SH019692430000'),('EP016889010182','Nelson Müller nimmt die meistverkauften Pasta-Sorten unter die Lupe und fragt, ob sie dick machen.','Nelson Müllers Nudel-Check',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP019700510203','Das Thema der Sendung lautet diesmal: \"Stütze für Gangster - Sozialbetrug mit System\".','Stütze für Gangster - Sozialbetrug',_binary '','DEU','Exakt - Die Story',NULL,NULL,4,NULL,NULL,'SH019700510000'),('EP028610570019','Numerous women allege Arnold Schwarzenegger of sexual harassment.','Arnold Schwarzenegger',_binary '','GBR','Celebrity Damage Control',NULL,NULL,4,NULL,NULL,'SH028610570000'),('EP018654570041','Harald Lesch zeigt die Gefahr, die in der Süße liegt, und beleuchtet die Geschichte des Zuckers.','Vorsicht, Zucker! - Die verborgene Gefahr',_binary '','DEU','Leschs Kosmos',NULL,NULL,4,NULL,NULL,'SH018654570000'),('EP016889010183','Nelson Müller zeigt in dieser Folge unter anderem, was in den verschiedenen Käsesorten steckt.','Nelson Müllers Käse-Check',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP012692060035','A Scotland Yard detective on vacation harasses an island resident.','Trenchard\'s Last Case',_binary '','GBR','Bergerac',NULL,NULL,4,NULL,NULL,'SH012692060000'),('EP026118500010','Can or should you ever negotiate with groups who use terror tactics?','Talking to Terrorists',_binary '','GBR','Friends & Foes: A Narrative History of Diplomacy',NULL,NULL,4,NULL,NULL,'SH026118500000'),('EP033199040003','In 2012, five-year-old April Jones disappeared while playing with friends in a Welsh village.','Mark Bridger: The Killer In The Village',_binary '','GBR','British Police: Our Toughest Cases',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17399410_e_h3_aa.jpg',4,NULL,NULL,'SH033199040000'),('EP019692430071','Immer wenn Alf Baumwollwatte isst, wird er high und tanzt und singt wie Frank Sinatra.','Im Baumwollrausch',_binary '','DEU','ALF',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016196_e_h3_ab.jpg',4,NULL,NULL,'SH019692430000'),('EP033110740005','Exploring the history of tools from their Paleolithic roots to building modern day skyscrapers.','Screwdriver',_binary '','GBR','Toolbox',NULL,NULL,4,NULL,NULL,'SH033110740000'),('EP012595540165','Ray\'s latest manipulative plan involves constantly turning down Debra.','The Power of No',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926318_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP024531090097','Toya and Eugene contemplate celebrating their 10-year anniversary with their friends overseas.','Black Love',_binary '','GBR','Married to Medicine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15943504_e_h3_aa.jpg',4,NULL,NULL,'SH024531090000'),('EP019692430075','Alf hat sich über Willies Computer in die Börse eingeschaltet und macht seitdem pausenlos Gewinn.','Wie gewonnen, so zeronnen',_binary '','DEU','ALF',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016192_e_h3_ab.jpg',4,NULL,NULL,'SH019692430000'),('EP019692430074','Willie wird nach einer Folge von `Crimestoppers\' als Heiratsschwindler verdächtigt und festgenommen.','Der Heiratsschwindler',_binary '','DEU','ALF',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016195_e_h3_ab.jpg',4,NULL,NULL,'SH019692430000'),('EP028610570021','Nick Nolte\'s lifelong fondness for drugs and alcohol grew into a serious addiction.','Nick Nolte',_binary '','GBR','Celebrity Damage Control',NULL,NULL,4,NULL,NULL,'SH028610570000'),('EP019692430072','Alf spielt sich als superschlauer Psychologe auf, als die Tanners ihn um einen Rat fragen.','Ein Seelenkundler für den Hausgebrauch',_binary '','DEU','ALF',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1016189_e_h3_ac.jpg',4,NULL,NULL,'SH019692430000'),('EP018895050959','Jerry hat es mit Hamstern zu tun. Beim Tontaubenschießen kommt es zu einer Verfolgungsszene.','Hamsteralarm; Tontaubenschießen; Zügle deinen Zorn; Tom, der Vampir',_binary '','DEU','Die Tom und Jerry Show',NULL,NULL,4,NULL,NULL,'SH018895050000'),('EP018895050958','Diesmal wird Tom aufgrund seiner Verkleidung Opfer einer verhängnisvollen Verwechslung.','Der falsche Fuchs; Die verlorenen Murmeln; Jerry und das Nachtleben; Das Stimmwunder',_binary '','DEU','Die Tom und Jerry Show',NULL,NULL,4,NULL,NULL,'SH018895050000'),('EP021518800041','Highlights coverage of the X-Trial World Championship.','Bilbao',_binary '','GBR','FIM X - Trial World Championship',NULL,NULL,4,NULL,NULL,'SH021518800000'),('EP020793730025','Vorbereitungen und achten darauf, dass die Pinata keinen Schaden erleidet.','Viva la Pinata',_binary '','DEU','Mouk, der Weltreisebär',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10198266_e_h3_aa.jpg',4,NULL,NULL,'SH020793730000'),('EP020793730020','Mouk und Chavapa borgen sich in Senegal einen Fahrradkorb von Bouba, für ein Picknick.','Aus alt mach neu',_binary '','DEU','Mouk, der Weltreisebär',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9093679_e_h3_aa.jpg',4,NULL,NULL,'SH020793730000'),('EP020793730021','In Cassandras Dorf auf Kreta herrscht große Aufregung. Das Radrennen soll bald beginnen.','Das Fahrradrennen',_binary '','DEU','Mouk, der Weltreisebär',NULL,NULL,4,NULL,NULL,'SH020793730000'),('EP029939730011','The Monchhichi are eager to taste Bess\' new special chubby chhinana cake.','The Monchhi-Pastry Of The Year',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15262221_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP020793730023','Mouk und Chavapa treffen in Venezuela ihre Freunde Raina und Joropo.','Mein Freund, der Delfin',_binary '','DEU','Mouk, der Weltreisebär',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9719166_e_h3_aa.jpg',4,NULL,NULL,'SH020793730000'),('EP013006400221','The rejected bachelors get an opportunity to present their sides of the story.','The Men Tell All',_binary '','GBR','The Bachelorette',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14410997_e_h3_aa.jpg',4,NULL,NULL,'SH013006400000'),('EP013006400222','The rejected bachelors get an opportunity to present their sides of the story.','The Men Tell All',_binary '','GBR','The Bachelorette',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14411000_e_h3_aa.jpg',4,NULL,NULL,'SH013006400000'),('EP022016040050','A robot like a camera on wheels lands on the planet, flashing, bleeping and taking photos.','Snapper',_binary '','GBR','Clangers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13024647_e_h3_aa.jpg',4,NULL,NULL,'SH022016040000'),('EP024626900008','Trio Daphne present peculiar characters, whacky scenarios, dodgy remarks and curious observations.','Murder',_binary '','GBR','Daphne Sounds Expensive',NULL,NULL,4,NULL,NULL,'SH024626900000'),('EP034254190014','Der Moderator diskutiert mit Gästen und Fachexperten über gesellschaftsrelevante Themen.','Mein Kind ist anders; Faszination Royals?',_binary '','DEU','Marco Schreyl',NULL,NULL,4,NULL,NULL,'SH034254190000'),('EP025353820044','Diesmal geht es um eine kulinarische Reise auf dem ganzen Globus und in die Backstuben der Nationen.','Die Welt im Backfieber',_binary '','DEU','Top Ten! Der Geschmacks-Countdown',NULL,NULL,4,NULL,NULL,'SH025353820000'),('EP034254190013','Der Moderator diskutiert mit Gästen und Fachexperten über gesellschaftsrelevante Themen.','Partner mit Kindern - Nein danke! / Wenn Helfer Opfer werden',_binary '','DEU','Marco Schreyl',NULL,NULL,4,NULL,NULL,'SH034254190000'),('EP013006400220','The last three remaining bachelors travel to Dallas to meet Rachel\'s family.','',_binary '\0','GBR','The Bachelorette',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14388756_e_h3_aa.jpg',4,NULL,NULL,'SH013006400000'),('EP013006400225','It\'s time for Rachel to make her final decision between the remaining three bachelors. Who will win her heart, and who will go away heartbroken?','Season Finale',_binary '','GBR','The Bachelorette',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14435381_e_h3_aa.jpg',4,NULL,NULL,'SH013006400000'),('EP013867190017','The Cat takes Sally and Nick to visit the fireflies that live in the back yard.','Night Lights',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8539991_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP019734590156','Jane und das FBI sollen den Mord an Charles Whitaker, einem High-Tech-Kartographen, untersuchen.','Buchstaben im Kreis',_binary '','DEU','The Mentalist',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10381572_e_h3_aa.jpg',4,NULL,NULL,'SH019734590000'),('EP022016040051','The Iron Chicken tries to dance but it is just too difficult for her to manage.','The Chicken Waltz',_binary '','GBR','Clangers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13045765_e_h3_aa.jpg',4,NULL,NULL,'SH022016040000'),('EP019734590155','Jane arbeitet für das FBI an einem neuen Fall, bei dem sechs DEA-Agenten erschossen wurden.','Die Lektion',_binary '','DEU','The Mentalist',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10370494_e_h3_aa.jpg',4,NULL,NULL,'SH019734590000'),('EP026904260052','Chloe Ferry ist wieder Co-Moderatorin. Benny und Scott stellen ihre Bromance auf die Probe.','Beste Freunde?',_binary '','DEU','Just Tattoo Of Us',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16701852_e_h3_aa.jpg',4,NULL,NULL,'SH026904260000'),('EP029939730015','When Kauri gets too close to a flower, he comes down with hiccups that make him jump super high.','Hopping Hiccups',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15403596_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP029939730016','Sylvus loses his memory after getting hit on the head. The trio and Leafy must find a remedy.','Looking For Lost Memories',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15403599_e_h3_ab.jpg',4,NULL,NULL,'SH029939730000'),('EP026118500008','The nuclear agreements in Iran and the democratic opening of Burma were achieved through sanctions.','Sanctions: Carrot or Stick?',_binary '','GBR','Friends & Foes: A Narrative History of Diplomacy',NULL,NULL,4,NULL,NULL,'SH026118500000'),('EP026904260050','Joey Essex ist als Co-Moderator unterwegs, als Cameron und Shereece beichten müssen.','Zerbrochene Spiegel',_binary '','DEU','Just Tattoo Of Us',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16736767_e_h3_aa.jpg',4,NULL,NULL,'SH026904260000'),('EP026118500009','David explores how public diplomacy changed in the aftermath of the September 11 attacks.','Public Diplomacy: Talking to the World',_binary '','GBR','Friends & Foes: A Narrative History of Diplomacy',NULL,NULL,4,NULL,NULL,'SH026118500000'),('EP032380950012','Zwei Collie-Mischlinge mit Räude werden gerettet und in einem Haus haben 27 Pudel Hilfe nötig.','Halbtot',_binary '','DEU','Die Hunderetter',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14512040_e_h3_aa.jpg',4,NULL,NULL,'SH032380950000'),('EP032380950013','Der Hunderetter muss zwei Hunde vor dem Hungertod retten und kann sie nicht identifizieren.','Blind Date mit Madam Mim',_binary '','DEU','Die Hunderetter',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14536893_e_h3_aa.jpg',4,NULL,NULL,'SH032380950000'),('EP013032490020','Si and Dave explore Cheshire where they cook a traditional county favourite at Chester Zoo.','Cheshire',_binary '','GBR','The Hairy Bikers\' Food Tour of Britain',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8216347_e_h3_aa.jpg',4,NULL,NULL,'SH013032490000'),('EP032380950011','Die Hunderetter wurden zu einem Tatort gerufen und die Tierschützer müssen acht Hunden helfen.','Mit ein bisschen Liebe',_binary '','DEU','Die Hunderetter',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14488429_e_h3_aa.jpg',4,NULL,NULL,'SH032380950000'),('EP013867190012','The Cat in the Hat takes Nick and Sally to Huff-Puff-Maguff where they fly their kite.','Let\'s Go Fly a Kite!',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8539984_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP029939730009','There\'s a joker in the tree and the trio are determined to find out who it is.','The Joking Tsurus',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15262207_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP034185720007','Die Sendung zeigt, wie Menschen ihre früheren Liebhaber, Verwandten oder Freunde konfrontieren.','Whitney & Tahira',_binary '','DEU','Ghosted: Verliebt und verschwunden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17376118_e_h3_aa.jpg',4,NULL,NULL,'SH034185720000'),('EP013867190007','Nick and Sally learn that not all birds can fly - but that it doesn\'t stop them being fast.','Flight of the Penguin',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,NULL,4,NULL,NULL,'SH013867190000'),('EP027610270080','Es geht darum, ob sich Rosen mit Tulpen vertragen und ob Teebaumöl gegen Bettwanzen hilft.','Folge 11',_binary '','DEU','Meister des Alltags',NULL,NULL,4,NULL,NULL,'SH027610270000'),('EP013867190009','The Cat in the Hat leads Nick and Sally on an expedition; they shrink down to meet Lewis and Clark.','Go Snails Go!',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8539978_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP027610270081','Es geht um die Frage, ob sich die Lebensdauer einer Brille erhöht, wenn man sie ins Eisfach legt.','Folge 12',_binary '','DEU','Meister des Alltags',NULL,NULL,4,NULL,NULL,'SH027610270000'),('EP020657010185','Luis Delgado, der Dannys Haus angezündet hat, ist noch am Leben und setzt seinen Rachefeldzug fort.','Das Leben als Boss',_binary '','DEU','Blue Bloods - Crime Scene New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16112763_e_h3_aa.jpg',4,NULL,NULL,'SH020657010000'),('EP013032490029','Si and Dave travel to Fermanagh and sample the local produce.','Fermanagh',_binary '','GBR','The Hairy Bikers\' Food Tour of Britain',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8454338_e_h3_aa.jpg',4,NULL,NULL,'SH013032490000'),('EP029939730003','The Monchhichi are getting ready for Golden Graft, a ceremony that revitalises the Dream Tree.','Leaf Fever',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15262213_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP020657010183','Als ein Fruchtbarkeitsarzt Opfer eines Angriffs wird, nehmen Danny und Baez die Ermittlungen auf.','Dicker als Wasser',_binary '','DEU','Blue Bloods - Crime Scene New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16108971_e_h3_aa.jpg',4,NULL,NULL,'SH020657010000'),('EP020657010184','Danny und Baez werden zu einem Verbindungshaus gerufen und finden einen toten Erstsemester vor.','Midnight Special',_binary '','DEU','Blue Bloods - Crime Scene New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16109116_e_h3_aa.jpg',4,NULL,NULL,'SH020657010000'),('EP013032490028','Si and Dave try to find the best produce in Anglesey.','Anglesey',_binary '','GBR','The Hairy Bikers\' Food Tour of Britain',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8359808_e_h3_aa.jpg',4,NULL,NULL,'SH013032490000'),('EP029939730005','The Monchhichi are fun-loving creatures that have built their houses in harmony with the Tree.','The Secrecy Plant',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15262216_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP029939730008','Bella and Petunia take off to the grasslands to look for Chhiplop seeds but Petunia returns alone.','Save Bella!',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15403594_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP029939730007','The Monchhichi are fun-loving creatures that have built their houses in harmony with the Tree.','A Tea for Sylvus',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15432431_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP018899740035','The Long Branch Saloon is the local hangout in a small town, until its proprietor goes missing.','Say it Ain\'t So',_binary '','GBR','Murder Comes to Town',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13884932_e_h3_aa.jpg',4,NULL,NULL,'SH018899740000'),('EP029800600009','In Straßburg nimmt sich die Frau eines Gerichtsmediziners mit einer Schusswaffe das Leben.','Der Fall Louis Muller',_binary '','DEU','Täterjagd',NULL,NULL,4,NULL,NULL,'SH029800600000'),('EP018899740036','Erica Vassell disappears after a party, and her brutally murdered body is found days later.','Who Killed Miss Brown Sugar',_binary '','GBR','Murder Comes to Town',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13885019_e_h3_aa.jpg',4,NULL,NULL,'SH018899740000'),('EP027976490498','Die Übertragung erfolgt aus Crans Montana, Schweiz.','Fis Weltcup 2019/20 in Crans Montana - Kombination Frauen - Slalom',_binary '\0','DEU','Ski Alpin',NULL,NULL,4,NULL,NULL,'SH027976490000'),('EP012847870142','Peppa goes for a sleepover at Zoe Zebra\'s house, but the girls are too excited to sleep.','The Sleepover',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990214_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP015402000275','Die Themen: - Makuladegeneration: Welche Therapien gibt es? - Rückenschmerzen: Viele Untersuchungen sind überflüssig.','',_binary '\0','DEU','Visite',NULL,NULL,4,NULL,NULL,'SH015402000000'),('EP030355240005','Princess Diana\'s fatal crash means a busy time for Alison and her fellow psychics.','Death of a Princess',_binary '','GBR','Beyond Black',NULL,NULL,4,NULL,NULL,'SH030355240000'),('EP026904260036','Charlotte Crosby und Stephen Bear zeigen in ihrer Show die spannendsten Tattoos.','Take Cover',_binary '','DEU','Just Tattoo Of Us',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16203834_e_h3_aa.jpg',4,NULL,NULL,'SH026904260000'),('EP026493980061','Playwright Simon Stephens meets Simon Armitage, the poet laureate.','Simon Stephens meets Simon Armitage',_binary '','GBR','Only Artists',NULL,NULL,4,NULL,NULL,'SH026493980000'),('EP030355240002','Colette leaves her dull husband Gavin, then becomes interested in the paranormal.','Colette\'s Story',_binary '','GBR','Beyond Black',NULL,NULL,4,NULL,NULL,'SH030355240000'),('EP030355240003','Collette wants Alison to write a book, but her childhood memories are too disturbing.','An Evil Thing',_binary '','GBR','Beyond Black',NULL,NULL,4,NULL,NULL,'SH030355240000'),('EP012740720297','The team attempt to spend a night at an old prison in Ripon with former inmates for company.','Ripon Prison',_binary '','GBR','Most Haunted',NULL,NULL,4,NULL,NULL,'SH012740720000'),('EP012730850036','The crew of Andromeda encounters a creature called Cetus, once thought to be mythological.','Belly of the Beast',_binary '','GBR','Andromeda',NULL,NULL,4,NULL,NULL,'SH012730850000'),('EP012740720298','A fearful team begin their three-part investigation of the mysterious Standon Hall in Staffordshire.','Standon Hall',_binary '','GBR','Most Haunted',NULL,NULL,4,NULL,NULL,'SH012740720000'),('EP012730850035','The Andromeda crew discovers Kalderons, a species that existed during the time of the Commonwealth.','The Fair Unknown',_binary '','GBR','Andromeda',NULL,NULL,4,NULL,NULL,'SH012730850000'),('EP029800600014','Eine Leiche wird in einem Kanal von Châlons-en-Champagne gefunden. Es wird Suizid vermutet.','Der Fall Stéphane Kameugne',_binary '','DEU','Täterjagd',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14725327_e_h3_aa.jpg',4,NULL,NULL,'SH029800600000'),('EP012757430132','It seems that a female football star\'s quest for perfection may have led to her mortal destruction.','Flag on the Play',_binary '','GBR','CSI: NY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7971464_e_h3_ab.jpg',4,NULL,NULL,'SH012757430000'),('EP030621340078','Berichtet wird über die Entstehung diverser Filme.','Bombshell',_binary '','DEU','Making Of:',NULL,NULL,4,NULL,NULL,'SH030621340000'),('EP012847870137','When a power cut plunges their house into darkness, Peppa and George have fun.','The Power Cut',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990203_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP012757430137','The CSIs discover that car tampering led to the explosion that killed a racing legend.','The Formula',_binary '','GBR','CSI: NY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8002529_e_h3_ab.jpg',4,NULL,NULL,'SH012757430000'),('EP029800600010','Die 18-jährige Hotelfachschülerin Laetitia Perrais verschwindet nach Feierabend spurlos.','Der Fall Laetitia Perrais',_binary '','DEU','Täterjagd',NULL,NULL,4,NULL,NULL,'SH029800600000'),('EP029628430009','Alec Baldwin explores the lives of the comic Amy Schumer, and one of her comedy inspirations.','Amy Schumer/Carol Burnett',_binary '','GBR','Here\'s the Thing',NULL,NULL,4,NULL,NULL,'SH029628430000'),('EP013000420002','Strictly Come Dancing\'s Brendan Cole house hunts in London with his girlfriend.','London',_binary '','GBR','Celebrity Fantasy Homes',NULL,NULL,4,NULL,NULL,'SH013000420000'),('EP013000420005','Music impresario David Gest is looking for an English home and has his heart set on Cambridge.','Cambridge',_binary '','GBR','Celebrity Fantasy Homes',NULL,NULL,4,NULL,NULL,'SH013000420000'),('EP029939730026','Intent on disposing of the monchhibugs once and for all, Aikor invents a new spell.','Kauri, The Monchhibug',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16223537_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP034391900008','Ranger Hamza and the Ramblers walk through the forest to make some bark rubbings.','Bugs and Bark Walk',_binary '','GBR','Let\'s Go for a Walk',NULL,NULL,4,NULL,NULL,'SH034391900000'),('EP034391900009','Ranger Hamza and the Ramblers walk to the meadow to play a game of rounders.','Crocodile and Rounders Walk',_binary '','GBR','Let\'s Go for a Walk',NULL,NULL,4,NULL,NULL,'SH034391900000'),('EP029939730029','The glowing fruits lose their glow and, being in symbiosis with the tree, Sylvus is going blind.','The Monchhibug Stone',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16312758_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP019468621566','Regionalmagazin mit aktueller Berichterstattung von Ereignissen des Tages.','',_binary '\0','DEU','MDR Sachsen-Anhalt heute',NULL,NULL,4,NULL,NULL,'SH019468620000'),('EP012708730093','Raj is upset that he\'s the only one of the four guys not in a relationship.','The Wiggly Finger Catalyst',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8847474_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP034250430005','An officer is mowed down and a suspect cannot remember the name on his fake ID.','',_binary '\0','GBR','Frontline Police 24/7',NULL,NULL,4,NULL,NULL,'SH034250430000'),('EP012708730092','Howard tries to convince Bernadette to live with his mum after they get married.','The Pulled Groin Extrapolation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8845658_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP019468621568','Regionalmagazin mit aktueller Berichterstattung von Ereignissen des Tages.','',_binary '\0','DEU','MDR Sachsen-Anhalt heute',NULL,NULL,4,NULL,NULL,'SH019468620000'),('EP012708730091','Sheldon and Penny\'s battle of wills leaves Amy caught in the middle.','The Infestation Hypothesis',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8812468_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP019468621567','Regionalmagazin mit aktueller Berichterstattung von Ereignissen des Tages.','',_binary '\0','DEU','MDR Sachsen-Anhalt heute',NULL,NULL,4,NULL,NULL,'SH019468620000'),('EP012708730090','Penny worries that she has ruined her relationship with her friends.','The Skank Reflex Analysis',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8814261_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP019671360075','Die Käufer treffen sich im kalifornischen La Habra und stoßen dort auf den König von Palmdale.','Schwer umkämpft',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9806452_e_h3_ab.jpg',4,NULL,NULL,'SH019671360000'),('EP020683970111','A severe weather warning leads the Squirrels to round up all the creatures into the clubhouse.','The Get Indoors Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378185_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP020683970110','The Squirrels meet a chameleon called Cosey and learn about how to blend into their surroundings.','The Camouflage Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378184_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP015989650074','With the help of Yasmin Evans, we\'re raiding the \"Marrying Mum and Dad\" archives.','Ultimate Wedding Do\'s and Don\'ts',_binary '','GBR','Marrying Mum and Dad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15833732_e_h3_aa.jpg',4,NULL,NULL,'SH015989650000'),('EP020683970113','Duggee arranges for the Squirrels to write to some pen pals in far away places.','The Pen Pal Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378187_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP015989650073','Greek gods, monsters and a helicopter ride are all in this mythical wedding.','Greek Mythology',_binary '','GBR','Marrying Mum and Dad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15833723_e_h3_aa.jpg',4,NULL,NULL,'SH015989650000'),('EP020683970112','Duggee and the Squirrels go on an adventure to find a famously shy creature called The Snard.','The Being Quiet Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378186_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP022003840468','Diese Sendung zeigt die täglichen Abenteuer von Alvin und den chaotischen Chipmunks.','Echte Cowboys; Ein eigenes Zimmer; Die Kuss-Verschwörung',_binary '','DEU','Alvinnn!!! und die Chipmunks',NULL,NULL,4,NULL,NULL,'SH022003840000'),('EP013069470132','Jon was left a 13-bed hotel with stunning views by his late mother, but occupancy is flagging.','Westward Ho! Hotel, Folkestone',_binary '','GBR','The Hotel Inspector',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15633320_e_h3_aa.jpg',4,NULL,NULL,'SH013069470000'),('EP013069470131','Alex tackles two hotels - a country inn in the Scottish borders, and a guest house in Cambridge.','You\'re Fired',_binary '','GBR','The Hotel Inspector',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15611149_e_h3_aa.jpg',4,NULL,NULL,'SH013069470000'),('EP013144420268','The guys come across a hideaway filled with history in the Appalachian Mountains.','Hyder\'s Hideaway',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14647701_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP022744110099','Danger Mouse inherits the ancient but spritely MK3 car after the beloved MK4 gets jammed-up.','Grand Stressed Auto',_binary '','GBR','Danger Mouse',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15925576_e_h3_aa.jpg',4,NULL,NULL,'SH022744110000'),('EP031060170007','Dr Aminul Hoque tells the story of the thousands of Bangladeshi families who settled in the UK.','British Bangladeshis',_binary '','GBR','A Very British History',NULL,NULL,4,NULL,NULL,'SH031060170000'),('EP022003840467','Die Chipeetes möchte einen Tourbus. Jeanette setzt einen neuen Trend. Theodore möchte Held sein.','Der Tourbus; Sie hat Stil; Superhelden',_binary '','DEU','Alvinnn!!! und die Chipmunks',NULL,NULL,4,NULL,NULL,'SH022003840000'),('EP013144420267','Frank jumps for joy as he and Mike pick a recently closed toy museum.','Frank\'s Big Day',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14647646_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP024705250039','The Victoria Diggers might have found a multi-million-dollar load, but they need help extracting it.','',_binary '\0','GBR','Aussie Gold Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16832760_e_h3_aa.jpg',4,NULL,NULL,'SH024705250000'),('EP013144420266','Mike and Frank discover a stash of untouched inventory, just outside of Washington, DC.','Pedal Pushers',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14647590_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP022744110098','When a teenage Squawk goes on the rampage, DM summons her Twistyverse counterpart.','Twysted Sister',_binary '','GBR','Danger Mouse',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15925572_e_h3_aa.jpg',4,NULL,NULL,'SH022744110000'),('EP012708730098','Leonard and Penny try to hang out alone as friends for the first time since they broke up.','The Ornithophobia Diffusion',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8921502_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730097','Amy is heartbroken after Penny and Bernadette went shopping for bridesmaid dresses without her.','The Isolation Permutation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8902622_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP032619240001','Exploring the 55 kilometres of tunnels that are hidden beneath Gibraltar.','Gibraltar',_binary '','GBR','Underground Worlds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17100902_e_h3_aa.jpg',4,NULL,NULL,'SH032619240000'),('EP012708730096','Leonard questions his feelings for Priya when he kisses a girl he meets in the comic book store.','The Good Guy Fluctuation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8871328_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730095','Sheldon\'s mother visits and he gets annoyed and jealous when everyone likes her.','The Rhinitis Revelation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8881061_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP032619240003','A look at some of Switzerland\'s 300,000 subterranean bunkers and a network of man-made tunnels.','Switzerland',_binary '','GBR','Underground Worlds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17100904_e_h3_aa.jpg',4,NULL,NULL,'SH032619240000'),('EP012708730094','Sheldon\'s old nemesis Wil Wheaton returns and invites everyone to a housewarming party.','The Russian Rocket Reaction',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8857255_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP032619240002','An exploration of Sweden\'s passion for underground spaces, with a total of 65,000 nuclear bunkers.','Sweden',_binary '','GBR','Underground Worlds',NULL,NULL,4,NULL,NULL,'SH032619240000'),('EP013085690635','Greg James discovers what happens when a couch whooshes off a family\'s car and into a llama\'s field.','A Couch for Llama',_binary '','GBR','Cbeebies Bedtime Stories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16452462_e_h3_aa.jpg',4,NULL,NULL,'SH013085690000'),('EP019576370143','Der Quizshow-Kandidat Saul Singer wird vom Publikum geliebt und von Quizmaster Drew gehasst.','Tödliche Gameshow',_binary '','DEU','Diagnose: Mord',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659944_e_h3_aa.jpg',4,NULL,NULL,'SH019576370000'),('EP006939640959','Wettervorhersage.','',_binary '\0','DEU','Wetter',NULL,NULL,4,NULL,NULL,'SH006939640000'),('EP012847870116','Mummy and Daddy Pig let Peppa and George put their coats on and go outside to look at the stars.','Stars',_binary '','GBR','Peppa Pig',NULL,NULL,4,NULL,NULL,'SH012847870000'),('EP019576370147','Eine Prostituierte wird unter mysteriösen Umständen ermordet. Mark und Steve ermitteln in dem Fall.','Aus der Vergangenheit (1)',_binary '','DEU','Diagnose: Mord',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659970_e_h3_aa.jpg',4,NULL,NULL,'SH019576370000'),('EP012949680191','Michael heads for Maltby, where he investigates the high-octane sport of whippet racing.','Maltby to Hinckley',_binary '','GBR','Great British Railway Journeys',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16503682_e_h3_aa.jpg',4,NULL,NULL,'SH012949680000'),('EP012949680190','In Edale, in the beautiful Peak District, Michael joins ramblers in walking country.','Manchester to Elsecar',_binary '','GBR','Great British Railway Journeys',NULL,NULL,4,NULL,NULL,'SH012949680000'),('EP025933580041','Als ein Rocador droht einen Vulkan zum Ausbruch zu bringen, nimmt Elena Hilfe in Anspruch.','Eine Lava-Geschichte',_binary '','DEU','Elena von Avalor',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15731419_e_h3_aa.jpg',4,NULL,NULL,'SH025933580000'),('EP012708730089','Koothrappali becomes Sheldon\'s new flatmate, and Bernadette receives her PhD.','The Roommate Transmogrification',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8649438_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP020683970106','When Mole was young he wanted to be a stunt mole. Duggee and the squirrels help him with his dream.','The Glasses Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14765244_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP024705250040','The Gold Gypsies\' tenacity is rewarded with their biggest nugget of the season.','',_binary '\0','GBR','Aussie Gold Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16961826_e_h3_aa.jpg',4,NULL,NULL,'SH024705250000'),('EP020683970108','Duggee and the Squirrels do some detective work to reunite stray ducklings with their mum.','The Duck Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378182_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP024705250041','Scrappers boss Alex Stead gambles his remaining cash on bigger machinery.','',_binary '\0','GBR','Aussie Gold Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16961832_e_h3_aa.jpg',4,NULL,NULL,'SH024705250000'),('EP020683970107','Duggee and the Squirrels help a lion learn how to brush his teeth.','The Tooth Brushing Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378181_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP020683970109','It\'s Duggee\'s Day Off and the Squirrels show up to tell him about their adventures.','The Day Off Badge',_binary '','GBR','Hey Duggee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16378183_e_h3_aa.jpg',4,NULL,NULL,'SH020683970000'),('EP024229091003','Die Sendung zeigt aktuelle Berichte und Hintergründe zu brisanten Themen aus Bayern.','',_binary '\0','DEU','Abendschau',NULL,NULL,4,NULL,NULL,'SH024229090000'),('EP024229091004','Die Sendung zeigt aktuelle Berichte und Hintergründe zu brisanten Themen aus Bayern.','',_binary '\0','DEU','Abendschau',NULL,NULL,4,NULL,NULL,'SH024229090000'),('EP025933580037','Armando verliert das Vertrauen in seine Fähigkeit, die königliche Handelsmesse zu leiten.','Pech oder Glück',_binary '','DEU','Elena von Avalor',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15657433_e_h3_aa.jpg',4,NULL,NULL,'SH025933580000'),('EP024229091005','Die Sendung zeigt aktuelle Berichte und Hintergründe zu brisanten Themen aus Bayern.','',_binary '\0','DEU','Abendschau',NULL,NULL,4,NULL,NULL,'SH024229090000'),('EP019729600119','Die Bernauer Straße - hier verlief nach dem Kriegsende 1945 die Sektorengrenze zwischen dem sowjetischen und dem französischen Sektor. Nicht mitten auf der Straße war die Grenzlinie, sie ging entlang der Häuserfassaden.','Die Bernauer Straße',_binary '','DEU','Geheimnisvolle Orte',NULL,NULL,4,NULL,NULL,'SH019729600000'),('EP012617000102','When the farm is covered in snow, the farmer is snowed inside the farmhouse.','Snowed In',_binary '','GBR','Shaun the Sheep',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8403788_e_h3_aa.jpg',4,NULL,NULL,'SH012617000000'),('EP012617000107','Bitzer has caught a cold, and the farmer decides to tuck him up in the house to recover.','Fireside Favourite',_binary '','GBR','Shaun the Sheep',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8419915_e_h3_aa.jpg',4,NULL,NULL,'SH012617000000'),('EP019729600113','Der Film widmet sich dem Kurfürstendamm und erzählt von Aufstieg, Verfall sowie Sehnsucht.','Der Kurfürstendamm - Boulevard',_binary '','DEU','Geheimnisvolle Orte',NULL,NULL,4,NULL,NULL,'SH019729600000'),('EP016520760252','Ohne mehr Windräder würde eine kostengünstige Energiewende in Deutschland scheitern.','Das Ende der Energiewende?',_binary '','DEU','ZDFzoom',NULL,NULL,4,NULL,NULL,'SH016520760000'),('EP030545220009','Aki must set aside a petty rivalry with Bert Wily in order to stop Chemistry Man.','Unfriendly Competition',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15837457_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP019671360087','Die Geschäftemacher reisen nach Lake Elsinore in Kalifornien und begegnen einigen Schätzern.','Nicht von dieser Welt',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9806453_e_h3_ab.jpg',4,NULL,NULL,'SH019671360000'),('EP030545220008','An unscheduled TV appearance sets Ice Man on a misguided mission.','Nice on Ice',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15776813_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP031652180005','Bauunternehmer Angerer macht Eva ein attraktives Kaufangebot. Alles scheint sich gut zu fügen.','Die Entdeckung',_binary '','DEU','Racko: Ein Hund für alle Fälle',NULL,NULL,4,NULL,NULL,'SH031652180000'),('EP031652180004','Flori versucht, sich in der fremden Umgebung zurechtzufinden und freundet sich mit Fee an.','Der Unfall',_binary '','DEU','Racko: Ein Hund für alle Fälle',NULL,NULL,4,NULL,NULL,'SH031652180000'),('EP030545220002','Aki struggles with the side-effects of his newly replicated Drill Man schematics.','Drilling Deep',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15776806_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP021903090017','In Willis Quiz Quark Club wird wieder jede Menge Quark erzählt.','',_binary '\0','DEU','Willis Quiz Quark Club',NULL,NULL,4,NULL,NULL,'SH021903090000'),('EP029961620058','In Wagtail Woods one little bird, Becca, and her Bunch of friends, are ever ready for adventure.','Becca\'s Big Decision',_binary '','GBR','Becca\'s Bunch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16154762_e_h3_aa.jpg',4,NULL,NULL,'SH029961620000'),('EP021903090016','Wer hat die Brille erfunden? Woher kommt die Brez\'n? Warum heißt die Sternschnuppe Sternschnuppe?','Folge 20',_binary '','DEU','Willis Quiz Quark Club',NULL,NULL,4,NULL,NULL,'SH021903090000'),('EP027786700047','Mina und Karen riechen eine Menge Profit in einem Doppelhaus in der Talbott Street.','Das Stadthaus Makeover',_binary '','DEU','Good Bones - Mutter, Tochter, Home-Makeover',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17142106_e_h3_aa.jpg',4,NULL,NULL,'SH027786700000'),('EP029961620057','In Wagtail Woods one little bird, Becca, and her Bunch of friends, are ever ready for adventure.','Steven\'s Surprise',_binary '','GBR','Becca\'s Bunch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16154750_e_h3_aa.jpg',4,NULL,NULL,'SH029961620000'),('EP018439100079','Ausgerechnet Olli Schwacke! Paul Dänning kann es kaum glauben.','Teufelsbrück',_binary '','DEU','Großstadtrevier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11438574_e_h3_aa.jpg',4,NULL,NULL,'SH018439100000'),('EP014080771751','Today\'s live racing action from Ludlow, Taunton, Clonmel and Meydan..','',_binary '\0','GBR','Live: Racing',NULL,NULL,4,NULL,NULL,'SH014080770000'),('EP014080771752','Today\'s live racing action from Wincanton and Musselburgh..','',_binary '\0','GBR','Live: Racing',NULL,NULL,4,NULL,NULL,'SH014080770000'),('EP034241610002','How the Royal Princes risked life and limb to serve the country\'s military.','',_binary '\0','GBR','Royals In Wartime',NULL,NULL,4,NULL,NULL,'SH034241610000'),('EP027786700048','Diesmal geht es erneut in die Talbott Street, wo sich Mina und Karen um den zweiten Teil kümmern.','Das Türenhaus Makeover',_binary '','DEU','Good Bones - Mutter, Tochter, Home-Makeover',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17142108_e_h3_aa.jpg',4,NULL,NULL,'SH027786700000'),('EP027786700049','Mina und Karen wollen ein Haus in Fountain Square besichtigen, das renovierungsbedürftig ist.','Das Americana Haus Makeover',_binary '','DEU','Good Bones - Mutter, Tochter, Home-Makeover',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17031576_e_h3_aa.jpg',4,NULL,NULL,'SH027786700000'),('EP030545220015','Guts Man tries to undo Dr Light\'s eco-friendly disposal of trash in Silicon City.','Trust Your Guts, Man!',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15885396_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP019388320479','Rollins hat eine Tochter zur Welt gebracht und trifft eine folgenschwere Entscheidung.','Romeo und Julia',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16469476_e_h3_aa.jpg',4,NULL,NULL,'SH019388320000'),('EP026279310673','Das Thema lautet unter anderem: \"Uganda, Heimat von Weißer Jäger, schwarzes Herz \".','Uganda / Mallorca / Tours',_binary '','DEU','Stadt Land Kunst',NULL,NULL,4,NULL,NULL,'SH026279310000'),('EP032438630001','Beyblade Burst erzählt die Geschichte einer Gruppe, die aus leidenschaftlichen Bladers besteht.','Zeit den Turbo aufzudrehen!',_binary '','DEU','Beyblade Burst',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16083548_e_h3_aa.jpg',4,NULL,NULL,'SH032438630000'),('EP031742850007','Three groups of amateur horticulturists head for the Chelsea Flower Show.','',_binary '\0','GBR','Real Gardens',NULL,NULL,4,NULL,NULL,'SH031742850000'),('EP031742850006','Seeking out new seeds, plants and trees is the order of the day as Ann-Marie revisits Lisa Jacobson.','',_binary '\0','GBR','Real Gardens',NULL,NULL,4,NULL,NULL,'SH031742850000'),('EP030545220010','Fire Man and Wave Man team up to evaporate the city\'s water supply. Mega Man teams up with Suna.','Opposites Attract',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15837455_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP031742850005','Monty, Carol and Ann-Marie go to work with amateur gardeners, in Felixstowe, Stockport and Norfolk.','',_binary '\0','GBR','Real Gardens',NULL,NULL,4,NULL,NULL,'SH031742850000'),('EP026279310676','Das Thema lautet diesmal unter anderem: \"Die Hügel Ruandas von Scholastique Mukasonga\".','Scholastique Mukasongas Ruanda / Mailand / Marokko',_binary '','DEU','Stadt Land Kunst',NULL,NULL,4,NULL,NULL,'SH026279310000'),('EP030545220012','When Ice Man decides to be a hero, Mega Man steps down from the hero business.','I.C.E. (In Case of Emergency)',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15868188_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP030545220011','Mega Man tries to save Dr. Light from a date with Mari, who\'s actually Hypno Woman in disguise.','Tripping the Light Fantastic',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15788129_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP030545220014','Mega Man tries a quick fix using Hypno Woman\'s powers to rehabilitate Drill Man.','Drill of the Hunt',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15868198_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP026279310675','Das Thema lautet unter anderem: \"Jules Verne, die Reise zum Mittelpunkt der Bucht von Vigo\".','Die Bucht von Vigo und Jules Verne / Ukraine / Verdun',_binary '','DEU','Stadt Land Kunst',NULL,NULL,4,NULL,NULL,'SH026279310000'),('EP030545220013','Student elections get blown out of proportion when Air Man lends his support to Peter Punk.','Running Wild',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15788132_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP034331890003','Watch all the coverage of the official Olympic qualification series for BMX Racing at Tokyo 2020.','Bathurst, Australia',_binary '','GBR','Olympic Qualifying BMX Racing',NULL,NULL,4,NULL,NULL,'SH034331890000'),('EP020063520053','Das Sportmagazin begleitet Athleten vor, während und nach intensiven Wettkämpfen.','',_binary '\0','DEU','Vision Gold',NULL,NULL,4,NULL,NULL,'SH020063520000'),('EP030370410001','Eve is stunned to be presented with her dream opportunity, a secret, off-the-books department.','I\'ll Deal With Him Later',_binary '','GBR','Killing Eve',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15271406_e_h3_aa.jpg',4,NULL,NULL,'SH030370410000'),('EP030370410002','When a Russian politician is assassinated, Eve is charged with guarding the only witness.','Nice Face',_binary '','GBR','Killing Eve',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15269959_e_h3_aa.jpg',4,NULL,NULL,'SH030370410000'),('EP013363570040','On the menu: tasty crusted cod with \"My Mashy Peas\", tartare sauce and warm garden salad.','Tasty Crusted Cod',_binary '','GBR','Jamie\'s 30 Minute Meals',NULL,NULL,4,NULL,NULL,'SH013363570000'),('EP019664820055','Während einer der `Cowboys\' Baumaterialien auflädt, schwelgt der andere in Erinnerungen.','Haifa, Haifa!',_binary '','DEU','Asphalt-Cowboys',NULL,NULL,4,NULL,NULL,'SH019664820000'),('EP012615430489','A wallet and key-stealing monkey, a semi-skilled scientist, and lots of bicycle accidents.','',_binary '\0','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP029259590025','Nikki meets England and Manchester City\'s goal machine, Raheem Sterling.','Raheem Sterling',_binary '','GBR','Nikki Lilly Meets',NULL,NULL,4,NULL,NULL,'SH029259590000'),('EP019388320480','Ein Mann wird tot aufgefunden. Seine Ehefrau behauptet daraufhin, er habe sie vergewaltigt.','Zünglein an der Waage',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16489103_e_h3_aa.jpg',4,NULL,NULL,'SH019388320000'),('EP019388320481','Im Fall einer Prostituierten herrscht Unklarheit, ob es sich um Mord oder Selbstmord handelt.','Innerlich tot',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16489109_e_h3_aa.jpg',4,NULL,NULL,'SH019388320000'),('EP031742850012','Monty Don, Carol Klein and Ann-Marie Powell follow the progress of enthusiastic gardeners.','',_binary '\0','GBR','Real Gardens',NULL,NULL,4,NULL,NULL,'SH031742850000'),('EP012597200262','Realising that he has no friends, Frasier makes an on-air appeal for a new pal.','The Friend',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635488_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP012597200265','Niles shows up on Frasier\'s doorstep when his relationship with Maris hits a low.','The Last Time I Saw Maris',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635485_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP013363570031','Jamie prepares a delicious feast of wonky summer pasta, herby salad, and pear drop tartlets.','Wonky Summer Pasta',_binary '','GBR','Jamie\'s 30 Minute Meals',NULL,NULL,4,NULL,NULL,'SH013363570000'),('EP022574680027','As the hunters close in on Jess and Ella, ex-military intelligence officer Mervyn takes a huge risk.','',_binary '\0','GBR','Hunted',NULL,NULL,4,NULL,NULL,'SH022574680000'),('EP022574680028','Jess and Ella are running scared in Yorkshire. Ben and Rob bid to get one step ahead using an Xbox.','',_binary '\0','GBR','Hunted',NULL,NULL,4,NULL,NULL,'SH022574680000'),('EP017030431999','Dean möchte Toni mit einem schicken Auto beeindrucken, doch dann kommt die Polizei dazwischen.','Die Tollsten Typen',_binary '','DEU','Berlin - Tag & Nacht',NULL,NULL,4,NULL,NULL,'SH017030430000'),('EP012615430479','A child is squashed by a wardrobe, a teenager falls over a cliff and a paraglider feels sick.','Gold',_binary '','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP029383020108','Volker Kugel zeigt den Rückschnitt eines Zwetschgenbaums. Im Interview geht es um Garten-Recht.','Folge 128',_binary '','DEU','Schnittgut. Alles aus dem Garten',NULL,NULL,4,NULL,NULL,'SH029383020000'),('EP014788370015','Die neuesten Produkte aus der Welt der Diamanten erfüllen den Raum mit einem luxuriös-edlen Flair.','',_binary '\0','DEU','Welt der Diamanten',NULL,NULL,4,NULL,NULL,'SH014788370000'),('EP029259590013','Nikki meets football legend Gary Lineker and his dog Snoop to talk about homework and the World Cup.','Gary Lineker',_binary '','GBR','Nikki Lilly Meets',NULL,NULL,4,NULL,NULL,'SH029259590000'),('EP014788370016','Die neuesten Produkte aus der Welt der Diamanten erfüllen den Raum mit einem luxuriös-edlen Flair.','',_binary '\0','DEU','Welt der Diamanten',NULL,NULL,4,NULL,NULL,'SH014788370000'),('EP032809980043','Film mogul Muswell Lemming is coming to talk about filming one of Patrick\'s books.','Right Hand Man',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP030545220031','Regular robo-kid Aki Light discovers secret programming that transforms him into Mega Man.','Power Cycle',_binary '','GBR','Mega Man: Fully Charged',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15885401_e_h3_aa.jpg',4,NULL,NULL,'SH030545220000'),('EP012615430476','A hover board destroys an office, a man falls through a ceiling, and an ostrich mugs a child.','',_binary '\0','GBR','You\'ve Been Framed!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15056826_e_h3_aa.jpg',4,NULL,NULL,'SH012615430000'),('EP012615430475','Featuring a party trick gone wrong, a wave interrupting a photo shoot and a lesson in balloons.','',_binary '\0','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP032809980045','Rather than go on a big family holiday the Glovers decide that each couple will go somewhere alone.','In All Directions',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP032809980044','Karen and Howard are going to a weekend pop festival where they will be camping.','Pop Around the Clock',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP030587780003','Laut Lloyd und den Elementarmeistern soll eine Liverübertragung den Bürgern wieder Hoffnung geben.','Drachen anlocken',_binary '','DEU','Ninjago - Im Land der Drachen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15794019_e_h3_aa.jpg',4,NULL,NULL,'SH030587780000'),('EP013144420247','Mike and Frank look back on their hardest excavations ever, including relics buried underground.','Toughest Digs',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12367584_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP030587780004','Jay, Kai und Zane werden immer noch gefangen gehalten. Gemeinsam entwerfen sie einen Plan.','Wie man einen Drachen baut',_binary '','DEU','Ninjago - Im Land der Drachen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15794021_e_h3_aa.jpg',4,NULL,NULL,'SH030587780000'),('EP013144420246','This episode features the grooviest picks from the disco decade.','Best of the 70\'s',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12354726_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP012597200252','A great aunt\'s last request causes anxiety for the Crane brothers.','Martin Does It His Way',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635480_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP019580552845','Die Rundschau ist die tägliche Nachrichtensendung des Bayerischen Fernsehens.','vom 27.02.2020, 18:30 Uhr',_binary '','DEU','Rundschau',NULL,NULL,4,NULL,NULL,'SH019580550000'),('EP025829010025','Liverpool\'s heart hospital copes with huge demand and complex patients on one dramatic day.','',_binary '\0','GBR','Hospital',NULL,NULL,4,NULL,NULL,'SH025829010000'),('EP019580552844','Die Rundschau ist die tägliche Nachrichtensendung des Bayerischen Fernsehens.','vom 26.02.2020, 18:30 Uhr',_binary '','DEU','Rundschau',NULL,NULL,4,NULL,NULL,'SH019580550000'),('EP013144420245','A meeting with Captain Kirk and a seat in the original Batmobile.','Best of the 60\'s',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12346709_e_h3_ab.jpg',4,NULL,NULL,'SH013144420000'),('EP012597200256','Their decision to work together makes Martin think Frasier and Niles both need therapy.','Shrink Rap',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635479_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP034356790001','Die scheinbar harmlosen Fälle der Privatdetektivin Doro Decker neigen zu bedrohlichen Eskalationen.','Masken',_binary '','DEU','Dunkelstadt',NULL,NULL,4,NULL,NULL,'SH034356790000'),('EP019664820031','Markus muss dieses Mal schon drei Uhr nachts aus den Federn, um Kohlköpfe zu transportieren.','In guter Gesellschaft',_binary '','DEU','Asphalt-Cowboys',NULL,NULL,4,NULL,NULL,'SH019664820000'),('EP019664820032','Marc Panzer steht auf dem Weg nach Belgien unter Druck und muss die Büroarbeit nebenbei erledigen.','Was Mann tun muss',_binary '','DEU','Asphalt-Cowboys',NULL,NULL,4,NULL,NULL,'SH019664820000'),('EP031826890221','Es werden Themen rund um Verbraucher, Gesundheit, Ernährung, Reise, Haus und Garten beleuchtet.','',_binary '\0','DEU','Die Ratgeber',NULL,NULL,4,NULL,NULL,'SH031826890000'),('EP012597200247','On the advice of his friends, Frasier declares his love for Kate, but she has other plans.','It\'s Hard to Say Goodbye if You Won\'t Leave',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635487_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP012597200248','Frasier\'s chances of becoming wine club president may be scotched because of Niles.','Kisses Sweeter Than Wine',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635482_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP012597200249','Kate encourages Bulldog\'s on-air bullying of Frasier, so the doctor and Roz retaliate.','Leapin\' Lizards',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635494_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP019559930914','In Heiligenhafen an der Ostsee ist Mike Süsser bei Jessika Hinsch im Lokal `Tamatsu\' zu Gast.','Der Profi kommt - Tamatsu, Heiligenhafen',_binary '','DEU','Mein Lokal, Dein Lokal',NULL,NULL,4,NULL,NULL,'SH019559930000'),('EP019559930915','Marc Bordt serviert im `Falkenthal Seafood\' am Grömitzer Strand Fisch und Meeresfrüchte.','Der Profi kommt - Falkenthal Seafood, Grömitz',_binary '','DEU','Mein Lokal, Dein Lokal',NULL,NULL,4,NULL,NULL,'SH019559930000'),('EP016932800048','Al and Gord work to rescue a loaded semi that\'s teetering on the edge of a 300-foot drop.','You Can\'t Argue With Gravity',_binary '','GBR','Highway Thru Hell',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12153418_e_h3_ac.jpg',4,NULL,NULL,'SH016932800000'),('EP031826890223','Es werden Themen rund um Verbraucher, Gesundheit, Ernährung, Reise, Haus und Garten beleuchtet.','',_binary '\0','DEU','Die Ratgeber',NULL,NULL,4,NULL,NULL,'SH031826890000'),('EP031826890222','Es werden Themen rund um Verbraucher, Gesundheit, Ernährung, Reise, Haus und Garten beleuchtet.','',_binary '\0','DEU','Die Ratgeber',NULL,NULL,4,NULL,NULL,'SH031826890000'),('EP019369320095','Molly kehrt von einem achtwöchigen Autorenseminar in Iowa zurück und Mike ist überglücklich.','Molly schreibt ein Buch',_binary '','DEU','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10637944_e_h3_ab.jpg',4,NULL,NULL,'SH019369320000'),('EP016391880319','Die Sendung berichtet wöchentlich über politische Themen und aktuelle Geschehnisse aus aller Welt.','122',_binary '','DEU','auslandsjournal',NULL,NULL,4,NULL,NULL,'SH016391880000'),('EP013363570015','Jamie Oliver shows how to prepare foccacia stuffed with prosciutto and celeriac remoulade.','Stuffed Focaccia',_binary '','GBR','Jamie\'s 30 Minute Meals',NULL,NULL,4,NULL,NULL,'SH013363570000'),('EP025829710003','Die Hafenmitarbeiter haben nur wenig Zeit, um 5.700 Tonnen Ladung auf einen Lastkahn umzulagern.','Folge 3',_binary '','DEU','Mega Shippers - Die Profis vom Frachthafen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13011798_e_h3_aa.jpg',4,NULL,NULL,'SH025829710000'),('EP012597200245','Frasier ventures into a shopping mall for the first time in his life.','Frasier Grinch',_binary '','GBR','Frasier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1635486_e_h3_ac.jpg',4,NULL,NULL,'SH012597200000'),('EP019580552838','Die Rundschau ist die tägliche Nachrichtensendung des Bayerischen Fernsehens.','vom 26.02.2020, 16:00 Uhr',_binary '','DEU','Rundschau',NULL,NULL,4,NULL,NULL,'SH019580550000'),('EP022073230017','The studio gets a visit from dancer Marina, amnesiac Danny and identical twins Hayley and Rebecca.','',_binary '\0','GBR','Tattoo Fixers',NULL,NULL,4,NULL,NULL,'SH022073230000'),('EP013144420252','Mike and Frank find behemoth items and getting them home is the hardest part.','Best Of Super Sized Buys',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13918907_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP012608883106','Emma goes to Zara for some medical advice, while Karen and Rob prepare to celebrate with Abz.','Tough Choices',_binary '','GBR','Doctors',NULL,NULL,4,NULL,NULL,'SH012608880000'),('EP022073230016','The parlour gets a visit from drag queen Devon, who wants his barbed-wire tattoo removed.','',_binary '\0','GBR','Tattoo Fixers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12541661_e_h3_aa.jpg',4,NULL,NULL,'SH022073230000'),('EP015402140974','Die Sendung berichtet von der Modelleisenbahn auf der Spielwarenmesse in Nürnberg.','Nürnberger Spielwarenmesse 2020',_binary '','DEU','Eisenbahn-Romantik',NULL,NULL,4,NULL,NULL,'SH015402140000'),('EP012608883105','Sid tries to help Al say goodbye to the Icon, while Emma and Jasmine go on a breakfast date.','Under Pressure',_binary '','GBR','Doctors',NULL,NULL,4,NULL,NULL,'SH012608880000'),('EP032809980021','Patrick\'s accountant Leo has had a fling with Felicity and Leo\'s wife Muriel has found a photo.','An Affair to Forget',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP024895730123','A salesman sells a TV package to Talking Hank that includes a show about vampires.','Hank vs Vampires',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201303_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP032809980020','Patrick is concerned for his mother, living on her own sixty miles away and asks her to stay.','Last Of The Red Hot Mommas',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP024895730122','When Talking Hank runs out of popcorn on movie night, he decides to grow his own corn.','Corn Heads',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201302_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP031760630082','Der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor werden zu Rittern ausgebildet.','Die Klaue des Drachen',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP031547630008','Matt visits a property so dangerous it has to be immediately shut down.','',_binary '\0','GBR','Britain\'s Housing Scandal',NULL,NULL,4,NULL,NULL,'SH031547630000'),('EP024895730121','Talking Angela and Talking Ginger accidentally break Talking Ben\'s newest invention, the Nano-Laser.','The Big Nano Lie',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201299_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP031760630081','Der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor werden zu Rittern ausgebildet.','Das Tor zum Feenpfad',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP031547630009','Matt Allwright investigates the scandal of a rented terrace house that is overcrowded.','',_binary '\0','GBR','Britain\'s Housing Scandal',NULL,NULL,4,NULL,NULL,'SH031547630000'),('EP024895730120','Talking Tom\'s friends are bothering him, but he\'s got a perfect plan to get away from them.','The Other Tom',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201298_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP031760630080','Der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor werden zu Rittern ausgebildet.','Der verfluchte Dolch',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP032809980025','Nanny will be away for some time in Scotland, so Patrick asks a domestic agency for a replacement.','A Domestic Comedy',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP032809980024','Patrick gives up smoking and, to prevent temptation, hides his smoking accessories in a drawer.','Come Back Little Sheba',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP032809980023','Karen wants to get a place of her own but she needs her father\'s permission and he won\'t give it.','The Reluctant Runaway',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP024895730125','Talking Tom is sick of being annoyed by a guy in town, so he has Talking Ben test a new device. Now, whenever someone bothers Tom, he can \'block\' them so he can\'t see or hear them!','Unfriend \'em All!',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17226461_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP032809980022','Patrick returns from holiday to find a letter saying a new flyover will be built through his garden.','Housey Housey',_binary '','GBR','Father, Dear Father',NULL,NULL,4,NULL,NULL,'SH032809980000'),('EP024895730124','The Landlord leaves town for a while and puts the stern teacher Ms Vanthrax in charge of the garage while he\'s away!','The Dance Contest',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17226458_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP019561530364','Ute Altmann sucht Hilfe bei den Detektiven, denn sie vermutet, dass ihr Ehemann sie umbringen will.','Der geheimnisvolle Grabstein',_binary '','DEU','Lenßen & Partner',NULL,NULL,4,NULL,NULL,'SH019561530000'),('EP019360070290','Mr. Burns gewinnt beim Pokern ein Basketballteam. Mr. Burns plant eine neue Sportarena zu bauen.','Ja, diese Biene, die ich meine, die heißt Monty',_binary '','DEU','Die Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1300103_e_h3_ab.jpg',4,NULL,NULL,'SH019360070000'),('EP032099730013','Revisiting a cycle retreat in Spain, a water sports business on the Med, and gite owners in France.','',_binary '\0','GBR','A New Life in the Sun: Where Are They Now?',NULL,NULL,4,NULL,NULL,'SH032099730000'),('EP032099730014','We revisit a couple struggling to bring their favourite pastime to France. And have two twenty-somethings launched their Irish bar on the Costa del Sol?','',_binary '\0','GBR','A New Life in the Sun: Where Are They Now?',NULL,NULL,4,NULL,NULL,'SH032099730000'),('EP032099730012','Revisiting winemakers, a boat-loving couple, and gite owners dreaming of running a restaurant.','',_binary '\0','GBR','A New Life in the Sun: Where Are They Now?',NULL,NULL,4,NULL,NULL,'SH032099730000'),('EP024895730116','Ms Vanthrax has a cold, so she asks Talking Ben to be the substitute teacher for her class.','The Substitute Teacher',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201282_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730115','As mayor, Talking Tom has to attend a fancy charity gala that\'s happening in town.','Fancy Party',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201278_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730114','Talking Hank can\'t wait for his first day on the job as a security guard for the Nerd Night that\'s happening in town, but the job doesn\'t turn out to be quite as fast-paced as he\'d hoped.','Hero Hank',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201273_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP019855851421','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Ostwestfalen-Lippe.','',_binary '\0','DEU','Lokalzeit OWL',NULL,NULL,4,NULL,NULL,'SH019855850000'),('EP019855851422','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Ostwestfalen-Lippe.','',_binary '\0','DEU','Lokalzeit OWL',NULL,NULL,4,NULL,NULL,'SH019855850000'),('EP019585611384','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Duisburg.','',_binary '\0','DEU','Lokalzeit aus Duisburg',NULL,NULL,4,NULL,NULL,'SH019585610000'),('EP019360070289','Bart freundet sich mit Bashir, einem muslimischen Jungen, an und Lisa freut sich über ihren `myPod\'.','Bin runterladen',_binary '','DEU','Die Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1300102_e_h3_ac.jpg',4,NULL,NULL,'SH019360070000'),('EP024895730119','Talking Ginger is feeling left out because the friends in the garage don\'t want to do any kid stuff.','Kids Again',_binary '','GBR','Talking Tom and Friends',NULL,NULL,4,NULL,NULL,'SH024895730000'),('EP019585611383','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Duisburg.','',_binary '\0','DEU','Lokalzeit aus Duisburg',NULL,NULL,4,NULL,NULL,'SH019585610000'),('EP024895730118','Talking Tom finds out that his town has been bumped down to Second Most Friendly town.','The Sixth Friend',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201289_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP019360070287','Lisa und Bart gehen ins Freizeitzentrum. Bart belegt einen Karatekurs und Lisa einen Kunst-Kurs.','Die Chroniken von Equalia',_binary '','DEU','Die Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1300104_e_h3_ab.jpg',4,NULL,NULL,'SH019360070000'),('EP024895730117','Talking Tom has a bad toothache, but he won\'t get it fixed because he\'s terrified of the dentist.','Tom the Brave',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17201285_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP018580260109','Auf dem Weg ins Okto-Labor werden Käpt\'n Barnius und Kwasi von Bombenwürmern angegriffen.','Die Oktonauten und die Bombenwürmer',_binary '','DEU','Die Oktonauten',NULL,NULL,4,NULL,NULL,'SH018580260000'),('EP019360070286','Lisa bemerkt, dass sie ein Talent für Kreuzworträtsel hat und macht bei einem Wettkampf mit.','Das Kreuz mit den Worträtseln',_binary '','DEU','Die Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1300101_e_h3_ab.jpg',4,NULL,NULL,'SH019360070000'),('EP018661100007','Booth und Brennan untersuchen eine stark verweste Leiche, die von Jugendlichen gefunden wurde.','Organische Abfälle und ihre Geheimnisse',_binary '','DEU','Bones - Die Knochenjägerin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3153105_e_h3_ab.jpg',4,NULL,NULL,'SH018661100000'),('EP018661100006','Das forensische Team um Brennan muss einen Toten untersuchen, dessen Füße fehlen.','Der Fall der gerittenen Leiche',_binary '','DEU','Bones - Die Knochenjägerin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3153104_e_h3_ab.jpg',4,NULL,NULL,'SH018661100000'),('EP018661100005','Brennan und Booth untersuchen den Mord an einer Frau mit krimineller Vergangenheit.','Die Mutter, die in die Luft ging',_binary '','DEU','Bones - Die Knochenjägerin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3153103_e_h3_ab.jpg',4,NULL,NULL,'SH018661100000'),('EP034267470001','Neuseelands Vulkane haben einzigartige Landschaften sowie Tierwelten erschaffen.','Das fruchtbare Erbe',_binary '','DEU','Vulkane in Neuseeland',NULL,NULL,4,NULL,NULL,'SH034267470000'),('EP034267470002','Die Reise führt zu den aktivsten Vulkanen Neuseelands. Von White Island bis zum Ruapehu.','Schöpfung und Zerstörung',_binary '','DEU','Vulkane in Neuseeland',NULL,NULL,4,NULL,NULL,'SH034267470000'),('EP015933320225','Claudia und Tarik werden zu der Villa von Brodersen gerufen und betreten ein Schlachtfeld.','Party-Crasher',_binary '','DEU','Notruf Hafenkante',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12099779_e_h3_aa.jpg',4,NULL,NULL,'SH015933320000'),('EP019580071170','Tägliches Boulevard-Magazin im hr-Fernsehen.','',_binary '\0','DEU','maintower',NULL,NULL,4,NULL,NULL,'SH019580070000'),('EP014354640090','A 1950\'s bowling equipment vending machine is brought in, a 1900\'s antique copper pest sprayer.','Pests and Pins',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829331_e_h3_aa.jpg',4,NULL,NULL,'SH014354640000'),('EP012734842536','The latest news, sport, business and weather from the BBC\'s Breakfast team.','',_binary '\0','GBR','Breakfast',NULL,NULL,4,NULL,NULL,'SH012734840000'),('EP019243440190','More adventures with Red and his fearless avian friends!','Compilation 32',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP012734842535','The latest news, sport, business and weather from the BBC\'s Breakfast team.','',_binary '\0','GBR','Breakfast',NULL,NULL,4,NULL,NULL,'SH012734840000'),('EP019243440191','More adventures with Red and his fearless avian friends!','Compilation 33',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440183','More adventures with Red and his fearless avian friends.','Compilation 25',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP014354640086','A beat up 1950\'s Bevador beverage cooler is brought in for a fix-up and a rare 1940\'s Rexair vacuum.','Vacuum Daze',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829325_e_h3_aa.jpg',4,NULL,NULL,'SH014354640000'),('EP019243440184','More adventures with Red and his fearless avian friends.','Compilation 26',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440185','More adventures with Red and his fearless avian friends.','Compilation 27',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440186','More adventures with Red and his fearless avian friends.','Compilation 28',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440188','More adventures with Red and his fearless avian friends.','Compilation 30',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440189','More adventures with Red and his fearless avian friends!','Compilation 31',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP032039540034','Vier kleine Kätzchen machen als `The Buffycats\' Musik und begeben sich auf Abenteuer.','Dschungel-Katzen',_binary '','DEU','44 Cats',NULL,NULL,4,NULL,NULL,'SH032039540000'),('EP027723980164','Die Übertragung erfolgt aus Göteborg, Schweden.','Fei Weltcup 2019/20 in Göteborg - Springen der Westeuropaliga',_binary '\0','DEU','Springreiten',NULL,NULL,4,NULL,NULL,'SH027723980000'),('EP032039540036','Vier kleine Kätzchen machen als `The Buffycats\' Musik und begeben sich auf Abenteuer.','Polizeikatzen im Einsatz',_binary '','DEU','44 Cats',NULL,NULL,4,NULL,NULL,'SH032039540000'),('EP032039540037','Lampos bekommt Besuch von seinem Onkel Archibald und eine Lektion in ordentlichem Benehmen.','Eine wohlerzogene Katze',_binary '','DEU','44 Cats',NULL,NULL,4,NULL,NULL,'SH032039540000'),('EP030143840010','In Birmingham, Mark \"Robocop\" Hudson is taking a zero-tolerance attitude to bad parking.','Rules Is Rules',_binary '','GBR','Britain\'s Parking Hell',NULL,NULL,4,NULL,NULL,'SH030143840000'),('EP032039540038','Pilou hat Geburtstag, weswegen die Buffycats ihr einen sehr tollen Roller schenken.','Ein Roller für Pilou',_binary '','DEU','44 Cats',NULL,NULL,4,NULL,NULL,'SH032039540000'),('EP014354640089','A 1920\'s wig wag train signal is brought in, Kelly plans a car show at the shop.','Mixed Signals',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829328_e_h3_aa.jpg',4,NULL,NULL,'SH014354640000'),('EP014354640088','A toy 1950\'s Ferrari Bimbo racecar is brought into the shop, Ron, Tyler and Brettly go picking.','Bimbo and the Beasts',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829332_e_h3_aa.jpg',4,NULL,NULL,'SH014354640000'),('EP016460840531','Die Dokumentation erzählt die Geschichte des Expeditionsleiters Prinz Maximilian in Amerika.','Ein Prinz unter Indianern',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP031550100004','Marcus is dejected - and without a job - but Christian returns with plans for their joint future.','',_binary '\0','GBR','Liberty',NULL,NULL,4,NULL,NULL,'SH031550100000'),('EP027976490500','Die Übertragung erfolgt aus Naeba, Japan.','Fis Weltcup 2019/20 in Naeba - Riesenslalom Männer, 2. Lauf',_binary '\0','DEU','Ski Alpin',NULL,NULL,4,NULL,NULL,'SH027976490000'),('EP019671360122','Die Käufer begeben sich auf Renes Territorium und hoffen, ihm dort eine Lektion erteilen zu können.','Explosive Stimmung',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10684791_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP020082861109','In dieser Talkshow beantworten der Moderator und unterschiedlichen Experten die Fragen der Anrufer.','',_binary '\0','DEU','Tagesgespräch',NULL,NULL,4,NULL,NULL,'SH020082860000'),('EP019671360123','Rene soll zukünftig die Konkurrenz ausstechen, während Ivy seine Einstellung zum Geschäft ändert.','Tiefenentspannt',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10684792_e_h3_ac.jpg',4,NULL,NULL,'SH019671360000'),('EP023829450006','The Nektons explore an underwater cave inhabited by prehistoric crocodiles.','The Fossil',_binary '','GBR','The Deep',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12599690_e_h3_aa.jpg',4,NULL,NULL,'SH023829450000'),('EP020082861108','In dieser Talkshow beantworten der Moderator und unterschiedlichen Experten die Fragen der Anrufer.','',_binary '\0','DEU','Tagesgespräch',NULL,NULL,4,NULL,NULL,'SH020082860000'),('EP028984620008','A woman is shot outside a community centre. Dylan and Lizzie must solve the case in less than a day.','Long Shot',_binary '','GBR','Instinct',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15436092_e_h3_aa.jpg',4,NULL,NULL,'SH028984620000'),('EP012695100077','Xena\'s spirit asks Autolycus to find the life-restoring food of the Gods.','The Quest',_binary '','GBR','Xena: Warrior Princess',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1811287_e_h3_ab.jpg',4,NULL,NULL,'SH012695100000'),('EP012695100075','As a gravely injured Xena lingers between life and death, she dreams about Julius Caesar.','Destiny',_binary '','GBR','Xena: Warrior Princess',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1811286_e_h3_ab.jpg',4,NULL,NULL,'SH012695100000'),('EP023829450011','The Nektons meet online superstar Devil Daniels who will stop at nothing to reach the fame he seeks.','Monster Hunter',_binary '','GBR','The Deep',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12722471_e_h3_aa.jpg',4,NULL,NULL,'SH023829450000'),('EP023829450013','Ant believes that a ghost sub is at sail somewhere out in the ocean, but the truth is even stranger.','The Phantom Sub',_binary '','GBR','The Deep',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12722473_e_h3_aa.jpg',4,NULL,NULL,'SH023829450000'),('EP014354640092','A 1920\'s floor sander is brought in, an antique apple vending machine is shipped to the shop.','Sand Hassle',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829330_e_h3_aa.jpg',4,NULL,NULL,'SH014354640000'),('EP014354640091','The crew shoots for a perfect restoration of a rare 1930\'s photo booth, the Rose Bowl flea market.','Photo Finish',_binary '','GBR','American Restoration',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9829326_e_h3_ab.jpg',4,NULL,NULL,'SH014354640000'),('EP012708730170','The girls decide they want to re-enact their high-school proms.','The Prom Equivalency',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11170515_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP017428530167','Die Reportage begleitet unter anderem den 72-jährigen Henrik R. auf dem Weg aus der Depression.','Männer leiden anders: Tabu Depression',_binary '','DEU','45 Min',NULL,NULL,4,NULL,NULL,'SH017428530000'),('EP020273460030','In East London, Heavy D goes through his blue period after driving the bidders mad.','Poplar',_binary '','GBR','Storage Hunters UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12293432_e_h3_aa.jpg',4,NULL,NULL,'SH020273460000'),('EP020273460032','Heavy D gets more than he bargained for, while Nat and John feel cheated.','Leamington Spa',_binary '','GBR','Storage Hunters UK',NULL,NULL,4,NULL,NULL,'SH020273460000'),('EP019808820048','Bonnies Mutter Shirley meldet sich und will sich mit ihr treffen, doch Bonnie ist nicht begeistert.','Gute Mütter, schlechte Mütter',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11858085_e_h3_aa.jpg',4,NULL,NULL,'SH019808820000'),('EP019808820049','Bonnie und Christy lernen die Teenagerin Jodi kennen und beschließen, ihr beim Entzug zu helfen.','Ein ganz mieser Tag',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12240565_e_h3_aa.jpg',4,NULL,NULL,'SH019808820000'),('EP012971894975','A round up of yesterday\'s racing action from Leicester and Catterick..','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP012971894976','A round up of today\'s racing action from Wincanton, Musselburgh and Kempton..','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP012971894977','A round up of yesterday\'s racing action from Wincanton, Musselburgh and Kempton..','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP019694711291','Kindernachrichtensendung mit aktuellen Themen und Hintergrundinformationen perfekt für Kinder.','',_binary '\0','DEU','logo! Die Welt und ich',NULL,NULL,4,NULL,NULL,'SH019694710000'),('EP019694711293','Kindernachrichtensendung mit aktuellen Themen und Hintergrundinformationen perfekt für Kinder.','',_binary '\0','DEU','logo! Die Welt und ich',NULL,NULL,4,NULL,NULL,'SH019694710000'),('EP013122120021','Florrie brings mud into the ballroom to make it easier for Splish-Splash to play bowls with her.','Splish-Splash',_binary '','GBR','Florrie\'s Dragons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8562262_e_h3_aa.jpg',4,NULL,NULL,'SH013122120000'),('EP019694711292','Kindernachrichtensendung mit aktuellen Themen und Hintergrundinformationen perfekt für Kinder.','',_binary '\0','DEU','logo! Die Welt und ich',NULL,NULL,4,NULL,NULL,'SH019694710000'),('EP012708730171','When Leonard gets minor surgery on his nose, Sheldon is the one in need of sympathy.','The Septum Deviation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11206656_e_h3_ab.jpg',4,NULL,NULL,'SH012708730000'),('EP013122120018','Florrie wants a pet but knows they are a lot of work; Florrie helps Casimir pick purple leaves.','The Pet Snoozle',_binary '','GBR','Florrie\'s Dragons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8495437_e_h3_aa.jpg',4,NULL,NULL,'SH013122120000'),('EP019369320033','Mike bekommt von seiner Umgebung fast keine Ruhe und wird immer mürrischer.','Acht lange Wochen',_binary '','DEU','Mike & Molly',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10654142_e_h3_aa.jpg',4,NULL,NULL,'SH019369320000'),('EP027846800017','Rath holt den Güterzug ein. Auf dem Dach des Zuges kommt es zu einem Duell auf Leben und Tod.','Episode 8',_binary '','DEU','Babylon Berlin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14791855_e_h3_aa.jpg',4,NULL,NULL,'SH027846800000'),('EP027778050022','Anthony Anderson and Christina Milian join Snoop and Martha for a tutorial on crab.','Shell of a Good Time',_binary '','GBR','Martha & Snoop\'s Potluck Dinner Party',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15763255_e_h3_aa.jpg',4,NULL,NULL,'SH027778050000'),('EP027846800016','Charlotte und Rath machen sich auf den Weg zu dem mysteriösen Zug, doch es kommt zu einem Unfall.','Episode 7',_binary '','DEU','Babylon Berlin',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14791837_e_h3_aa.jpg',4,NULL,NULL,'SH027846800000'),('EP027778050020','Snoop uses his own greens to bake Martha something very special.','Gettin\' Veggie With It',_binary '','GBR','Martha & Snoop\'s Potluck Dinner Party',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15737246_e_h3_aa.jpg',4,NULL,NULL,'SH027778050000'),('EP019560070116','Nach einer Auseinandersetzung mit einem Fremden, verschwindet die Bankerin Erin MacNeil spurlos.','Bittere Reue',_binary '','DEU','Without a Trace - Spurlos verschwunden',NULL,NULL,4,NULL,NULL,'SH019560070000'),('EP019580071169','Tägliches Boulevard-Magazin im hr-Fernsehen.','',_binary '\0','DEU','maintower',NULL,NULL,4,NULL,NULL,'SH019580070000'),('EP028309320052','Track, Dagobert und Susann Eulert müssen vor einem unaufhaltbaren Monster fliehen, das dazu verdammt ist, die reichste Ente der Welt zu jagen und zu zerstören.','Die reichste Ente der Welt',_binary '','DEU','DuckTales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17247477_e_h3_aa.jpg',4,NULL,NULL,'SH028309320000'),('EP019580071168','Tägliches Boulevard-Magazin im hr-Fernsehen.','',_binary '\0','DEU','maintower',NULL,NULL,4,NULL,NULL,'SH019580070000'),('EP028309320053','Die Familie schart eine Armee um sich, um gegen eine Invasion gewappnet zu sein. Während Della und die Kinder auf der ganzen Welt nach Verstärkung suchen, führt Dagobert seine wilden Truppen gegen Geneal Lunaris? Streitkräfte.','Invasion vom Mond',_binary '','DEU','DuckTales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17378754_e_h3_aa.jpg',4,NULL,NULL,'SH028309320000'),('EP024596390013','DJ Spoony sits in for Trevor Nelson playing Soul, R&B, Funk, Disco.','DJ Spoony sits in',_binary '','GBR','Trevor Nelson\'s Rhythm Nation',NULL,NULL,4,NULL,NULL,'SH024596390000'),('EP019243440182','More adventures with Red and all of his fearless avian friends.','Compilation 24',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP020273460028','Linda tries to befriend Ione, which proves to be a big mistake! Nat finally walks out on John.','Essex',_binary '','GBR','Storage Hunters UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12251151_e_h3_aa.jpg',4,NULL,NULL,'SH020273460000'),('EP032912820007','Stanley and Georgia concoct chocolate bowls, making a gooey mess.','Chocolate Party',_binary '','GBR','Craft Party',NULL,NULL,4,NULL,NULL,'SH032912820000'),('EP027663140021','Dana helps a lonely Sinornithosaurus impress a female Sinornithosaurus.','Dino Matchmaker',_binary '','GBR','Dino Dana',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14359799_e_h3_aa.jpg',4,NULL,NULL,'SH027663140000'),('EP015403480287','Dieses Wissensmagazin vermittelt vertiefende Informationen zu verschiedenen Thematiken.','Jäger der verlorenen Schätze',_binary '','DEU','W wie Wissen',NULL,NULL,4,NULL,NULL,'SH015403480000'),('EP019808820050','Christy und Bonnie ist es erfolgreich gelungen, ein Mädchen vom Drogenkonsum abzuhalten.','Helfersyndrom',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12269921_e_h3_ab.jpg',4,NULL,NULL,'SH019808820000'),('EP020273460029','Linda frets that the gang are exploiting her know-how in Hampshire. Boudicca and Heavy D pair up.','Alton',_binary '','GBR','Storage Hunters UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12275195_e_h3_aa.jpg',4,NULL,NULL,'SH020273460000'),('EP019808820051','Violet möchte von nun an mehr Zeit mit ihrer Mutter verbringen und das Verhältnis zu ihr verbessern.','Ein Schmerz und eine Seele',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12315431_e_h3_ab.jpg',4,NULL,NULL,'SH019808820000'),('EP019684830018','Mickys Fisch Gubbles kämpft um sein Leben, als sein Wasserglas kaputt geht.','Fisch an Land',_binary '','DEU','Micky Maus',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10034620_e_h3_aa.jpg',4,NULL,NULL,'SH019684830000'),('EP027663140023','Dana distracts a young boy stuck up a park slide with a story about a brachiosaurus.','Face your Fearosaurus',_binary '','GBR','Dino Dana',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14359811_e_h3_aa.jpg',4,NULL,NULL,'SH027663140000'),('EP019808820052','Christiy ist eifersüchtig auf Candace, Baxters Freundin, und ihr gutes Verhältnis zu Roscoe.','Bonnie auf Männerfang',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12355943_e_h3_ab.jpg',4,NULL,NULL,'SH019808820000'),('EP027663140024','Dana tries to figure out how Edmontosaurus defend themselves but she inadvertently wakes up Cai.','Herd It Loud and Clear',_binary '','GBR','Dino Dana',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14359812_e_h3_aa.jpg',4,NULL,NULL,'SH027663140000'),('EP019808820053','Regina beichtet der Selbsthilfegruppe, dass sie wieder trinkt, doch es scheint ihr damit gutzugehen.','Rückfall ins Glück',_binary '','DEU','Mom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12355602_e_h3_ab.jpg',4,NULL,NULL,'SH019808820000'),('EP027663140025','Dana enlists a pack of Troodon to help Ms Currie locate her grandson\'s lost pug.','Lost and Sound',_binary '','GBR','Dino Dana',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14359822_e_h3_aa.jpg',4,NULL,NULL,'SH027663140000'),('EP016397722017','Nachrichtenjournal mit den Hintergründen zu den aktuellen Themen in Deutschland und der Welt.','',_binary '\0','DEU','heute-journal',NULL,NULL,4,NULL,NULL,'SH016397720000'),('EP016397722015','Nachrichtenjournal mit den Hintergründen zu den aktuellen Themen in Deutschland und der Welt.','',_binary '\0','DEU','heute-journal',NULL,NULL,4,NULL,NULL,'SH016397720000'),('EP016397722016','Nachrichtenjournal mit den Hintergründen zu den aktuellen Themen in Deutschland und der Welt.','',_binary '\0','DEU','heute-journal',NULL,NULL,4,NULL,NULL,'SH016397720000'),('EP022280060014','Lolulu und Malalua müssen heute Wasser holen. Wegen der schlimmen Dürre ist der Fluss ausgetrocknet.','Wasser schleppen mit Eseln',_binary '','DEU','Die Abenteuer von Lolulu und Malalua',NULL,NULL,4,NULL,NULL,'SH022280060000'),('EP027846800022','Wendt lässt nichts unversucht, um Greta dazu zu bewegen, ihre Aussage zum Attentat zu ändern.','Episode 3',_binary '','DEU','Babylon Berlin',NULL,NULL,4,NULL,NULL,'SH027846800000'),('EP019671360172','Darrell nutzt eine Masche, aber am Ende ist es Ivy, der seiner Konkurrenz ein Schnippchen schlägt.','Laden in Gefahr',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10629598_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP027846800023','Gräf steht Rath bei den Nachforschungen und Untersuchungen zur Akte Benda tatkräftig zur Seite.','Episode 4',_binary '','DEU','Babylon Berlin',NULL,NULL,4,NULL,NULL,'SH027846800000'),('EP019834270321','Während eines Flugs nach Las Vegas kommt es in der ersten Klasse zu einem Todesfall.','Über den Wolken',_binary '','DEU','CSI: Den Tätern auf der Spur',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2382086_e_h3_aa.jpg',4,NULL,NULL,'SH019834270000'),('EP019671360173','Ivy muss sich beeilen, eine Lagerhalle zu ersteigern, sonst bekommt er Schwierigkeiten.','Ivy unter Strom',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10629599_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP014726400160','Robert Borger, der Besitzer einer Imbissbude, erleidet aus heiterem Himmel starke Sprachstörungen.','Geständnisse',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11130285_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP019834270323','Bei Bauarbeiten wird das einbetonierte Skelett der vermissten Faye Greene gefunden.','Die Tote im Beton',_binary '','DEU','CSI: Den Tätern auf der Spur',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2382083_e_h3_ad.jpg',4,NULL,NULL,'SH019834270000'),('EP019671360175','Rene und Casey wollen viel kaufen, während Jarrod und Brandi mit Gerüchten zu kämpfen haben.','Üble Gerüchte',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10629600_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP006939640960','Wettervorhersage.','',_binary '\0','DEU','Wetter',NULL,NULL,4,NULL,NULL,'SH006939640000'),('EP013059490235','New captain Paddy McGuinness with guests John Barrowman, Howard Donald, Mark Wright and Emily Atack.','',_binary '\0','GBR','Celebrity Juice',NULL,NULL,4,NULL,NULL,'SH013059490000'),('EP012735490049','Jesse\'s ex-fiance\'s company is involved in the genetic manipulation of crops.','Wasteland',_binary '','GBR','Mutant X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2564267_e_h3_ab.jpg',4,NULL,NULL,'SH012735490000'),('EP019170130033','Steve takes on a funky project, building a 1970s gasser race car for a Navy veteran.','Gassed Up Bootleggers',_binary '','GBR','Sin City Motors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15908374_e_h3_aa.jpg',4,NULL,NULL,'SH019170130000'),('EP030249790002','A passenger detonates a bomb and people on a flight to Cairo record what it is like to be hijacked.','Terrorism',_binary '','GBR','Flights from Hell: Caught on Camera',NULL,NULL,4,NULL,NULL,'SH030249790000'),('EP013085690561','A futuristic version of a fairy tale. A space age mechanic meets a prince with a broken spaceship.','Interstellar Cinderella',_binary '','GBR','Cbeebies Bedtime Stories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14924799_e_h3_aa.jpg',4,NULL,NULL,'SH013085690000'),('EP022280060018','Mit dem Krieger Kandari wollen Lolulu und Malalua heute den Berg Gottes besteigen.','Der Berg Gottes',_binary '','DEU','Die Abenteuer von Lolulu und Malalua',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14058332_e_h3_aa.jpg',4,NULL,NULL,'SH022280060000'),('EP018438191377','Das Boulevardmagazin berichtet über Prominente und besonders dramatische Ereignisse.','',_binary '\0','DEU','Brisant',NULL,NULL,4,NULL,NULL,'SH018438190000'),('EP016520760174','Die Sendung beleuchtet, warum Recycling nicht richtig funktioniert und was die Politik dagegen tut.','Alles für die Tonne',_binary '','DEU','ZDFzoom',NULL,NULL,4,NULL,NULL,'SH016520760000'),('EP012693990127','Elvis is practising for his star turn in Pontypandy\'s forthcoming charity concert.','Elvis in Concert',_binary '','GBR','Fireman Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9578273_e_h3_aa.jpg',4,NULL,NULL,'SH012693990000'),('EP012641900003','Morse\'s investigation into a shocking act of violence at an Oxford degree ceremony uncovers secrets.','Twilight of the Gods',_binary '','GBR','Inspector Morse',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1628221_e_h3_aa.jpg',4,NULL,NULL,'SH012641900000'),('EP012693990128','Mandy wants to be a round-the-world yachtsman, but she soon runs into trouble when her mast breaks.','Mandy at Sea',_binary '','GBR','Fireman Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9578279_e_h3_aa.jpg',4,NULL,NULL,'SH012693990000'),('EP012641900002','A notorious rapist escapes from prison and tries to stay one step ahead of Morse and Lewis.','The Day of the Devil',_binary '','GBR','Inspector Morse',NULL,NULL,4,NULL,NULL,'SH012641900000'),('EP012735490050','A cybernetic mutant who wants revenge uses his powers to overtake Sanctuary\'s security system.','No Exit',_binary '','GBR','Mutant X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2564268_e_h3_ab.jpg',4,NULL,NULL,'SH012735490000'),('EP013668910040','Ash and friends head to Sunyshore City; Ash encounters Paul and Barry, two of his rivals.','Fighting Ire With Fire!',_binary '','GBR','Pokémon the Series: DP Sinnoh League Victors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8185900_e_h3_aa.jpg',4,NULL,NULL,'SH013668910000'),('EP018438191378','Das Boulevardmagazin berichtet über Prominente und besonders dramatische Ereignisse.','',_binary '\0','DEU','Brisant',NULL,NULL,4,NULL,NULL,'SH018438190000'),('EP013668910042','Dawn is now confident enough to enter the Grand Festival being held in Lake Valor.','Playing the Performance Encore!',_binary '','GBR','Pokémon the Series: DP Sinnoh League Victors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8143271_e_h3_ab.jpg',4,NULL,NULL,'SH013668910000'),('EP018438191379','Das Boulevardmagazin berichtet über Prominente und besonders dramatische Ereignisse.','',_binary '\0','DEU','Brisant',NULL,NULL,4,NULL,NULL,'SH018438190000'),('EP019170130034','Steve and the crew struggle to deliver the Villain Rat Rod in the three-week deadline.','Joker\'s Wild',_binary '','GBR','Sin City Motors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15892219_e_h3_aa.jpg',4,NULL,NULL,'SH019170130000'),('EP019647040004','Mike Kennedy plant, per Fallschirm an die Maschine heranzukommen, die er sicherstellen muss.','Mit dem Fallschirm Richtung Flugplatz',_binary '','DEU','Airplane Repo - Die Inkasso-Piloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10221605_e_h3_aa.jpg',4,NULL,NULL,'SH019647040000'),('EP027291760003','Mit exakt abgestimmtem Bastelequipment will `Crafter\'s Companion\' die Freude am Basteln steigern.','',_binary '\0','DEU','Crafter\'s Companion - einfach kreativ',NULL,NULL,4,NULL,NULL,'SH027291760000'),('EP019799660212','Das Tiermagazin des MDR stellt jede Woche ein Tierheim mit einigen seiner Bewohner vor.','',_binary '\0','DEU','Tierisch tierisch',NULL,NULL,4,NULL,NULL,'SH019799660000'),('EP014726400158','Auf dem Weg von Termin zu Termin stürzt der Pfarrer Peter Sänger mit dem Fahrrad.','Einer trage des anderen Last',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11130203_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP028196780004','In den 1970er und 1980er Jahren wurde der Krieg unter Wasser mit unverminderter Härte fortgeführt.','Angriff aus der Tiefe',_binary '','DEU','Der geheime U-Boot-Krieg',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10358603_e_h3_aa.jpg',4,NULL,NULL,'SH028196780000'),('EP019647040008','In dieser Folge verschlägt es die Flugzeugeintreiber unter anderem in die Mojave-Wüste.','Wie gewonnen, so zerronnen',_binary '','DEU','Airplane Repo - Die Inkasso-Piloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10975778_e_h3_aa.jpg',4,NULL,NULL,'SH019647040000'),('EP022917381419','Die Reihe zeigt die Vielfalt Bayerns von bezaubernden Reisezielen bis zu fast vergessenem Handwerk.','',_binary '\0','DEU','Wir in Bayern',NULL,NULL,4,NULL,NULL,'SH022917380000'),('EP022917381418','Die Reihe zeigt die Vielfalt Bayerns von bezaubernden Reisezielen bis zu fast vergessenem Handwerk.','',_binary '\0','DEU','Wir in Bayern',NULL,NULL,4,NULL,NULL,'SH022917380000'),('EP030833490419','Diesmal findet das berühmte alljährliche Herbst-Fest auf dem Platz vom Rathaus statt.','Die Rettung des Thanksgiving-Essens',_binary '','DEU','Paw Patrol - Helfer auf vier Pfoten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16232501_e_h3_aa.jpg',4,NULL,NULL,'SH030833490000'),('EP015402360267','Die Sendung dokumentiert das Leben der Bewohner auf Isles of Scilly vor der Küste von Cornwall.','Die Scilly Inseln - Englands unbekannte Schönheit',_binary '','DEU','Länder - Menschen - Abenteuer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12647500_e_h3_aa.jpg',4,NULL,NULL,'SH015402360000'),('EP027661650155','Samira Ahmed, Dom Joly, Angela Rippon and John Robins take on a series of quiz rounds.','',_binary '\0','GBR','Richard Osman\'s House of Games',NULL,NULL,4,NULL,NULL,'SH027661650000'),('EP027661650154','Samira Ahmed, Dom Joly, Angela Rippon and John Robins take on a series of quiz rounds.','',_binary '\0','GBR','Richard Osman\'s House of Games',NULL,NULL,4,NULL,NULL,'SH027661650000'),('EP021528680303','Die Erziehungsmethoden zweier verschiedener Familien werden geprüft. Diesmal mit Inga und Andrea.','Inga vs. Andrea',_binary '','DEU','Mein Kind, dein Kind - Wie erziehst du denn?',NULL,NULL,4,NULL,NULL,'SH021528680000'),('EP013041830088','A disturbed employee obsessed with Jonathan plots to kill Jennifer.','You Made Me Kill You',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122459_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP013041830089','A guest participating in a treasure hunt in a haunted house turns up dead.','Night Horrors',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122417_e_h3_ab.jpg',4,NULL,NULL,'SH013041830000'),('EP012791830229','Stan is excited when he is put in charge of the CIA\'s number one fundraiser, the annual calendar.','The Devil Wears a Lapel Pin',_binary '','GBR','American Dad!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12523193_e_h3_ac.jpg',4,NULL,NULL,'SH012791830000'),('EP012791830228','When Stan buys Francine Washington Nationals\' season tickets for her birthday she is upset.','Kiss Kiss, Cam Cam',_binary '','GBR','American Dad!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12523188_e_h3_aa.jpg',4,NULL,NULL,'SH012791830000'),('EP012971894137','A round up of today\'s racing action from Wincanton, Musselburgh and Kempton.','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP013041830091','Jonathan and Jennifer travel to South America to rescue a kidnapped husband and wife.','Raid',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122420_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP015401890211','Am Zeitschriftenkiosk sind Diät-Titel Umsatzgaranten. Wer Gewichtsabnahme verspricht, macht Kasse.','Abnehmen und schlank bleiben - kann das gehen?',_binary '','DEU','betrifft',NULL,NULL,4,NULL,NULL,'SH015401890000'),('EP024083840012','Johann Lafer und Nelson Müller müssen Spezialitäten regionaler Küchenchefs nachkochen.','Folge 1',_binary '','DEU','Stadt, Land, Lecker',NULL,NULL,4,NULL,NULL,'SH024083840000'),('EP029942050212','Bitzer hat die Schafe nicht im Griff und bekommt einen Roboterhund vor die Nase gesetzt.','Der Roboterhund',_binary '','DEU','Zambo - Guetnachtgschichtli',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344270_e_h3_ab.jpg',4,NULL,NULL,'SH029942050000'),('EP016397720202','Nachrichtenjournal mit den Hintergründen zu den aktuellen Themen in Deutschland und der Welt.','',_binary '\0','DEU','heute-journal',NULL,NULL,4,NULL,NULL,'SH016397720000'),('EP016397720203','Nachrichtenjournal mit den Hintergründen zu den aktuellen Themen in Deutschland und der Welt.','',_binary '\0','DEU','heute-journal',NULL,NULL,4,NULL,NULL,'SH016397720000'),('EP029942050214','Shaun kann nicht schlafen, weil er das Schnarchen des DFS nicht ertragen kann.','Schnarchalarm',_binary '','DEU','Zambo - Guetnachtgschichtli',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344271_e_h3_aa.jpg',4,NULL,NULL,'SH029942050000'),('EP012791830233','Roger becomes fascinated by a local dentist\'s wife and loses his identity.','The Dentist\'s Wife',_binary '','GBR','American Dad!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12601758_e_h3_aa.jpg',4,NULL,NULL,'SH012791830000'),('EP012791830231','Greg and his longtime boyfriend Terry split up, Francine tries to help Greg find a new partner.','Anchorfran',_binary '','GBR','American Dad!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12601743_e_h3_ac.jpg',4,NULL,NULL,'SH012791830000'),('EP029939730043','Hanae accidentally falls on Kauri, causing him to sprain his ankle in the middle of rehearsals.','Hanae Gets Dizzy',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15403607_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP019383930033','Ein Anhaltspunkt - nicht größer als eine Heftzwecke - führt die Ermittler zu den Tätern.','Tödliches Verlangen',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP022917381420','Die Reihe zeigt die Vielfalt Bayerns von bezaubernden Reisezielen bis zu fast vergessenem Handwerk.','',_binary '\0','DEU','Wir in Bayern',NULL,NULL,4,NULL,NULL,'SH022917380000'),('EP019577750553','Thaddäus steckt ein Stück seiner Klarinette im Hals. SpongeBob und Patrick wollen ihm helfen.','Die fanthaddäustische Reise',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222526_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP024083840024','In dieser Kochsendung tritt ein bekannter TV-Koch gegen einen lokalen Küchenchef zum Duell an.','',_binary '\0','DEU','Stadt, Land, Lecker',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16398684_e_h3_aa.jpg',4,NULL,NULL,'SH024083840000'),('EP019783710009','Student Jeremy ist verschwunden. Der Täter verwendet Jeremys Eltern, um Spuren zu verwischen.','Spurlos',_binary '','DEU','CSI: New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8342818_e_h3_aa.jpg',4,NULL,NULL,'SH019783710000'),('EP029939730045','Pollinia\'s hearing is impaired, and she can\'t hear the melodies emitted by the ripe Glowing Fruits.','Pollinia Loses Her Hearing',_binary '','GBR','Monchhichi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15403614_e_h3_aa.jpg',4,NULL,NULL,'SH029939730000'),('EP029892580020','Chiara stellt ihrer Oma viele Fragen, denn sie möchte Omas Rollbraten nachkochen.','Rollbraten mit Kartoffelknödel und selbstgemachte Pralinen',_binary '','DEU','Oma kocht am besten',NULL,NULL,4,NULL,NULL,'SH029892580000'),('EP019783710006','Stripperin Kandy wird nach einem Auftritt tot aufgefunden. Mehrere Personen stehen unter Verdacht.','Tod im Rampenlicht',_binary '','DEU','CSI: New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3035797_e_h3_ad.jpg',4,NULL,NULL,'SH019783710000'),('EP014875680059','Rugby stars Phil Vickery and Martin Offiah take to the antiques trail around Bristol.','Phil Vickery and Martin Offiah',_binary '','GBR','Celebrity Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11058695_e_h3_aa.jpg',4,NULL,NULL,'SH014875680000'),('EP028204940014','Diese Sendung zeigt, wer es an die Spitze der offiziellen deutschen Radio-Charts geschafft hat.','Radio Charts',_binary '','DEU','MTV Most Wanted',NULL,NULL,4,NULL,NULL,'SH028204940000'),('EP014875680058','Actors Lesley Joseph and Christopher Biggins battle in a competition for antique glory.','Lesley Joseph and Christopher Biggins',_binary '','GBR','Celebrity Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11058649_e_h3_aa.jpg',4,NULL,NULL,'SH014875680000'),('EP012598220554','Martin Roberts and Lucy Alexander visit a property in Hartlepool, and a house in Chatham.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP028472930008','TBA.','Building Bridges',_binary '','GBR','Impossible Railways',NULL,NULL,4,NULL,NULL,'SH028472930000'),('EP028472930009','Engineering that has overcome some of the greatest mountain ranges to create innovative railways.','Into the Blue',_binary '','GBR','Impossible Railways',NULL,NULL,4,NULL,NULL,'SH028472930000'),('EP012598220559','Martin and Lucy visit a mid-terrace in Kent, a cottage in Fife and a high-rise flat in London.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP028472930002','Hear how railway engineers have conquered jungles, deserts and mountains.','Into the Wild',_binary '','GBR','Impossible Railways',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14957265_e_h3_aa.jpg',4,NULL,NULL,'SH028472930000'),('EP028472930003','Discover how railway engineers have conquered valleys, canyons and waterways in rural New Zealand.','Crossing Chasms',_binary '','GBR','Impossible Railways',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14957266_e_h3_aa.jpg',4,NULL,NULL,'SH028472930000'),('EP028472930004','Discovering how track engineers have tackled mountains, from the Swiss Alps to the Sierra Nevada.','Reaching New Heights',_binary '','GBR','Impossible Railways',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14957267_e_h3_aa.jpg',4,NULL,NULL,'SH028472930000'),('EP019243440100','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 22',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019243440101','Get ready for some adventures with the Angry Birds, Stella & Friends and the Bad Piggies.','Compilation 23',_binary '','GBR','Angry Birds Toons',NULL,NULL,4,NULL,NULL,'SH019243440000'),('EP019783710019','Puppendoktor Russell McCulley ist tot in seiner Werkstatt aufgefunden worden.','Puppenmord',_binary '','DEU','CSI: New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3035795_e_h3_ab.jpg',4,NULL,NULL,'SH019783710000'),('EP012691630009','A nurse is lonely and sad, so the other nurses declare try to cheer her up and find her a boyfriend.','Edwina',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145017_e_h3_ac.jpg',4,NULL,NULL,'SH012691630000'),('EP012691630003','After a transfusion using a pint of Frank\'s blood, Hawkeye suspects him of having hepatitis.','Germ Warfare',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145009_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP012691630005','Hawkeye turns sleuth to solve a rash of robberies in which he is the prime suspect.','I Hate a Mystery',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145011_e_h3_aa.jpg',4,NULL,NULL,'SH012691630000'),('EP019855811373','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Südwestfalen.','',_binary '\0','DEU','Lokalzeit Südwestfalen',NULL,NULL,4,NULL,NULL,'SH019855810000'),('EP019855811374','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Südwestfalen.','',_binary '\0','DEU','Lokalzeit Südwestfalen',NULL,NULL,4,NULL,NULL,'SH019855810000'),('EP019567600042','`Moonshiner\'-Legende Jim Tom Hendrick will mit seinen 72 Jahren eine Karriere als Sänger starten.','Der Traum von Nashville,',_binary '','DEU','Moonshiners - Die Schwarzbrenner von Virginia',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11357066_e_h3_aa.jpg',4,NULL,NULL,'SH019567600000'),('EP012691630010','At Christmastime, Hawkeye writes a letter to his father describing what a doctor\'s life is like.','Dear Dad',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145018_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP012896310872','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP012896310873','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP003332690934','`Guten Morgen Deutschland\' beschäftigt sich mit tagesaktuellen Nachrichten und weiteren Themen.','',_binary '\0','DEU','Guten Morgen Deutschland',NULL,NULL,4,NULL,NULL,'SH003332690000'),('EP003332690935','`Guten Morgen Deutschland\' beschäftigt sich mit tagesaktuellen Nachrichten und weiteren Themen.','',_binary '\0','DEU','Guten Morgen Deutschland',NULL,NULL,4,NULL,NULL,'SH003332690000'),('EP019783710028','Bei einer Kaufhaus-Eröffnung wird der Filialleiter tot im Schaufenster aufgefunden.','Tod im Schaufenster',_binary '','DEU','CSI: New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8395789_e_h3_ab.jpg',4,NULL,NULL,'SH019783710000'),('EP032269450049','AEW Tag Team Champions Kenny Omega and Hangman Page go up against Lucha Bros.','Edit',_binary '','GBR','All Elite Wrestling: Dynamite',NULL,NULL,4,NULL,NULL,'SH032269450000'),('EP019567600074','Tom reist nach Nashville, um seinem Traum, Countrysänger zu werden, nachzugehen.','Der Traum von Nashville',_binary '','DEU','Moonshiners - Die Schwarzbrenner von Virginia',NULL,NULL,4,NULL,NULL,'SH019567600000'),('EP013041830048','The Harts\' dog, Freeway, grabs a murder weapon and becomes the target of jewel thieves.','Which Way, Freeway?',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122418_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP019426071361','Tägliche Nachrichtensendung, die sich vor allem mit Entertainment und Boulevard beschäftigt.','',_binary '\0','DEU','RTLZWEI News',NULL,NULL,4,NULL,NULL,'SH019426070000'),('EP019426071362','Tägliche Nachrichtensendung, die sich vor allem mit Entertainment und Boulevard beschäftigt.','',_binary '\0','DEU','RTLZWEI News',NULL,NULL,4,NULL,NULL,'SH019426070000'),('EP012608400161','The NCIS team go on the road to take down the illegal activities of a shady shipping company.','Jack Knife',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8002518_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP016889010161','Die Sendung fragt, was Lidl anders macht, und wer bei der Boom-Billig-Marke die Fäden zieht.','Das Lidl-Imperium',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14084964_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP030881540105','Studiogast ist Professor Dr. Katharina Anna Zweig von der TU Kaiserslautern. Moderation: Özlem Sarikaya.','Algorithmen - Chancen und Gefahren',_binary '','DEU','RESPEKT',NULL,NULL,4,NULL,NULL,'SH030881540000'),('EP025063190240','Eine Frau gibt an, geschubst worden zu sein, was einen Schweißunfall zur Folge hatte.','Im Stehen K.O.',_binary '','DEU','Klinik am Südring',NULL,NULL,4,NULL,NULL,'SH025063190000'),('EP012861150122','The ladies take a trip to the Hamptons, where LuAnn holds a party to flaunt her new home.','New House, Old Grudges',_binary '','GBR','The Real Housewives of New York City',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11593992_e_h3_aa.jpg',4,NULL,NULL,'SH012861150000'),('EP029053770009','Claude becomes the official seeker in the Great Pawhaven Hide and Seek Contest.','The Hider Cup',_binary '','GBR','Claude',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15195965_e_h3_aa.jpg',4,NULL,NULL,'SH029053770000'),('EP013900590016','Wayne checks out a classic Bimbo racer. He likes the car but it needs a lot of work.','Bimbo Racer',_binary '','GBR','Chasing Classic Cars',NULL,NULL,4,NULL,NULL,'SH013900590000'),('EP019855891402','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Bergischen Land.','',_binary '\0','DEU','Lokalzeit Bergisches Land',NULL,NULL,4,NULL,NULL,'SH019855890000'),('EP012595501411','Alistair Appleton is supporting recent newlyweds on their quest to quit London.','Surrey',_binary '','GBR','Escape to the Country',NULL,NULL,4,NULL,NULL,'SH012595500000'),('EP019855891401','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Bergischen Land.','',_binary '\0','DEU','Lokalzeit Bergisches Land',NULL,NULL,4,NULL,NULL,'SH019855890000'),('EP033425310001','AALL and Create are back with tips and techniques using their spectacular stamps and stencils.','',_binary '\0','GBR','AALL and Create',NULL,NULL,4,NULL,NULL,'SH033425310000'),('EP017976420007','Charlie, Ben and Alison crash a party and things get out of hand when they pretend Ben is a gymnast.','Gymnast',_binary '','GBR','All At Sea',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10309498_e_h3_aa.jpg',4,NULL,NULL,'SH017976420000'),('EP013900590019','Wayne is invited to show some classic cars at the Meadowbrook Concours d\'Elegance.','Meadowbrook',_binary '','GBR','Chasing Classic Cars',NULL,NULL,4,NULL,NULL,'SH013900590000'),('EP019383930071','Die beiden Kinder von Tanya Reid leiden regelmäßig an nächtlichen Atemstillständen.','Todesengel',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP013900590018','Wayne checks out a great Ford Woodie collection on auction in California.','Everybody Loves a Woodie',_binary '','GBR','Chasing Classic Cars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7874047_e_h3_aa.jpg',4,NULL,NULL,'SH013900590000'),('EP013900590017','Wayne meets a widow who wants to sell her late husband\'s Chevy, but it hasn\'t been driven in years.','Chevy',_binary '','GBR','Chasing Classic Cars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7873357_e_h3_aa.jpg',4,NULL,NULL,'SH013900590000'),('EP016460840514','Der Film erzählt einen Tag im Leben eines römischen Feuerwehrmanns im Jahr 80 nach Christus.','Ein Tag im alten Rom',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP019580931625','Täglich wird aktuell über Politik, Kultur, Wirtschaft und Unterhaltendes aus Hessen berichtet.','',_binary '\0','DEU','hessenschau',NULL,NULL,4,NULL,NULL,'SH019580930000'),('EP019580931626','Täglich wird aktuell über Politik, Kultur, Wirtschaft und Unterhaltendes aus Hessen berichtet.','',_binary '\0','DEU','hessenschau',NULL,NULL,4,NULL,NULL,'SH019580930000'),('EP016889010154','Im Verbrauchertest untersucht Nelson Müller, ob Marken bei der Qualität eine Rolle spielen.','No-Name oder Marke?',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP019580931624','Täglich wird aktuell über Politik, Kultur, Wirtschaft und Unterhaltendes aus Hessen berichtet.','',_binary '\0','DEU','hessenschau',NULL,NULL,4,NULL,NULL,'SH019580930000'),('EP028472930013','Since their rise in the 19th Century, railways have been at the forefront of modern engineering.','Extreme Wilderness',_binary '','GBR','Impossible Railways',NULL,NULL,4,NULL,NULL,'SH028472930000'),('EP018485680105','Gemeinsam mit den Tierpflegern des Zoos gewinnen die Zuschauer Einblicke in eine faszinierende Welt.','Folge 612',_binary '','DEU','Elefant, Tiger & Co',NULL,NULL,4,NULL,NULL,'SH018485680000'),('EP029053770011','Claude takes part in a nail-biting tennis match to win strawberries for Sir Bobblysock.','Anyone for Strawberries?',_binary '','GBR','Claude',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15195971_e_h3_aa.jpg',4,NULL,NULL,'SH029053770000'),('EP012608400157','A terrorist group threatens to detonate a dirty bomb in Washington, D.C.','Masquerade',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7993904_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP012600951472','Battling for the prize in Avonmouth, near Bristol, are Matt, Lily, Charlotta and Josh Willacy.','All in One: Avonmouth',_binary '','GBR','Come Dine with Me',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10699859_e_h3_aa.jpg',4,NULL,NULL,'SH012600950000'),('EP002061390765','Die Sendung zeigt deutsche Landschaftsbilder begleitet von abwechslungsreicher Musik.','',_binary '\0','DEU','Deutschlandbilder',NULL,NULL,4,NULL,NULL,'SH002061390000'),('EP027759710002','Berks on bikes and boards, failed experiments, pathetic parkour and undignified proposals.','Dumb Daredevils',_binary '','GBR','Caught in the Act',NULL,NULL,4,NULL,NULL,'SH027759710000'),('EP030381530375','Jo Coburn and guests discuss stalling life expectancy, Harvey Weinstein and Brexit negotiations.','',_binary '\0','GBR','Politics Live',NULL,NULL,4,NULL,NULL,'SH030381530000'),('EP019461951139','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Neues von hier',NULL,NULL,4,NULL,NULL,'SH019461950000'),('EP030381530376','Jo Coburn and guests discuss the latest on the coronavirus outbreak.','',_binary '\0','GBR','Politics Live',NULL,NULL,4,NULL,NULL,'SH030381530000'),('EP030381530377','Andrew Neil and guests discuss the big political issues of the day.','',_binary '\0','GBR','Politics Live',NULL,NULL,4,NULL,NULL,'SH030381530000'),('EP018485680110','Die Zuschauer gewinnen Einblicke in eine Welt, die ihnen normalerweise verschlossen bleibt.','Folge 613',_binary '','DEU','Elefant, Tiger & Co',NULL,NULL,4,NULL,NULL,'SH018485680000'),('EP013854520007','With Robin away, Tilly decides to go to Nairobi to do what she can for the war effort.','The Drums of War',_binary '','GBR','The Flame Trees of Thika',NULL,NULL,4,NULL,NULL,'SH013854520000'),('EP019124220117','Geplantes Thema: - Warum haben wir keine Haare an den Fußsohlen? Unser Körper ist übersäht mir Haaren - bis auf die Fußsohlen und die Handinnenflächen. Die sind ziemlich haarlos. Warum ausgerechnet diese beiden Körperstellen nackt.','Warum haben wir keine Haare an den Fußsohlen?',_binary '','DEU','Wissen vor acht - Mensch',NULL,NULL,4,NULL,NULL,'SH019124220000'),('EP031760630063','Der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor werden zu Rittern ausgebildet.','Der Hammer der Giganten',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP024895730101','Hank cares for a wayward goldfish that mysteriously falls into his slushy drink.','Fishy Business',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16645599_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730100','Tom and Ben fear they will lose their home when their landlord decides to sell the garage and move.','Landlord in Love',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16645598_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP024895730103','Tom makes it his personal mission to find out Angela\'s big secret.','The Deep Secret',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16645601_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP019657790122','Die Sendung schaut hinter die Kulissen des Falls und rekonstruiert die Geheimverhandlungen.','Der Coup von Gotha',_binary '','DEU','Echt',NULL,NULL,4,NULL,NULL,'SH019657790000'),('EP034333430003','Aadvances in prolonging life, new ways to make a living, and robots getting as smart as humans.','',_binary '\0','GBR','Kevin McCloud\'s Rough Guide to the Future',NULL,NULL,4,NULL,NULL,'SH034333430000'),('EP024895730102','Angela must cope with her new job\'s demanding schedule to keep her friends from being evicted.','Angela the Psychic',_binary '','GBR','Talking Tom and Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16645600_e_h3_aa.jpg',4,NULL,NULL,'SH024895730000'),('EP014052660169','Niomi from London chooses three dates from five menus. One lucky guy will join her for seconds.','',_binary '\0','GBR','Dinner Date',NULL,NULL,4,NULL,NULL,'SH014052660000'),('EP016300950046','Oliver is forced to reconsider what he is willing to do to stop Slade.','Unthinkable',_binary '','GBR','Arrow',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10592601_e_h3_ab.jpg',4,NULL,NULL,'SH016300950000'),('EP014052660168','This time, Luke from Southampton chooses three dates from five menus.','',_binary '\0','GBR','Dinner Date',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13108583_e_h3_aa.jpg',4,NULL,NULL,'SH014052660000'),('EP019667440391','Für die Markteinführung von vielen Implantaten sind keine hochwertigen klinischen Studien nötig.','Außer Kontrolle: das gefährliche Geschäft mit Medizinprodukten?',_binary '','DEU','Die Story',NULL,NULL,4,NULL,NULL,'SH019667440000'),('EP019461951140','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Neues von hier',NULL,NULL,4,NULL,NULL,'SH019461950000'),('EP014052660167','Samantha from London chooses from five menus and three dates.','Samantha',_binary '','GBR','Dinner Date',NULL,NULL,4,NULL,NULL,'SH014052660000'),('EP031760630079','In einer Zeit, als Magie und Zauberei noch allgegenwärtig sind, werden der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor am Hofe von Camelot zu Rittern ausgebildet. Zusammen mit Prinzessin.','Das Siegel der Kobolde',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP031760630078','Der Waisenjunge Arthur und seine Freunde Tristan, Gawain und Sagramor werden zu Rittern ausgebildet.','Verbannung aus Camelot',_binary '','DEU','Arthur und die Freunde der Tafelrunde',NULL,NULL,4,NULL,NULL,'SH031760630000'),('EP003337730191','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Survival Camp',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP019383930094','Eine Frau wird verdächtigt, ihren Mann, der an einem Herzinfarkt gestorben ist, vergiftet zu haben.','Vorsicht Giftig!',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP003337730193','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Survival Camp',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP013041830077','Jennifer\'s article on prostitution opens a maze of corruption and murder.','Cop Out',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122481_e_h3_ab.jpg',4,NULL,NULL,'SH013041830000'),('EP034251810001','Der 2015 gegründete weltweit erste urbane Nationalpark der Welt liegt mitten in Toronto.','Toronto',_binary '','DEU','Nationalparks der Zukunft',NULL,NULL,4,NULL,NULL,'SH034251810000'),('EP013041830078','The purchase of an antique car plunges the Harts into international espionage.','Death in the Slow Lane',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122448_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP034251810002','Südamerikanische Naturschützer setzen für die Einrichtung einer Reihe von Nationalparks ein.','Patagonien',_binary '','DEU','Nationalparks der Zukunft',NULL,NULL,4,NULL,NULL,'SH034251810000'),('EP034251810003','Durch die Übernahme von Staatsschulden ist bei den Seychellen ein Meeresschutzgebiet entstanden.','Seychellen',_binary '','DEU','Nationalparks der Zukunft',NULL,NULL,4,NULL,NULL,'SH034251810000'),('EP012708730108','Penny convinces Amy to confront Sheldon after he breaks his promise to go to her family do.','The Weekend Vortex',_binary '','GBR','The Big Bang Theory',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p9113592_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP013041830080','At a ski resort, Jennifer overhears a man and his mistress plot the death of the wife.','Downhill to Death',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122419_e_h3_ac.jpg',4,NULL,NULL,'SH013041830000'),('EP012708730107','Sheldon\'s barber dies, and Sheldon descends into hippyness as his hair grows.','The Werewolf Transformation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9088779_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730106','Sheldon has a fortnight\'s holiday he must use up, and spends it as Amy\'s lab assistant.','The Vacation Solution',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9063071_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730105','Sheldon and Kripke argue over who should have Prof Rothman\'s vacant office.','The Rothman Disintegration',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9075168_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP020412230042','In einem Krankenhaus sterben Frauen kurz vor ihrer Operation - Father Brown vermutet Mord.','Der Eid des Hippokrates',_binary '','DEU','Father Brown',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12481645_e_h3_aa.jpg',4,NULL,NULL,'SH020412230000'),('EP012861150118','It\'s transition time as Bethenny is still dealing with the chaos of her divorce.','The B Is Back',_binary '','GBR','The Real Housewives of New York City',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11580979_e_h3_aa.jpg',4,NULL,NULL,'SH012861150000'),('EP013041830086','The Harts are determined to clear two close friends who are suspected of murder.','Murder Between Friends',_binary '','GBR','Hart to Hart',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1122470_e_h3_ad.jpg',4,NULL,NULL,'SH013041830000'),('EP019885670098','Der Moderator hat den jungen Schriftsteller Damiano Femfert ins Palais Biron eingeladen.','Denis Scheck im Gespräch',_binary '','DEU','lesenswert',NULL,NULL,4,NULL,NULL,'SH019885670000'),('EP019395241035','Am Human Research Institut im österreichischen Weiz lässt der Moderator seine innere Uhr vermessen.','Innere Uhr - Warum wir lernen sollten, besser auf sie zu hören!',_binary '','DEU','Xenius',NULL,NULL,4,NULL,NULL,'SH019395240000'),('EP030515820013','Mavis versucht Tante Lydia zu überreden, im Hotel Partys zu veranstalten. Aber sie mag keine Partys.','Dianes Geburtstagszauber; Vampir gegen Knoblauch',_binary '','DEU','Hotel Transsilvanien - Die Serie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14550950_e_h3_aa.jpg',4,NULL,NULL,'SH030515820000'),('EP027712470018','Paramedics rush to a 10-year-old boy suffering a major epileptic fit and a man has extreme anxiety.','',_binary '\0','GBR','999: On the Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16207294_e_h3_aa.jpg',4,NULL,NULL,'SH027712470000'),('EP020570670038','Ferne heads off to meet twins Jess and Rosie and their grandma\'s alpacas.','Alpacas',_binary '','GBR','My Pet and Me',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12424113_e_h3_aa.jpg',4,NULL,NULL,'SH020570670000'),('EP030515820014','Dracula will ein spezieller Paps sein; Hank will wissen, woher seine Körperteile stammen.','Dracula - super cool!; Daumen hoch!',_binary '','DEU','Hotel Transsilvanien - Die Serie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14550951_e_h3_aa.jpg',4,NULL,NULL,'SH030515820000'),('EP016937100166','Die Sendung rückt Bayerns junge Musikszene ins Rampenlicht. Drei ausgewählte Bands treten auf.','Mit der Band Blond aus Chemnitz beim PULS Open Air',_binary '','DEU','Startrampe',NULL,NULL,4,NULL,NULL,'SH016937100000'),('EP029624800008','A 20-tonne digger falls into the Thames and Rory is dispatched to rescue a Sprinter blocking a road.','',_binary '\0','GBR','Trucking Hell',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15658809_e_h3_aa.jpg',4,NULL,NULL,'SH029624800000'),('EP029624800009','A car pile-up leaves a waste truck in trouble and Marta is called to a stranded truck in a quarry.','',_binary '\0','GBR','Trucking Hell',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15682323_e_h3_aa.jpg',4,NULL,NULL,'SH029624800000'),('EP027630210010','The Power Rangers and Galvanax attempt to find more information about the Gold Ranger.','Gold Rush',_binary '','GBR','Power Rangers: Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13874895_e_h3_aa.jpg',4,NULL,NULL,'SH027630210000'),('EP019577861560','30 Minuten regionale Information und Unterhaltung aus dem Land.','',_binary '\0','DEU','Nordmagazin',NULL,NULL,4,NULL,NULL,'SH019577860000'),('EP027712470017','A suspected drink driver crashes into a lamp post and a two year old has a severe allergic reaction.','',_binary '\0','GBR','999: On the Front Line',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16178457_e_h3_aa.jpg',4,NULL,NULL,'SH027712470000'),('EP013133341940','Live commentary of Real Madrid v Manchester City in the Champions League last 16, first leg.','UEFA Champions League Football Round of 16, 1st Leg: Real Madrid v Manchester City',_binary '\0','GBR','Live: 5 Live Sport',NULL,NULL,4,NULL,NULL,'SH013133340000'),('EP012595550290','An angry Stewie replaces Brian with a super-intelligent robot named Lyle.','Guy Robot',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12173749_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP018446000066','Against Lisa\'s advice, Katie surprises Stassi in Palm Springs. Scheana worries about losing friends.','Too Little, Too Late',_binary '','GBR','Vanderpump Rules',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12515514_e_h3_ab.jpg',4,NULL,NULL,'SH018446000000'),('EP017028920054','Eine Ghanesin erwartet in Deutschland ihr drittes Kind, während ihr Partner auf Geschäftsreisen ist.','Die 34-jährige Amma erwartet ihren dritten Sohn',_binary '','DEU','Babys! Kleines Wunder - großes Glück',NULL,NULL,4,NULL,NULL,'SH017028920000'),('EP025164400057','The adventure of five beaming balls of light that cause mischief wherever they go.','Sunlight! Camera! Action!',_binary '','GBR','Sunny Bunnies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17602202_e_h3_aa.jpg',4,NULL,NULL,'SH025164400000'),('EP018446000065','Jax\'s girlfriend undergoes breast augmentation surgery. Lisa is faced with a big decision.','Beach, Please',_binary '','GBR','Vanderpump Rules',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12515482_e_h3_ad.jpg',4,NULL,NULL,'SH018446000000'),('EP025164400056','The adventure of five beaming balls of light that cause mischief wherever they go.','Bunnies United',_binary '','GBR','Sunny Bunnies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17602171_e_h3_aa.jpg',4,NULL,NULL,'SH025164400000'),('EP019834270296','Die vertrocknete Leiche eines jungen Mannes mit Bissspuren wird in der Wüste gefunden.','Todesrausch',_binary '','DEU','CSI: Den Tätern auf der Spur',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2382082_e_h3_ac.jpg',4,NULL,NULL,'SH019834270000'),('EP015444021296','Robert genießt es, den Kochkurs abzuhalten, bis Alexander mit einem Starkoch in der Küche auftaucht.','Folge 117',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP019646190151','Eine übergewichtige Dame flippt im Pfandleihhaus aus. Das Sicherheitspersonal muss einschreiten.','Folge 152',_binary '','DEU','Hardcore Pawn - Das härteste Pfandhaus Detroits',NULL,NULL,4,NULL,NULL,'SH019646190000'),('EP015330760011','Innovative Lösungen zur Pflege und Dekoration des Außenbereichs Ihre Zuhauses finden Sie hier.','',_binary '\0','DEU','Haus & Garten',NULL,NULL,4,NULL,NULL,'SH015330760000'),('EP015330760012','Innovative Lösungen zur Pflege und Dekoration des Außenbereichs Ihre Zuhauses finden Sie hier.','',_binary '\0','DEU','Haus & Garten',NULL,NULL,4,NULL,NULL,'SH015330760000'),('EP019646190150','Seth hat die Idee, mit einem Werbefilm das Geschäft anzukurbeln. Les hält nicht viel davon.','Folge 151',_binary '','DEU','Hardcore Pawn - Das härteste Pfandhaus Detroits',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11358579_e_h3_aa.jpg',4,NULL,NULL,'SH019646190000'),('EP025069640012','Jannik und Mo rempeln bei einem Wettrennen versehentlich die Gesangslehrerin an.','Schüler gegen Lehrer',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP034457130001','Following the heroes of Britain\'s Noise Enforcement Teams bringing peace back to homes.','',_binary '\0','GBR','At War With The Noise Next Door',NULL,NULL,4,NULL,NULL,'SH034457130000'),('EP025069640014','Mo ist in Anna verliebt, ist aber zu schüchtern, um ihr das zu sagen. Azra und Ruby wollen helfen.','Die Liebeserklärung',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP025069640015','Ruby, Toni und Jannik sollen zur Übung eine Kochshow aufnehmen. Doch es kommt zu Problemen.','Das Tortendesaster',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP012984750311','Colum McCann tells Mariella about \"Apeirogon\", his book about the Israeli-Palestinian conflict.','Colum McCann, George Orwell, new fiction set in Windrush-era London',_binary '','GBR','Open Book',NULL,NULL,4,NULL,NULL,'SH012984750000'),('EP025069640016','Mo soll für den Schauspielunterricht einen Filmkuss vorbereiten. Doch es gibt ein Problem.','Der Kuuuss',_binary '','DEU','Spotlight',NULL,NULL,4,NULL,NULL,'SH025069640000'),('EP019907940007','The crew salvage items from a house built in the 1940s in Washington, DC.','Post-War Colonial Revival Home',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10014907_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP012972551824','Sean Rafferty presents live performances in the studio by mezzo-soprano Lotte Betts-Dean.','Lotte Betts-Dean, Jeremy Denk',_binary '','GBR','In Tune',NULL,NULL,4,NULL,NULL,'SH012972550000'),('EP034392320002','Harry takes John Barnes and Chris Kamara to see what Sandbanks has to offer from the sea.','',_binary '\0','GBR','Harry Redknapp\'s Sandbanks Summer',NULL,NULL,4,NULL,NULL,'SH034392320000'),('EP013046860221','Questions in the Scottish Parliament to First Minister Nicola Sturgeon on Thursday 27 February.','',_binary '\0','GBR','Scottish First Minister\'s Questions',NULL,NULL,4,NULL,NULL,'SH013046860000'),('EP012972551822','Sean Rafferty presents live performances in the studio by pianist Boris Giltburg.','Boris Giltburg, Elim Chan, English Touring Opera',_binary '','GBR','In Tune',NULL,NULL,4,NULL,NULL,'SH012972550000'),('EP015330760013','Innovative Lösungen zur Pflege und Dekoration des Außenbereichs Ihre Zuhauses finden Sie hier.','',_binary '\0','DEU','Haus & Garten',NULL,NULL,4,NULL,NULL,'SH015330760000'),('EP019907940005','The crew salvage items from a dirty Stick-style house built in the late 1800s in Knoxville.','Stick Style House',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10014912_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP020265790026','An explosion sends a submarine to the bottom of the ocean with Walter, Cabe and Happy on board.','Robots',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12151491_e_h3_ab.jpg',4,NULL,NULL,'SH020265790000'),('EP020265790027','The members of the team go undercover on a movie set in Kazakhstan.','Super Fun Guys',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12173880_e_h3_ab.jpg',4,NULL,NULL,'SH020265790000'),('EP018818710006','Ein Mann mit falschen Papieren wird in einer Personaltoilette ermordet aufgefunden.','Die falsche Zeugin',_binary '','DEU','Helen Dorn',NULL,NULL,4,NULL,NULL,'SH018818710000'),('EP020265790025','Sylvester goes undercover in a federal prison in order to decipher a gang leader\'s secret codes.','Fish Filet',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12125516_e_h3_ab.jpg',4,NULL,NULL,'SH020265790000'),('EP013867190124','Nick and Sally are playing super heroes when Nick cuts his finger and wishes he had super hero skin.','The Skin I\'m In',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9886575_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP016889010067','US-Soldaten kämpften für die Demokratie und die Freiheit anderer Völker.','Die Verbrechen der Befreier - Amerikas dunkle Geheimnisse im Zweiten Weltkrieg',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP012595540038','Debra lies to Ray\'s family in order to celebrate a peaceful birthday with Ray.','Pilot',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926105_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP013867190120','Nick and Sally are trying to make some music but are missing a drum sound, so they visit Dr Giggles.','Drum Di Drum',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9886561_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP017208510012','Die Produkte aus dem Sortiment von Aqua Clean sorgen für eine Erleichterung in der Haushaltspflege.','',_binary '\0','DEU','Aqua Clean: Reinigen mit der Kraft des Sauerstoffs',NULL,NULL,4,NULL,NULL,'SH017208510000'),('EP017208510013','Die Produkte aus dem Sortiment von Aqua Clean sorgen für eine Erleichterung in der Haushaltspflege.','',_binary '\0','DEU','Aqua Clean: Reinigen mit der Kraft des Sauerstoffs',NULL,NULL,4,NULL,NULL,'SH017208510000'),('EP013867190121','Sally and Nick need to clean up the backyard, and Cat\'s friend Rufus the Cleaner Fish help them.','Fishy Washy',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9886564_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP012846970029','Frankie explains why she and her daughter are on the run, also her daughter has a crush on Jake.','That Was Saliva, Alan',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853127_e_h3_ab.jpg',4,NULL,NULL,'SH012846970000'),('EP013867190118','Cat\'s friend Oz the Ostrich cannot fly, and Sally and Nick guess that Oz is good at being big.','Biggest Bird',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9886552_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP033118560020','Incognito and Mickey mock Lily and the ladybird is so frustrated that she loses it.','Tit for Tat!',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP033118560022','Larry fires Thistle and Senecio, because he has had enough of their clumsiness.','Fired',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP033118560025','Wendy can\'t stand to see the Funny Little Bugs happy and does her best to ruin their day.','Wendy\'s Transformation',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP033118560024','An anthill has settled not far from the garden. Mary longs to pay a visit to her kind.','Mary\'s Trip',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP034428120002','Mr and Mrs Bunting investigate a disturbance in the study, but can see nothing.','Burglary at the Vicarage',_binary '','GBR','The Invisible Man',NULL,NULL,4,NULL,NULL,'SH034428120000'),('EP019577861559','30 Minuten regionale Information und Unterhaltung aus dem Land.','',_binary '\0','DEU','Nordmagazin',NULL,NULL,4,NULL,NULL,'SH019577860000'),('EP029624800032','Rob and Lee race to the scene after a van lost control on a country lane and landed on top of a car.','',_binary '\0','GBR','Trucking Hell',NULL,NULL,4,NULL,NULL,'SH029624800000'),('EP020265790034','A nefarious virus is uploaded to Walter\'s computer, creating a death trap.','Tech, Drugs, and Rock \'n Roll',_binary '','GBR','Scorpion',NULL,NULL,4,NULL,NULL,'SH020265790000'),('EP013867190112','Nick and Sally want to wiggle and jiggle like jelly and Cat says it can\'t be done.','Jiggle Bones',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9865673_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP034428120004','The stranger forces a tramp to help him as he escapes the village of Iping. Read by Stephen Murray.','Mr Thomas Marvel',_binary '','GBR','The Invisible Man',NULL,NULL,4,NULL,NULL,'SH034428120000'),('EP034428120003','A confrontation with Mrs Hall results in the stranger revealing his curious predicament.','Unveiling of the Stranger',_binary '','GBR','The Invisible Man',NULL,NULL,4,NULL,NULL,'SH034428120000'),('EP013867190111','Cat launches Sally and Nick\'s toy rocket up and away to the top of the sky.','Top of the Sky',_binary '','GBR','The Cat in the Hat Knows a Lot About That!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9865671_e_h3_aa.jpg',4,NULL,NULL,'SH013867190000'),('EP034164950005','Der Moderator stellt neue, teilweise noch unbekannte Erfindungen vor und spricht mit den Erfindern.','Folge 5',_binary '','DEU','Big Brains - Geniale Erfindungen',NULL,NULL,4,NULL,NULL,'SH034164950000'),('EP026290490030','Dana Newman präsentiert verschiedene Themen, um vorhandene Englischkenntnisse zu vertiefen.','Dana\'s animal idioms',_binary '','DEU','English bite-size',NULL,NULL,4,NULL,NULL,'SH026290490000'),('EP026290490031','Dana Newman präsentiert verschiedene Themen, um vorhandene Englischkenntnisse zu vertiefen.','Dana\'s false friends',_binary '','DEU','English bite-size',NULL,NULL,4,NULL,NULL,'SH026290490000'),('EP032903410027','Evox greift die Beast Bots an, um die Rangers davon abzuhalten, sich zu einem Megazord zu formen.','Beste Freunde',_binary '','DEU','Power Rangers: Beast Morphers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16765482_e_h3_aa.jpg',4,NULL,NULL,'SH032903410000'),('EP029846950002','Clint and Todd turn a lawnmower into an off-road wheelchair and they make a ice fishing shack.','Off-Road Wheelchair & Mobile Ice Shack',_binary '','GBR','Last Outpost',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15337875_e_h3_aa.jpg',4,NULL,NULL,'SH029846950000'),('EP023535090070','Four bladesmiths must forge J Nielson\'s favourite blade, a Damascus European dagger.','The Zande Spear',_binary '','GBR','Forged in Fire',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15398802_e_h3_aa.jpg',4,NULL,NULL,'SH023535090000'),('EP022470100003','From gannets to guillemots, eight million seabirds descend on the UK coast every summer.','Seabirds',_binary '','GBR','Big Blue UK',NULL,NULL,4,NULL,NULL,'SH022470100000'),('EP022470100004','Hugh looks back at film footage from his childhood, reawakening his passion for rock pooling.','Seashore',_binary '','GBR','Big Blue UK',NULL,NULL,4,NULL,NULL,'SH022470100000'),('EP023535090072','Four bladesmiths are tasked with forging blades out of steel from a chain and a sprocket.','Karabela',_binary '','GBR','Forged in Fire',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15290401_e_h3_aa.jpg',4,NULL,NULL,'SH023535090000'),('EP012846970031','Against Alan\'s judgment, Charlie falls for a seemingly crazy woman named Frankie.','Round One to the Hot Crazy Chick',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853126_e_h3_ab.jpg',4,NULL,NULL,'SH012846970000'),('EP012611090568','In the future, a new clone of Homer is created each time he dies.','Days of Future Future',_binary '','GBR','The Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10667982_e_h3_aa.jpg',4,NULL,NULL,'SH012611090000'),('EP023584930126','Bei der freiwilligen Feuerwehr begeistern sich leider immer weniger für das Ehrenamt als Retter.','Freiwillige Feuerwehr',_binary '','DEU','Wie geht das?',NULL,NULL,4,NULL,NULL,'SH023584930000'),('EP034085900008','The guys research the Trail of Tears in connection with activity affecting a woman\'s health.','Trail of Terrors',_binary '','GBR','Ghost Nation',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17614411_e_h3_aa.jpg',4,NULL,NULL,'SH034085900000'),('EP034314030003','Deutschlands bekanntester Make-up-Künstler Boris Entrup sucht in dieser Sendung frische Talente.','Matt is More; Gloss',_binary '','DEU','Let\'s Glow - Die Make-Up-Challenge',NULL,NULL,4,NULL,NULL,'SH034314030000'),('EP013771680124','Will a move to a four day week, as proposed by the Labour Party, ever happen?','The Working Week',_binary '','GBR','The Bottom Line',NULL,NULL,4,NULL,NULL,'SH013771680000'),('EP019765930122','Seto möchte seinen Bruder Mokuba nicht verletzen und bricht seinen Angriff auf Noah ab.','Verfeindete Brüder',_binary '','DEU','Yu-Gi-Oh!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2581863_e_h3_aa.jpg',4,NULL,NULL,'SH019765930000'),('EP020459360056','Alex Simmons and Jamie Jones-Buchanan gather with guest players to chat all things Rugby League.','',_binary '\0','GBR','Rugby AM',NULL,NULL,4,NULL,NULL,'SH020459360000'),('EP019576340259','Richterin Denise Grobman wird von einem Autodieb niedergeschossen und schwer verletzt.','Bis daß der Tod uns scheidet',_binary '','DEU','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289774_e_h3_ac.jpg',4,NULL,NULL,'SH019576340000'),('EP031006840028','Lily, Imogen und Kyra sollen einen verzauberten Briefkasten bewachen, doch das geht schief.','Postbote verzweifelt gesucht',_binary '','DEU','Club der magischen Dinge',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15784135_e_h3_aa.jpg',4,NULL,NULL,'SH031006840000'),('EP022362340001','Bettany Hughes travels to India to investigate the revolutionary ideas of the Buddha.','Buddha',_binary '','GBR','Genius of the Ancient World',NULL,NULL,4,NULL,NULL,'SH022362340000'),('EP019907940039','The Black Dog Salvage team saves architectural elements at Roanoke College in Salem, Virginia.','Roanoke College',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11240204_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP018795040050','Die Schildkröte ist mit ihrem rosa Schlitten im Begonienbeet von Frau Stinktier gelandet.','Wer hat die Schildkröte ausgebremst?',_binary '','DEU','Sherlock Yack - Der Zoodetektiv',NULL,NULL,4,NULL,NULL,'SH018795040000'),('EP018795040051','Dem Zebra wurden die Streifen mit einem Schottenkaro überpinselt. Doch er hat diese Tat begangen?','Wer hat das Zebra bepinselt?',_binary '','DEU','Sherlock Yack - Der Zoodetektiv',NULL,NULL,4,NULL,NULL,'SH018795040000'),('EP019907940035','Mike and Robert remove a two-piece staircase from a farmhouse in Marion, Virginia.','Meek Farmhouse',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11240099_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP019907940038','The team saves parts of an old Victorian-style farmhouse in Laurel Forks, Virginia.','Hylton Victorian',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11240200_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP019462190927','Die Erdmännchen können nicht einschlafen, bevor sie nicht die Ziege auf dem Mond gefunden haben.','Jan & Henry: Die Gewitterziege auf dem Mond',_binary '','DEU','Unser Sandmännchen',NULL,NULL,4,NULL,NULL,'SH019462190000'),('EP019907940040','The crew saves parts of a farmhouse in South Boston, Virginia.','Weatherford Farmhouse',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11240409_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP018795040049','Der Krach des Feuerwerks im Zoo wurde genutzt, um dem Tapir sein kostbares Amulett zu stehlen.','Wer hat beim Tapir eingesackt?',_binary '','DEU','Sherlock Yack - Der Zoodetektiv',NULL,NULL,4,NULL,NULL,'SH018795040000'),('EP022815960002','Die Experten geben in der Sendung Tipps für ein gesundes und ausgewogenes Frühstück.','',_binary '\0','DEU','Frühstück gesund und lecker',NULL,NULL,4,NULL,NULL,'SH022815960000'),('EP022815960001','Die Experten geben in der Sendung Tipps für ein gesundes und ausgewogenes Frühstück.','',_binary '\0','DEU','Frühstück gesund und lecker',NULL,NULL,4,NULL,NULL,'SH022815960000'),('EP015403810254','Ein Thema der Sendung ist unter anderem: \"Nach Hanau: Was Medien besser machen sollten\".','Folge 118',_binary '','DEU','Zapp',NULL,NULL,4,NULL,NULL,'SH015403810000'),('EP018795040048','Auf dem Heimweg von einem Schachspiel mit Dr. Schnabelmann wird Sherlock Yack niedergeschlagen.','Wer hat Sherlock umgehauen?',_binary '','DEU','Sherlock Yack - Der Zoodetektiv',NULL,NULL,4,NULL,NULL,'SH018795040000'),('EP015402280509','Wie alt man wird, hängt von den Genen ab, aber auch von der Lebenssituation und der Lebensführung.','Für immer jung: Können wir das Altern stoppen?',_binary '','DEU','Planet Wissen',NULL,NULL,4,NULL,NULL,'SH015402280000'),('EP018024280031','A couple is eager to relocate to Oahu.','Navy Family Moves To Oahu',_binary '','GBR','Hawaii Life',NULL,NULL,4,NULL,NULL,'SH018024280000'),('EP012611090566','Lisa dates a competitive eater and Bart benefits from helping convict Snake Jailbird.','Luca$',_binary '','GBR','The Simpsons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10648437_e_h3_aa.jpg',4,NULL,NULL,'SH012611090000'),('EP034254140014','Der Moderator lädt drei selbstbewusste Hobbyköche zum Improvisations-Kochduell ein.','Folge 14',_binary '','DEU','Hensslers Countdown - Kochen am Limit',NULL,NULL,4,NULL,NULL,'SH034254140000'),('EP013031380050','Rallo is suspicious when his elderly friend, Murray, gets a new girlfriend.','Sex and the Biddy',_binary '','GBR','The Cleveland Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8942369_e_h3_ac.jpg',4,NULL,NULL,'SH013031380000'),('EP034254140013','Der Moderator lädt drei selbstbewusste Hobbyköche zum Improvisations-Kochduell ein.','Folge 13',_binary '','DEU','Hensslers Countdown - Kochen am Limit',NULL,NULL,4,NULL,NULL,'SH034254140000'),('EP020265790066','Happy, Sylvester and Cabe suffer from hallucinations after the protection of a seed bank goes awry.','Dirty Seeds, Done Dirt Cheap',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13762685_e_h3_aa.jpg',4,NULL,NULL,'SH020265790000'),('EP020265790067','Happy\'s friend Ada, who has a compromised immune system, is in danger after a severe storm.','Don\'t Burst My Bubble',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13792795_e_h3_aa.jpg',4,NULL,NULL,'SH020265790000'),('EP014715700013','A family falls victim to a home invasion that ends in rape and murder.','Silver Lake',_binary '','GBR','Law & Order: LA',NULL,NULL,4,NULL,NULL,'SH014715700000'),('EP032268380065','Den Zwergen gelingt die Zerstörung der Smile-Fabrik und Ruffy und Law dringen zum Palast vor.','Eine vereinte Front! - Ruffy\'s Durchbruch zum Sieg',_binary '','DEU','One Piece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12205905_e_h3_aa.jpg',4,NULL,NULL,'SH032268380000'),('EP028164200068','It\'s all about mangoes today: there\'s an orange mango, a sweet mango and a mushy mango.','Mango',_binary '','GBR','Yakka Dee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16884889_e_h3_aa.jpg',4,NULL,NULL,'SH028164200000'),('EP032268380067','Hinter einer falschen Wand findet Kinemon seinen alten Freund Kanjuro, mit dem seine Flucht gelingt.','Der zweite Samurai! - Kanjuro des Abendschauers',_binary '','DEU','One Piece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12205909_e_h3_aa.jpg',4,NULL,NULL,'SH032268380000'),('EP032268380062','Ruffy, Robin, Rebecca und die Zwerge wollen Law endlich von seinen Handschellen befreien.','Eine auswegslose Situation! - Ruffy tappt in eine Falle',_binary '','DEU','One Piece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12205898_e_h3_aa.jpg',4,NULL,NULL,'SH032268380000'),('EP013031380052','Cleveland tells the family his version of \"Die Hard,\" one of his favourite holiday tales.','Die Semi-Hard',_binary '','GBR','The Cleveland Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8937714_e_h3_ac.jpg',4,NULL,NULL,'SH013031380000'),('EP028164200066','We see various types of coats, from a raincoat to a snowy coat and even a glowy coat.','Coat',_binary '','GBR','Yakka Dee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16884862_e_h3_aa.jpg',4,NULL,NULL,'SH028164200000'),('EP028164200067','We see all sorts of yo-yos, spotty yo-yos, a stripy yo-yo, a rocking yo-yo and even a peepo yo-yo.','Yo-yo',_binary '','GBR','Yakka Dee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16884868_e_h3_aa.jpg',4,NULL,NULL,'SH028164200000'),('EP018575210080','Fee ist auf der Suche nach einer starken Lok, die den königlichen Waggon ziehen kann.','Trainingszeit für Harry',_binary '','DEU','Chuggington - Die Loks sind los!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8234338_e_h3_ab.jpg',4,NULL,NULL,'SH018575210000'),('EP032268380063','Ruffy kommt in einen alten Bergstollen, der teils unter Wasser steht und allmählich zur Falle wird.','Eine grossartige Flucht! - Ruffy\'s Elephant Gun bringt die Wende',_binary '','DEU','One Piece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12205900_e_h3_aa.jpg',4,NULL,NULL,'SH032268380000'),('EP028164200065','Dee encourages a friend to say \"rocket\" and we go on a whirlwind word adventure.','Rocket',_binary '','GBR','Yakka Dee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16715581_e_h3_aa.jpg',4,NULL,NULL,'SH028164200000'),('EP012586810047','Barry and Julie are building their own four storey modern mansion in one of Brighton\'s suburbs.','The Brighton Modern Mansion',_binary '','GBR','Grand Designs',NULL,NULL,4,NULL,NULL,'SH012586810000'),('EP014715700015','The detectives investigate a shooting at a birthday party; Winters receives a surprise visit.','Zuma Canyon',_binary '','GBR','Law & Order: LA',NULL,NULL,4,NULL,NULL,'SH014715700000'),('EP019907940017','The crew salvage items from a Vernacular Greek Revival-style house in Nestlebrooke, Virginia.','Salvaging a House in Roanoke, Va, Into Repurposed Housing Items',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10437187_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP027600150687','Im regionalen Nachrichtenmagazin steht der Alltag von Menschen in NRW im Mittelpunkt.','',_binary '\0','DEU','Hier und heute',NULL,NULL,4,NULL,NULL,'SH027600150000'),('EP012812790019','It is time to shear the sheep at Warburne Organic Farm and the pickers are also out in force.','',_binary '\0','GBR','A Farm Life',NULL,NULL,4,NULL,NULL,'SH012812790000'),('EP027600150688','Im regionalen Nachrichtenmagazin steht der Alltag von Menschen in NRW im Mittelpunkt.','',_binary '\0','DEU','Hier und heute',NULL,NULL,4,NULL,NULL,'SH027600150000'),('EP020265790065','On foreign soil, Walter and Sylvester go under cover in an attempt to extricate a US spy.','Keep It in Check, Mate',_binary '','GBR','Scorpion',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13742354_e_h3_aa.jpg',4,NULL,NULL,'SH020265790000'),('EP019907940013','The team tackle an American Foursquare house built in 1910 in Fairmont, West Virginia.','American Foursquare House',_binary '','GBR','Salvage Dawgs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10014910_e_h3_aa.jpg',4,NULL,NULL,'SH019907940000'),('EP018024280022','Empty nesters prepare to start over in Oahu.','Empty Nesters Search For A House',_binary '','GBR','Hawaii Life',NULL,NULL,4,NULL,NULL,'SH018024280000'),('EP014932740846','Ricky Burdett, Liza Fior, Des Fitzgerald, Alexandra Daisy Ginsberg and Edwin Heathcote.','How archictecture shapes society',_binary '','GBR','Free Thinking',NULL,NULL,4,NULL,NULL,'SH014932740000'),('EP018024280019','A couple is eager to start a photography company in Hawaii.','A Couple Move To Oahu',_binary '','GBR','Hawaii Life',NULL,NULL,4,NULL,NULL,'SH018024280000'),('EP030833490522','Der erste Schnee ist gefallen. Auf Jakes Party stellt dessen Familien-Kuckucksuhr das Highlight dar.','Die Kuckucksuhr',_binary '','DEU','Paw Patrol - Helfer auf vier Pfoten',NULL,NULL,4,NULL,NULL,'SH030833490000'),('EP014721980761','Refresh your morning with a great selection of classical music, presented by Suzy Klein.','Essential Classics with Suzy Klein: Bizet\'s L\'Arlésienne, Essential Scherzos, Geraldine Mucha',_binary '','GBR','Essential Classics',NULL,NULL,4,NULL,NULL,'SH014721980000'),('EP019577750654','SpongeBob soll auf der Karateinsel zum König des Karate gekürt werden. Sandy reist mit ihm mit.','Der König des Karate',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222537_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP013042310044','Bodie and Doyle are asked to investigate a robbery with diplomatic aspects.','Hijack',_binary '','GBR','The Professionals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1221037_e_h3_aa.jpg',4,NULL,NULL,'SH013042310000'),('EP019577750653','Der Fliegende Holländer gehört zu den berühmtesten Gespenstern der Welt. Er zieht bei SpongeBob ein.','Geisterstunde',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222534_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP013042310046','Bodie learns that Keller, a friend who once saved his life, is now a member of a terrorist group.','Kickback',_binary '','GBR','The Professionals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1221040_e_h3_aa.jpg',4,NULL,NULL,'SH013042310000'),('EP013042310045','Rural police enlist the agents to probe the thefts of art treasures and industrial secrets.','It\'s Only a Beautiful Picture',_binary '','GBR','The Professionals',NULL,NULL,4,NULL,NULL,'SH013042310000'),('EP014932740847','Helen Lewis, Zoe Strimpel, novelist Kiley Reid and Juliet Conway join Shahidha Bari.','Women Behaving Badly?',_binary '','GBR','Free Thinking',NULL,NULL,4,NULL,NULL,'SH014932740000'),('EP012812790023','It\'s Spring lambing on the farm and there\'s challenging times in the orphan lamb pen!','',_binary '\0','GBR','A Farm Life',NULL,NULL,4,NULL,NULL,'SH012812790000'),('EP031006840016','Peter erwischt Kyra beim Zaubern. Imogen und Lily versuchen, sein Gedächtnis zu löschen.','Die ganze Welt ist eine Bühne',_binary '','DEU','Club der magischen Dinge',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15765269_e_h3_aa.jpg',4,NULL,NULL,'SH031006840000'),('EP012812790024','Looking at the family life of George the farmer as he tries to create a sustainable system.','',_binary '\0','GBR','A Farm Life',NULL,NULL,4,NULL,NULL,'SH012812790000'),('EP031006840015','Kyra erfährt mehr über die Welt der Magie und wird von Professor Maxwell zu Studien eingeladen.','Magie liegt in der Luft',_binary '','DEU','Club der magischen Dinge',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15765267_e_h3_aa.jpg',4,NULL,NULL,'SH031006840000'),('EP031006840014','Die 16-jährige Kyra beginnt nach einem Zwischenfall, eine Welt voller Magie zu entdecken.','Ein magisches Missgeschick',_binary '','DEU','Club der magischen Dinge',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15697651_e_h3_aa.jpg',4,NULL,NULL,'SH031006840000'),('EP019576340266','Cecilia Knowles wurde mit Blutergüssen und Würgemalen in ihrer Wohnung aufgefunden.','Verfahrensmängel',_binary '','DEU','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289778_e_h3_ad.jpg',4,NULL,NULL,'SH019576340000'),('EP019576340263','Ein Dieb will am hellichten Tage einer Frau die Handtasche klauen.','Auf dem Prüfstand',_binary '','DEU','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289777_e_h3_ac.jpg',4,NULL,NULL,'SH019576340000'),('EP020570670042','Rory visits Jess and her sheepdog, Mo. They clean her kennel and make sure there is food and water.','Sheepdog',_binary '','GBR','My Pet and Me',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12424120_e_h3_aa.jpg',4,NULL,NULL,'SH020570670000'),('EP019576340262','Der Staatsanwalt Felder wurde von einem unbekannten Täter ermordet.','Tödlicher Ehrgeiz',_binary '','DEU','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289776_e_h3_ac.jpg',4,NULL,NULL,'SH019576340000'),('EP012586810033','Kevin returns to see how Ben Law\'s handcrafted, self-sufficient woodsman\'s cottage has changed.','The Woodsmans Cottage: Revisited',_binary '','GBR','Grand Designs',NULL,NULL,4,NULL,NULL,'SH012586810000'),('EP019576340260','Ein junges Mädchen liegt tot und unter Einfluss von Drogen auf dem Grundstück ihrer Eltern.','Heirat inbegriffen',_binary '','DEU','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289775_e_h3_ac.jpg',4,NULL,NULL,'SH019576340000'),('EP012812790025','Things get serious as the Soil Association come for their annual inspections of the farm.','',_binary '\0','GBR','A Farm Life',NULL,NULL,4,NULL,NULL,'SH012812790000'),('EP015356881620','DCI Matthews and DS Armitage are at a loss to find anyone with a motive for a brutal attack.','The Interrogation: Heather',_binary '','GBR','Afternoon Drama',NULL,NULL,4,NULL,NULL,'SH015356880000'),('EP012595550218','Brian uses Stewie\'s time machine to impress women he meets at bars.','Yug Ylimaf',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9544456_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP032348020029','Duncan escapes during a community walk only to discover he has to babysit Cody and Bridgette.','Duncan Disorderly',_binary '','GBR','Total DramaRama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16854586_e_h3_aa.jpg',4,NULL,NULL,'SH032348020000'),('EP019658800399','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 26.02.2020 um 17:50 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP019658800398','hessenschau kompakt berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.','vom 26.02.2020 um 16:45 Uhr',_binary '','DEU','hessenschau kompakt',NULL,NULL,4,NULL,NULL,'SH019658800000'),('EP019671360182','Jarrod und Brandi trennen sich, aber noch kann man nicht sagen, ob die Trennung endgültig ist.','Verführungskünste',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10629597_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP012608380032','Terrorist leaders come under suspicion when a retired army sergeant is murdered.','Bounty',_binary '','GBR','NCIS: Los Angeles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8365993_e_h3_ab.jpg',4,NULL,NULL,'SH012608380000'),('EP012608380033','A missing book with top-secret information belonged to an antiques dealer who was murdered.','Absolution',_binary '','GBR','NCIS: Los Angeles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8369423_e_h3_ab.jpg',4,NULL,NULL,'SH012608380000'),('EP012608380031','Terrorists kill a state department employee and a plastic surgeon.','Anonymous',_binary '','GBR','NCIS: Los Angeles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8342803_e_h3_ab.jpg',4,NULL,NULL,'SH012608380000'),('EP012847870232','The children learn how to play basketball and they take on a much bigger team.','Basketball',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8672678_e_h3_ab.jpg',4,NULL,NULL,'SH012847870000'),('EP016113510100','In Thailand, Jimmy discovers the surprising secret ingredient that makes a prawn cracker unique.','',_binary '\0','GBR','Food Unwrapped',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14141139_e_h3_aa.jpg',4,NULL,NULL,'SH016113510000'),('EP027640520004','Die Doku-Reihe widmet sich der schönsten Nebensache der Welt: Frei und ohne Tabus sprechen Deutsche vor der Kamera über ihre intimsten Geheimnisse? Was bringt sie im Schlafzimmer zur völligen Ekstase?','Von zart bis hart!',_binary '','DEU','Sex Secrets - Das macht Deutschland an!',NULL,NULL,4,NULL,NULL,'SH027640520000'),('EP012616430146','Motorhome Grand Prix, Alfa Romeo 159, BMW M5, Mercedes E63 AMG, and Honda Civic Type-R.','',_binary '\0','GBR','Top Gear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8317630_e_h3_ab.jpg',4,NULL,NULL,'SH012616430000'),('EP012616430147','James Blunt and Lewis Hamilton guest star and take a spin in the Reasonably Priced Car.','',_binary '\0','GBR','Top Gear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8317633_e_h3_ab.jpg',4,NULL,NULL,'SH012616430000'),('EP012847870226','Peppa and her family visit a new theme park where there is lots of fun to be had with vegetables.','Potato City',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8672665_e_h3_ab.jpg',4,NULL,NULL,'SH012847870000'),('EP012847870224','Peppa and George are taken to visit the home that Mr Bull is building.','The New House',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8672661_e_h3_ab.jpg',4,NULL,NULL,'SH012847870000'),('EP015406260008','This edition features a man going for the record for the most rubber bands on the face.','',_binary '\0','GBR','Totally Bonkers Guinness World Records',NULL,NULL,4,NULL,NULL,'SH015406260000'),('EP019375120089','Die Moderatoren präsentieren die aktuellsten Nachrichten und Themen, die die Welt bewegen.','',_binary '\0','DEU','Prosieben Spätnachrichten',NULL,NULL,4,NULL,NULL,'SH019375120000'),('EP026189850006','Danny\'s starving crew must mill 25 logs before nightfall and Greg\'s crew is stranded on the beach.','Threat of Winter',_binary '','GBR','Land Rush',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11925286_e_h3_aa.jpg',4,NULL,NULL,'SH026189850000'),('EP023220780312','Aktuelle Kinofilme knackig und kompakt präsentiert - das bietet Watch Me - Das Kinomagazin.','Folge 214',_binary '','DEU','Watch Me - das Kinomagazin',NULL,NULL,4,NULL,NULL,'SH023220780000'),('EP025466040070','John\'s 100mph blue-light run panics an unrelated driver into a crash.','',_binary '\0','GBR','Traffic Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17570253_e_h3_aa.jpg',4,NULL,NULL,'SH025466040000'),('EP016236130079','Jasmine Harman helps retired couple Stephen and Janis find a home on the western Costa del Sol.','Costa del Sol',_binary '','GBR','A Place in the Sun: Summer Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14356342_e_h3_aa.jpg',4,NULL,NULL,'SH016236130000'),('EP016236130078','Danni Menzies helps Cheshire couple Alison and Stephen find a holiday home in Marseillan.','Marseillan, France',_binary '','GBR','A Place in the Sun: Summer Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14356169_e_h3_aa.jpg',4,NULL,NULL,'SH016236130000'),('EP012877770224','Andy hopes to speak his bride\'s and mother-in-law\'s language by planning a Ukrainian wedding.','',_binary '\0','GBR','Don\'t Tell the Bride',NULL,NULL,4,NULL,NULL,'SH012877770000'),('EP028827860037','In Cleveland, 14-year-old Gloria Pointer is snatched off the street, assaulted and murdered.','Mommy Speak for Me',_binary '','GBR','Cold Blood',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12591821_e_h3_ab.jpg',4,NULL,NULL,'SH028827860000'),('EP012588500085','Terry and Arthur have a day at the beach, with Terry supposedly looking after a race horse.','National Pelmet',_binary '','GBR','Minder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1153482_e_h3_aa.jpg',4,NULL,NULL,'SH012588500000'),('EP018297470038','Melody is shown how the bells are rung and even gets the chance to ring the bell.','New Bell',_binary '','GBR','Melody',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11949692_e_h3_aa.jpg',4,NULL,NULL,'SH018297470000'),('EP016608970095','Dumping Ground characters gather to watch videos about their lives. This time it is May-Li\'s turn.','I\'m May-Li',_binary '','GBR','The Dumping Ground',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13768560_e_h3_aa.jpg',4,NULL,NULL,'SH016608970000'),('EP018297470039','Mum and Melody decide to have a competition to see who can build the tallest tower.','Tallest Towers',_binary '','GBR','Melody',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11949703_e_h3_ab.jpg',4,NULL,NULL,'SH018297470000'),('EP028827860036','Matthew Monahon returns home to discover his pregnant wife, Kelsey, clinging to life.','Screams of Silence',_binary '','GBR','Cold Blood',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12673125_e_h3_ab.jpg',4,NULL,NULL,'SH028827860000'),('EP019570090182','Ärztin Inga aus Schweden stattet der Mannschaft im Lazarett einen Besuch ab.','Inga gibt zu denken',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145098_e_h3_ab.jpg',4,NULL,NULL,'SH019570090000'),('EP003332650951','Das Nachtjournal zeigt zu später Stunde umfassende Nachrichten des Tages.','',_binary '\0','DEU','RTL-Nachtjournal',NULL,NULL,4,NULL,NULL,'SH003332650000'),('EP003332650952','Das Nachtjournal zeigt zu später Stunde umfassende Nachrichten des Tages.','',_binary '\0','DEU','RTL-Nachtjournal',NULL,NULL,4,NULL,NULL,'SH003332650000'),('EP019570090183','Klinger hatte einen leichten Unfall und versucht nun, einen Entlassungsschein zu bekommen.','Ernies Pizza Inferno',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145099_e_h3_ab.jpg',4,NULL,NULL,'SH019570090000'),('EP025466040068','Ant and Mark\'s pursuit of a stolen moped takes them off their patch into the estates of Sheffield.','',_binary '\0','GBR','Traffic Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17512675_e_h3_aa.jpg',4,NULL,NULL,'SH025466040000'),('EP019570090188','Radar hat sich in die neue Krankenschwester Linda verliebt und schwebt auf Wolke Sieben.','Radar hat ein Mädchen',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145097_e_h3_ab.jpg',4,NULL,NULL,'SH019570090000'),('EP025466040066','Derbyshire\'s Traffic Cops team up with neighbouring forces for an operation - Operation Fuego.','',_binary '\0','GBR','Traffic Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17464856_e_h3_aa.jpg',4,NULL,NULL,'SH025466040000'),('EP019570090187','Das Camp steht wieder einmal unter Beschuss und die Einheit muss in eine Felsenhöhle verlegt werden.','Die mutigen Helden',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145101_e_h3_aa.jpg',4,NULL,NULL,'SH019570090000'),('EP015406260014','Guinness World Records, including the most watermelons punched in one minute.','',_binary '\0','GBR','Totally Bonkers Guinness World Records',NULL,NULL,4,NULL,NULL,'SH015406260000'),('EP016236130083','Jasmine shows Rhona and Nina Brennan five properties in Limousin, France, for their £165,000 budget.','Limousin, France',_binary '','GBR','A Place in the Sun: Summer Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14375470_e_h3_ab.jpg',4,NULL,NULL,'SH016236130000'),('EP012851250104','Ben and Holly help Gaston keep three baby ladybirds entertained.','Uncle Gaston',_binary '','GBR','Ben & Holly\'s Little Kingdom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9869711_e_h3_aa.jpg',4,NULL,NULL,'SH012851250000'),('EP025466040064','Operation Fuego\'s first hit involves John and South Yorkshire officers chasing a getaway driver.','',_binary '\0','GBR','Traffic Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17414148_e_h3_aa.jpg',4,NULL,NULL,'SH025466040000'),('EP013478230006','A breakthrough in \"ecological physics\" is scandalously ignored.','Power Struggles',_binary '','GBR','In a Nutshell',NULL,NULL,4,NULL,NULL,'SH013478230000'),('EP031459900012','Angela Barnes, Guz Khan, Tom Davis and Harriet Kemsley are posed absurd hypothetical situations.','',_binary '\0','GBR','Hypothetical',NULL,NULL,4,NULL,NULL,'SH031459900000'),('EP031459900011','Tom Allen, Felicity Ward, Sue Perkins and Alex Brooker are posed absurd hypothetical situations.','',_binary '\0','GBR','Hypothetical',NULL,NULL,4,NULL,NULL,'SH031459900000'),('EP032915190026','Ella\'s mum promised her a dog, but she has to prove she can take care of a turtle for a week first.','Where\'s Francoise',_binary '','GBR','Ella, Oscar & Hoo',NULL,NULL,4,NULL,NULL,'SH032915190000'),('EP019570090193','Der CIA-Agent Flagg kommt erneut ins Camp, da er überall kommunistische Spione wittert.','Spionagering enttarnt',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145103_e_h3_ab.jpg',4,NULL,NULL,'SH019570090000'),('EP034269800001','Following staff and claimants at Peckham Jobcentre in London.','',_binary '\0','GBR','Universal Credit: Inside the Welfare State',NULL,NULL,4,NULL,NULL,'SH034269800000'),('EP015443450084','Max Moor berichtet von der Berlinale, den 67. Internationalen Filmfestspielen in Berlin.','extra: Die Berlinale',_binary '','DEU','ttt - titel thesen temperamente',NULL,NULL,4,NULL,NULL,'SH015443450000'),('EP022416050019','Coralia möchte ihre Eier ablegen. Sammy zeigt ihr einen Platz. Das Riff hat lauter Feriengäste.','Die Schildkrötenbabys; Die Besucher',_binary '','DEU','Sammy: Kleine Flossen, große Abenteuer',NULL,NULL,4,NULL,NULL,'SH022416050000'),('EP019570090194','Nachdem Colonel Lacy im Lazarett eingestellt wurde, sorgt er für jede Menge Arbeit.','Der rettende Blinddarm',_binary '','DEU','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145094_e_h3_ab.jpg',4,NULL,NULL,'SH019570090000'),('EP019646300029','Ein Feuerball schießt auf ein Haus zu und ein führerloses Flugzeug rast in eine Menschenmenge.','Folge 29',_binary '','DEU','Zerstört in Sekunden',NULL,NULL,4,NULL,NULL,'SH019646300000'),('EP019646300028','Ein Erdrutsch zerstört Wohnhäuser und ein Schneemobilfahrer wird von einer Lawine begraben.','Folge 28',_binary '','DEU','Zerstört in Sekunden',NULL,NULL,4,NULL,NULL,'SH019646300000'),('EP024950070138','There\'s an awkward snog fest for two celebs on their second dates, and Lockie gets a huge shock.','',_binary '\0','GBR','Celebs Go Dating',NULL,NULL,4,NULL,NULL,'SH024950070000'),('EP024950070139','Dean shares some risqué stories with his second date, whilst Lockie finds his gentlemanly side.','',_binary '\0','GBR','Celebs Go Dating',NULL,NULL,4,NULL,NULL,'SH024950070000'),('EP026129130008','Jane takes a river cruise down the Rhone tries wine-tasting and takes a hot air balloon ride.','Rhone River Cruise',_binary '','GBR','Cruising with Jane McDonald',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14533259_e_h3_aa.jpg',4,NULL,NULL,'SH026129130000'),('EP024950070137','The celebs take part in a \"date-a-geddon\", and Dean and Lockie both go on dates.','',_binary '\0','GBR','Celebs Go Dating',NULL,NULL,4,NULL,NULL,'SH024950070000'),('EP026129130007','Jane stops off at the Sagrada Familia in Barcelona and hits the Italian Riviera in Genoa.','Western Mediterranean',_binary '','GBR','Cruising with Jane McDonald',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14512075_e_h3_aa.jpg',4,NULL,NULL,'SH026129130000'),('EP026515980116','Während der Vorbereitung für eine Jamsession verliert Donald Mickys Lieblingsukulele.','Mickys Ukulelel; Großvater gegen Großvater',_binary '','DEU','Micky und die flinken Flitzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15850887_e_h3_aa.jpg',4,NULL,NULL,'SH026515980000'),('EP016398621138','Das Boulevardmagazin berichtet von nationalen und internationalen Prominenten.','',_binary '\0','DEU','Leute heute',NULL,NULL,4,NULL,NULL,'SH016398620000'),('EP016398621137','Das Boulevardmagazin berichtet von nationalen und internationalen Prominenten.','',_binary '\0','DEU','Leute heute',NULL,NULL,4,NULL,NULL,'SH016398620000'),('EP017835640012','Engineers work around the clock to annul the threat of a landslide.','Network Renewed',_binary '','GBR','The Railway: First Great Western',NULL,NULL,4,NULL,NULL,'SH017835640000'),('EP016398621136','Das Boulevardmagazin berichtet von nationalen und internationalen Prominenten.','',_binary '\0','DEU','Leute heute',NULL,NULL,4,NULL,NULL,'SH016398620000'),('EP023220780305','Aktuelle Kinofilme knackig und kompakt präsentiert - das bietet Watch Me - Das Kinomagazin.','Knives Out',_binary '','DEU','Watch Me - das Kinomagazin',NULL,NULL,4,NULL,NULL,'SH023220780000'),('EP015406260037','This episode features the most bottle caps removed with the teeth in one minute.','',_binary '\0','GBR','Totally Bonkers Guinness World Records',NULL,NULL,4,NULL,NULL,'SH015406260000'),('EP013349570031','The gang investigate an unknown \"Dreamweaver\" who appears in the dreams of Crystal Cove residents.','Web of the Dreamweaver!',_binary '','GBR','Scooby-Doo! Mystery Incorporated',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9314583_e_h3_aa.jpg',4,NULL,NULL,'SH013349570000'),('EP013349570032','A travelling curio wagon arrives in Crystal Cove with a beast called the Hodag.','The Hodag of Horror',_binary '','GBR','Scooby-Doo! Mystery Incorporated',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9314584_e_h3_ab.jpg',4,NULL,NULL,'SH013349570000'),('EP012616430102','The team take part in the Britcar 24-hour race, and test the Daihatsu Materia against Ascari A10.','',_binary '\0','GBR','Top Gear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8220115_e_h3_ab.jpg',4,NULL,NULL,'SH012616430000'),('EP013286270490','A Party Political Broadcast by the Conservative Party.','',_binary '\0','GBR','Party Political Broadcast',NULL,NULL,4,NULL,NULL,'SH013286270000'),('EP032348020050','Owen takes over the job of caring for the class hamster and learns that he\'s evil.','Stop! Hamster Time',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP026040630379','Jett delivers binoculars to Ella, who wants to return three penguins to Antarctica.','Penguin Parade',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12195798_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP032348020051','Chef attempts to trick the kids into making his mother gifts after he forgets Mother\'s Day.','Mother of All Cards',_binary '','GBR','Total DramaRama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16854584_e_h3_aa.jpg',4,NULL,NULL,'SH032348020000'),('EP026515980123','Minnie, Daisy und Kuckulina reisen in den Amazonas-Dschungel, um Daisys Cousine zu helfen.','Daisys Fotoshooting; Superstark: Das Flitzer-Fußballspiel',_binary '','DEU','Micky und die flinken Flitzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15928861_e_h3_aa.jpg',4,NULL,NULL,'SH026515980000'),('EP032348020052','Thinking it\'s a cat, Bridgette befriends a skunk and sneaks it into the daycare.','The Squirt Locker',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP026515980122','Karlo macht sich Sorgen, dass er seine Mutter nicht beeindrucken kann, wenn sie zu Besuch kommt.','Der Skiausflug; Bürgermeister Karlo',_binary '','DEU','Micky und die flinken Flitzer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16326066_e_h3_aa.jpg',4,NULL,NULL,'SH026515980000'),('EP032348020053','After forgetting to book an actor to play the Easter Bunny for the kids, Chef tries to pass off an Australian man dressed as a kangaroo as a suitable substitute.','Weiner Takes All',_binary '','GBR','Total DramaRama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17501183_e_h3_ac.jpg',4,NULL,NULL,'SH032348020000'),('EP015444021284','Der Konflikt zwischen Alexander und Robert belastet Laura, doch ihre Vermittlungsversuche scheitern.','Folge 116',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP021050460024','Ricky makes a camouflage picture inspired by Rousseau and an ice cream shaped pinata to lure a yeti.','Day of the Yeti',_binary '','GBR','Art Ninja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13794349_e_h3_aa.jpg',4,NULL,NULL,'SH021050460000'),('EP025247490095','Dem Verbraucher werden Tipps vermittelt zu Baufinanzierung, Immobilienmärkte und Architektur.','Thema u.a.: Heizung mieten statt kaufen',_binary '','DEU','Ratgeber - Bauen und Wohnen',NULL,NULL,4,NULL,NULL,'SH025247490000'),('EP021050460023','Ricky thinks he has nothing to spread on his toast, until a giant egg is mysteriously delivered.','Day of the Egg',_binary '','GBR','Art Ninja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13768319_e_h3_aa.jpg',4,NULL,NULL,'SH021050460000'),('EP018574550184','Der Richter muss ein neues Urteil sprechen und das Thema lautet diesmal: Die Nervensäge.','Die Nervensäge',_binary '','DEU','Das Strafgericht',NULL,NULL,4,NULL,NULL,'SH018574550000'),('EP018574550183','Dort werden fiktive Strafverfahren im Gerichtssaal nachgestellt. Hierbei muss der Richter gemeinsam mit seinem Team äußerst scharfe Beobachtungen anstellen, um aus unscheinbaren Aussagen Täterprofile zu erstellen und Motive zu ergründen.','Rätselhafte Blutspur',_binary '','DEU','Das Strafgericht',NULL,NULL,4,NULL,NULL,'SH018574550000'),('EP018574550185','Eine Hart-IV-Empfängerin verklagt Fabian auf Unterhalt für deren Tochter namens Antonia.','Drei Väter für Antonia',_binary '','DEU','Das Strafgericht',NULL,NULL,4,NULL,NULL,'SH018574550000'),('EP018574550188','Die arbeitslose Tina wird verdächtigt, aus einem Jugendzentrum eine Geldkassette geklaut zu haben.','Nur für meine Kinder',_binary '','DEU','Das Strafgericht',NULL,NULL,4,NULL,NULL,'SH018574550000'),('EP018574550187','Jochen wird vorgeworfen, dass er Marie kaltblütig mit mehreren Messerstichen ermordet hat.','Mord um Mitternacht',_binary '','DEU','Das Strafgericht',NULL,NULL,4,NULL,NULL,'SH018574550000'),('EP029665690022','Je tiefer die Schatzsucher im Flussbett graben, desto schwieriger wird es, die großen Steine mit dem selbst gebauten Schlitten aus dem Wasser zu ziehen. Deshalb muss in den Chilkat Mountains in Alaska eine andere technische Lösung her.','Meister der Seilwinden',_binary '','DEU','Goldrausch: White Water Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17506690_e_h3_aa.jpg',4,NULL,NULL,'SH029665690000'),('EP032915190008','Oscar, a little boy, and Hoo, his friend cloud, and Ella, together go and explore the world.','Let\'s Pretend',_binary '','GBR','Ella, Oscar & Hoo',NULL,NULL,4,NULL,NULL,'SH032915190000'),('EP019569840224','Phineas und Ferb beschließen, ein Diner auf dem Dach des Wohnwagens zu eröffnen.','Das Wohnwagenrestaurant',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8890778_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP032348020047','When the daycare gets taken over by evil gnomes, Duncan finds himself on the wrong team.','Gnome More Mister Nice Guy',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP019569840228','Candace freut sich. Phineas und Ferb haben eine Riesenvariante ihres Lieblingsspiels gebaut.','Das größte Spiel der Welt',_binary '','DEU','Phineas und Ferb',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8758670_e_h3_aa.jpg',4,NULL,NULL,'SH019569840000'),('EP032348020049','After finding what he believes is a magic wand, Owen accidentally turns Harold into a housefly.','Harold Swatter and the Goblet of Flies',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP016936530014','Brett poses as a traitorous British spy to trap the real turncoat; guest Terry-Thomas.','The Man in the Middle',_binary '','GBR','The Persuaders!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1295835_e_h3_aa.jpg',4,NULL,NULL,'SH016936530000'),('EP032348020044','Chef brokers a truce with lice by selecting three kids to \"host\" them on their heads.','Apoca-lice Now',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP032348020046','Duncan leads Beth to believe she\'s broken his low rider tricyle and makes her carry him around.','Driving Miss Crazy',_binary '','GBR','Total DramaRama',NULL,NULL,4,NULL,NULL,'SH032348020000'),('EP018580260110','Käpt\'n Barnius, Kwasi und Peso entdecken bei der Visite im Sumpf ein kleines Sumpfmonster.','Die Oktonauten und die Flamingos',_binary '','DEU','Die Oktonauten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13259776_e_h3_aa.jpg',4,NULL,NULL,'SH018580260000'),('EP022416050045','Ray verrenkt sich seinen Rücken. Big Ds Mama Sandra stattet dem Riff einen Besuch ab.','Ray, der Flossenklatscher; Mama D.',_binary '','DEU','Sammy: Kleine Flossen, große Abenteuer',NULL,NULL,4,NULL,NULL,'SH022416050000'),('EP018580260112','Kwasi will Sebastian eine Fahrstunde geben, deshalb schnappen sie sich nachts heimlich zwei Guppys.','Die Oktonauten und die gute Zusammenarbeit',_binary '','DEU','Die Oktonauten',NULL,NULL,4,NULL,NULL,'SH018580260000'),('EP016936530015','At a London airport, a criminal mastermind ditches his suitcase into Danny\'s luggage cart.','Element of Risk',_binary '','GBR','The Persuaders!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1295848_e_h3_aa.jpg',4,NULL,NULL,'SH016936530000'),('EP019646300031','Dieses Mal wird unter anderem gezeigt, wie drei Leute in einem Boot unter eine Fähre geraten.','Folge 31',_binary '','DEU','Zerstört in Sekunden',NULL,NULL,4,NULL,NULL,'SH019646300000'),('EP012595550203','Peter helps out a dolphin and Stewie tells Brian about an abusive nursery school teacher.','Be Careful What You Fish For',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9066347_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP027630210005','The Power Rangers are caught in the spider web prison of Galvanax\'s latest monster, Tangleweb.','Drive to Survive',_binary '','GBR','Power Rangers: Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13784327_e_h3_aa.jpg',4,NULL,NULL,'SH027630210000'),('EP019646300030','In dieser Folge geht es unter anderem um eine verheerende Flut, die ganze Häuser weggeschwemmt hat.','Folge 30',_binary '','DEU','Zerstört in Sekunden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3456070_e_h3_aa.jpg',4,NULL,NULL,'SH019646300000'),('EP027630210006','Isolated from the other Rangers, Hayley and Redbot must work together to save themselves.','My Friend, Redbot',_binary '','GBR','Power Rangers: Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13784328_e_h3_aa.jpg',4,NULL,NULL,'SH027630210000'),('EP019834270277','Die Ermittler um Gil Grissom untersuchen einen Mord, der als Selbstmord getarnt war.','Der Schattenmann',_binary '','DEU','CSI: Den Tätern auf der Spur',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2382085_e_h3_ac.jpg',4,NULL,NULL,'SH019834270000'),('EP032915190010','Oscar, a little boy, and Hoo, his friend cloud, and Ella, together go and explore the world.','The Cloud Hunters',_binary '','GBR','Ella, Oscar & Hoo',NULL,NULL,4,NULL,NULL,'SH032915190000'),('EP019646300034','Dieses Mal kämpft ein Windsurfer mit den Folgen einer fast vier Stockwerke hohen Welle.','Folge 34',_binary '','DEU','Zerstört in Sekunden',NULL,NULL,4,NULL,NULL,'SH019646300000'),('EP019646300033','Dieses Mal führt ein kleines Feuer zu einer großen Explosion und ein Skifahrer kämpft um sein Leben.','Folge 33',_binary '','DEU','Zerstört in Sekunden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3456073_e_h3_aa.jpg',4,NULL,NULL,'SH019646300000'),('EP032348020036','Duncan finally manages to break out only to realise he\'s forgotten his soother.','Soother or Later',_binary '','GBR','Total DramaRama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16854588_e_h3_aa.jpg',4,NULL,NULL,'SH032348020000'),('EP028827860009','Investigators must decide what they\'re dealing with after a pregnant woman is shot in her bed.','Who Killed Daddy\'s Little Girl?',_binary '','GBR','Cold Blood',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12591799_e_h3_ab.jpg',4,NULL,NULL,'SH028827860000'),('EP015356881619','The detectives interrogate respectable writer Jack who has been charged with shoplifting.','The Interrogation: Jack',_binary '','GBR','Afternoon Drama',NULL,NULL,4,NULL,NULL,'SH015356880000'),('EP018580260121','Jana besucht ihre Schwester Dana im Oktopod und hilft den Oktonauten mit einem Rätsel.','Die Oktonauten und das Geheimnis des Kelpmonsters',_binary '','DEU','Die Oktonauten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14689907_e_h3_aa.jpg',4,NULL,NULL,'SH018580260000'),('EP027630210009','Sarah builds a device that allows her to clone herself and Galvanax\'s monster steals the technology.','Heart Attack',_binary '','GBR','Power Rangers: Ninja Steel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13874894_e_h3_aa.jpg',4,NULL,NULL,'SH027630210000'),('EP012595550202','When Peter decides to become a famous actor, he becomes Tom Tucker\'s agent.','Tom Tucker: The Man and His Dream',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9053526_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP012595550201','When Stewie\'s new best friend falls ill, Lois takes him to the hospital.','Livin\' on a Prayer',_binary '','GBR','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9029464_e_h3_ab.jpg',4,NULL,NULL,'SH012595550000'),('EP016460840443','Die Dokumentation erzählt die Geschichte eines Deutschen, der von Apachen entführt wurde.','Herman, der Apache - Ein Deutscher unter Indianern',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12565904_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP027832220040','The team take logs from the Bird\'s-Eye Barn across the New River and put them back together.','Island Fishing Cabin',_binary '','GBR','Barnwood Builders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13349214_e_h3_aa.jpg',4,NULL,NULL,'SH027832220000'),('EP016460840447','Der Archäologe Matthias Wemhoff begibt sich auf die Spur der Römer in Deutschland.','Rom am Rhein: Krieg und Frieden',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12638430_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP034436870003','The investigation into the murder of Courtney Valentine-Brown concludes.','',_binary '\0','GBR','Murder 24/7',NULL,NULL,4,NULL,NULL,'SH034436870000'),('EP032820210002','Elise visits Dr Emma in a last-ditch attempt to fix her excruciatingly painful skin condition.','',_binary '\0','GBR','The Bad Skin Clinic',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17206772_e_h3_aa.jpg',4,NULL,NULL,'SH032820210000'),('EP016460840450','Die Herrschaft Roms am Rhein hat unzählige Spuren hinterlassen - diese werden aufgesucht.','Rom am Rhein: Zentrum des Imperiums',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12692273_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP016076690108','Highlights of Tuesday 25 February in Parliament presented by David Cornock.','',_binary '\0','GBR','Tuesday in Parliament',NULL,NULL,4,NULL,NULL,'SH016076690000'),('EP021528680270','Die Erziehungsmethoden zweier verschiedener Familien werden geprüft. Heute mit Saskia und Anne.','Saskia vs. Anne',_binary '','DEU','Mein Kind, dein Kind - Wie erziehst du denn?',NULL,NULL,4,NULL,NULL,'SH021528680000'),('EP034366170001','Der Klassiker der bayerischen Küche: Schweinebraten! Chefkoch Anton Silbernagl verrät seine Tipps für das beste Braten-Rezept mit der einfachsten Braten-Sauce zum Selberkochen zuhause. nd bekommen dabei Hilfe vom Profi-Koch Anton Silbernagl.','Braten',_binary '','DEU','Jung & hungrig',NULL,NULL,4,NULL,NULL,'SH034366170000'),('EP034366170002','Welche verschiedenen Rezepte man mit Kartoffeln machen kann, zeigt Chefkoch Anton Silbernagl. Er erklärt den beiden Hobbyköchen Verena und Sebastian nicht nur, wie man Kartoffelpuffer, Reiberdatschi.','Kartoffeln',_binary '','DEU','Jung & hungrig',NULL,NULL,4,NULL,NULL,'SH034366170000'),('EP016460840436','Die Dokumentation erzählt von der dramatischen Fahrt der `Wolf\', einem Kaperfahrer der Marine.','Freibeuter der Meere: Piraten des Kaisers',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12450420_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP034366170004','Pfannkuchen-Rezepte gehen eigentlich einfach. Mit Tipps von einem Profi-Koch werden Pfannkuchen aber noch besser! Oder habt ihr schon einmal Pfannkuchen mit Ingwer probiert.','Pfannkuchen u. Co',_binary '','DEU','Jung & hungrig',NULL,NULL,4,NULL,NULL,'SH034366170000'),('EP019334251508','Everybody wants to stay a child forever and live in the magical world of make believe.','See You Later',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12591049_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP026861394247','Klassische Nachrichten mit Infos über die Entwicklungen auf den Finanzmärkten und Expertenanalysen.','vom 26.02.2020, 9:00 Uhr',_binary '','DEU','ZIB',NULL,NULL,4,NULL,NULL,'SH026861390000'),('EP025112790042','The team struggle to find a landing site after a major pile-up on a motorway.','',_binary '\0','GBR','Helicopter ER',NULL,NULL,4,NULL,NULL,'SH025112790000'),('EP026861394246','Klassische Nachrichten mit Infos über die Entwicklungen auf den Finanzmärkten und Expertenanalysen.','vom 27.02.2020, 9:00 Uhr',_binary '','DEU','ZIB',NULL,NULL,4,NULL,NULL,'SH026861390000'),('EP025112790041','A paramedic tries to save the life of an athlete after he collapses with a massive heart attack.','',_binary '\0','GBR','Helicopter ER',NULL,NULL,4,NULL,NULL,'SH025112790000'),('EP033534970227','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 27.02.2020, um 14:00 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP026861394242','Klassische Nachrichten mit Infos über die Entwicklungen auf den Finanzmärkten und Expertenanalysen.','vom 27.02.2020, 13:00 Uhr',_binary '','DEU','ZIB',NULL,NULL,4,NULL,NULL,'SH026861390000'),('EP033534970228','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 27.02.2020, um 16:00 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP033534970225','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 26.02.2020, um 16:00 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP033534970226','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 26.02.2020, um 21:45 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP014800140046','John and Sarah are joined by Felicity Ward, Dr Helen Sharman OBE and Henry Blofeld.','Meeting Forty-Six',_binary '','GBR','The Museum of Curiosity',NULL,NULL,4,NULL,NULL,'SH014800140000'),('EP033534970224','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 26.02.2020, um 14:00 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP026861394241','Klassische Nachrichten mit Infos über die Entwicklungen auf den Finanzmärkten und Expertenanalysen.','vom 26.02.2020, 13:00 Uhr',_binary '','DEU','ZIB',NULL,NULL,4,NULL,NULL,'SH026861390000'),('EP027832220039','The team return to Schuylkill County, Pennsylvania, where they previously stripped a massive barn.','Beefy Bank-Barn Beams',_binary '','GBR','Barnwood Builders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13462999_e_h3_aa.jpg',4,NULL,NULL,'SH027832220000'),('EP033534970229','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern.','vom 27.02.2020, um 21:45 Uhr',_binary '','DEU','NDR Info',NULL,NULL,4,NULL,NULL,'SH033534970000'),('EP014726400242','Die Rentnerin Ursula Russ wird nach einem Sturz mit Oberschenkelfraktur in die Klinik eingeliefert.','Dunkle Sterne',_binary '','DEU','In aller Freundschaft',NULL,NULL,4,NULL,NULL,'SH014726400000'),('EP019742880004','Die Sendung zeigt Satellitenbilder des blauen Planeten mit musikalischer Untermalung.','The Blue Planet',_binary '','DEU','Space Night',NULL,NULL,4,NULL,NULL,'SH019742880000'),('EP020060470611','Die Debattensendung widmet sich aktuellen politischen, wirtschaftlichen und sozialen Themen.','',_binary '\0','DEU','phoenix Runde',NULL,NULL,4,NULL,NULL,'SH020060470000'),('EP019742880005','Die Sendung zeigt traumhafte Bilder, von denen man nur schwärmen und träumen kann.','Flight through the Skies',_binary '','DEU','Space Night',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11353605_e_h3_aa.jpg',4,NULL,NULL,'SH019742880000'),('EP014726400240','Der junge Fußballspieler Ingmar Streibel bekommt beim Training Herzbeschwerden.','Vaterliebe',_binary '','DEU','In aller Freundschaft',NULL,NULL,4,NULL,NULL,'SH014726400000'),('EP016460840429','Die Dokumentation erzählt die Biografie dieses Piraten, der schon als Kind lernte, wie man überlebt.','Freibeuter der Meere: Sir Francis Drake',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12424534_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP016608970138','Joseph\'s determination to be perfect for a foster family forces him to reflect on his past.','The Secret',_binary '','GBR','The Dumping Ground',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15959987_e_h3_aa.jpg',4,NULL,NULL,'SH016608970000'),('EP017740050166','Alicia Keys performs her new singles Time Machine and Underdog.','Alicia Keys',_binary '','GBR','Radio 1 Live Lounge',NULL,NULL,4,NULL,NULL,'SH017740050000'),('EP019742880009','Spektakuläre Aufnahmen aus dem Weltall im Nachtprogramm des BR.','Earth-Views',_binary '','DEU','Space Night',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12396459_e_h3_aa.jpg',4,NULL,NULL,'SH019742880000'),('EP033562230001','These girls will try almost anything from sexy food play to ice cubes, hot lubes and vibrators.','',_binary '\0','GBR','Good Girls Guide To Kinky Sex',NULL,NULL,4,NULL,NULL,'SH033562230000'),('EP020060470610','Die Debattensendung widmet sich aktuellen politischen, wirtschaftlichen und sozialen Themen.','Bedroht und beschimpft - Wer will noch Bürgermeister sein?',_binary '','DEU','phoenix Runde',NULL,NULL,4,NULL,NULL,'SH020060470000'),('EP027832220013','Mark and the guys head to Johnny Jett\'s hometown in Kentucky to build a log chapel.','Building a Log Chapel With a Stained Glass Window',_binary '','GBR','Barnwood Builders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12095415_e_h3_aa.jpg',4,NULL,NULL,'SH027832220000'),('EP009541760231','Talkshow zu aktuellen gesellschaftspolitischen Fragen mit Nachrichtenexpertin Anne Will.','Wahlen in gefährdeten Zeiten - wie fest steht die Mitte?',_binary '','DEU','Anne Will',NULL,NULL,4,NULL,NULL,'SH009541760000'),('EP019742880011','Spektakuläre Aufnahmen aus dem Weltall im Nachtprogramm des BR.','CLASSICS - Apollo 13',_binary '','DEU','Space Night',NULL,NULL,4,NULL,NULL,'SH019742880000'),('EP020795450001','Die Folge führt den TV-Koch und Entertainer ins Markgräflerland.','Unterwegs im Markgräfler Land',_binary '','DEU','Lichters Originale',NULL,NULL,4,NULL,NULL,'SH020795450000'),('EP017191740050','A woman trying to get out of urban Baltimore marries a a drug dealer.','Jameelah Jones',_binary '','GBR','Wives With Knives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10335031_e_h3_ab.jpg',4,NULL,NULL,'SH017191740000'),('EP018683780001','Nach Scheidung, schwerem Autounfall und Aufenthalt in einer Reha-Klinik ist Nadja Paulsen zurück.','Zurück im Leben',_binary '','DEU','Ein Fall für Nadja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11490041_e_h3_aa.jpg',4,NULL,NULL,'SH018683780000'),('EP018683780002','Um ihre Position um Sohn Max zu stärken, engagiert Nadja den Scheidungsanwalt Dr. Schmidt.','Alte Liebe',_binary '','DEU','Ein Fall für Nadja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11515464_e_h3_aa.jpg',4,NULL,NULL,'SH018683780000'),('EP016535400088','A bank film gives the detectives the clue to a scheme that forces ordinary citizens to kill.','The Setup',_binary '','GBR','Starsky and Hutch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204266_e_h3_aa.jpg',4,NULL,NULL,'SH016535400000'),('EP027832220014','Salvaging the wood from a 120-year-old cattle barn that is slated for demolition.','Saving Every Board from a Kincheloe Cattle Barn',_binary '','GBR','Barnwood Builders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12185750_e_h3_aa.jpg',4,NULL,NULL,'SH027832220000'),('EP016397710166','Bissig, ironisch, respektlos und albern nimmt die Satiresendung die Themen der Woche aufs Korn.','Folge 336',_binary '','DEU','heute-show',NULL,NULL,4,NULL,NULL,'SH016397710000'),('EP012851250096','When the bath tap at the Little Castle starts dripping, the elf plumber is called.','Plumbing',_binary '','GBR','Ben & Holly\'s Little Kingdom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9869683_e_h3_aa.jpg',4,NULL,NULL,'SH012851250000'),('EP022939521119','Das werktägliche Regionalmagazin mit aktuellen Informationen und Reportagen für Südbayern.','',_binary '\0','DEU','Abendschau - Der Süden',NULL,NULL,4,NULL,NULL,'SH022939520000'),('EP019561440524','Ein Mann schwört Rache, nachdem seine Freundin vergewaltigt wurde. Er plant, Selbstjustiz zu üben.','Macht der Verzweiflung',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP023434500073','Poirot untersucht Emilys Fall und geht der Frage nach, ob sie eines natürlichen Todes gestorben ist.','Der ballspielende Hund',_binary '','DEU','Agatha Christies Poirot',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685745_e_h3_ab.jpg',4,NULL,NULL,'SH023434500000'),('EP016460840477','Ein Archäologe begibt sich auf Spurensuche nach dem Leben der antiken Römer am Rhein.','Rom am Rhein: Blüte und Bedrohung',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13060164_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP019383930104','Bei einem Veteranentreffen infizieren sich Dutzende der alten Männer mit einer tödlichen Infektion.','Tödliche Bakterien',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP032742910008','Dr. Kate anxiously awaits her dog\'s test results. Plus, Dr. Danni volunteers at a pop-up clinic.','',_binary '\0','GBR','Bondi Vet: Coast to Coast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16996677_e_h3_aa.jpg',4,NULL,NULL,'SH032742910000'),('EP032742910007','Dr. Peter removes a grass seed from a dog\'s eye. Dr Alex ties to fix a puppy that has been attacked.','',_binary '\0','GBR','Bondi Vet: Coast to Coast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16882635_e_h3_aa.jpg',4,NULL,NULL,'SH032742910000'),('EP029068690032','Dr. Esser ist der Meinung, dass man beim Essen nicht immer nach strengen Regeln zu leben muss.','Topthema: Gesund essen - ganz einfach!',_binary '','DEU','Doc Esser - Das Gesundheits-Magazin',NULL,NULL,4,NULL,NULL,'SH029068690000'),('EP012587610091','A sniper jeopardises villagers; David takes charge of Peggy\'s ice cream van.','Hearts and Flowers',_binary '','GBR','Heartbeat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685657_e_h3_aa.jpg',4,NULL,NULL,'SH012587610000'),('EP012587610092','Rob is accused of police brutality; a protester causes surprise; a snake is loose.','Give Peace a Chance',_binary '','GBR','Heartbeat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685658_e_h3_aa.jpg',4,NULL,NULL,'SH012587610000'),('EP012587610093','Carol leaves her medical bag with dangerous drugs inside in her car.','Dead Men Do Tell Tales',_binary '','GBR','Heartbeat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1685659_e_h3_ab.jpg',4,NULL,NULL,'SH012587610000'),('EP015402100256','Ein Thema dieser Sendung lautet unter anderem: \"Innovative Tapete - wasch- und wiederverwendbar\".','',_binary '\0','DEU','Einfach genial!',NULL,NULL,4,NULL,NULL,'SH015402100000'),('EP015402960244','Die Loris haben regelmäßig Nachwuchs - heute ist eine Nistkastenkontrolle fällig.','Schnee-Elefanten',_binary '','DEU','Nashorn, Zebra & Co.',NULL,NULL,4,NULL,NULL,'SH015402960000'),('EP033740450006','A look back on the most important NH races from the past week.','',_binary '\0','GBR','Road to Cheltenham',NULL,NULL,4,NULL,NULL,'SH033740450000'),('EP019667440432','Ausgerechnet zum 70. Jahrestag der Gründung der NATO stehen einige Abrüstungsverträge vor dem Aus.','Das Atomwaffen-Kartell - Ende der Abrüstung?',_binary '','DEU','Die Story',NULL,NULL,4,NULL,NULL,'SH019667440000'),('EP016139740051','Brett and Wayde travel to Wind Creek Casino in Alabama where ATMs will hit the 10,000th tank mark.','Shark Buffet!',_binary '','GBR','Tanked',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10554072_e_h3_aa.jpg',4,NULL,NULL,'SH016139740000'),('EP015402960249','Auf der Elefantenanlage gibt es Eisplatten. Die Dickhäuter inspizieren diese eingängig.','Pinguin-Flucht',_binary '','DEU','Nashorn, Zebra & Co.',NULL,NULL,4,NULL,NULL,'SH015402960000'),('EP027172160041','Featuring, Gemma Collins, James Argent, Carol Vorderman, Ellie Taylor and Rick Edwards.','Celebrity Special',_binary '','GBR','The Crystal Maze',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17026321_e_h3_aa.jpg',4,NULL,NULL,'SH027172160000'),('EP019088981517','Breakfast show bringing the latest news, sport and weather to the nation.','',_binary '\0','GBR','Good Morning Britain',NULL,NULL,4,NULL,NULL,'SH019088980000'),('EP019088981516','Breakfast show bringing the latest news, sport and weather to the nation.','',_binary '\0','GBR','Good Morning Britain',NULL,NULL,4,NULL,NULL,'SH019088980000'),('EP019667440429','Die Dokumentation widmet sich der Kreuzfahrtindustrie und den Problemen der Schiffsabgase.','Dreckige Brise - Traumschiffe als Luftverschmutzer?',_binary '','DEU','Die Story',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17098220_e_h3_aa.jpg',4,NULL,NULL,'SH019667440000'),('EP017191740008','A honeymoon is short lived for Jonathan and Courtney when a fight breaks out.','Courtney Larsen.',_binary '','GBR','Wives With Knives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10348271_e_h3_aa.jpg',4,NULL,NULL,'SH017191740000'),('EP026489510071','Ein rotes Flugzeug auf einer Landebahn in Roswell: In dieser Folge nehmen erfahrene Wissenschaftler Satellitenbilder unter die Lupe, die 2016 in New Mexico aufgezeichnet wurden. Denn ältere Aufnahmen aus der Region belegen.','Das Party-Flugzeug',_binary '','DEU','Mysterien von oben - Rätselhafte Satellitenbilder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17192801_e_h3_aa.jpg',4,NULL,NULL,'SH026489510000'),('EP016139740060','Brett, Wayde, Heather , Agnes, Redneck and the General recount their favourite tanks.','Playing Favorites!',_binary '','GBR','Tanked',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10526241_e_h3_aa.jpg',4,NULL,NULL,'SH016139740000'),('EP022939521120','Das werktägliche Regionalmagazin mit aktuellen Informationen und Reportagen für Südbayern.','',_binary '\0','DEU','Abendschau - Der Süden',NULL,NULL,4,NULL,NULL,'SH022939520000'),('EP031896000003','Paul and Blanka hope to build an ambitious and cheap eco-home as part of the project.','',_binary '\0','GBR','Grand Designs: The Street',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16783257_e_h3_aa.jpg',4,NULL,NULL,'SH031896000000'),('EP018994480053','The whole island is heading to Lord Stag\'s beach house for some summer fun!','Summer Holiday',_binary '','GBR','Lily\'s Driftwood Bay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11906996_e_h3_aa.jpg',4,NULL,NULL,'SH018994480000'),('EP018994480054','Lily and Wee Rabbit are terrified when they hear a terrible monster at Wild Rocks.','The Monster of Wild Rocks',_binary '','GBR','Lily\'s Driftwood Bay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12128043_e_h3_aa.jpg',4,NULL,NULL,'SH018994480000'),('EP023584930206','Die Dokumentation besucht die Schuhmanufaktur Lunge in Düssin in Mecklenburg-Vorpommern.','Der perfekte Laufschuh - Maßarbeit aus dem Kuhstall',_binary '','DEU','Wie geht das?',NULL,NULL,4,NULL,NULL,'SH023584930000'),('EP014054720163','Ivy is excited when the buyers return to Fontana, California. Darrell looks to score heavily.','Padian, P.I.',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11563858_e_h3_aa.jpg',4,NULL,NULL,'SH014054720000'),('EP014054720164','The buyers battle for the best unit available in Torrance, California.','Mr. Nezhoda\'s Opus',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11410808_e_h3_aa.jpg',4,NULL,NULL,'SH014054720000'),('EP013044130155','Emma and Matt Lewis face off against Gary Lucy to win money for charity.','Emma & Matt Lewis vs Gary Lucy',_binary '','GBR','All Star Family Fortunes',NULL,NULL,4,NULL,NULL,'SH013044130000'),('EP018442680138','Ein junger Afghane ist in den Morgenstunden auf einer Wiese verbrannt. Andreas Keppler ermittelt.','Schwarzer Afghane',_binary '','DEU','Tatort',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11147604_e_h3_aa.jpg',4,NULL,NULL,'SH018442680000'),('EP013044130156','Lucy Benjamin faces off against Ryan Thomas to win money for charity.','Lucy Benjamin vs Ryan Thomas',_binary '','GBR','All Star Family Fortunes',NULL,NULL,4,NULL,NULL,'SH013044130000'),('EP013044130157','William Roache faces off against Suzanne Shaw to win money for charity.','William Roache vs Suzanne Shaw',_binary '','GBR','All Star Family Fortunes',NULL,NULL,4,NULL,NULL,'SH013044130000'),('EP013044130158','Natasha Hamilton faces off against John Barnes to win money for charity.','Natasha Hamilton vs John Barnes',_binary '','GBR','All Star Family Fortunes',NULL,NULL,4,NULL,NULL,'SH013044130000'),('EP014054720168','Darrell looks to smoke the competition when the auction action rolls into Moreno Valley, California.','The Thrill of a Kitty and the Agony of Smoked Meat',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11563861_e_h3_aa.jpg',4,NULL,NULL,'SH014054720000'),('EP019593000828','Martha wappnet sich, weil sie sich nicht von den Sportlern auf der Nase herumtanzen lassen will.','Folge 925',_binary '','DEU','Schloss Einstein',NULL,NULL,4,NULL,NULL,'SH019593000000'),('EP019593000829','Der 400 Meter-Staffellauf des Sportgymnasiums steht unter Druck, denn die Zeiten stimmen nicht.','Folge 926',_binary '','DEU','Schloss Einstein',NULL,NULL,4,NULL,NULL,'SH019593000000'),('EP018994480050','Lily and Bull get very lost on a camping trip when they follow a little flying light.','Little Flying Light',_binary '','GBR','Lily\'s Driftwood Bay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11309752_e_h3_aa.jpg',4,NULL,NULL,'SH018994480000'),('EP019383930139','Die Ermittler sind auf der Suche nach dem Täter in dem Fall einer Kindesentführung.','Unter den Augen der Kirche',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP019593000827','Die Ankunft im neuen Internat ist vollbracht. Die Sportler sehen nicht ein, ihr Internat zu teilen.','Folge 924',_binary '','DEU','Schloss Einstein',NULL,NULL,4,NULL,NULL,'SH019593000000'),('EP012735870047','JD spends quality time with his big brother, and Elliot and Carla moonlight at a veterinary clinic.','My Brother, Where Art Thou?',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528533_e_h3_ab.jpg',4,NULL,NULL,'SH012735870000'),('EP012735870046','Danni\'s ongoing dialogue about her ex forces JD to talk about his feelings for Elliot.','My Advice to You',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528532_e_h3_aa.jpg',4,NULL,NULL,'SH012735870000'),('EP012735870048','JD is forced to spend more time with Dr Cox as his relationship with Danni progresses.','My Fifteen Seconds',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528534_e_h3_ab.jpg',4,NULL,NULL,'SH012735870000'),('EP012735870042','When Turk and Carla set a date for their wedding, JD feels as though he is losing Turk\'s friendship.','My Journey',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528528_e_h3_ab.jpg',4,NULL,NULL,'SH012735870000'),('EP019763560161','Was bewegt die Kulturszene im Südwesten? Das Magazin beschäftigt sich mit Hoch- und Populärkultur.','',_binary '\0','DEU','Kunscht!',NULL,NULL,4,NULL,NULL,'SH019763560000'),('EP012735870045','Sean is surprised to learn that Elliot and JD\'s have a past with one another.','My Lucky Night',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528531_e_h3_ab.jpg',4,NULL,NULL,'SH012735870000'),('EP012735870044','When JD asks for help teaching interns, Sean shares some training tips.','My White Whale',_binary '','GBR','Scrubs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2528530_e_h3_ab.jpg',4,NULL,NULL,'SH012735870000'),('EP019383930154','Die 47-jährige Pearl Bruns verschwindet spurlos. Eine Farmerin verschwindet und es fehlt jede Spur.','Verwischte Spuren',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP014715700002','The detectives delve deep into a stylist\'s past in an effort to identify her murderer.','Benedict Canyon',_binary '','GBR','Law & Order: LA',NULL,NULL,4,NULL,NULL,'SH014715700000'),('EP014715700003','The city is shocked by the murder of a famous Hollywood stylist.','East Pasadena',_binary '','GBR','Law & Order: LA',NULL,NULL,4,NULL,NULL,'SH014715700000'),('EP013580540073','The lucky lads keen to impress the ladies are Freddie, Nik, Joe and Gaz.','',_binary '\0','GBR','Take Me Out',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12425819_e_h3_aa.jpg',4,NULL,NULL,'SH013580540000'),('EP013580540074','The lucky lads keen to impress the ladies are Rhys, Ellis, Ola and Sam.','',_binary '\0','GBR','Take Me Out',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12472064_e_h3_aa.jpg',4,NULL,NULL,'SH013580540000'),('EP019374333309','Durch sparen reich zu werden ist schwieriger als gedacht, da auch viele Deutsche ihr Geld bunkern.','Thema u. a.: Finanzcoach',_binary '','DEU','Galileo',NULL,NULL,4,NULL,NULL,'SH019374330000'),('EP019617580016','Ein Baumeister bringt aus dem Orient Pläne für eine ganz neue mittelalterliche Waffenidee mit.','Drachenfeuer',_binary '','DEU','Der kleine Ritter Trenk',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11209612_e_h3_aa.jpg',4,NULL,NULL,'SH019617580000'),('EP019576450602','Mia glaubt, dass Jojo in Sicherheit ist und sie sich wieder auf ihr Leben konzentrieren kann.','Guter Rat',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP027573120035','In dieser Folge werden die Cops wegen dem riskanten Fahrstil eines Mannes alarmiert.','Folge 35',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996303_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP027573120036','Die Beamten müssen zu Neujahr nicht lange auf den ersten betrunkenen Autofahrer warten.','Folge 36',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996304_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP027573120037','Die Highway Cops müssen sich sputen: Es gab eine gewalttätige Auseinandersetzung.','Folge 37',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996307_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP027573120038','Nach einem schweren Unfall an einer Brücke sind mehrere Personen in ihren Fahrzeugen eingeklemmt.','Folge 38',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996309_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP019374333308','Die Toskana zählt als Europas größtes Chinatown, da viele chinesische Textilarbeiter dort arbeiten.','Thema u. a.: Größtes Chinatown Europas',_binary '','DEU','Galileo',NULL,NULL,4,NULL,NULL,'SH019374330000'),('EP027573120039','Graeme Buttar hält auf einer beliebten Touristenroute ein fahruntüchtiges Wohnmobil an.','Folge 39',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996347_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP019617580011','Wertolt sieht eine wunderbare Gelegenheit, sich die Weinberge unter den Nagel zu reißen.','Der Hexentrank',_binary '','DEU','Der kleine Ritter Trenk',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11209581_e_h3_aa.jpg',4,NULL,NULL,'SH019617580000'),('EP019672380209','Die Dokumentation porträtiert die Menschen, die `auf dem Weißen Hirsch\' leben und arbeiten.','Villen, Wald und Wellness',_binary '','DEU','Der Osten: Entdecke wo du lebst',NULL,NULL,4,NULL,NULL,'SH019672380000'),('EP021850680084','Maurice und Junior erleben eine böse Überraschung. Ein Mandrill stört die Nachtruhe der Fledermäuse.','Die Tigerjagd; Abrakadabra',_binary '','DEU','Die Dschungelhelden',NULL,NULL,4,NULL,NULL,'SH021850680000'),('EP021850680083','Die kleinen Dschungelhelden begleiten ihre Vorbilder. Eine Hamsterdame bittet die Helden um Hilfe.','Die Mini-Dschungelhelden; Gemeine Hamster',_binary '','DEU','Die Dschungelhelden',NULL,NULL,4,NULL,NULL,'SH021850680000'),('EP014054720162','An auction in Bellflower, California, includes big-money finds.','Leader of the Packed',_binary '','GBR','Storage Wars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11410888_e_h3_aa.jpg',4,NULL,NULL,'SH014054720000'),('EP028224030002','Ein familiengeführtes Restaurant an der Costa Blanca steckt in finanziellen Schwierigkeiten.','Der Mikrowellenkönig der Costa del Sol',_binary '','DEU','In Teufels Küche mit Gordon Ramsay - Weltweit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11132163_e_h3_aa.jpg',4,NULL,NULL,'SH028224030000'),('EP018994480032','A barometer warns of a bad storm on its way to Driftwood Bay.','Storm-a-Coming!',_binary '','GBR','Lily\'s Driftwood Bay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11309723_e_h3_aa.jpg',4,NULL,NULL,'SH018994480000'),('EP027573120008','Graeme Buttar stößt auf einen Kurierfahrer, der ohne Papiere mit einem geliehenem Pkw unterwegs ist.','Folge 8',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9988823_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP022973010014','After Max loses a challenge at a video game tournament, he gets akumatised into the Gamer.','Gamer',_binary '','GBR','Miraculous: Tales of Ladybug and Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12607496_e_h3_aa.jpg',4,NULL,NULL,'SH022973010000'),('EP012597100215','Saving Alexx\'s son has dire consequences when he becomes a suspect in a murder case.','Rock and a Hard Place',_binary '','GBR','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723039_e_h3_ac.jpg',4,NULL,NULL,'SH012597100000'),('EP027573120005','Eine Frau hat auf dem State Highway One nördlich von Levin die Kontrolle über ihren Pkw verloren.','Folge 5',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9964651_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP027573120006','Die Highway Cops werden wegen einer Schlägerei zu einer Kneipe in Oamaru gerufen.','Folge 6',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9953857_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP027573120007','Graeme Buttar will einen Vorfall zwischen einem Radfahrer und den Insassen eines Vans klären.','Folge 7',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9979918_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP031269580006','Es geht um Produkte, Innovationen und Hintergrundwissen zu den Themen Pflege und Wohlbefinden.','',_binary '\0','DEU','KosMedic - Beratung. Gesundheit. Schönheit',NULL,NULL,4,NULL,NULL,'SH031269580000'),('EP014252480004','The ups and downs of Brown\'s career from the 70s to the present.','',_binary '\0','GBR','Get Up for James Brown',NULL,NULL,4,NULL,NULL,'SH014252480000'),('EP019890360253','Die Parlamentsberichterstatter informieren über die aktuellen Debatten und Hintergründe.','Live aus dem Landtag Brandenburg',_binary '','DEU','Heute im Parlament',NULL,NULL,4,NULL,NULL,'SH019890360000'),('EP019890360252','9. Sitzung des Landtages Brandenburg Politik braucht Transparenz. Und Öffentlichkeit ist wesentlicher Bestandteil der parlamentarischen Demokratie. Heute im Parlament zeigt die Parlamentsdebatten aus dem Berliner Abgeordnetenhaus.','Live aus dem Landtag Brandenburg',_binary '','DEU','Heute im Parlament',NULL,NULL,4,NULL,NULL,'SH019890360000'),('EP031703900011','Two new Bakugan Brawlers, Shun and Magnus, try out for the AO.','Frenemies',_binary '','GBR','Bakugan: Battle Planet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16406384_e_h3_aa.jpg',4,NULL,NULL,'SH031703900000'),('EP019671390033','Die Käufer machen Geschäfte in der Cowboy-Stadt Mesquite und stoßen dabei auf Interessantes.','Unter Cowboys',_binary '','DEU','Storage Wars - Geschäfte in Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9442278_e_h3_ab.jpg',4,NULL,NULL,'SH019671390000'),('EP022973010009','Hawk Moth akumatises Chloe\'s policeman father into the tyrannical Rogercop.','Rogercop',_binary '','GBR','Miraculous: Tales of Ladybug and Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12466433_e_h3_aa.jpg',4,NULL,NULL,'SH022973010000'),('EP019671390032','In der Stadt Ponder lauert ein dunkles Geheimnis. Die Einwohner fallen über die Schließfächer her.','Wilde Horde',_binary '','DEU','Storage Wars - Geschäfte in Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9417739_e_h3_ab.jpg',4,NULL,NULL,'SH019671390000'),('EP031539610002','Chris Shaver investigates the fatal crash of a commuter plane west of Juneau.','Forest Flight Down',_binary '','GBR','Alaska Aircrash Investigations',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12592710_e_h3_aa.jpg',4,NULL,NULL,'SH031539610000'),('EP031539610001','A bush pilot crashes into trees while flying over his daughter\'s wedding party. During a routine post-maintenance flight two months earlier a pilot crashes into the river.','Trapper Creek Tragedy',_binary '','GBR','Alaska Aircrash Investigations',NULL,NULL,4,NULL,NULL,'SH031539610000'),('EP019671390031','In Arlington, Texas, erreicht die Spannung einen kritischen Punkt.','Endzeitfund',_binary '','DEU','Storage Wars - Geschäfte in Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9417725_e_h3_aa.jpg',4,NULL,NULL,'SH019671390000'),('EP019671390030','Die Geschäftemacher fahren nach Cedar Hill, Texas, der Heimat von Dr. Moe Prigoff.','Den Kopf verdreht',_binary '','DEU','Storage Wars - Geschäfte in Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9407294_e_h3_aa.jpg',4,NULL,NULL,'SH019671390000'),('EP019577750696','Thaddäus ist von Beton überzogen, sodass ihn SpongeBob und Patrick nicht erkennen.','Das Ding',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8373526_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP019667440465','Hilfe zum Suizid - das wünschen sich einige Schwerstkranke, die ihr Leid nicht mehr ertragen können.','Streitfall Sterbehilfe - Wer bestimmt über mein Ende?',_binary '','DEU','Die Story',NULL,NULL,4,NULL,NULL,'SH019667440000'),('EP012584291300','Anita Manning values a gold charm bracelet, and Philip Serrell takes a shine to an unusual globe.','',_binary '\0','GBR','Flog It!',NULL,NULL,4,NULL,NULL,'SH012584290000'),('EP014721011648','Donald Runnicles conducts the BBC SSO in Bruckner\'s Symphony No 8.','Runnicles\'s Bruckner',_binary '','GBR','Radio 3 in Concert',NULL,NULL,4,NULL,NULL,'SH014721010000'),('EP033588690003','June and Des are close to the violent criminals.','',_binary '\0','GBR','Cold Call',NULL,NULL,4,NULL,NULL,'SH033588690000'),('EP033588690004','June and Kirk are both pushed to breaking point.','',_binary '\0','GBR','Cold Call',NULL,NULL,4,NULL,NULL,'SH033588690000'),('EP034388370022','Buck and Buddy hatch a plan to catch the aphid Pharaoh in a box and ship him off to the Deff Lands.','Aphids Unleashed',_binary '','GBR','Buck and Buddy',NULL,NULL,4,NULL,NULL,'SH034388370000'),('EP014721011647','Petroc Trelawny presents a Mozart duo, Debussy\'s Cello Sonata and Tchaikovsky\'s Piano Trio.','New Generation Artists at Snape',_binary '','GBR','Radio 3 in Concert',NULL,NULL,4,NULL,NULL,'SH014721010000'),('EP029032240033','Barristers Sasha Wass and Jeremy Dein investigate a fatal shooting on a farm in 1893.','Hewitt',_binary '','GBR','Murder, Mystery and My Family',NULL,NULL,4,NULL,NULL,'SH029032240000'),('EP031703900013','Lia disagrees with her new Bakugan, Pegatrix, on battle techniques.','Pegatrix',_binary '','GBR','Bakugan: Battle Planet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16402379_e_h3_aa.jpg',4,NULL,NULL,'SH031703900000'),('EP029820540312','Gezeigt werden Dokumentationen zu verschiedenen Themen.','Wenn das Wasser knapp wird',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP016460840405','Diese Folge zeigt einige der vergessenen Landschaften Deutschlands, wie etwa das Weserbergland.','Deutschland von oben 3: Land',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP018557200030','Monk begegnet seome, Highschool-Schwarm Sherry - die ist aber die Verdächtige bei einem Mordfall.','Mr. Monk war auch mal klein',_binary '','DEU','Monk',NULL,NULL,4,NULL,NULL,'SH018557200000'),('EP033118560005','Helium is jealous and accuses the little bugs of trying to replace him as Wendy\'s guard leader.','Where\'s Wendy?',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP012608400043','Tony is accused of murdering a woman and the team do everything they can to prove his innocence.','Frame-Up',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3040505_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP034388370019','Buck and Buddy run across the disgusting, encrusted remains of a sock puppet.','Sock On!',_binary '','GBR','Buck and Buddy',NULL,NULL,4,NULL,NULL,'SH034388370000'),('EP033118560007','In the garden, Sphinx mocks Larry who puts young bees to sleep with his old tales.','Tales from the Garden',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP016535400075','A sleazy racketeer hires a hit man to eliminate Hutch by forcing his car to crash in a canyon.','Survival',_binary '','GBR','Starsky and Hutch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204267_e_h3_aa.jpg',4,NULL,NULL,'SH016535400000'),('EP012974940144','Are hospitals and care homes failing to learn from coroners\' reports?','Viagogo; Coroner Reports; British Gas',_binary '','GBR','You and Yours',NULL,NULL,4,NULL,NULL,'SH012974940000'),('EP012608400046','The team must prove that McGee is not guilty when he kills an undercover police officer.','Probie',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3040506_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP020505580055','A sailor is murdered during a rowdy motorcycle rally in the city. Lasalle seeks Gregorio\'s advice.','Outlaws',_binary '','GBR','NCIS: New Orleans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13436644_e_h3_ab.jpg',4,NULL,NULL,'SH020505580000'),('EP021961970085','Radzi heads to Anglesey and takes to the water to try a 3,000-year-old sport.','',_binary '\0','GBR','Blue Peter Bite',NULL,NULL,4,NULL,NULL,'SH021961970000'),('EP020505580054','A Navy SEAL candidate is murdered before his graduation. Wade\'s adopted son plans to join the Navy.','One Good Man',_binary '','GBR','NCIS: New Orleans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13413533_e_h3_ab.jpg',4,NULL,NULL,'SH020505580000'),('EP029820540316','Gezeigt werden Dokumentationen zu verschiedenen Themen.','Rechter Terror in',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP018895050960','Als Detektive suchen Tom und Jerry nach einer Schauspielerin. Tom und Jerry möchten Eier klauen.','Die verschwundene Diva; Eierdiebe; Die Kostümparty; Der Butler-Wettstreit',_binary '','DEU','Die Tom und Jerry Show',NULL,NULL,4,NULL,NULL,'SH018895050000'),('EP033118560002','The pests leader, Sphinx, can\'t fly any more and has forced his troops to walk with him.','Flight of the Bat',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP018557200025','Monk besucht mit Natalie ein Weingut und lässt sich dort zu einem Schlückchen Wein hinreißen.','Mr. Monk ist betrunken',_binary '','DEU','Monk',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2689406_e_h3_ab.jpg',4,NULL,NULL,'SH018557200000'),('EP016262350069','A professional sceptic\'s murder reveals a possible threat to homeland security.','A Stitch in Time',_binary '','GBR','Elementary',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11642048_e_h3_ab.jpg',4,NULL,NULL,'SH016262350000'),('EP018557200026','Monks verstorbene Ehefrau Trudy wird in leibhaftiger Gestalt in einen Mordfall verwickelt.','Mr. Monk und Mrs. Monk',_binary '','DEU','Monk',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2689405_e_h3_ab.jpg',4,NULL,NULL,'SH018557200000'),('EP031703900077','Dan Kouzo and his friends band together to master a game featuring battles between alien creatures.','Bad Actors',_binary '','GBR','Bakugan: Battle Planet',NULL,NULL,4,NULL,NULL,'SH031703900000'),('EP017563030005','Ainsley illustrates that it\'s possible to cook tasty food without a high fat content.','The One Without the Fat',_binary '','GBR','Ainsley\'s Gourmet Express',NULL,NULL,4,NULL,NULL,'SH017563030000'),('EP031703900072','Dan Kouzo and his friends band together to master a game featuring battles between alien creatures.','Framing Device',_binary '','GBR','Bakugan: Battle Planet',NULL,NULL,4,NULL,NULL,'SH031703900000'),('EP019580931746','Täglich wird aktuell über Politik, Kultur, Wirtschaft und Unterhaltendes aus Hessen berichtet.','',_binary '\0','DEU','hessenschau',NULL,NULL,4,NULL,NULL,'SH019580930000'),('EP018147800181','It\'s dinner for two with Ree and her husband, Ladd, who\'s turning into a cowboy cook in the kitchen!','The Couple That Cooks Together',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13132202_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP027797140094','Jedes Jahr sterben 33.000 Menschen in Europa an Infektionen mit antibiotikaresistenten Keimen.','Kampf gegen Killerkeime - Neue Strategien gegen Antibiotikaresistenzen',_binary '','DEU','plan b',NULL,NULL,4,NULL,NULL,'SH027797140000'),('EP018147800178','Ree is having a night on the town with Ladd, so she\'s prepping dinner for the kids in advance.','Night on the Town',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13036329_e_h3_ab.jpg',4,NULL,NULL,'SH018147800000'),('EP033118560019','Incognito is fed of up of being the only Pest who hasn\'t been on an adventure.','The Adventurer',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP016262350070','Holmes and Watson join the manhunt to find the murderer of two paramedics.','Under My Skin',_binary '','GBR','Elementary',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11642053_e_h3_ab.jpg',4,NULL,NULL,'SH016262350000'),('EP018147800176','Fried chicken sandwiches with coleslaw, salmon and veggie grain bowls and a Mercantile Snack Mix.','Merc Deliveries',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13036321_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP017563030006','Ainsley sets off in his camper van and cooks delicious gourmet food with minimal equipment.','Wagon Meals',_binary '','GBR','Ainsley\'s Gourmet Express',NULL,NULL,4,NULL,NULL,'SH017563030000'),('EP018557200029','Natalie muss unerwartet zur Hochzeit ihres Bruders. Sie nimmt Lieutnant Disher mit.','Mr. Monk und die schwarze Witwe',_binary '','DEU','Monk',NULL,NULL,4,NULL,NULL,'SH018557200000'),('EP033118560012','Spring is here at last, so everyone busies themselves happily cleaning their houses.','Chaos',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP033118560011','Everyone in the garden are ill and nobody can look after the baby bees.','Babes in Arms',_binary '','GBR','Tall Tales',NULL,NULL,4,NULL,NULL,'SH033118560000'),('EP017428580361','Bei Okapi-Weibchen Batouri ist man sich noch immer nicht sicher, ob sie nun endlich tragend ist.','Wiegen',_binary '','DEU','Panda, Gorilla & Co.',NULL,NULL,4,NULL,NULL,'SH017428580000'),('EP018147800173','Ree prepares pork tenderloin, cauliflower pizza crust and spicy pizza sauce.','Low Carb Lusciousness',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13036340_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP022973010057','Penny gets akumatized into Troublemaker and now she\'s causing all the problems.','Troublemaker',_binary '','GBR','Miraculous: Tales of Ladybug and Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15624687_e_h3_aa.jpg',4,NULL,NULL,'SH022973010000'),('EP019560660083','Stefanie erleidet schwere Verätzungen, als sie einen Trinkjogurt zu sich nimmt.','Alles ätzend, oder was?',_binary '','DEU','Richterin Barbara Salesch',NULL,NULL,4,NULL,NULL,'SH019560660000'),('EP013181620505','Angela Rippon makes the Radio 4 Appeal on behalf of the Environmental Investigation Agency UK.','Environmental Investigation Agency UK',_binary '','GBR','The Radio 4 Appeal',NULL,NULL,4,NULL,NULL,'SH013181620000'),('EP018152240001','Today, Will seeks justice.','',_binary '\0','GBR','Will Smith Presents the Tao of Bergerac',NULL,NULL,4,NULL,NULL,'SH018152240000'),('EP026720770104','In dieser Sendung geht es unter anderem um Titandioxid, Pannenhilfe und Rauchentwöhnung.','',_binary '\0','DEU','Super.Markt',NULL,NULL,4,NULL,NULL,'SH026720770000'),('EP022973010052','A student named Marc gets akumatized into Reverser and is determined to get revenge.','Reverser',_binary '','GBR','Miraculous: Tales of Ladybug and Cat Noir',NULL,NULL,4,NULL,NULL,'SH022973010000'),('EP012708730232','Leonard has concerns when Penny considers taking a new job offered by her ex-boyfriend, Zack.','The Cognition Regeneration',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13956143_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730231','Howard and Bernadette struggle to leave Halley in day care, and Bert introduces his new girlfriend.','The Separation Agitation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13956140_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012708730230','Sheldon collaborates on too many projects, while Bernadette nears the end of her maternity leave.','The Recollection Dissipation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13939852_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP027573120040','Die Cops haben alle Hände voll zu tun: In Queenstown findet ein großes Wintersportevent statt.','Folge 40',_binary '','DEU','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12996350_e_h3_aa.jpg',4,NULL,NULL,'SH027573120000'),('EP012673260202','A parasitic presence inside the SG-2 leader\'s head causes him to run amok.','The Enemy Within',_binary '','GBR','Stargate SG-1',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018703_e_h3_ab.jpg',4,NULL,NULL,'SH012673260000'),('EP031703900054','The AO want to evolve their Bakugan, just like Dan did with Drago, but it\'s Shun who finds a way.','Shun Shine',_binary '','GBR','Bakugan: Battle Planet',NULL,NULL,4,NULL,NULL,'SH031703900000'),('EP031703900053','When Shun\'s cousin Masato Kazami claims Hydorous as his intellectual property, the AO must battle.','Ronin Son',_binary '','GBR','Bakugan: Battle Planet',NULL,NULL,4,NULL,NULL,'SH031703900000'),('EP012673260201','A trade for weapons has a profound impact on the lives of the inhabitants of planet Simarka.','Emancipation',_binary '','GBR','Stargate SG-1',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018701_e_h3_ab.jpg',4,NULL,NULL,'SH012673260000'),('EP018147800163','Three chicken dishes, slow cooker chicken and broccoli, chicken pie and chicken kale Caesar salad.','Chicken, Chicken, Chicken',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12952526_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP018147800161','It\'s boxing night, so Ree\'s running her sons to town for practice.','Boxing Boys',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13036259_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP018147800160','Ree\'s family is throwing a joint birthday bash, so she\'s cooking up spicy pulled pork sliders.','Birthday Bash',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13132200_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP012608400050','While filming a reality show on a marine base, a supermodel is murdered.','Model Behaviour',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3040507_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP019671360208','Rene bringt seinen Vater Gunter zu einer Auktion in Montebello, Kalifornien, mit.','Papa im Gepäck',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12773833_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP019671360209','In Van Nuys erhoffen sich Jarrod und Brandi eine leichte Partie. Mary versucht, sich zu etablieren.','Bietmarathon',_binary '','DEU','Storage Wars - Die Geschäftemacher',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12773834_e_h3_aa.jpg',4,NULL,NULL,'SH019671360000'),('EP012708730229','Leonard, Penny and Raj adjust to their new arrangement. Sheldon expresses interest in Amy\'s work.','The Collaboration Fluctuation',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13936322_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012594390490','Fiona Bruce presents Question Time from Middlesbrough with a panel of politicians.','Middlesbrough',_binary '','GBR','Question Time',NULL,NULL,4,NULL,NULL,'SH012594390000'),('EP012708730228','Leonard and Penny offer Sheldon\'s old room to Raj after he moves out of his apartment.','The Escape Hatch Identification',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13889318_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP018147800158','On the menu are divine ham and leak mini quiches and garden spread finger sandwiches.','Afternoon Tea',_binary '','GBR','The Pioneer Woman',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12954227_e_h3_aa.jpg',4,NULL,NULL,'SH018147800000'),('EP033502550002','Hardie starts recruiting union members, while Slinger tries to sell more fruit.','Going Bananas',_binary '','GBR','Slinger\'s Day',NULL,NULL,4,NULL,NULL,'SH033502550000'),('EP012708730227','Cut off from his father\'s fortune, Koothrappali appoints Sheldon to help him get out of debt.','The Comic-Con Conundrum',_binary '','GBR','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13840840_e_h3_aa.jpg',4,NULL,NULL,'SH012708730000'),('EP012608400052','Tony and Ziva disappear whilst on an investigation at a shipyard.','Boxed In',_binary '','GBR','NCIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3040508_e_h3_ab.jpg',4,NULL,NULL,'SH012608400000'),('EP025056040006','Angelina wird seit vier Tagen vermisst. Die Straßencops finden sie auf einer illegalen Party.','Vermisste auf illegaler Party gefunden; Teenager überfallen einen Kiosk',_binary '','DEU','Die Straßencops West - Jugend im Visier',NULL,NULL,4,NULL,NULL,'SH025056040000'),('EP025056040005','Die 16-jährige Caro und ihre Mädchengang terrorisieren die Schüler einer Gesamtschule.','Mädchengang verprügelt 15-Jährige; Teenager in Hochhaussiedlung angeschossen',_binary '','DEU','Die Straßencops West - Jugend im Visier',NULL,NULL,4,NULL,NULL,'SH025056040000'),('EP033502550001','Cecil Slinger takes over a struggling Supafare branch as the new local manager.','New Management',_binary '','GBR','Slinger\'s Day',NULL,NULL,4,NULL,NULL,'SH033502550000'),('EP012600720108','Ann Maurice comes to the aid of a semi-detached house in Darlington.','Darlington',_binary '','GBR','House Doctor',NULL,NULL,4,NULL,NULL,'SH012600720000'),('EP013518001012','The final visit is to The Shawries Hotel in Blackpool, run by Allison and Dave Shaw.','The Shawries Hotel',_binary '','GBR','Four in a Bed',NULL,NULL,4,NULL,NULL,'SH013518000000'),('EP014905920215','Modern day treasure hunter Drew Pritchard travels the UK in search of weird and wonderful objects.','',_binary '\0','GBR','Salvage Hunters',NULL,NULL,4,NULL,NULL,'SH014905920000'),('EP013518001011','The third visit is to The Wheatsheaf in Sandbach, Cheshire, with Jake Pare and Chris Baldwin.','The Wheatsheaf',_binary '','GBR','Four in a Bed',NULL,NULL,4,NULL,NULL,'SH013518000000'),('EP014905920216','Drew is on a road trip, travelling to Norfolk, Pembroke and Essex.','Bitesize: Norfolk',_binary '','GBR','Salvage Hunters',NULL,NULL,4,NULL,NULL,'SH014905920000'),('EP019369690097','Als das Terrassengeländer zusammenbricht, engagiert Alan den jungen Handwerker Fernando.','Vergiss Fernando',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853207_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP023720810027','Ono trifft auf sein Idol und muss erkennen, dass der nicht so ist, wie Ono es erwartet hat.','Onos Idol',_binary '','DEU','Die Garde der Löwen',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p13704090_e_h3_aa.jpg',4,NULL,NULL,'SH023720810000'),('EP023720810025','Beshtis Vater wird verletzt, als er die Nilpferdschneisen durch das Überschwemmungsgebiet schlägt.','Beshtis große Aufgabe',_binary '','DEU','Die Garde der Löwen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13822045_e_h3_aa.jpg',4,NULL,NULL,'SH023720810000'),('EP018977950827','Jerry and a mischief making gopher develop a friendship and ruin Tom\'s garden.','Whack a Gopher',_binary '','GBR','The Tom and Jerry Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15644710_e_h3_aa.jpg',4,NULL,NULL,'SH018977950000'),('EP017036600005','The remarkable story of a police operation to smash a drugs ring and catch the dealers in the act.','',_binary '\0','GBR','Caught Red Handed',NULL,NULL,4,NULL,NULL,'SH017036600000'),('EP012742270082','Archie must take part in a traditional boat race against a neighbour, the wily landowner Kilwillie.','',_binary '\0','GBR','Monarch of the Glen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2360769_e_h3_aa.jpg',4,NULL,NULL,'SH012742270000'),('EP032213590004','During the Reagan era, American political confidence fuels a time of heavy consumption.','The 1980s',_binary '','GBR','The Real Mad Men of Advertising',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13584022_e_h3_aa.jpg',4,NULL,NULL,'SH032213590000'),('EP012702080308','Benson and Haden\'s romantic weekend is ruined when a prostitute goes missing.','Hunting Ground',_binary '','GBR','Law & Order: Special Victims Unit',NULL,NULL,4,NULL,NULL,'SH012702080000'),('EP032213590003','The golden age in America\'s ad world, full of creativity and a love affair with non-conformity.','The 1970s',_binary '','GBR','The Real Mad Men of Advertising',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13583524_e_h3_aa.jpg',4,NULL,NULL,'SH032213590000'),('EP027789770004','Ein Paar erfüllt sich den Wunsch vom Eigenheim. Doch auf der Baustelle läuft dann alles schief.','Folge 4',_binary '','DEU','Aktenzeichen XY - Spezial: Vorsicht Betrug!',NULL,NULL,4,NULL,NULL,'SH027789770000'),('EP012702080306','A reality show producer is arrested for sexually assaulting an actress.','Father\'s Shadow',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9038705_e_h3_ac.jpg',4,NULL,NULL,'SH012702080000'),('EP012702080307','The hunt for a gunman ensues and hold implications for Rollins.','Home Invasions',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9054806_e_h3_ac.jpg',4,NULL,NULL,'SH012702080000'),('EP014699490005','The Chindits were the army\'s elite jungle troops who beat the Japanese in a daring mission.','Wingate and the Chindits',_binary '','GBR','Narrow Escapes of World War II',NULL,NULL,4,NULL,NULL,'SH014699490000'),('EP012702080304','The detectives have to investigate the case of a raped actress.','Theatre Tricks',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9003276_e_h3_ac.jpg',4,NULL,NULL,'SH012702080000'),('EP017036600008','West Midlands police put out a decoy car and a heartless carer is caught stealing on camera.','',_binary '\0','GBR','Caught Red Handed',NULL,NULL,4,NULL,NULL,'SH017036600000'),('EP012702080305','The detectives investigate the sexual assault of the head of a private military-contract company.','Official Story',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9007824_e_h3_ac.jpg',4,NULL,NULL,'SH012702080000'),('EP017036600007','Callous thieves steal a mobility scooter, but do not realise their evil actions have been recorded.','',_binary '\0','GBR','Caught Red Handed',NULL,NULL,4,NULL,NULL,'SH017036600000'),('EP017036600006','A husband and wife team set a trap to catch an employee stealing from their sweet shop.','',_binary '\0','GBR','Caught Red Handed',NULL,NULL,4,NULL,NULL,'SH017036600000'),('EP019750370254','Die Sendung handelt unter anderem von einem Familienunternehmen, das sich die Natur zunutze macht.','Natur und Umwelt im Südwesten',_binary '','DEU','natürlich!',NULL,NULL,4,NULL,NULL,'SH019750370000'),('EP012707030084','Barney tries to track down a mystery female who is warning women not to sleep with him.','The Bracket',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152447_e_h3_ac.jpg',4,NULL,NULL,'SH012707030000'),('EP012707030083','Lily and Marshall host a game night in honour of St Patrick\'s Day.','No Tomorrow',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152445_e_h3_ac.jpg',4,NULL,NULL,'SH012707030000'),('EP012707030082','Ted\'s date with his tattoo removal doctor is discouraged by the rest of the gang.','The Platinum Rule',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152444_e_h3_ac.jpg',4,NULL,NULL,'SH012707030000'),('EP013457520004','David Dimbleby continues his architectural tour by heading to north to Newcastle and Manchester.','The North: Full Steam Ahead',_binary '','GBR','How We Built Britain',NULL,NULL,4,NULL,NULL,'SH013457520000'),('EP019560520003','Sam soll im Ausland den Anführer einer religiösen Terror-Organisation ausfindig machen.','Ziel markiert',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8535004_e_h3_ab.jpg',4,NULL,NULL,'SH019560520000'),('EP012707030080','Lily and Marshall host their first Thanksgiving as a married couple.','Slapsgiving',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152443_e_h3_ac.jpg',4,NULL,NULL,'SH012707030000'),('EP015402280679','Muskulöse Menschen sind angesagt. Fitnesscenter und Nahrungsergänzungsmittel boomen.','Muskeln - wie sie uns stark machen',_binary '','DEU','Planet Wissen',NULL,NULL,4,NULL,NULL,'SH015402280000'),('EP012707030086','Marshall questions his job in a corporate law firm after his boss emasculates him verbally.','The Chain of Screaming',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152448_e_h3_ab.jpg',4,NULL,NULL,'SH012707030000'),('EP019656210015','Lena wird zur Patin des Stadtfestes ernannt, zu dem auch ein stattlicher Stierumzug stattfindet.','Gefährliche Ehre',_binary '','DEU','Lenas Ranch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10182636_e_h3_aa.jpg',4,NULL,NULL,'SH019656210000'),('EP012707030085','Abby sleeps with Barney and Ted manages to get a two-minute date with Stella.','Ten Sessions',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152446_e_h3_ac.jpg',4,NULL,NULL,'SH012707030000'),('EP019656210019','Mistral läuft weg. Er trifft eine wilde, rossige Stute und kämpft um die Führung in ihrer Herde.','Der Ruf der Freiheit',_binary '','DEU','Lenas Ranch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10170141_e_h3_aa.jpg',4,NULL,NULL,'SH019656210000'),('EP015402140354','Der Film zeigt unetr anderem den Beitrag Nahverkehrsmodell Karlsruhe.','Aus der Welt der Eisenbahn',_binary '','DEU','Eisenbahn-Romantik',NULL,NULL,4,NULL,NULL,'SH015402140000'),('EP029111220130','Doktor Mondblume soll lustiger sein. Branch möchte unbedingt einen Troll unterstützen.','Doktor Mondblumes innerer Clown; Der hilfsbereite Branch',_binary '','DEU','Trolls - Die Party geht weiter!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17316429_e_h3_aa.jpg',4,NULL,NULL,'SH029111220000'),('EP012664100002','Dr. Sloan discovers that Community General Hospital may be haunted.','The Blair Nurse Project',_binary '','GBR','Diagnosis Murder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659968_e_h3_aa.jpg',4,NULL,NULL,'SH012664100000'),('EP033304850006','The tax inspectors turn up to do the audit, but Tripper has bigger things to worry about.','Vatman and Robbin',_binary '','GBR','Tripper\'s Day',NULL,NULL,4,NULL,NULL,'SH033304850000'),('EP019560690195','Nancy bereut es, ihr Neugeborenes an Kinderhändler verkauft zu haben. Sie will ihr Baby zurück.','Falsche Entscheidung',_binary '','DEU','Anwälte im Einsatz',NULL,NULL,4,NULL,NULL,'SH019560690000'),('EP019426980038','Der Mörder einer jungen Frau tarnt seine Tat als Einbruch, doch seine DNA-Spur verrät ihn.','Mordlust; Tödliche Lieferung; Verwesungsgeruch',_binary '','DEU','Autopsie - Mysteriöse Todesfälle',NULL,NULL,4,NULL,NULL,'SH019426980000'),('EP016610660016','Billy, Mark, Laurence and Sally are in Brooklyn to make a bid for unclaimed international freight.','Diamonds in the Rough',_binary '','GBR','Baggage Battles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9490061_e_h3_aa.jpg',4,NULL,NULL,'SH016610660000'),('EP017118240020','Willi kommt mit einer aufregenden Neuigkeit zu Maja: Er hat einen Bären gesehen.','Falscher Alarm',_binary '','DEU','Die Biene Maja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11142759_e_h3_aa.jpg',4,NULL,NULL,'SH017118240000'),('EP021543380085','Tony soll sich in Hawaii im Auftrag der NASA um die schöne Generalstochter Eleanor kümmern.','Wiedersehen auf Honolulu',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129197_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP021543380086','Jeannie zaubert bei ihrem Hawaiiaufenthalt den alten König Kamehameba herbei.','Der König von Hawaii',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129198_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP021543380089','Jeannies böse Schwester in Bagdad, nimmt Jeannie, Tony und Roger gefangen.','Jeannie und die Mondsafeknacker',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129201_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP019656210006','Ein Horseball-Turnier steht an. Samanthas Team ist deutlich besser als unsere Freunde.','Der doppelte Wettkampf',_binary '','DEU','Lenas Ranch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10182422_e_h3_aa.jpg',4,NULL,NULL,'SH019656210000'),('EP021543380087','Jeannie wird in einem Safe eingeschlossen, der auf den Mond geschossen werden soll.','Jeannie und die Mondsafeknacker',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129199_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP021543380088','Tony glaubt, dass Jeannie im Safe auf dem Weg zum Mond ist, doch dieser ist noch auf der Erde.','Jeannie und die Mondsafeknacker',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129200_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP016610660015','Lost or misplaced freight in North Carolina. Unusual items like a vintage car and coffin.','North Carolina',_binary '','GBR','Baggage Battles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9286869_e_h3_aa.jpg',4,NULL,NULL,'SH016610660000'),('EP032995050035','Joey and Boo unearth a mountain of candy, but there\'s more than just sugar lurking inside.','Six Legged Freaks',_binary '','GBR','Antiks',NULL,NULL,4,NULL,NULL,'SH032995050000'),('EP032995050036','Joey and Boo take a walk through the fog, but things get weird when Boo decides to take a mudbath.','Swamp Thing',_binary '','GBR','Antiks',NULL,NULL,4,NULL,NULL,'SH032995050000'),('EP019369690067','Alan muss sein Führerschein neu machen und bittet Charlie auf Jake aufzupassen.','Schweinchen im Glück',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853206_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019426980044','Die Ermittler in Palm Beach müssen herausfinden, ob ein Mord ins Muster eines Serienkillers passt.','Tödliche Gewässer; Blutige Fußspuren',_binary '','DEU','Autopsie - Mysteriöse Todesfälle',NULL,NULL,4,NULL,NULL,'SH019426980000'),('EP019369690066','Bei einer Wohltätigkeitsveranstaltung lästert Charlies Mutter über alle Gäste ab.','Der Genius des Bösen',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853209_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP030153770097','Match highlights of all the action from the EFL.','',_binary '\0','GBR','EFL on Quest',NULL,NULL,4,NULL,NULL,'SH030153770000'),('EP032666900001','Diese Sendung fasst die wichtigsten Ereignisse des Tages auf unterhaltsame Art und Weise zusammen.','DMAXNews',_binary '','DEU','DMAX News',NULL,NULL,4,NULL,NULL,'SH032666900000'),('EP021397950052','Gustav ist total versunken in den schönen Sternenhimmel. Quaker hat hingegen andere Pläne.','Sonne, Mond und Sterne',_binary '','DEU','Gustavs Welt',NULL,NULL,4,NULL,NULL,'SH021397950000'),('EP021397950051','Gustav verschafft Quaker eine Möglichkeit ins Wasser zu springen und die Kinder treiben Sport.','Wer ist der Stärkste im Wald?',_binary '','DEU','Gustavs Welt',NULL,NULL,4,NULL,NULL,'SH021397950000'),('EP019369690064','Jakes erster Tag der neuen Schule steht vor der Tür und eigentlich hat er sich darauf gefreut.','Ziege bleibt Ziege',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853208_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP014430320249','The Players\' Championship features the top 16 players on the one-year ranking list.','Day 3',_binary '\0','GBR','Live: Players Championship Snooker',NULL,NULL,4,NULL,NULL,'SH014430320000'),('EP014430320248','The Players\' Championship features the top 16 players on the one-year ranking list.','Day 3',_binary '\0','GBR','Live: Players Championship Snooker',NULL,NULL,4,NULL,NULL,'SH014430320000'),('EP018977950836','Makeup Maven tries to transform Tom with her magic.','Kiss and Makeup',_binary '','GBR','The Tom and Jerry Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15647627_e_h3_aa.jpg',4,NULL,NULL,'SH018977950000'),('EP018977950839','Spike lets Tom train Tyke for the \"Puppy Olympics\".','No Contest',_binary '','GBR','The Tom and Jerry Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15647682_e_h3_aa.jpg',4,NULL,NULL,'SH018977950000'),('EP013189050042','Mr Bean\'s room is a mess, so he decides to give his whole apartment a spring clean.','Spring Clean',_binary '','GBR','Mr Bean',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8951944_e_h3_aa.jpg',4,NULL,NULL,'SH013189050000'),('EP018977950831','Tom trains Bertrand to box in the hopes of winning a fight against a boxing champion.','Bull Fight',_binary '','GBR','The Tom and Jerry Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15647591_e_h3_aa.jpg',4,NULL,NULL,'SH018977950000'),('EP028765600929','Tim Klahn und Michael Preuß sind diesmal auf der A1 zwischen Hamburg und Bremen im Einsatz.','Thema u. a.: Unfall auf der A1 - Autobahnpolizei Winsen-Luhe',_binary '','DEU','Achtung Kontrolle! Wir kümmern uns drum',NULL,NULL,4,NULL,NULL,'SH028765600000'),('EP013189050043','Mr Bean declares war when he finds a fly in his room and searches for ever more outlandish weapons.','The Fly',_binary '','GBR','Mr Bean',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8951960_e_h3_aa.jpg',4,NULL,NULL,'SH013189050000'),('EP017118240018','Auf der Wiese herrscht Aufregung. Jemand hat die Lieblingspilze der Schnecke aufgefressen.','Walter schleimt sich ein',_binary '','DEU','Die Biene Maja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11138711_e_h3_aa.jpg',4,NULL,NULL,'SH017118240000'),('EP017118240017','Ein seltsamer Lärm stört die Nachtruhe im Bienenstock. Sogar Willi verlässt freiwillig seine Wabe.','Kein Schlaf für Maja',_binary '','DEU','Die Biene Maja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11121595_e_h3_aa.jpg',4,NULL,NULL,'SH017118240000'),('EP017118240016','Maja ist voller Freude: Die Pappelsamen fliegen. Für Maja gibt es nichts Schöneres.','Eine königliche Pause',_binary '','DEU','Die Biene Maja',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11121588_e_h3_aa.jpg',4,NULL,NULL,'SH017118240000'),('EP019369690052','Chelsea zieht aus: es ist vorbei zwischen ihr und Charlie. Charlie ist untröstbar.','Der Kirchenbesuch',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8022055_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP017560170048','A ring stolen by Dr Smith turns everything he touches into platinum.','All That Glitters',_binary '','GBR','Lost in Space',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1143746_e_h3_ab.jpg',4,NULL,NULL,'SH017560170000'),('EP021649870144','Adam gets a blast from the past in the shape of Dana - his first love.','Dana\'s Back',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17372329_e_h3_aa.jpg',4,NULL,NULL,'SH021649870000'),('EP017560170049','Will awakens the sleeping princess of an underground civilization bent on conquest.','Lost Civilization',_binary '','GBR','Lost in Space',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1143747_e_h3_aa.jpg',4,NULL,NULL,'SH017560170000'),('EP013189050034','Mr Bean moves out into nature to find inspiration for the perfect painting.','Artful Bean',_binary '','GBR','Mr Bean',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8951845_e_h3_aa.jpg',4,NULL,NULL,'SH013189050000'),('EP029537210022','Nate and Malika must find their way through an underground maze, or stay pixelated avatars forever.','The Video Game',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP026290400013','Bing wants to play his car park game with Flop, but Charlie keeps messing up the game.','Car Park',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10829948_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP013189050039','Mr Bean has the misfortune of meeting an angry mime who follows him home.','Mime Games',_binary '','GBR','Mr Bean',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8951911_e_h3_aa.jpg',4,NULL,NULL,'SH013189050000'),('EP026290400007','Bing is building a tower as tall as he is with his blocks and is upset when Coco arrives.','Blocks',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10813787_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP029537210028','A small shooting star crash lands in front of Nate and Malika.','The Shooting Star',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP019560660332','Ein Mann will sich umbringen und reißt eine Freundin mit. Ein Versehen wird ausgeschlossen.','Bis, dass der Tod euch scheidet',_binary '','DEU','Richterin Barbara Salesch',NULL,NULL,4,NULL,NULL,'SH019560660000'),('EP016204330081','Dr Chris and Dr Xand reveal the winners of the first ever Ouch Awards.','The Ouch! Awards',_binary '','GBR','Operation Ouch!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16734855_e_h3_aa.jpg',4,NULL,NULL,'SH016204330000'),('EP029537210027','Nate and Malika meet Willy, an orang-utan who escaped from a touring circus.','The Great Ape',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP019395241201','In dieser Folge soll herausgefunden werden, wie man Scheitern positiver gegenübertreten kann.','Scheitern - Warum es so wichtig ist',_binary '','DEU','Xenius',NULL,NULL,4,NULL,NULL,'SH019395240000'),('EP012877770167','Ryan wants his and bride-to-be Maria\'s wedding to take place at the college where they first met.','Rebecca and Lee',_binary '','GBR','Don\'t Tell the Bride',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14714311_e_h3_aa.jpg',4,NULL,NULL,'SH012877770000'),('EP006655400123','Divine intervention saves a family and a speeding driver tries to rap his way out of trouble.','Self Control',_binary '','GBR','Motorway Patrol',NULL,NULL,4,NULL,NULL,'SH006655400000'),('EP022731290001','Bis heute ist es eines der imposantesten Bauwerke der Welt - das Kolosseum in Rom.','Das Kolosseum in Rom',_binary '','DEU','Rätsel der Geschichte',NULL,NULL,4,NULL,NULL,'SH022731290000'),('EP012664100049','Dr. Mark Sloan witnesses what he believes to be a murder while spying on his neighbours.','Deadly Mirage',_binary '','GBR','Diagnosis Murder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659966_e_h3_ad.jpg',4,NULL,NULL,'SH012664100000'),('EP019369690047','Alan befürchtet, dass die Hochzeit von Judith und Herb ins Wasser fallen könnte.','Judiths Haus der Verdammten',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853202_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019369690046','Alan startet einen Versuch, im letzten Moment eine Vater-Sohn-Beziehung zu Jake aufzubauen.','Die frenetische Detektivin',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853201_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019560520046','Ein Video taucht auf, in dem ein Terrorist auf Arabisch damit droht, Dom zu exekutieren.','Im Herzen der Stadt',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8092107_e_h3_ab.jpg',4,NULL,NULL,'SH019560520000'),('EP030381900060','Reena and Kulvir want to start a family and need to update and rent out their basement.','Reena & Kulvir',_binary '','GBR','Income Property',NULL,NULL,4,NULL,NULL,'SH030381900000'),('EP026290400025','Bing finds a frog in the garden and wants to keep it, so he and Sula make the frog a \"house\".','Frog',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10829954_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP030381900061','Naomi and Scott have a huge mortgage, and they need Scott\'s help to renovate their rental apartment.','Naomi & Scot',_binary '','GBR','Income Property',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8890165_e_h3_aa.jpg',4,NULL,NULL,'SH030381900000'),('EP026290400022','If you\'re very quiet and statue-still, then the duckies will come.','Ducks',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10813795_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP006655400130','A \"no tyre flyer\" causes madness on the Harbour Bridge and a driver is stranded in the fast lane.','Triway or the Highway',_binary '','GBR','Motorway Patrol',NULL,NULL,4,NULL,NULL,'SH006655400000'),('EP012675813890','Dean and Ziggy deal with the break-up in different ways. Mackenzie tries to explain to Colby.','',_binary '\0','GBR','Home and Away',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17615763_e_h3_aa.jpg',4,NULL,NULL,'SH012675810000'),('EP012597991722','Eric Knowles joins Caroline Hawley and Raj Bisram at The Royal Welsh Showground in Builth Wells.','Builth 2',_binary '','GBR','Bargain Hunt',NULL,NULL,4,NULL,NULL,'SH012597990000'),('EP012675813891','Ryder\'s convictions falter at an inopportune time. Colby questions whether he\'s being manipulated.','',_binary '\0','GBR','Home and Away',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17615767_e_h3_aa.jpg',4,NULL,NULL,'SH012675810000'),('EP006655400134','The hunt is on for a runaway thief at large in a powerful stolen ute - a coupe utility vehicle.','Ute Pursuit',_binary '','GBR','Motorway Patrol',NULL,NULL,4,NULL,NULL,'SH006655400000'),('EP013026900514','Cheshire is the next stop for Christina Trevanion and Mark Stacey.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13618434_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP013026900513','Christina Trevanion and Mark Stacey\'s antiquing adventure continues in the Cotswolds.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13618433_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP013026900512','Christina Trevanion and Mark Stacey set off on a south coast antiques hunt.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13618432_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP013026900511','It is the last chance for Catherine and Charles to bag antiques before a final auction in Congleton.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13605008_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP012702080371','The search for a mythical character by three young girls leads to violence.','Glasgowman\'s Wrath',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11124737_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP013026900510','Catherine sticks to antique shops in her quest to find items to take to a Nottingham auction.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13605007_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP012702080372','Chicago police work with the SVU as they investigate a child pornography site.','Chicago Crossover',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11124744_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP012702080370','A college student becomes a target after her work as a porn star is discovered by her classmates.','Pornstar\'s Requiem',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p11109070_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP016072850002','Highclere Castle is perhaps best known as the backdrop to the drama \"Downton Abbey\".','Secrets of Highclere Castle',_binary '','GBR','Secrets of the Manor House',NULL,NULL,4,NULL,NULL,'SH016072850000'),('EP029537210045','Nate accidentally breaks a snow globe containing a fairy, who starts to turn everyone into ice.','The Snow Fairy',_binary '','GBR','Nate Is Late',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15734813_e_h3_aa.jpg',4,NULL,NULL,'SH029537210000'),('EP029537210042','Nate and Malika meet a ninja named Jin, who offers to train them in a real secret dojo.','The Ninja',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP018417910008','Dan Mawhinney is in a race to airlift his stranded snow machine out of the frozen tundra.','Mountain Danger',_binary '','GBR','Railroad Alaska',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p11125020_e_h3_aa.jpg',4,NULL,NULL,'SH018417910000'),('EP012692140033','Rumpole (Leo McKern) accepts an invitation to defend a former pupil on a murder charge in Africa.','Rumpole & the Golden Thread',_binary '','GBR','Rumpole of the Bailey',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1189607_e_h3_aa.jpg',4,NULL,NULL,'SH012692140000'),('EP018417910007','The freight crew struggle to make their delivery to a salvage crew stranded in the wilderness.','Bear Attack',_binary '','GBR','Railroad Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11105027_e_h3_aa.jpg',4,NULL,NULL,'SH018417910000'),('EP012594650148','A look back at the most shocking cases of the series, reliving despair, neglect, rescue and hope.','Most Shocking Cases',_binary '','GBR','Animal Cops: Houston',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11537800_e_h3_ab.jpg',4,NULL,NULL,'SH012594650000'),('EP012594650144','An elderly family living in a home dangerously close to collapsing hoards a large amount of cats.','Hoarder Family',_binary '','GBR','Animal Cops: Houston',NULL,NULL,4,NULL,NULL,'SH012594650000'),('EP012594650143','Investigators trying to rescue abandoned horses discover puppies trapped in a storm drain.','Snakes on the Loose',_binary '','GBR','Animal Cops: Houston',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11486803_e_h3_ac.jpg',4,NULL,NULL,'SH012594650000'),('EP029537210048','Nate and Malika find Violet sitting weeping next to an old tree that is going to be cut down.','The Tree People',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP012675813889','Ziggy throws herself into the pit crew gig and Mackenzie tries to stop Dean from self-sabotaging.','',_binary '\0','GBR','Home and Away',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17615762_e_h3_aa.jpg',4,NULL,NULL,'SH012675810000'),('EP012594650142','A recently evicted woman leaves behind several cats in her apartment, and some need urgent care.','Hoarder Apartment',_binary '','GBR','Animal Cops: Houston',NULL,NULL,4,NULL,NULL,'SH012594650000'),('EP012877770148','Holly is hoping for a cosy family wedding, but her fiancé Cole has a Wild West theme in mind.','Holly and Cole',_binary '','GBR','Don\'t Tell the Bride',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13087761_e_h3_aa.jpg',4,NULL,NULL,'SH012877770000'),('EP012702080368','Amaro lands back on the SVU squad in time to investigate a starlet accused of statutory rape.','Producer\'s Backend',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11082180_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP029647210029','Ein Fahrzeug mit Motorschaden wird abgeschleppt. Der Blitzer vom Bielefelder Berg wird repariert.','Folge 29',_binary '','DEU','A2 - Abenteuer Autobahn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16208017_e_h3_aa.jpg',4,NULL,NULL,'SH029647210000'),('EP012702080369','The team tries to find a bike messenger who has kept a video diary of his troubles with women.','Holden\'s Manifesto',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11104845_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP029647210030','In Nordrhein-Westfalen ereignet sich eine schwere Massenkarambolage mit fatalen Folgen.','Folge 30',_binary '','DEU','A2 - Abenteuer Autobahn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16208024_e_h3_aa.jpg',4,NULL,NULL,'SH029647210000'),('EP029537210036','Nate and Malika follow hoof-prints into a clearing and find a group of fauns having a giant party.','The Faun',_binary '','GBR','Nate Is Late',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15734714_e_h3_aa.jpg',4,NULL,NULL,'SH029537210000'),('EP029537210034','Nate accidentally squirts Maurice with a special spray that turns animals into dinosaurs.','The Dinosaur',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP030682620026','Frau Emily will ein Foto der seltenen Blaufuß-Blinzel-Möwe machen, doch sie verstaucht sich den Fuß.','Die Blaufuß-Blinzel-Möwe',_binary '','DEU','Zacki und die Zoobande',NULL,NULL,4,NULL,NULL,'SH030682620000'),('EP029537210031','The Greek gods Zeus and Poseidon are arguing over which of them deserves to rule over Mount Olympus.','The Battle of Gods',_binary '','GBR','Nate Is Late',NULL,NULL,4,NULL,NULL,'SH029537210000'),('EP029537210030','Nate is mistaken for a visiting king, and Malika discovers that the real king has gone into hiding.','King Nate',_binary '','GBR','Nate Is Late',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15734680_e_h3_aa.jpg',4,NULL,NULL,'SH029537210000'),('EP029168400008','Gebrauchtem Patronengehäuse wird durch die Transformation in Herdplatten neues Leben eingehaucht.','Von der Patronenhülse zum Gasgrill',_binary '','DEU','Die Schrott-Transformer',NULL,NULL,4,NULL,NULL,'SH029168400000'),('EP012616430040','The boys celebrate the 40th anniversary of British Leyland and Jennifer Saunders guest stars.','',_binary '\0','GBR','Top Gear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8199572_e_h3_ab.jpg',4,NULL,NULL,'SH012616430000'),('EP032642270003','Exploring the role played by engineering giant Vickers during the Second World War.','Vickers',_binary '','GBR','War Factories',NULL,NULL,4,NULL,NULL,'SH032642270000'),('EP019593000830','Endlich kommt Kasimir zurück. Martha will mit Nele eine Überraschung für ihren Freund planen.','Folge 927',_binary '','DEU','Schloss Einstein',NULL,NULL,4,NULL,NULL,'SH019593000000'),('EP018574310171','Ein dramatischer und lebensgefährlicher Fall bringt zahlreiche Veränderungen für House mit sich.','Schuld daran ist wer?',_binary '','DEU','Dr House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9053495_e_h3_ad.jpg',4,NULL,NULL,'SH018574310000'),('EP018107080008','Michelle leaves Miles in charge of babysitting Louie and Frankie.','Haunted Babysitter',_binary '','GBR','The Haunted Hathaways',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10162481_e_h3_aa.jpg',4,NULL,NULL,'SH018107080000'),('EP012680300062','The guys have a chance to buy a mysterious, 17th-century treasure chest that no one can open.','Old Man\'s Booty',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7859646_e_h3_ab.jpg',4,NULL,NULL,'SH012680300000'),('EP018107080007','It is Taylor\'s birthday and Miles is excited about getting his new sister a gift - a ghost dog.','Haunted Dog',_binary '','GBR','The Haunted Hathaways',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10162483_e_h3_aa.jpg',4,NULL,NULL,'SH018107080000'),('EP030682620034','Zacki stürzt unglücklich über seine Werkzeugtasche und versinkt danach in Selbstzweifeln.','Was ist los mit Zacki?',_binary '','DEU','Zacki und die Zoobande',NULL,NULL,4,NULL,NULL,'SH030682620000'),('EP030682620032','Frau Emily will Lionel durch eine Schocktherapie im Tunnel von seiner Angst befreien.','Lionels gruselige Bahnfahrt',_binary '','DEU','Zacki und die Zoobande',NULL,NULL,4,NULL,NULL,'SH030682620000'),('EP018556741324','Wettervorhersage.','',_binary '\0','DEU','RTL Aktuell: Das Wetter',NULL,NULL,4,NULL,NULL,'SH018556740000'),('EP018556741323','Wettervorhersage.','',_binary '\0','DEU','RTL Aktuell: Das Wetter',NULL,NULL,4,NULL,NULL,'SH018556740000'),('EP030682620035','Toni verliert seine Stimme. Die Pinguine nehmen das wörtlich und begeben sich auf die Suche.','Tonis verlorene Stimme',_binary '','DEU','Zacki und die Zoobande',NULL,NULL,4,NULL,NULL,'SH030682620000'),('EP026290400055','Bing is playing in the garden when he sees his shadow and decides to play shadow tag with Flop.','Shadow',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10829967_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP019855931395','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Düsseldorf.','',_binary '\0','DEU','Lokalzeit aus Düsseldorf',NULL,NULL,4,NULL,NULL,'SH019855930000'),('EP019855931394','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Düsseldorf.','',_binary '\0','DEU','Lokalzeit aus Düsseldorf',NULL,NULL,4,NULL,NULL,'SH019855930000'),('EP028307820001','Die Experten dieser Sendung präsentieren die neusten und besten Artikel aus dem Baumarkt.','',_binary '\0','DEU','Baumarkt',NULL,NULL,4,NULL,NULL,'SH028307820000'),('EP034424150002','Live ball-by-ball commentary of Australia v Bangladesh in the ICC Women\'s T20 World Cup.','Australia v Bangladesh',_binary '\0','GBR','Live: ICC Women\'s T20 World Cup Cricket',NULL,NULL,4,NULL,NULL,'SH034424150000'),('EP013321720097','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP012616430037','Jeremy Clarkson, James May and Richard Hammond take the new BMW M3 and Mercedes C63 AMG.','',_binary '\0','GBR','Top Gear',NULL,NULL,4,NULL,NULL,'SH012616430000'),('EP026022910033','Der Koboldmaki Der Koboldmaki auf meiner Schmusedecke hat ein Problem: Er möchte, dass jemand ihm ein Schlaflied singt, aber alle Tiere erschrecken sich vor ihm! Was kann man da nur tun?','Der Koboldmaki',_binary '','DEU','Meine Schmusedecke',NULL,NULL,4,NULL,NULL,'SH026022910000'),('EP034424150009','Live ball-by-ball commentary of India v New Zealand in the ICC Women\'s T20 World Cup.','India v New Zealand',_binary '\0','GBR','Live: ICC Women\'s T20 World Cup Cricket',NULL,NULL,4,NULL,NULL,'SH034424150000'),('EP034424150007','Live ball-by-ball commentary of England v Thailand in the ICC Women\'s T20 World Cup.','England v Thailand',_binary '\0','GBR','Live: ICC Women\'s T20 World Cup Cricket',NULL,NULL,4,NULL,NULL,'SH034424150000'),('EP026290400060','The only banana left is too mushy to eat. Flop suggests making a smoothie with it instead.','Smoothie',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10829977_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP012896310296','Pete, Sheila, Maisie and Noel must pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP013342990088','James Walton\'s literary quiz with Sebastian Faulks, John Walsh, Victoria Coren and Sue Limb.','John Betjeman',_binary '','GBR','The Write Stuff',NULL,NULL,4,NULL,NULL,'SH013342990000'),('EP016391760366','Ein stürzt mit seinem Pedelec und stirbt. Der Unfall entpuppt sich schnell als Mord.','Der Tod fährt Pedelec',_binary '','DEU','SOKO Wismar',NULL,NULL,4,NULL,NULL,'SH016391760000'),('EP026290400066','Even if it\'s one\'s turn, one can\'t run in front of a swing. Pando runs in front of a swing.','Swing',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10813782_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP034424150014','Live ball-by-ball commentary of West Indies v Pakistan in the ICC Women\'s T20 World Cup.','West Indies v Pakistan',_binary '\0','GBR','Live: ICC Women\'s T20 World Cup Cricket',NULL,NULL,4,NULL,NULL,'SH034424150000'),('EP030059230216','Todd Hoffmann und seine sechs Mann starke Crew wollen in der Wildnis Alaskas nach Gold schürfen.','Vorfall am Yukon River',_binary '','DEU','Goldrausch: Parkers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13950083_e_h3_aa.jpg',4,NULL,NULL,'SH030059230000'),('EP031747090013','Polizei und Zoll stellen in Hamburg regelmäßig Kokain sicher - inzwischen sogar gleich tonnenweise. Die Droge, die oft zu Crack weiterverarbeitet wird, hat Teile der Hansestadt fest im Griff. So zum Beispiel den Drogenhotspot St. Georg.','Hamburg (2)',_binary '','DEU','Hartes Deutschland - Leben im Brennpunkt',NULL,NULL,4,NULL,NULL,'SH031747090000'),('EP030227000006','Auf dem Museumsuferfest feiern jedes Jahr zwei Millionen Besucher. Bei vielen artet das aus.','',_binary '\0','DEU','112 - Wir retten Hessen',NULL,NULL,4,NULL,NULL,'SH030227000000'),('EP012670240050','When Zigby realises that it is Bertie\'s birthday, he decides to put on the best surprise party ever.','Zigby Surprises Bertie',_binary '','GBR','Zigby',NULL,NULL,4,NULL,NULL,'SH012670240000'),('EP019883970084','Peppa macht mit ihrer Schulklasse einen spannenden Campingausflug. Es macht total Spaß.','Die Kindergartenfahrt',_binary '','DEU','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990201_e_h3_aa.jpg',4,NULL,NULL,'SH019883970000'),('EP019883970085','Peppa, Schorsch, Mama und Papa Wutz leihen sich das Boot von Opa Wutz. Sie haben einen tollen Tag.','Käpt\'n Papa Wutz',_binary '','DEU','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990202_e_h3_aa.jpg',4,NULL,NULL,'SH019883970000'),('EP019559640176','Shax verletzt Piper und Prue, dann wird Piper auch noch von einer Verrückten angeschossen.','Das Ende',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134970_e_h3_ac.jpg',4,NULL,NULL,'SH019559640000'),('EP030278470046','Acht attraktive Singles wollen sich auf einer Insel näherkommen - dann tauchen ihre Ex-Partner auf.','Peak of Love: De Niall Is Not Just an Ex',_binary '','DEU','Ex on the Beach',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17663615_e_h3_aa.jpg',4,NULL,NULL,'SH030278470000'),('EP019559640174','Prue wird versehentlich in einen Hund verwandelt, während Piper gegen eine Todesfee kämpfen muss.','Die Todesfee',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134969_e_h3_ab.jpg',4,NULL,NULL,'SH019559640000'),('EP025408040011','Tilda und Molly stricken einem kranken Schaf einen warmen Schal, den dann alle Schafe haben wollen.','Das erkältete Schaf',_binary '','DEU','Tilda Apfelkern',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13474081_e_h3_aa.jpg',4,NULL,NULL,'SH025408040000'),('EP019559640175','Cole versucht auf eigene Faust, den Plan der Bruderschaft zu verhindern und wird dabei enttarnt.','Die Bruderschaft',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134967_e_h3_ac.jpg',4,NULL,NULL,'SH019559640000'),('EP030278470045','Acht attraktive Singles wollen sich auf einer Insel näherkommen - dann tauchen ihre Ex-Partner auf.','Peak of Love: Caught Red Velvet Handed',_binary '','DEU','Ex on the Beach',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17663613_e_h3_aa.jpg',4,NULL,NULL,'SH030278470000'),('EP025408040010','Tilda schlägt Robin und einem anderen Rotkehlchen einen Wettkampf vor, um einen Regenwurm zu retten.','Zwei Vögel und ein Wurm',_binary '','DEU','Tilda Apfelkern',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13474072_e_h3_aa.jpg',4,NULL,NULL,'SH025408040000'),('EP019559640173','Phoebe befürchtet, Cole doch an das Böse zu verlieren, während Piper eine neue Kraft bekommt.','Freund oder Feind?',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134968_e_h3_ab.jpg',4,NULL,NULL,'SH019559640000'),('EP013028082498','Live coverage of the Lords EU Energy and Environment sub-committee on Access to UK fisheries.','UK Fisheries Committee',_binary '','GBR','Select Committees',NULL,NULL,4,NULL,NULL,'SH013028080000'),('EP013321720075','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP031989690046','Coverage from America\'s MLW as top ranked pro wrestlers from around the world clash.','',_binary '\0','GBR','Major League Wrestling: Fusion',NULL,NULL,4,NULL,NULL,'SH031989690000'),('EP017566090051','Lottoziehung am Mittwoch.','',_binary '\0','DEU','Lotto am Mittwoch: Die Gewinnzahlen',NULL,NULL,4,NULL,NULL,'SH017566090000'),('EP012670240048','Zigby encourages everyone to find something that they really love doing.','Zigby Finds a Hobby',_binary '','GBR','Zigby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3508294_e_h3_aa.jpg',4,NULL,NULL,'SH012670240000'),('EP012670240046','Zigby decides to dress up as a postman and deliver everyone\'s mail.','Zigby\'s Mail Service',_binary '','GBR','Zigby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3512957_e_h3_aa.jpg',4,NULL,NULL,'SH012670240000'),('EP026290400046','Bing is at Amma\'s creche and it is his turn to choose the game, Musical Statues.','Musical Statues',_binary '','GBR','Bing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10829961_e_h3_aa.jpg',4,NULL,NULL,'SH026290400000'),('EP012670240049','McMeer is very upset when Zigby accidentally loses his special hat.','Zigby Loses a Hat',_binary '','GBR','Zigby',NULL,NULL,4,NULL,NULL,'SH012670240000'),('EP013144420052','Mike and Frank challenge Danielle to sell a 10-foot fibreglass cowboy boot.','Fast Eddie',_binary '','GBR','American Pickers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8934804_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP019883970082','Auch die besten Freundinnen wie Peppa und Luzie Locke können manchmal richtig böse aufeinander sein.','Der Streit',_binary '','DEU','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990199_e_h3_aa.jpg',4,NULL,NULL,'SH019883970000'),('EP018574310131','Ein Mädchen, das von seiner Mutter geflüchtet ist, wird eingeliefert und benötigt eine Operation.','Ausreisser',_binary '','DEU','Dr House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9038453_e_h3_ac.jpg',4,NULL,NULL,'SH018574310000'),('EP019883970083','Der schöne Spielzeugschrank von Peppa und Schorsch ist hoffnungslos überfüllt. Ein neuer muss her!','Der Spielzeugschrank',_binary '','DEU','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990200_e_h3_aa.jpg',4,NULL,NULL,'SH019883970000'),('EP013075980160','A Christmas Eve catnapping renews Salem\'s love for his family..','Sabrina Claus',_binary '','GBR','Sabrina, the Teenage Witch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1909400_e_h3_aa.jpg',4,NULL,NULL,'SH013075980000'),('EP014430320250','The Players\' Championship features the top 16 players on the one-year ranking list.','Day 4',_binary '\0','GBR','Live: Players Championship Snooker',NULL,NULL,4,NULL,NULL,'SH014430320000'),('EP019664330057','Mark hat sich vertan und statt eines seltenen Gegenstandes einen rostigen Ventilator ersteigert.','DMAX-Folge 26',_binary '','DEU','Baggage Battles - Die Koffer-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9725437_e_h3_aa.jpg',4,NULL,NULL,'SH019664330000'),('EP031184410024','Deutschlandpremiere! : Miss Marple macht auf dem Weg zu einem alten Freund die Bekanntschaft von Eddie Seward, einem jungen Mann, der ein paar Tage später tot aufgefunden wird.','Die blaue Geranie',_binary '','DEU','Agatha Christie\'s Marple',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8438423_e_h3_ab.jpg',4,NULL,NULL,'SH031184410000'),('EP014430320251','The Players\' Championship features the top 16 players on the one-year ranking list.','Day 4',_binary '\0','GBR','Live: Players Championship Snooker',NULL,NULL,4,NULL,NULL,'SH014430320000'),('EP017742440230','Giada De Laurentiis invites Bobby Flay over for a day of fun in the kitchen.','Grilling With Bobby',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10117555_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP032181420006','The chance discovery of a gold-filled Anglo-Saxon royal tomb at Prittlewell, Essex, went global.','The Pagan Prince',_binary '','GBR','Mystic Britain',NULL,NULL,4,NULL,NULL,'SH032181420000'),('EP012603133960','A sick Boxer puppy and a vacation to California leave classmates-turned-lovers fighting over money.','Sick Boxer Puppy Scam?!; Baby Caught in the Middle!',_binary '','GBR','Judge Judy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13536490_e_h3_aa.jpg',4,NULL,NULL,'SH012603130000'),('EP017742440232','Giada De Laurentiis creates a delicious kid-friendly menu for her daughter Jade\'s sleepover party.','Jade\'s Sleepover',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10118038_e_h3_ac.jpg',4,NULL,NULL,'SH017742440000'),('EP032181420005','A humorous look at Yorkshire\'s \"living dead\": human remains from the Middle Ages.','The Revenants',_binary '','GBR','Mystic Britain',NULL,NULL,4,NULL,NULL,'SH032181420000'),('EP017742440231','Giada De Laurentiis prepares a dim sum menu inspired by her recent trip to Hong Kong.','Dim Sum',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10118389_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP032181420004','Explore the history of Hadrian\'s Wall, the Roman Empire\'s most impressive British legacy.','Hadrian\'s Mystic Wall',_binary '','GBR','Mystic Britain',NULL,NULL,4,NULL,NULL,'SH032181420000'),('EP032181420003','Clive Anderson and Mary-Ann Ochota visit the \"Whispering Knights\" and some ancient legendary stones.','The Rollright Witch',_binary '','GBR','Mystic Britain',NULL,NULL,4,NULL,NULL,'SH032181420000'),('EP032181420002','Clive Anderson and Mary-Ann Ochota explore superstition and magic in the Middle Ages.','Witches and Demons',_binary '','GBR','Mystic Britain',NULL,NULL,4,NULL,NULL,'SH032181420000'),('EP019579440264','Die Dokumentation widmet sich unter anderem der Bombenentschärfung in der Stadt Rostock.','Eine Innenstadt wird evakuiert - Bombenentschärfung in Rostock',_binary '','DEU','die nordreportage',NULL,NULL,4,NULL,NULL,'SH019579440000'),('EP028765600931','Der deutsche Cop Myles Grönloh ist mit seinen Kollegen in Austin, Texas unterwegs.','Thema u. a.: Deutscher Cop in USA - Unerwartet',_binary '','DEU','Achtung Kontrolle! Wir kümmern uns drum',NULL,NULL,4,NULL,NULL,'SH028765600000'),('EP012896310268','Stuart, Janine, Roly and Susan pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP020644780033','Die Feldmaus findet beim Spielen einen wunderschönen Stein im Schnee. Der Hase will auch einen.','Der verborgene Schatz',_binary '','DEU','Weißt du eigentlich wie lieb ich dich hab?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9245724_e_h3_aa.jpg',4,NULL,NULL,'SH020644780000'),('EP020644780032','Die beiden braunen Hasen, die kleine Rotfüchsin und die kleine Feldmaus spielen fröhlich Weithüpfen.','Spurlos verschwunden',_binary '','DEU','Weißt du eigentlich wie lieb ich dich hab?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8978896_e_h3_aa.jpg',4,NULL,NULL,'SH020644780000'),('EP012680300032','Hot air balloon; classic 1960 Gibson Les Paul guitar; Prohibition period medicinal whiskey.','Hot Air Buffoon',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7906500_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP017742440225','Giada De Laurentiis reached out to her Twitter follows to find out what they\'d like to see her make.','Viewer\'s Choice 2',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9995824_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP012680300034','Classic 1965 Shelby racecar; a World War II period ship\'s clock might not tick.','Sharks and Cobras',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7906497_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP015444023554','Paul bringt sich in Gefahr. Franzi macht Nadja eine Kampfansage. Natascha will Michael unbedingt glauben. Lucy ist von den jüngsten Ereignissen sehr mitgenommen und Bela steht ihr mitfühlend zur Seite. Unterdessen läuft Paul in seinem unendlichen.','Romy rettet Paul',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP015444023553','Lucy erfährt die Wahrheit. Franzi informiert Tim über die vermeintliche Affäre von Nadja und Dirk. Lucy versetzt Bela. Alfons will weiterhin keinen Kontakt zu seinem Bruder. Lucy stellt Paul wegen seines merkwürdigen Verhaltens zur Rede. Zunächst.','Folge 3329',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP015444023552','Christoph vermutet Paul hinter Annabelles Verschwinden. Pfarrer Rimpel erlebt eine Überraschung. Franzi erfährt ein Geheimnis. Tim spürt, dass mit Paul etwas nicht stimmt, und auch André wundert sich über dessen Verhalten. Nur Christoph.','Folge 3328',_binary '','DEU','Sturm der Liebe',NULL,NULL,4,NULL,NULL,'SH015444020000'),('EP023046440002','This documentary records the military events when the U boat menace was at it\'s height.','',_binary '\0','GBR','The U Boat War',NULL,NULL,4,NULL,NULL,'SH023046440000'),('EP023046440003','This documentary records the military events when the U boat menace was at it\'s height.','',_binary '\0','GBR','The U Boat War',NULL,NULL,4,NULL,NULL,'SH023046440000'),('EP019962420040','Die junge Zigeunerin Marina möchte innerhalb eines Tages sechs Banken überfallen.','Die Königin der Zigeuner',_binary '','DEU','Kojak - Einsatz in Manhattan',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1139030_e_h3_aa.jpg',4,NULL,NULL,'SH019962420000'),('EP013101720025','A very special edition featuring Paul and Linda McCartney playing themselves.','',_binary '\0','GBR','Bread',NULL,NULL,4,NULL,NULL,'SH013101720000'),('EP019664330065','Laurence und Sally haben auf einer Auktion in Louisiana eine Gitarre aus den 30er Jahren ersteigert.','Lügen haben kurze Beine',_binary '','DEU','Baggage Battles - Die Koffer-Jäger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9670961_e_h3_aa.jpg',4,NULL,NULL,'SH019664330000'),('EP012680300039','Aeroplane propeller possibly linked to Charles Lindbergh; 1750s flintlock musketoon.','Fired Up',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7859647_e_h3_ab.jpg',4,NULL,NULL,'SH012680300000'),('EP013101720027','Adrian is arrested and the family decide to keep Pa Boswell\'s health problems a secret from him.','',_binary '\0','GBR','Bread',NULL,NULL,4,NULL,NULL,'SH013101720000'),('EP012603132628','A man says his ex-lover stalked him, slapped him in the face and fled the scene.','Slapped for Cheating?; Friendship Fraud?',_binary '','GBR','Judge Judy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10511665_e_h3_aa.jpg',4,NULL,NULL,'SH012603130000'),('EP019952770280','Radfahren in Frankreich wird gern mit Weintrinken verbunden und in Übersee sammelt man Edelsteine.','Ranking: Die verrücktesten Freizeitbeschäftigungen',_binary '','DEU','Galileo 360°',NULL,NULL,4,NULL,NULL,'SH019952770000'),('EP022513700568','Beim Brand eines Wohnwagens erleidet ein Junge eine Rauchvergiftung. Er kämpft ums Überleben.','Akku leer',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP022817340221','Themen: Wohlstand für alle? Wer vom Wirtschaftswachstum tatsächlich profitiert Hass im Netz - Welche Gefahr von Gamingplattformen ausgehen kann Rechter Terror - Wer sind die mutmaßlichen Unterstützer.','',_binary '\0','DEU','Exakt',NULL,NULL,4,NULL,NULL,'SH022817340000'),('EP025939220155','Jett will Nita aus Kambodscha dabei helfen, Unmengen Badespielzeug aus einem Fluss zu fischen, der von Mangrovenbäumen umgeben ist. Doch alles einzeln herauszuholen, wäre viel zu zeitaufwändig. Deshalb schickt Joy ihm Mira und Todd zu Hilfe.','Gewirbelt und gefischt!',_binary '','DEU','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14682650_e_h3_aa.jpg',4,NULL,NULL,'SH025939220000'),('EP025939220154','Jett soll einen Kreisel zu einem Jungen im Regenwald bringen. Doch das ist gar nicht so einfach.','Das Kreisel-Chaos',_binary '','DEU','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14682642_e_h3_aa.jpg',4,NULL,NULL,'SH025939220000'),('EP017742440226','Giada De Laurentiis creates a delicious lunch for Jade and her friends.','Jade\'s Dance Class',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9996325_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP017742440229','Giada De Laurentiis visits her daughter Jade\'s school, along with a few other parents.','Career Day',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10053786_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP021336340177','Action from the Swedish Hockey League, the highest division in the Swedish ice hockey system.','Djurgardens v Brynas',_binary '','GBR','Swedish Hockey League',NULL,NULL,4,NULL,NULL,'SH021336340000'),('EP017742440228','Giada De Laurentiis makes recipes based on things that are stuffed.','Stuff It',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10052530_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP018387870001','Ashley Banjo embarks on his biggest challenge yet: teaching an entire town how to dance.','Public Services',_binary '','GBR','Ashley Banjo\'s Big Town Dance',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10397636_e_h3_aa.jpg',4,NULL,NULL,'SH018387870000'),('EP018387870002','Ashley continues on in his mission, assembling his second crew from the town\'s education sector.','Education',_binary '','GBR','Ashley Banjo\'s Big Town Dance',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10411078_e_h3_aa.jpg',4,NULL,NULL,'SH018387870000'),('EP012680300002','The guys have a chance to buy what is claimed to be an authentic Indiana Jones bullwhip.','John Hancock\'s Hancock',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3630359_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP019962420039','Der gestohlene Gürtel eines griechischen Matrosen ist Auslöser für drei Morde.','Die Nacht von Piräus',_binary '','DEU','Kojak - Einsatz in Manhattan',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1139027_e_h3_aa.jpg',4,NULL,NULL,'SH019962420000'),('EP034343610002','Bremerhaven beklagt in manchen Stadtteilen eine sehr hohe Armutsrate, insbesondere bei den Kindern.','Bremen und Bremerhaven (2)',_binary '','DEU','Hartz Rot Gold - Armutskarte Deutschland',NULL,NULL,4,NULL,NULL,'SH034343610000'),('EP030266790004','To help the new owner of the Abandoned Park Hotel, Nick and Katrina explore the claims of ghosts.','The Abandoned Park Hotel',_binary '','GBR','Paranormal Lockdown UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15879479_e_h3_aa.jpg',4,NULL,NULL,'SH030266790000'),('EP012680300007','Featuring a 1950s Coke machine and an 18th-century flintlock pistol.','Time Machines',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3594810_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP012680300009','Corey gets in trouble for buying a 1984 Chris-Craft boat without testing it first.','Sink or Sell',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3606609_e_h3_ab.jpg',4,NULL,NULL,'SH012680300000'),('EP012680300004','Baseball signed by the 1951 World Series champion New York Yankees.','Damn Yankees',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3594556_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP012680300003','A 1962 Lincoln Continental with suicide doors; an 1857 billfold contains Confederate money.','Gangsters & Guitars',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3594554_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP018387870003','Ashley takes on a batch of bakers, bank managers and shop workers.','Business',_binary '','GBR','Ashley Banjo\'s Big Town Dance',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10425188_e_h3_aa.jpg',4,NULL,NULL,'SH018387870000'),('EP012680300005','Checking the authenticity of a map of Colonial Boston; Chumlee\'s purchase of fake art upsets Rick.','Plane Crazy',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3630361_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP020170940014','Die Weisheitsforscherin Judith Glück und der Wirtschaftspsychologe Erich Kirchler sind zu Gast.','Weisheitsforscherin Judith Glück - Wirtschaftspsychologe Erich Kirchler',_binary '','DEU','science.talk',NULL,NULL,4,NULL,NULL,'SH020170940000'),('EP012613230046','Sam leaps back into the middle of his KKK initiation ceremony.','Justice: May 11, 1965',_binary '','GBR','Quantum Leap',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1296634_e_h3_aa.jpg',4,NULL,NULL,'SH012613230000'),('EP012613230045','As a Mississippi deputy sheriff in 1969, Sam evacuates residents in the face of Hurricane Camille.','Hurricane: August 17, 1969',_binary '','GBR','Quantum Leap',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1296632_e_h3_aa.jpg',4,NULL,NULL,'SH012613230000'),('EP025939220140','Das Düsenflugzeug Jett liefert Pakete an Kinder und hilft ihnen, Probleme zu lösen.','Immer der Nase nach',_binary '','DEU','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14502513_e_h3_aa.jpg',4,NULL,NULL,'SH025939220000'),('EP019599530007','Audio boffins develop an algorithm to replace continuity announcers.','Bad Continuity',_binary '','GBR','The Future of Radio',NULL,NULL,4,NULL,NULL,'SH019599530000'),('EP012615430228','Harry Hill watches from behind his sofa as we unveil our Top 100 shockers.','Top 100 Shockers',_binary '','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP012680300011','Wooden crossbow; Playboy magazine collection; ormolu \"Death Clock.\"','Peaches & Pinups',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3630372_e_h3_ad.jpg',4,NULL,NULL,'SH012680300000'),('EP012680300010','A KISS pinball machine from 1979; a woman brings in a 1914 star note $20 bill.','Old Man\'s Gamble',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3630388_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP024862180177','Amateur footage of an original cycling proficiency test taken by all ages in the late 1950s.','Cycling Proficiency in the late 50s',_binary '','GBR','Glimpses',NULL,NULL,4,NULL,NULL,'SH024862180000'),('EP030334500002','Judith Rakers erkundet die Nordseeinsel Ameland und wird dabei in so manches Abenteuer verwickelt.','Ameland...',_binary '','DEU','Inselreportagen mit Judith Rakers',NULL,NULL,4,NULL,NULL,'SH030334500000'),('EP012680300018','A Civil War sabre lands in the shop; a guitar autographed by Chuck Berry; 1916 cash register.','Confederate Conundrum',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3565442_e_h3_aa.jpg',4,NULL,NULL,'SH012680300000'),('EP012671360567','A special episode of Bionic Bunny is interrupted, and Arthur tries to remember what comes next.','He Said, He Said',_binary '','GBR','Arthur',NULL,NULL,4,NULL,NULL,'SH012671360000'),('EP012671360564','Buster tells the story of a missing cereal box on his all-new podcast.','Cereal',_binary '','GBR','Arthur',NULL,NULL,4,NULL,NULL,'SH012671360000'),('EP031476170045','Clannad guest on My 80s and Gary celebrates Howard Jones\' birthday with a Howard Mastermix.','Things Can Only Get Better',_binary '','GBR','Sounds of the 80s with Gary Davies',NULL,NULL,4,NULL,NULL,'SH031476170000'),('EP029541030094','Rod and Penny rescue Sammy Monkey while Penny earns her Jungle Explorer Badge.','Penny\'s Jungle Adventure',_binary '','GBR','Top Wing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16849350_e_h3_aa.jpg',4,NULL,NULL,'SH029541030000'),('EP019739350212','Auch in diesem Jahr wird beim politischen Aschermittwoch in Niederbayern wieder ausgeteilt und eingeschenkt. Es sind schwierige Zeiten für die Politik: der Anschlag von Hanau, Politikchaos in Thüringen, die CDU in einer Führungskrise.','Aschermittwoch - Es wird wieder eingeschenkt',_binary '','DEU','Kontrovers',NULL,NULL,4,NULL,NULL,'SH019739350000'),('EP017730140004','Tommy towers over the competition in a monster truck, and JD sees red with a 1994 Camaro.','Real Rat Rod',_binary '','GBR','Dallas Car Sharks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10072600_e_h3_aa.jpg',4,NULL,NULL,'SH017730140000'),('EP029541030096','The Cadets are put to the test as they babysit some rambunctious tree goats who can climb anything.','Trouble With Treegoats',_binary '','GBR','Top Wing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16849353_e_h3_aa.jpg',4,NULL,NULL,'SH029541030000'),('EP012698980108','A state trooper is shot after pulling over a van and officers apprehend the shooter.','Brotherhood of Hate',_binary '','GBR','The FBI Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2141741_e_h3_aa.jpg',4,NULL,NULL,'SH012698980000'),('EP017730140006','An out-of-production Ford Excursion gets a Tommy-sized upgrade that\'s not without a few surprises.','Blast From the Past',_binary '','GBR','Dallas Car Sharks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10122074_e_h3_aa.jpg',4,NULL,NULL,'SH017730140000'),('EP012698980107','A sophisticated burglary with estimated losses of $8 million.','The Perfect Heist',_binary '','GBR','The FBI Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2141740_e_h3_aa.jpg',4,NULL,NULL,'SH012698980000'),('EP025939220134','Das Düsenflugzeug Jett liefert Pakete an Kinder und hilft ihnen, Probleme zu lösen.','Der Drache fliegt',_binary '','DEU','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14537537_e_h3_aa.jpg',4,NULL,NULL,'SH025939220000'),('EP017730140009','JD buys an old fishing boat, and Tommy asks a friend to upgrade two trucks.','Gone Fishin\'',_binary '','GBR','Dallas Car Sharks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10127704_e_h3_aa.jpg',4,NULL,NULL,'SH017730140000'),('EP017730140008','Ash and JD race on a drag strip with Corvettes, and Tommy searches for the right car.','What a Drag',_binary '','GBR','Dallas Car Sharks',NULL,NULL,4,NULL,NULL,'SH017730140000'),('EP020644780003','Während der große braune Hase Essen sucht, spielt der kleine braune Hase fröhlich im Schnee.','Der Tannenzapfenbaum',_binary '','DEU','Weißt du eigentlich wie lieb ich dich hab?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11107540_e_h3_aa.jpg',4,NULL,NULL,'SH020644780000'),('EP020644780002','Die beiden braunen Hasen und die kleine Feldmaus machen sich auf die Suche nach einem Essensvorrat.','Der Glücksstock',_binary '','DEU','Weißt du eigentlich wie lieb ich dich hab?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9291228_e_h3_aa.jpg',4,NULL,NULL,'SH020644780000'),('EP012681462457','The day\'s important national and international news stories with Emma Barnett.','',_binary '\0','GBR','Newsnight',NULL,NULL,4,NULL,NULL,'SH012681460000'),('EP012681462456','The day\'s important national and international news stories with Kirsty Wark.','',_binary '\0','GBR','Newsnight',NULL,NULL,4,NULL,NULL,'SH012681460000'),('EP027546560102','Während Lola und Victor ihr Teleskop aufbauen, muss Pat die lästigen Tauben verjagen.','Sternschnuppen; Die Piñata; Pat, der Ritter',_binary '','DEU','Pat der Hund',NULL,NULL,4,NULL,NULL,'SH027546560000'),('EP027546560101','Lola wird von einem Tiermagazin zur Tierhalterin des Monats gekürt und Victor ist darauf neidisch.','Das Tiermagazin; Das letzte Level; Vom Pech verfolgt',_binary '','DEU','Pat der Hund',NULL,NULL,4,NULL,NULL,'SH027546560000'),('EP019851360038','Mike lernt Frankies Boss Mr. Ehlert kennen, und die beiden verstehen sich auf Anhieb.','Die Final Four',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8052107_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP013321720130','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP013321720131','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP013321720132','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP019851360039','Familie Heck wird wegen rückständiger Zahlungen von einem Tag auf den nächsten der Strom abgestellt.','Die Stromrechnung',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8072146_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP013321720133','Contestants can win prizes by guessing well-known expressions represented by animated characters.','',_binary '\0','GBR','Catchphrase',NULL,NULL,4,NULL,NULL,'SH013321720000'),('EP012667430005','Sam is headed for disappointment when a TV sportscaster (Fred Dryer) interviews him.','Sam at Eleven',_binary '','GBR','Cheers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052779_e_h3_af.jpg',4,NULL,NULL,'SH012667430000'),('EP012667430004','Diane\'s scorn for Sam\'s choice of women sends him on a quest for an intelligent date.','Sam\'s Women',_binary '','GBR','Cheers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052725_e_h3_ab.jpg',4,NULL,NULL,'SH012667430000'),('EP012667430007','Sam may lose the bar after hot-headed Carla attacks an obnoxious Yankees fan.','The Tortelli Tort',_binary '','GBR','Cheers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052768_e_h3_ab.jpg',4,NULL,NULL,'SH012667430000'),('EP013268190116','Buzzbee and Barnabee help Barry get his business booming again after his lucky teapot breaks.','Lucky Barry',_binary '','GBR','The Hive',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12057440_e_h3_aa.jpg',4,NULL,NULL,'SH013268190000'),('EP012667430003','Diane Chambers ends up as a waitress at a Boston pub after she\'s dumped by her fiancee.','Give Me a Ring Sometime',_binary '','GBR','Cheers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052614_e_h3_ac.jpg',4,NULL,NULL,'SH012667430000'),('EP013268190119','Buzzbee\'s forgetful nature gets him into trouble when he forgets Barnabee\'s birthday.','Forgetful Bee',_binary '','GBR','The Hive',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12287989_e_h3_aa.jpg',4,NULL,NULL,'SH013268190000'),('EP017729740027','A tour over two US territories: Puerto Rico and the US Virgin Islands.','Puerto Rico & US Virgin Islands',_binary '','GBR','Aerial America',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12777507_e_h3_aa.jpg',4,NULL,NULL,'SH017729740000'),('EP012896311542','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP012896311541','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP019388320169','Eine Frau zeigt das Verschwinden ihrer jungen Enkelin an. Benson und Stabler recherchieren.','Egoistisch',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3519219_e_h3_ac.jpg',4,NULL,NULL,'SH019388320000'),('EP012896311540','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP012896311543','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP021402410092','With the guys\' band away on a gig, Amy and Sticks have a girls\' weekend.','Sticks and Amy\'s Excellent Staycation',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14231200_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP013268190123','Barnabee and Dr Beetle help each other change their staid images during fun fitness classes.','Bee Fit',_binary '','GBR','The Hive',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12890538_e_h3_aa.jpg',4,NULL,NULL,'SH013268190000'),('EP013268190126','At the community games day, Buzzbee learns there are lots of ways to make memories.','Making Memories',_binary '','GBR','The Hive',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12891238_e_h3_aa.jpg',4,NULL,NULL,'SH013268190000'),('EP016344000005','Wordsmith Woodhouse tries an oratorio and some candid writing about a pregnancy.','Red Whales in the Funhouse',_binary '','GBR','Such Rotten Luck',NULL,NULL,4,NULL,NULL,'SH016344000000'),('EP012823810300','The making of the world\'s finest harp strings and building roof windows to keep out hurricanes.','Harp Strings, Roof Windows and Belgian Waffles',_binary '','GBR','How Do They Do It?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11498494_e_h3_aa.jpg',4,NULL,NULL,'SH012823810000'),('EP003337730784','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Auto, Motor, Sex',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP012907380419','Rohit Kachroo gains unprecedented access to MI5, one of the world\'s oldest spy agencies.','Inside MI5: Keeping the UK Safe',_binary '','GBR','Tonight',NULL,NULL,4,NULL,NULL,'SH012907380000'),('EP034409410004','Tthe story of Hattie McDaniel, the first African American to win an Oscar in 1940.','A Hard Won Oscar',_binary '','GBR','The Californian Century',NULL,NULL,4,NULL,NULL,'SH034409410000'),('EP021402410060','Eggman\'s anti-gravity ray causes a lot of chaos in Hedgehog Village.','Eggman\'s Anti Gravity Ray',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14287687_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP019462121637','Die MDR-Wetterfrösche werfen einen Blick auf das aktuelle Wetter und die Aussichten.','',_binary '\0','DEU','Wetter für 3',NULL,NULL,4,NULL,NULL,'SH019462120000'),('EP019462121636','Die MDR-Wetterfrösche werfen einen Blick auf das aktuelle Wetter und die Aussichten.','',_binary '\0','DEU','Wetter für 3',NULL,NULL,4,NULL,NULL,'SH019462120000'),('EP017742440216','Giada De Laurentiis shows us how to make good old-fashioned Italian pasta from scratch.','Pasta From Scratch',_binary '','GBR','Giada at Home',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9996602_e_h3_aa.jpg',4,NULL,NULL,'SH017742440000'),('EP013373850090','Against the backdrop of nail bars, wine bars, flash cars and designer gear.','',_binary '\0','GBR','The Only Way Is Essex',NULL,NULL,4,NULL,NULL,'SH013373850000'),('EP034409410003','Stanley Tucci tells the story of celebrity revivalist preacher Aimee Semple McPherson.','The Vanishing',_binary '','GBR','The Californian Century',NULL,NULL,4,NULL,NULL,'SH034409410000'),('EP019383930212','Ein Serienkiller treibt sein Unwesen in Kalifornien und kann lange Zeit nicht gefasst werden.','Mord in Serie',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP019932500101','Neal bekommt einen neuen Kontaktmann und untersucht einen Online-Schwarzmarkt.','Vom Leben in die Traufe',_binary '','DEU','White Collar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10202401_e_h3_aa.jpg',4,NULL,NULL,'SH019932500000'),('EP034077640052','Die Übertragung erfolgt aus Antholz, Italien.','Weltmeisterschaft 2020 in Antholz - 12,5km Massenstart der Frauen',_binary '\0','DEU','Biathlon',NULL,NULL,4,NULL,NULL,'SH034077640000'),('EP034077640053','Die Übertragung erfolgt aus Antholz, Italien.','Weltmeisterschaft 2020 in Antholz - 15km Massenstart der Männer',_binary '\0','DEU','Biathlon',NULL,NULL,4,NULL,NULL,'SH034077640000'),('EP012597670147','Chris makes a special trip to see Stubby, a tiny 3-week-old piglet born with only one trotter.','',_binary '\0','GBR','Bondi Vet',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12125565_e_h3_aa.jpg',4,NULL,NULL,'SH012597670000'),('EP012600720054','Revamping a flat in Headingly, Leeds in a Grade II listed building.','Headingly',_binary '','GBR','House Doctor',NULL,NULL,4,NULL,NULL,'SH012600720000'),('EP019775860174','Silvia ist eine alleinerziehende Mutter und verdächtigt ihre Tochter Tamara, mit Drogen zu dealen.','Die Geschäfte einer Tochter; Klötens Drei',_binary '','DEU','Privatdetektive im Einsatz',NULL,NULL,4,NULL,NULL,'SH019775860000'),('EP019775860172','In einem Parkscheinautomaten fehlen bei der Leerung 7.000 Euro, es gibt jedoch keine Einbruchspuren.','Das Leben ist Hartgeld; Böse Gerüchte',_binary '','DEU','Privatdetektive im Einsatz',NULL,NULL,4,NULL,NULL,'SH019775860000'),('EP019775860173','Steffen ist Inhaber eines Lottogeschäfts, in dem eingebrochen wurde, ohne dass der Alarm losging.','6 Richtige; Außer Spesen nichts gewesen',_binary '','DEU','Privatdetektive im Einsatz',NULL,NULL,4,NULL,NULL,'SH019775860000'),('EP019775860170','Die Bahnhofsleiterin Sybille macht sich Sorgen um die Zukunft ihres Bahnhofs.','Abstellgleis; Pflege-Fall',_binary '','DEU','Privatdetektive im Einsatz',NULL,NULL,4,NULL,NULL,'SH019775860000'),('EP031944320074','Magoo thinks he\'s on a trip to Translovenia and takes shelter in a mansion owned by a vampire.','Welcome to Translovenia',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16839777_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP025075440064','Henry restores a workbench and Simon ponders the possibilities of some discarded planks of wood.','',_binary '\0','GBR','Find It, Fix It, Flog It',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15944438_e_h3_aa.jpg',4,NULL,NULL,'SH025075440000'),('EP025075440065','Simon restores an enamel roll top bath and Henry makes a wall mounted safe from a jerry can.','',_binary '\0','GBR','Find It, Fix It, Flog It',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15944443_e_h3_aa.jpg',4,NULL,NULL,'SH025075440000'),('EP032948130002','The ninja\'s quest involves a road trip through the Desert of Doom.','A Rocky Start',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16973365_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP025075440060','Henry restores a cockpit seat and Simon attempts to turn part of a jet engine into a coffee table.','',_binary '\0','GBR','Find It, Fix It, Flog It',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15917744_e_h3_aa.jpg',4,NULL,NULL,'SH025075440000'),('EP031944320076','Fizz wants to cure Magoo\'s near-sightedness for good, so he and Weasel go over to his house.','Family Meal',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16839789_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP025075440061','Henry builds a steam punk lamp from a copper pipe, and Simon updates a Welsh dresser.','',_binary '\0','GBR','Find It, Fix It, Flog It',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15917797_e_h3_aa.jpg',4,NULL,NULL,'SH025075440000'),('EP032948130003','The ninja and Clutch Powers enter a mysterious pyramid, where they unleash an ancient evil.','Booby-Traps, and How to Survive Them',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16983502_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP026888200055','Ramona, Bill und ihre Tochter Rachel träumen von einem Haus am See für maximal 225.000 Dollar.','Eine schwimmende Veranda',_binary '','DEU','Lakefront - Haus am See gesucht',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13895847_e_h3_aa.jpg',4,NULL,NULL,'SH026888200000'),('EP026888200054','Ein Paar träumt von einem eigenen Haus am Fuße der Appalachen. Ihr Budget umfasst 299.000 US-Dollar.','Leben am Fuße der Appalachen',_binary '','DEU','Lakefront - Haus am See gesucht',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13987539_e_h3_aa.jpg',4,NULL,NULL,'SH026888200000'),('EP026888200057','Eine junge Grundschullehrerin will aus dem Elternhaus direkt in ihr eigenes Heim ziehen.','Schwestern auf Häuser-Jagd',_binary '','DEU','Lakefront - Haus am See gesucht',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13895850_e_h3_aa.jpg',4,NULL,NULL,'SH026888200000'),('EP026888200056','Nancy und Scott arbeiten schon lange sehr hart für ihren großen Traum: ein eigenes Haus am See.','Das süße Leben am Lake Sinclair',_binary '','DEU','Lakefront - Haus am See gesucht',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13895855_e_h3_aa.jpg',4,NULL,NULL,'SH026888200000'),('EP012823810333','Turning a family car into a fortress on wheels, growing millions of perfect Christmas trees.','Armored Cars, Christmas Trees',_binary '','GBR','How Do They Do It?',NULL,NULL,4,NULL,NULL,'SH012823810000'),('EP012603132580','A bakery owner\'s son sues her for wrongful termination. A man says his ex-landlady ran a scam.','Hiring and Firing in America; Eviction Conviction',_binary '','GBR','Judge Judy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10734355_e_h3_aa.jpg',4,NULL,NULL,'SH012603130000'),('EP018558720955','Das Magazin berichtet von aktuellen Ereignissen in der Welt der Prominenten.','',_binary '\0','DEU','Exclusiv - Das Starmagazin',NULL,NULL,4,NULL,NULL,'SH018558720000'),('EP032948130005','The ninja must escape encroaching lava to warn Ninjago City of a new Serpentine invasion.','Ninja vs. Lava',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17052375_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP032948130008','Gayle Gossip reports on the Serpentine attack on Ninjago City.','Snaketastrophy',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17052376_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP032948130009','To repair the Land-Bounty, the ninja must retrieve an engine component from a giant scarab beetle.','The Belly of the Beast',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16973368_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP031944320082','Weasel tests out Fizz\'s latest invention, a three-piece swimsuit to make beachgoers look chic.','Seven Minutes Flat',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16839787_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP031944320080','Magoo mistakes Fizz for his friend Harry, and thinks the two of them are visiting their old school.','Magoo\'s Best Friend',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16839785_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP019383930229','Anhand von Bisswunden an einer Leiche wird ein Mann festgenommen und zum Tode verurteilt.','Im Namen des Volkes',_binary '','DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin',NULL,NULL,4,NULL,NULL,'SH019383930000'),('EP031944320083','Fizz and Weasel plan to enter Fizz\'s new condiment in a culinary contest.','The Gluttons for Punishment',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16808367_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP032948130010','Lil\' Nelson takes a job as a paperboy, which is more difficult than it sounds.','The News Never Sleeps!',_binary '','GBR','Ninjago',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16983504_e_h3_aa.jpg',4,NULL,NULL,'SH032948130000'),('EP019560641266','Die Polizei hält ein auffälliges Auto mit zwei alkoholisierten Insassen und einer Überraschung an.','Schnäppchenjäger',_binary '','DEU','Auf Streife',NULL,NULL,4,NULL,NULL,'SH019560640000'),('EP018558720954','Das Magazin berichtet von aktuellen Ereignissen in der Welt der Prominenten.','',_binary '\0','DEU','Exclusiv - Das Starmagazin',NULL,NULL,4,NULL,NULL,'SH018558720000'),('EP018558720953','Das Magazin berichtet von aktuellen Ereignissen in der Welt der Prominenten.','',_binary '\0','DEU','Exclusiv - Das Starmagazin',NULL,NULL,4,NULL,NULL,'SH018558720000'),('EP026888200062','Ein Paar aus East Tennessee sucht nach einem neuen Domizil für Ferien am Douglas Lake.','Ein Seehaus mit Südstaaten-Charme',_binary '','DEU','Lakefront - Haus am See gesucht',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13895858_e_h3_aa.jpg',4,NULL,NULL,'SH026888200000'),('EP016446100094','Coverage of the Kontinental Hockey League, featuring 25 professional clubs.','Sibir v Dinamo Riga',_binary '\0','GBR','Live: Kontinental Hockey League',NULL,NULL,4,NULL,NULL,'SH016446100000'),('EP019664380454','Wie sah die Welt vor 20 Jahren aus? Die Sendung bietet einen Einblick in die jüngere Zeitgeschichte.','vom 26.02.2000',_binary '','DEU','Tagesschau - Vor 20 Jahren',NULL,NULL,4,NULL,NULL,'SH019664380000'),('EP019576050102','Maya und Dink überrumpeln Sam und Naomi mit konkreten Heiratsplänen.','Die Pistole auf der Brust',_binary '','DEU','Private Practice',NULL,NULL,4,NULL,NULL,'SH019576050000'),('EP019388320175','Die 15-jährige Kim Garnet hat aus Versehen Aktfotos von sich an einen Mitschüler verschickt.','Bestechlich',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3526164_e_h3_ac.jpg',4,NULL,NULL,'SH019388320000'),('EP012860621326','Ellen is joined by Hollywood star Chris Pratt, who discusses the animated film \"Onward\".','Chris Pratt',_binary '','GBR','The Ellen DeGeneres Show',NULL,NULL,4,NULL,NULL,'SH012860620000'),('EP024540650018','Gluko and Lennon must get Little Bubble back home to Bubble Land.','What\'s the Trouble Bubble',_binary '','GBR','Little Big Awesome',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16960958_e_h3_aa.jpg',4,NULL,NULL,'SH024540650000'),('EP012860621327','Kate and Oliver Hudson talk about their podcast \"Sibling Revelry\", and Tones and I performs.','Kate Hudson, Oliver Hudson and Tones and I',_binary '','GBR','The Ellen DeGeneres Show',NULL,NULL,4,NULL,NULL,'SH012860620000'),('EP034289380021','In the West Midlands, three couples hope to wow their guests in order to win the prize.','West Midlands',_binary '','GBR','Couples Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH034289380000'),('EP034289380022','All three couples serve lamb in south east London, and guests discuss their marriage plans.','South East London',_binary '','GBR','Couples Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH034289380000'),('EP012860621325','Ellen is joined by Harrison Ford, who discusses heading the cast of \"The Call of the Wild\".','Harrison Ford, Andy Lassner and Mark Wahlberg',_binary '','GBR','The Ellen DeGeneres Show',NULL,NULL,4,NULL,NULL,'SH012860620000'),('EP034289380023','In south east London, Max and his wife Janelle tap into her family roots for their Caribbean menu. Michael and Laura relive their Ibizan wedding. And David and Sammi plan a party.','South East London',_binary '','GBR','Couples Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH034289380000'),('EP034289380024','Competing in Bristol are fitness fans Billy and Tasha, music-mad Dennis and Tina and ex-reporter Keith and his wife Jane, whose night doesn\'t go to plan when Keith goes full Alan Partridge.','Bristol',_binary '','GBR','Couples Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH034289380000'),('EP024540650017','When Lennon offends the sun, it causes a blackout in Townopolis.','Sorry Mr. Sun',_binary '','GBR','Little Big Awesome',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16960945_e_h3_aa.jpg',4,NULL,NULL,'SH024540650000'),('EP019388320181','Ein vermuteter Vergewaltiger wird bei einem Versuch, in eine Wohnung einzubrechen, ertappt.','Wahrheit',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3539612_e_h3_ac.jpg',4,NULL,NULL,'SH019388320000'),('EP019664380458','Wie sah die Welt vor 20 Jahren aus? Die Sendung bietet einen Einblick in die jüngere Zeitgeschichte.','vom 26.02.2000',_binary '','DEU','Tagesschau - Vor 20 Jahren',NULL,NULL,4,NULL,NULL,'SH019664380000'),('EP012600720066','Ann Maurice and Alistair Appleton are in Bow, east London to help sell a property.','Bow, East London',_binary '','GBR','House Doctor',NULL,NULL,4,NULL,NULL,'SH012600720000'),('EP019664380462','Wie sah die Welt vor 20 Jahren aus? Die Sendung bietet einen Einblick in die jüngere Zeitgeschichte.','vom 27.02.2000',_binary '','DEU','Tagesschau - Vor 20 Jahren',NULL,NULL,4,NULL,NULL,'SH019664380000'),('EP019388320182','Ein Serienvergewaltiger treibt sein Unwesen in dem Stadtteil SoHo.','Gesetz der Straße',_binary '','DEU','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9208286_e_h3_ac.jpg',4,NULL,NULL,'SH019388320000'),('EP030477540136','Im Talk aus Berlin spricht Ulrich Matthes über seine persönliche Berlinale-Woche und die unterschiedliche Freude am Spielen vor der Kamera und auf der Bühne. Außerdem diskutiert er mit Jörg Thadeusz über das zuweilen gespannte Verhältnis.','Zu Gast: Ulrich Matthes - Schauspieler',_binary '','DEU','Talk aus Berlin',NULL,NULL,4,NULL,NULL,'SH030477540000'),('EP019579440311','Die Dokumentation begleitet den Schädlingsbekämpfer Dennis und sein Team bei ihren Einsätzen.','Schädlingsbekämpfer im Einsatz',_binary '','DEU','die nordreportage',NULL,NULL,4,NULL,NULL,'SH019579440000'),('EP016398191338','Die wöchentliche Nachrichtensendung wirft einem Blick auf das aktuelle Geschehen in Europa.','',_binary '\0','DEU','heute - in Europa',NULL,NULL,4,NULL,NULL,'SH016398190000'),('EP031944320066','A bear has escaped from the zoo and Fizz is hell-bent on making it his pet.','Maggie Magoo',_binary '','GBR','Mr. Magoo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16839782_e_h3_aa.jpg',4,NULL,NULL,'SH031944320000'),('EP024457980004','When disaster strikes, the Raneys must overcome the Deeters\' distrust of outsiders.','Trust or Die',_binary '','GBR','Homestead Rescue',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12970265_e_h3_aa.jpg',4,NULL,NULL,'SH024457980000'),('EP027149170024','Cat is given the run-a-round by a herd of grumpy alpacas, and a chihuahua\'s tooth problem.','Alpacas, Diego and Jabba',_binary '','GBR','The Pets Factor',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15492516_e_h3_aa.jpg',4,NULL,NULL,'SH027149170000'),('EP029229240003','Flying officer Hugh Fleming is shot down and badly burned during the battle of Britain in 1940.','',_binary '\0','GBR','A Perfect Hero',NULL,NULL,4,NULL,NULL,'SH029229240000'),('EP027149170023','Cheryl treats a black cat who\'s down on his luck, and a greedy french bulldog puppy gets some help.','Bam Bam, Oscar and Monty',_binary '','GBR','The Pets Factor',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15492473_e_h3_aa.jpg',4,NULL,NULL,'SH027149170000'),('EP029229240004','Flying officer Hugh Fleming is shot down and badly burned during the battle of Britain in 1940.','',_binary '\0','GBR','A Perfect Hero',NULL,NULL,4,NULL,NULL,'SH029229240000'),('EP016398191339','Die wöchentliche Nachrichtensendung wirft einem Blick auf das aktuelle Geschehen in Europa.','',_binary '\0','DEU','heute - in Europa',NULL,NULL,4,NULL,NULL,'SH016398190000'),('EP019666900423','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','Folge 348',_binary '','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP030180330006','Birgit Fuchs leitet seit 18 Jahren ihr Büdchen. Sie ist als die gute Seele ihres Stadtteils bekannt.','Folge 6',_binary '','DEU','Unser Kiosk - Trost und Prost im Viertel',NULL,NULL,4,NULL,NULL,'SH030180330000'),('EP026348160005','Tony Robinson reaches the North Yorkshire Moors, visiting the ruins of Rievaulx Abbey.','',_binary '\0','GBR','Tony Robinson: Coast To Coast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13978867_e_h3_aa.jpg',4,NULL,NULL,'SH026348160000'),('EP019666900422','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','Folge 347',_binary '','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP026348160006','En route to Robin Hood\'s Bay, Tony visits a steam railway, RAF Fylingdales, and a family-run bakery.','',_binary '\0','GBR','Tony Robinson: Coast To Coast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14017818_e_h3_aa.jpg',4,NULL,NULL,'SH026348160000'),('EP013026900610','Paul takes a water taxi to uncover some goodies, and Catherine picks up a Cartier-branded lighter.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15921591_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP012742270003','Archie\'s sister plans to convert Glenbogle into a healing centre.','',_binary '\0','GBR','Monarch of the Glen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2360768_e_h3_aa.jpg',4,NULL,NULL,'SH012742270000'),('EP013758640066','Host, Andy Cohen sits down with the ladies to set the record straight on the season\'s antics.','Reunion Part 1',_binary '','GBR','The Real Housewives of Atlanta',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9154978_e_h3_ab.jpg',4,NULL,NULL,'SH013758640000'),('EP026348160004','Tony visits Wensleydale cheese manufacturers, a calf auction, Asgarth Falls, and Kiplin Hall.','',_binary '\0','GBR','Tony Robinson: Coast To Coast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13956737_e_h3_aa.jpg',4,NULL,NULL,'SH026348160000'),('EP012691630260','BJ and Charles clash when they are both honoured for an operation.','Stars and Stripes',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145068_e_h3_ac.jpg',4,NULL,NULL,'SH012691630000'),('EP013758640062','Cynthia hosts a model call; NeNe makes a big decision about her marriage.','Happiness & Joy',_binary '','GBR','The Real Housewives of Atlanta',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9153034_e_h3_ac.jpg',4,NULL,NULL,'SH013758640000'),('EP022736211130','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Gäste zum Kaffee',NULL,NULL,4,NULL,NULL,'SH022736210000'),('EP016204330042','With the help of singer Lucy O\'Bryne, the doctors reveal the hidden muscle that makes you breathe.','',_binary '\0','GBR','Operation Ouch!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12545046_e_h3_aa.jpg',4,NULL,NULL,'SH016204330000'),('EP012823810371','How do they build a float for New Orleans Mardi Gras parades?','Decorations on Mardi Gras Floats; Rock Candy',_binary '','GBR','How Do They Do It?',NULL,NULL,4,NULL,NULL,'SH012823810000'),('EP016204330043','What happens when you get diarrhoea and Dr Xand meets Alexia and Kloe from CBBC\'s Ice Stars.','',_binary '\0','GBR','Operation Ouch!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12566405_e_h3_aa.jpg',4,NULL,NULL,'SH016204330000'),('EP012823810373','How do they turn used aluminium cans into planes and rockets?','Aluminium Cans, Cuckoo Clocks, Paddleboards',_binary '','GBR','How Do They Do It?',NULL,NULL,4,NULL,NULL,'SH012823810000'),('EP012823810374','How do Lea and Perrins concoct their famous Worcestershire sauce?','Car Shredder, Sarees, Worcestershire Sauce',_binary '','GBR','How Do They Do It?',NULL,NULL,4,NULL,NULL,'SH012823810000'),('EP020815760005','The team are called to a building site to treat a roofer who has suffered a fall.','',_binary '\0','GBR','Air Ambulance ER',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11409949_e_h3_aa.jpg',4,NULL,NULL,'SH020815760000'),('EP023612070088','Why do we get more colds in winter? A viral story for Rutherford and Fry.','',_binary '\0','GBR','The Curious Cases of Rutherford and Fry',NULL,NULL,4,NULL,NULL,'SH023612070000'),('EP023105260003','Susan Calman encourages Joe Lycett, Celia Pacquola, Holly Walsh and Lloyd Langford.','',_binary '\0','GBR','Listomania',NULL,NULL,4,NULL,NULL,'SH023105260000'),('EP022690770023','Als sich die Kinder etwas Geld auf dem Sommermarkt verdienen wollen, beobachten sie Diebstähle.','Diebe auf dem Sommermarkt',_binary '','DEU','4 1/2 Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12226468_e_h3_aa.jpg',4,NULL,NULL,'SH022690770000'),('EP030180330010','In Duisburg sammelt Birgit in ihrem Kiosk Birgits Büdchen Sachspenden für Bedürftige. Auch ihre Kundin Bärbel hilft schon seit fast drei Jahrzehnten ehrenamtlich Obdachlosen. Zwei Schützlinge von ihr sind Betty und Thommy.','Folge 10',_binary '','DEU','Unser Kiosk - Trost und Prost im Viertel',NULL,NULL,4,NULL,NULL,'SH030180330000'),('EP022690770024','An der Schule wird die Serie `Inspektor Derk\' gedreht. Aber die Dreharbeiten werden behindert.','Sabotage am Filmset',_binary '','DEU','4 1/2 Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12226490_e_h3_aa.jpg',4,NULL,NULL,'SH022690770000'),('EP023277630040','A tattooist moonlights as both a reggae singer and a DIY visual artist.','',_binary '\0','GBR','Bargain Loving Brits in the Sun',NULL,NULL,4,NULL,NULL,'SH023277630000'),('EP012911720069','The team tackle a lairy drunk, a runaway knifeman, and a suspected drug dealer.','',_binary '\0','GBR','Police Interceptors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9713446_e_h3_aa.jpg',4,NULL,NULL,'SH012911720000'),('EP012972532483','Sarah Walker presents performances from the 2019 Australian Festival of Chamber Music.','Australian Festival of Chamber Music 2019 - Connor D\'Netto, Amy Beach and Faure',_binary '','GBR','Radio 3 Lunchtime Concert',NULL,NULL,4,NULL,NULL,'SH012972530000'),('EP012972532486','Sarah Walker presents performances from the 2019 Australian Festival of Chamber Music.','Australian Festival of Chamber Music 2019 - Schubert, Fitkin and Janacek',_binary '','GBR','Radio 3 Lunchtime Concert',NULL,NULL,4,NULL,NULL,'SH012972530000'),('EP023973730244','On Halloween Night, Morbucks summons a monster that she didn\'t expect.','Witch\'s Crew',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15988442_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP023973730243','When the professor is kidnapped, the girls must go to a mysterious island to save him.','Salamander',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15776852_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP023973730241','Buttercup must go it alone to save her family from a kidnapping.','In the Doghouse',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15776849_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP012598220312','Martin Roberts and Lucy Alexander visit properties in Cornwall, London and Derby.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP017428580206','Die Panzernashorn-Kuh Jhansi kam extra für den Deck-Akt aus dem Tierpark in den Zoo zu Bulle Joda.','Besuch vom Tierarzt',_binary '','DEU','Panda, Gorilla & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12739121_e_h3_aa.jpg',4,NULL,NULL,'SH017428580000'),('EP018556691317','Aktuelle Nachrichten und Servicebeiträge zu Themen wie Finanzen, Reisen und Einkaufen.','Folge 11622',_binary '','DEU','RTL Aktuell',NULL,NULL,4,NULL,NULL,'SH018556690000'),('EP021832870005','Istanbul gilt als die aufregendste Stadt der Gegenwart. In der Metropole ist alles möglich.','Istanbul',_binary '','DEU','Abenteuer Türkei',NULL,NULL,4,NULL,NULL,'SH021832870000'),('EP018556691318','Aktuelle Nachrichten und Servicebeiträge zu Themen wie Finanzen, Reisen und Einkaufen.','Folge 11623',_binary '','DEU','RTL Aktuell',NULL,NULL,4,NULL,NULL,'SH018556690000'),('EP012691630242','The officers are drafted into running the saloon while Rosie is in the hospital.','Captains Outrageous',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145067_e_h3_ac.jpg',4,NULL,NULL,'SH012691630000'),('EP012691630241','Charles is sure he had a great time in Tokyo, if he could only remember what he did.','Mr and Mrs Who?',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145059_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP006839480195','Einige alteingesessene Bettler aus Kaltenthal haben Schwester Hanna um Hilfe gebeten.','Milde Gaben',_binary '','DEU','Um Himmels Willen',NULL,NULL,4,NULL,NULL,'SH006839480000'),('EP006839480196','Schwester Hanna versucht, das Geld für die Therapie für die schwerkranke Sylvia aufzutreiben.','Geschenk der Liebe',_binary '','DEU','Um Himmels Willen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12596895_e_h3_aa.jpg',4,NULL,NULL,'SH006839480000'),('EP029307670019','Shane agrees to referee a football match but must first fix the players\' football kits.','In the Pink',_binary '','GBR','Shane the Chef',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16243899_e_h3_aa.jpg',4,NULL,NULL,'SH029307670000'),('EP012966383008','It\'s an emotional day for Shula and Helen offers the benefit of experience.','',_binary '\0','GBR','The Archers',NULL,NULL,4,NULL,NULL,'SH012966380000'),('EP012975650015','Geoffrey Wheeler\'s history of the vast US vaudeville circuit with tens of thousands of performers.','Stateside',_binary '','GBR','The Palace of Laughter',NULL,NULL,4,NULL,NULL,'SH012975650000'),('EP012794060108','Kim Cattrall explains turning down \"Sex and the City 3\", and reveals her relationship with the cast.','Kim Cattrall',_binary '','GBR','Piers Morgan\'s Life Stories',NULL,NULL,4,NULL,NULL,'SH012794060000'),('EP015136730058','Chris van Tulleken demystifies health issues, separating fact from fiction.','',_binary '\0','GBR','Inside Health',NULL,NULL,4,NULL,NULL,'SH015136730000'),('EP023973730253','A crash landing sends the people of Townsville over the edge.','The Spoon',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16636913_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP023973730252','The girls must replace the Professor\'s Christmas present on Christmas Eve.','The Gift',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16243105_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP023973730251','A new villain arrives in Townsville and gives the old villains an enticing offer.','The Fog',_binary '','GBR','The Powerpuff Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16636911_e_h3_aa.jpg',4,NULL,NULL,'SH023973730000'),('EP028704500001','Die Sendung widmet sich dem Westwind. Er bestimmt die Wetterlage, die bei uns vorherrscht.','Westwind',_binary '','DEU','Unser Wetter',NULL,NULL,4,NULL,NULL,'SH028704500000'),('EP028704500007','Manchmal erreichen Deutschland Südwinde aus der Sahara. Der Meteorologe forscht in Marokko nach.','Südwind',_binary '','DEU','Unser Wetter',NULL,NULL,4,NULL,NULL,'SH028704500000'),('EP033047100022','Interviews, discussion and analysis from Westminster with Andrew Neil and guests.','',_binary '\0','GBR','The Andrew Neil Show',NULL,NULL,4,NULL,NULL,'SH033047100000'),('EP022736211129','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Gäste zum Kaffee',NULL,NULL,4,NULL,NULL,'SH022736210000'),('EP013026900609','Catherine and Paul are shopping their way from Wrexham to the Black Country.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15921590_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP019369690106','Evelyn hat wieder einmal einen neuen Freund, doch Alan und Charlie trauen ihm nicht.','Teddy ist unser Daddy',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853204_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019563160259','Dennis erzählt Jessica die Geschichte von einem mysteriösen Mord an der Chefin eines Bauchredners.','Auf dem Weg nach Las Vegas',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157024_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP012691630220','Hawkeye and BJ become lost in enemy territory.','The Yalu Brick Road',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145060_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP019374001164','Deutsches Boulevardmagazin mit den aktuellen Ereignissen des Tages sowie Klatsch und Tratsch.','',_binary '\0','DEU','taff',NULL,NULL,4,NULL,NULL,'SH019374000000'),('EP019563160255','Jessica hilft einem alten Freund, der des Mords an einer umstrittenen Autorin verdächtigt wird.','Lebendig vernichtet',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1156875_e_h3_ac.jpg',4,NULL,NULL,'SH019563160000'),('EP019374001163','Deutsches Boulevardmagazin mit den aktuellen Ereignissen des Tages sowie Klatsch und Tratsch.','',_binary '\0','DEU','taff',NULL,NULL,4,NULL,NULL,'SH019374000000'),('EP019563160256','Jessica versucht die Unschuld eines Schülers zu beweisen, der des Mordes verdächtigt wird.','Die tödliche Lektion',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1156877_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP016113510099','Jimmy wants to know where the flavour in his Earl Grey tea comes from.','',_binary '\0','GBR','Food Unwrapped',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14117756_e_h3_aa.jpg',4,NULL,NULL,'SH016113510000'),('EP019563160253','Jessicas Vormieter wird ermordet und ihre Wohnung durchwühlt. Jessica stellt dem Mörder eine Falle.','Gefährliches New York',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p1156873_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP019563160254','Jessica und Harry untersuchen den Mord an einem Autor, dem ein Manuskript gestohlen wurde.','Die Jagd nach dem Manuskript',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157035_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP020904420697','In ihrer Angst und Panik hat Frauke Reimann einen mutmaßlichen Vergewaltiger erschlagen.','Aus Spiel wird Ernst',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP020904420698','Der zweifache Kindermörder Martin Trübner wird im Gefängnis verprügelt und muss ins Krankenhaus.','Unter Feinden',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP020904420699','Die Leiche von Katja wurde im Haus ihres Ehemannes gefunden. Keiner weiß wieso die Frau tot ist.','Schrei nach Liebe',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP020904420694','Der 25-jährige Darius Reiter wird tot aufgefunden, keiner kann sich seinen Tod erklären.','Schweigegeld',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP020904420695','Die Obdachlose Lena Wedau wird in der Nähe eines Bahnhofs tot aufgefunden.','Ihr Zuhause - die Straße',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP030672130007','Mats und Malika begegnen einem Flaschengeist; Malika und Mats landen mitten in einer Geschichte.','Der Flaschengeist; Das verzauberte Buch',_binary '','DEU','Voll zu spät!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15569687_e_h3_aa.jpg',4,NULL,NULL,'SH030672130000'),('EP020904420696','Die Leiche von Masseur Thomas Hintze wird in dem Wellnesshotel `RuhrSPA\' entdeckt.','Wundersame Wellnesswelt',_binary '','DEU','Niedrig und Kuhnt - Kommissare ermitteln',NULL,NULL,4,NULL,NULL,'SH020904420000'),('EP024960890002','In Colchester, police are called to deal with a man who has broken into a local school.','Duty Of Care',_binary '','GBR','The Force: Essex',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13229597_e_h3_aa.jpg',4,NULL,NULL,'SH024960890000'),('EP016076720102','Highlights of Wednesday 26 February in Parliament presented by David Cornock.','',_binary '\0','GBR','Wednesday in Parliament',NULL,NULL,4,NULL,NULL,'SH016076720000'),('EP019563160268','Jessicas Verleger wird eines Mordes verdächtigt, der in seinem Heimatdorf geschehen ist.','Mord, schlicht und einfach?',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157034_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP019563160264','Drei Todesfälle durch Arsen-Vergiftungen werden der Besitzerin eines Schnellimbisses zum Verhängnis.','Vorbelastet',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157033_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP019563160265','Eine Serie von Überfällen und ein Mord machen Jessicas Universitätscampus unsicher.','Tod in Manhattan',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1156874_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP021543380090','Nach wie vor ist Jeannie im Safe eingeschlossen und nur einer kennt die Kombination.','Jeannie und die Mondsafeknacker',_binary '','DEU','Bezaubernde Jeannie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1129203_e_h3_ab.jpg',4,NULL,NULL,'SH021543380000'),('EP019563160260','Jessica hilft einem jungen Mann, der verdächtigt wird, ein Bauprojekt sabotiert zu haben.','Ein Kind der Liebe',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157020_e_h3_ac.jpg',4,NULL,NULL,'SH019563160000'),('EP019563160261','Sheriff Metzger scheint den Hauptverdächtigen in einem Mordfall in Schutz zu nehmen.','Verwandtes Blut',_binary '','DEU','Mord ist ihr Hobby',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1156876_e_h3_ab.jpg',4,NULL,NULL,'SH019563160000'),('EP017428710036','In Montenegro reisen die Kreuzfahrerinnen Stefanie und Karin in ihre eigene Vergangenheit.','Die Glocken von Montenegro',_binary '','DEU','Verrückt nach Meer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11167806_e_h3_aa.jpg',4,NULL,NULL,'SH017428710000'),('EP024960890003','A grandmother is shocked after she is burgled by her own grandson.','Can\'t Choose Your Family',_binary '','GBR','The Force: Essex',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13242411_e_h3_aa.jpg',4,NULL,NULL,'SH024960890000'),('EP017428710032','Auf der `Grand Lady\' ist die Hölle los. In Venedig checken so viele Kreuzfahrer ein wie noch nie.','Alaaf auf hoher See',_binary '','DEU','Verrückt nach Meer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11134149_e_h3_aa.jpg',4,NULL,NULL,'SH017428710000'),('EP024960890004','Essex Police\'s fight against knife crime continues when a neighbours dispute goes out of control..','Night Of The Long Knives',_binary '','GBR','The Force: Essex',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13265996_e_h3_aa.jpg',4,NULL,NULL,'SH024960890000'),('EP018442680436','Nach dem Tod eines sechsjährigen Mädchens ermittelt Peter Faber im Drogenmilieu.','Kollaps',_binary '','DEU','Tatort',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12155845_e_h3_aa.jpg',4,NULL,NULL,'SH018442680000'),('EP012911720070','A gun is found in a city-centre bar and a stick of dynamite is taken to the police station.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP012911720072','After overturning on treacherous ice, the occupants of a 4x4 need rescuing.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP024276870007','Für seine Reportagen reist Joseph Roth über Polen in die noch junge Sowjetunion.','Joseph Roths Russland',_binary '','DEU','Die große Literatour',NULL,NULL,4,NULL,NULL,'SH024276870000'),('EP012606120189','Barnaby is called to investigate when a body is found in a relish factory.','Sauce for the Goose',_binary '','GBR','Midsomer Murders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8716819_e_h3_ab.jpg',4,NULL,NULL,'SH012606120000'),('EP021649870086','Erica is jealous of Barry\'s performance when they both get jobs at Spencer\'s.','The Spencer\'s Gift',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13771582_e_h3_aa.jpg',4,NULL,NULL,'SH021649870000'),('EP024276870008','Die Sendung zeichnet die Stationen von Mark Twains Reise durch Deutschland im Jahr 1878 nach.','Mark Twains Deutschland',_binary '','DEU','Die große Literatour',NULL,NULL,4,NULL,NULL,'SH024276870000'),('EP012911720074','Ross and John are called in to help a victim who has been bound and gagged.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP021649870084','Adam tries to join the tennis team to stay close to his friend Chad.','Agassi',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13746508_e_h3_aa.jpg',4,NULL,NULL,'SH021649870000'),('EP012911720076','Dog handler Glenn is given a crash course in marine rescue when he answers a distress call.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP021649870082','Beverly hopes to inspire the students when she substitutes for Barry\'s chemistry class.','O Captain! My Captain!',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13623876_e_h3_aa.jpg',4,NULL,NULL,'SH021649870000'),('EP021649870083','The boys take advantage of Murray when they find out he has a fear of snow.','Snow Day',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13639807_e_h3_aa.jpg',4,NULL,NULL,'SH021649870000'),('EP022965700008','Inspired by the sport of wakeboarding, Tim and Gendle invent a life-sized game of stone skipping.','Will It Skim?',_binary '','GBR','The Indestructibles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12327056_e_h3_aa.jpg',4,NULL,NULL,'SH022965700000'),('EP024276870005','Die Dokumentation visualisiert die Beobachtungen John Steinbecks während seiner USA-Reise.','John Steinbecks USA',_binary '','DEU','Die große Literatour',NULL,NULL,4,NULL,NULL,'SH024276870000'),('EP022965700007','Backflips and rail rides are the order of the day for Tim and Gendle.','Abandoned BMX',_binary '','GBR','The Indestructibles',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12327037_e_h3_aa.jpg',4,NULL,NULL,'SH022965700000'),('EP019138541113','Angelo macht bei einem Backwettbewerb mit. Die Bestenlisten fürs Jahrbuch werden gewählt.','Der Kuchenbackwettbewerb; Die Bestenliste; Die Sportprüfung; Der Strandurlaub',_binary '','DEU','Angelo!',NULL,NULL,4,NULL,NULL,'SH019138540000'),('EP019138541112','1. Geschichte: Angelos Dad bringt eine Überraschung mit nach Hause: Electra! 2. Geschichte: Angelo und Sherwood machen im Internet aus Spaß einen Freundschaftstest. Doch das Ergebnis des Tests ist niederschmetternd. 3. Geschichte: Angelo hat gesehen.','Electra; Ziemlich allerbeste Freunde; Alles, nur nicht trennen; Krank daheim und allein',_binary '','DEU','Angelo!',NULL,NULL,4,NULL,NULL,'SH019138540000'),('EP031689760016','Lainey has high hopes for Coach Mellor\'s love life. Glascott has trouble with librarian Dr. Ness.','I\'ll Be There for You',_binary '','GBR','Schooled',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17383268_e_h3_aa.jpg',4,NULL,NULL,'SH031689760000'),('EP023277630011','Grandma Linda set up a charity to rescue and rehome abandoned dogs.','',_binary '\0','GBR','Bargain Loving Brits in the Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13683310_e_h3_aa.jpg',4,NULL,NULL,'SH023277630000'),('EP023277630012','Claire, formerly known as John, hosts a bargain loving party.','',_binary '\0','GBR','Bargain Loving Brits in the Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13723757_e_h3_aa.jpg',4,NULL,NULL,'SH023277630000'),('EP019577060194','Bei einer Oldtimer-Ausstellung lernt Tim Doug O\'Brian kennen, der seinen Hot Rod kaufen möchte.','Aus Neu macht Alt',_binary '','DEU','Hör mal, wer da hämmert',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125286_e_h3_ab.jpg',4,NULL,NULL,'SH019577060000'),('EP029962240012','Mit der nahenden Sonnenfinsternis droht mal wieder das große Nickerchen, bei dem alle einschlafen.','Das große Nickerchen',_binary '','DEU','Arthur und die Minimoys',NULL,NULL,4,NULL,NULL,'SH029962240000'),('EP019577060193','Jills Eltern besuchen die Taylors über Weihnachten. Das Paar trägt die üblichen Streitereien aus.','Ehekrach unterm Christbaum',_binary '','DEU','Hör mal, wer da hämmert',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125284_e_h3_ab.jpg',4,NULL,NULL,'SH019577060000'),('EP019577060192','Jill wird für Marks Weihnachtsaufführung das Bühnenbild malen. Sie nutzt dafür die Garage von Tim.','Das Schneemobil',_binary '','DEU','Hör mal, wer da hämmert',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125283_e_h3_ac.jpg',4,NULL,NULL,'SH019577060000'),('EP029962240013','Die Minimoy Tradition will, dass König Sifrat für einen Tag sein Amt an den König des Tages abtritt.','Der Eintagskönig',_binary '','DEU','Arthur und die Minimoys',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15484644_e_h3_aa.jpg',4,NULL,NULL,'SH029962240000'),('EP012911720087','The pursuit of a Range Rover leads the interceptors to a haul of stolen cars.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP019577060196','Al wird von einer Zeitschrift zum attraktivsten Junggesellen gewählt und verhält sich arrogant.','Al und die Frauen',_binary '','DEU','Hör mal, wer da hämmert',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125288_e_h3_ab.jpg',4,NULL,NULL,'SH019577060000'),('EP030672130014','Mats und Malika begegnen einem Glibbermonster auf dem Schulweg, das die Welt beherrschen will.','Die Superhelden ; Besuch aus dem Weltall',_binary '','DEU','Voll zu spät!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16168913_e_h3_ab.jpg',4,NULL,NULL,'SH030672130000'),('EP033080150002','Owen and Claire move super-secret dinosaurs across Jurassic World in an animated LEGO adventure.','',_binary '\0','GBR','Jurassic World: The Secret Exhibit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16123644_e_h3_aa.jpg',4,NULL,NULL,'SH033080150000'),('EP030672130013','Mats und Malika wollen Thorsten einen Kuscheltier zurückgeben, der ihm gehört. Doch er streitet ab.','Der Zauberlehrling; Das Kuscheltier',_binary '','DEU','Voll zu spät!',NULL,NULL,4,NULL,NULL,'SH030672130000'),('EP012584114285','Lola is left surprised, and Stuart takes matters into his own hands.','',_binary '\0','GBR','EastEnders',NULL,NULL,4,NULL,NULL,'SH012584110000'),('EP016391900325','Land unter an der Nordsee. Zumindest, wenn ein Sturmtief über die Hallig Nordstrandischmoor fegt.','Mein Strand gehört mir und der Traum vom Inselglück',_binary '','DEU','Terra Xpress',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17200197_e_h3_aa.jpg',4,NULL,NULL,'SH016391900000'),('EP031906530024','Als Silvia David sagen möchte, dass sie mit ihm zusammen sein möchte, geht er zu Ruth.','Das beste Gaming-Duo',_binary '','DEU','NOOBees',NULL,NULL,4,NULL,NULL,'SH031906530000'),('EP031906530025','Robert bleibt standfest und lässt Robert für David spielen. Die Rockers verlieren ihr erstes Spiel.','Der herausragendste Spieler',_binary '','DEU','NOOBees',NULL,NULL,4,NULL,NULL,'SH031906530000'),('EP022983460089','Ethan, who has recently become vegan, wakes up to an absolute nightmare.','Friendgame',_binary '','GBR','Secret Life of Boys',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16592145_e_h3_aa.jpg',4,NULL,NULL,'SH022983460000'),('EP015402140480','Die Sendung berichtet über die erste Gebirgsstrecke Europas, die Geislinger Steige.','Mit Volldampf über die Geislinger Steige',_binary '','DEU','Eisenbahn-Romantik',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12219253_e_h3_aa.jpg',4,NULL,NULL,'SH015402140000'),('EP015402140481','Die Sendung zeigt die auf der Nürnberger Spielwarenmesse 1997 vorgestellten Neuigkeiten.','Nürnberger Spielwarenmesse 1997',_binary '','DEU','Eisenbahn-Romantik',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12219259_e_h3_aa.jpg',4,NULL,NULL,'SH015402140000'),('EP027485190020','Zwei Fluggäste aus Santiago de Chile tragen eine verdächtig große Summe Bargeld bei sich.','Folge 20',_binary '','DEU','Border Control - Spaniens Grenzschützer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13744809_e_h3_aa.jpg',4,NULL,NULL,'SH027485190000'),('EP022880900076','Das Thema der Sendung ist: \"Burnout im Pfarramt Wer braucht heute noch die Kirchen?\".','',_binary '\0','DEU','Nah dran',NULL,NULL,4,NULL,NULL,'SH022880900000'),('EP023584210115','As the PJ Masks lift off to the moon to stop Luna Girl, Gekko is afraid and fears going to space.','Moonstruck Part One: Race to the Moon',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15392466_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP019864800162','Die europäischen Wälder sind massiv geschwächt. Sie leiden unter extremen Wetterereignissen.','Beschneidung: Muß ein Verbot her?',_binary '','DEU','Vox Pop',NULL,NULL,4,NULL,NULL,'SH019864800000'),('EP023584210116','When Catboy and Owlette try to stop Luna Girl from improving her powers, they are imprisoned.','Moonstruck Part Two: Lunar Palace',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15392472_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP025275740007','Dallas Campbell analysiert unter anderem die Missgeschicke beim Trendsport Bubble Football.','Folge 22',_binary '','DEU','Science of Stupid: Wissenschaft der Missgeschicke',NULL,NULL,4,NULL,NULL,'SH025275740000'),('EP022222000065','Chip and Joanna have the challenge of designing a living space for fellow designer Kristen Bufton.','Stately in White: From \'80s to Elegant',_binary '','GBR','Fixer Upper',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13693513_e_h3_aa.jpg',4,NULL,NULL,'SH022222000000'),('EP033003560001','Five couples press pause on their relationships and spend one summer experiencing single life.','',_binary '\0','GBR','Singletown',NULL,NULL,4,NULL,NULL,'SH033003560000'),('EP033003560002','The Riverside residents Claudia, George, Luke, Selin and Elliot enjoy a hot tub trip on the Thames.','',_binary '\0','GBR','Singletown',NULL,NULL,4,NULL,NULL,'SH033003560000'),('EP013289800004','Trapped in a parallel universe, Robin hires a strangely familiar kids\' entertainer.','',_binary '\0','GBR','Married',NULL,NULL,4,NULL,NULL,'SH013289800000'),('EP033227900019','Der Single Uwe erhält fünf Menü-Vorschläge, hinter denen sich Blind Dates verbergen.','Uwe',_binary '','DEU','Dinner Date',NULL,NULL,4,NULL,NULL,'SH033227900000'),('EP019560690062','Claudias Ex-Mann Dirk lässt seine Kinder neuerdings tun, was sie wollen, und erzieht sie nicht mehr.','Folge 169',_binary '','DEU','Anwälte im Einsatz',NULL,NULL,4,NULL,NULL,'SH019560690000'),('EP012702080426','A man under investigation for rape and murder threatens to expose secrets of those working the case.','Know It All',_binary '','GBR','Law & Order: Special Victims Unit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13874268_e_h3_ab.jpg',4,NULL,NULL,'SH012702080000'),('EP027670990018','Paul visits Wester Ross and discovers the heritage of Little Loch Broom.','The Wild Way of the North',_binary '','GBR','Grand Tours of Scotland\'s Lochs',NULL,NULL,4,NULL,NULL,'SH027670990000'),('EP021457990008','The CH-47 Chinook for decades has been the Army\'s primary helicopter for lifting heavy cargo.','Chinook',_binary '','GBR','Air Warriors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12119298_e_h3_aa.jpg',4,NULL,NULL,'SH021457990000'),('EP019997571362','Die Sendung zeigt Berichte, Nachrichtenfilme und Meldungen zu den Geschehnissen in der Region.','',_binary '\0','DEU','aktueller bericht',NULL,NULL,4,NULL,NULL,'SH019997570000'),('EP019997571363','Die Sendung zeigt Berichte, Nachrichtenfilme und Meldungen zu den Geschehnissen in der Region.','',_binary '\0','DEU','aktueller bericht',NULL,NULL,4,NULL,NULL,'SH019997570000'),('EP027485190019','Gleich nach der Landung in Madrid durchsucht die Guardia Civil ein Flugzeug aus Santo Domingo.','Folge 19',_binary '','DEU','Border Control - Spaniens Grenzschützer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13738090_e_h3_aa.jpg',4,NULL,NULL,'SH027485190000'),('EP006839480249','Obwohl das kleine Klosterhofkonzert ein voller Erfolg war, ist die Stimmung bei den Kaltenthaler Nonnen gedrückt. Weihbischof Landkammer hatte in letzter Minute Wind von der Veranstaltung bekommen und kocht seither vor Wut.','Loslassen',_binary '','DEU','Um Himmels Willen',NULL,NULL,4,NULL,NULL,'SH006839480000'),('EP016282040670','Coverage of the Kontinental Hockey League, featuring 25 professional clubs.','Sibir v Dinamo Riga',_binary '','GBR','Kontinental Hockey League',NULL,NULL,4,NULL,NULL,'SH016282040000'),('EP018439950202','Imke und Krissi Grevemeyer fallen aus allen Wolken, als ein Polizist vor ihrer Tür steht.','Tankstopp',_binary '','DEU','Die Pfefferkörner',NULL,NULL,4,NULL,NULL,'SH018439950000'),('EP018439950201','Während eines Spaziergangs treffen Tayo und Femi auf ein Mädchen, dessen Hündin gestohlen wurde.','Der doppelte Willie',_binary '','DEU','Die Pfefferkörner',NULL,NULL,4,NULL,NULL,'SH018439950000'),('EP023584210131','Catboy learns how to make his cat powers more powerful and enlists the help of Gekko and Owlette.','Night of the Cat',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15535149_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP023584210130','Catboy has to learn that it is not all about him when they try to stop the new villains in town.','The Wolfy Kids',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15851108_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP023584210133','The moths and the Ninjalinos go rogue and team up to get rid of Luna Girl and Night Ninja.','Ninja Moths',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15496397_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP022376780001','Ballistik-Experten müssen anhand einer zurückgelassenen, unversehrten Patrone eine Mordwaffe finden.','Der Doppelmord von New Jersey',_binary '','DEU','Die Forensiker: Profis am Tatort',NULL,NULL,4,NULL,NULL,'SH022376780000'),('EP023584210132','Catboy falls victim to a Romeo remote capable of rewinding action and is stuck in an endless night.','Catboy Does It Again',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15535158_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP028214330062','Sun makes preparations for the villagers to pick olives and Sun organises the bazaar.','New Oil Day',_binary '','GBR','Trulli Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15324221_e_h3_aa.jpg',4,NULL,NULL,'SH028214330000'),('EP028214330061','Stella is in charge of sewing tutus for the dance show, but finds herself easily distracted.','Stella\'s Ribbon',_binary '','GBR','Trulli Tales',NULL,NULL,4,NULL,NULL,'SH028214330000'),('EP019862310123','Berichtet über Kulturhighlights in Hessen, über Trends und Tendenzen, über Skandale und Flops.','',_binary '\0','DEU','Hauptsache Kultur',NULL,NULL,4,NULL,NULL,'SH019862310000'),('EP012974990191','Clare Balding walks with Sikh-turned-Methodist, Inderjit Bhogal, along part of the Wilberforce Way.','The Wilberforce Way with Inderjit Bhogal',_binary '','GBR','Ramblings',NULL,NULL,4,NULL,NULL,'SH012974990000'),('EP019734590015','In Juárez wird die Leiche der äußerst engagierten Pflichtverteidigerin Edith Ferlok gefunden.','Ein schwarzer Helikopter',_binary '','DEU','The Mentalist',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10490590_e_h3_aa.jpg',4,NULL,NULL,'SH019734590000'),('EP022376780003','Ein Solar-Physiker soll den Ermittlern helfen, das Verschwinden einer jungen Frau aufzuklären.','Aus der Asche',_binary '','DEU','Die Forensiker: Profis am Tatort',NULL,NULL,4,NULL,NULL,'SH022376780000'),('EP019729600079','Die Sendung widmet sich dem historischen Ensemble ehemaliger Krankenhäuser in Buch bei Berlin.','Die Krankenhausstadt Buch',_binary '','DEU','Geheimnisvolle Orte',NULL,NULL,4,NULL,NULL,'SH019729600000'),('EP019466751218','Der schnelle Überblick über die wichtigsten Ereignisse in Sachsen, Sachsen-Anhalt und Thüringen.','',_binary '\0','DEU','Länder kompakt',NULL,NULL,4,NULL,NULL,'SH019466750000'),('EP019466751217','Der schnelle Überblick über die wichtigsten Ereignisse in Sachsen, Sachsen-Anhalt und Thüringen.','',_binary '\0','DEU','Länder kompakt',NULL,NULL,4,NULL,NULL,'SH019466750000'),('EP019719720018','Bei der Fahndung nach der Diagnose geht es in der Medizin zu wie bei einem Kriminalfall.','Unsichtbare Gefahr',_binary '','DEU','Abenteuer Diagnose',NULL,NULL,4,NULL,NULL,'SH019719720000'),('EP015402140490','Die Sendung zeigt den Neu-Einsatz des Albbähnels zwischen Amstetten und Geradstetten.','Neubeginn auf der Schwäbischen Alb',_binary '','DEU','Eisenbahn-Romantik',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12261152_e_h3_aa.jpg',4,NULL,NULL,'SH015402140000'),('EP019370140069','Sheldons Account in einem großen Online-Spiel ist gehackt worden und Sheldon ist außer sich.','Der Zarnecki-Feldzug',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8575788_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP025778850053','Zollbeamte an den Flughäfen Auckland und Queenstown entdecken gefährliche Fracht.','Brasilianische Liebesdienste',_binary '','DEU','Border Patrol New Zealand',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15017702_e_h3_aa.jpg',4,NULL,NULL,'SH025778850000'),('EP019370140068','Bernadette soll im Auftrag von Penny bei dem Essen mit Leonard, Howard und Priya spionieren.','Die Antilope im Curry',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8621390_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP019560520105','Ray Martindale wurde von Deeks vor dem Knast bewahrt, indem er als Informant arbeitet.','Plan B',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8621345_e_h3_aa.jpg',4,NULL,NULL,'SH019560520000'),('EP025778850055','Zollbeamten finden im Gepäck eines chinesischen Geschäftsmanns sonderbare Gegenstände.','Ein Fall für den Tierschutz',_binary '','DEU','Border Patrol New Zealand',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15017716_e_h3_aa.jpg',4,NULL,NULL,'SH025778850000'),('EP019370140066','Sheldon fühlt sich einsam, weil Leonard viel Zeit mit Priya verbringt, und lädt Freunde zu sich ein.','Das Juwel von Mumbai',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8534970_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP025778850054','Eine Kanadierin unternimmt den Versuch, eine Katze über die Grenze zu schmuggeln.','Der fliegende Holländer',_binary '','DEU','Border Patrol New Zealand',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15017708_e_h3_aa.jpg',4,NULL,NULL,'SH025778850000'),('EP019370140065','Penny hat eine Nacht mit Raj verbracht und flüchtet zu Amy, während sich Raj große Hoffnungen macht.','Der Schlampen-Reflex',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8814261_e_h3_ab.jpg',4,NULL,NULL,'SH019370140000'),('EP025778850057','Die Zollbeamten im südlich gelegenen Queenstown werden auf einen französischen Arzt aufmerksam.','Taiwanesische Zwillinge',_binary '','DEU','Border Patrol New Zealand',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15604830_e_h3_aa.jpg',4,NULL,NULL,'SH025778850000'),('EP025778850056','Zollbeamte in Christchurch finden bei einer Kontrolle eine Bibel, die nicht nur Worte beinhaltet.','Bibel mit Beilage',_binary '','DEU','Border Patrol New Zealand',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15017727_e_h3_aa.jpg',4,NULL,NULL,'SH025778850000'),('EP012615430306','Harry Hill presents more hilarious footage, including a building that crushes a sports car.','',_binary '\0','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP013033150015','Tormented schoolboy Ryan McClean is found dead in the grounds of his school, and looks like suicide.','The Friday Event',_binary '','GBR','Taggart',NULL,NULL,4,NULL,NULL,'SH013033150000'),('EP012615430300','This week includes a spectacular case of stage fright and a dog with an identity crisis.','Rides Again',_binary '','GBR','You\'ve Been Framed!',NULL,NULL,4,NULL,NULL,'SH012615430000'),('EP021396030233','Alvin lies to Theodore about a fake holiday and Dave forces Alvin to make it real.','Snail-A-Palooza',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,NULL,4,NULL,NULL,'SH021396030000'),('EP022983460090','Robbie and Ginger work hard to become the king or queen of Pranksgiving.','Pranksgiving',_binary '','GBR','Secret Life of Boys',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16623236_e_h3_aa.jpg',4,NULL,NULL,'SH022983460000'),('EP019370140058','Amy stellt ein wissenschaftliches Experiment auf, das das Zusammenhalten ihrer Freunde zeigt.','Sag\'s nicht weiter!',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8584775_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP019369690172','Alan will dafür sorgen, dass die Hochzeit von Judith glatt läuft. Charlie hat eine Affäre mit Myra.','Ich mach bei Hochzeiten immer das Gleiche',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853203_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019370140055','Howard verspricht sich: nun weiß seine Mutter, dass er sich mit Bernadette verlobt hat.','Hochzeit und Herzinfarkt',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8640474_e_h3_ab.jpg',4,NULL,NULL,'SH019370140000'),('EP029497560001','Frühjahr 1981: Am Vorabend der Präsidentschaftswahl bereitet sich Victor auf sein Abitur vor.','Spring',_binary '','DEU','Mut zur Liebe',NULL,NULL,4,NULL,NULL,'SH029497560000'),('EP012587871038','Max finds herself in a desolate state after receiving blind-siding news.','',_binary '\0','GBR','Holby City',NULL,NULL,4,NULL,NULL,'SH012587870000'),('EP029497560002','Herbst 1999: Victor und Serge sind seit über 17 Jahren ein Paar und wollen ein Kind adoptieren.','Episode 2',_binary '','DEU','Mut zur Liebe',NULL,NULL,4,NULL,NULL,'SH029497560000'),('EP021396030220','Alvin passes off a rock he found on the ground as a meteor for a science project.','It Came From Outer Space',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15306980_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP020075070022','Thema dieser Folge: Modalverben Du kannst, du sollst, du musst - sind sogenannte Modalverben.','Should / shouldn\'t',_binary '','DEU','GRIPS Englisch',NULL,NULL,4,NULL,NULL,'SH020075070000'),('EP023618620008','When spring arrives, the Fox\'s hut melts away, so she moves into the Rabbit\'s hut and kicks him out!','The Fox and the Rabbit',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224525_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP025069650012','Kortney and Dave flip a house with very little square footage.','Who Paints Brick?',_binary '','GBR','Masters of Flip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11680694_e_h3_aa.jpg',4,NULL,NULL,'SH025069650000'),('EP020075070021','Das kennst du auch: Du telefonierst und schilderst deinem Gesprächspartner, was du gerade tust.','Present progressive: They are working',_binary '','DEU','GRIPS Englisch',NULL,NULL,4,NULL,NULL,'SH020075070000'),('EP021396030227','Dave discovers he is not too good at roughing it outdoors when he goes on a hike with the Chipettes.','Girls Night Out',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15847149_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP012600970045','Two women named Mary Morris are murdered within 72 hours of each other.','',_binary '\0','GBR','Unsolved Mysteries',NULL,NULL,4,NULL,NULL,'SH012600970000'),('EP012595540219','Ray tells Robert that Amy talks too much after she talks for a long time while he tries to watch TV.','Pat\'s Secret',_binary '','GBR','Everybody Loves Raymond',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1926317_e_h3_ab.jpg',4,NULL,NULL,'SH012595540000'),('EP021396030223','Alvin volunteers to caddy a charity golf tournament and surprisingly gets paired up with Miss Smith.','Tee Fore Two',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15317692_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP019370140063','Howard fühlt sich minderwertig, weil Bernadette einen Doktortitel und einen gut bezahlten Job hat.','Männertausch',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8649438_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP019370140060','Sheldon will unbedingt herausfinden, wie Howards mysteriöser Kartentrick funktioniert.','Herz zwei',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8545900_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP012597991611','The reds and blues have an antique centre to explore with Catherine Southon and Danny Sebastian.','London 6',_binary '','GBR','Bargain Hunt',NULL,NULL,4,NULL,NULL,'SH012597990000'),('EP019675920016','Tony\'s crew outside of Haines, Alaska, get a visit from a hungry bear.','Destructive Forces',_binary '','GBR','Building Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11302977_e_h3_aa.jpg',4,NULL,NULL,'SH019675920000'),('EP012846970242','Walden dates an attractive 22-year-old, but ends up being more interested in her grandmother.','Cows, Prepare to Be Tipped',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9826326_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP019675920013','Three men set out to build three cabins in remote areas of the Alaskan Frontier.','The Race Is On: The Builders Set Their Course',_binary '','GBR','Building Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10378587_e_h3_aa.jpg',4,NULL,NULL,'SH019675920000'),('EP012846970240','Alan has a difficult time coping when Lyndsey breaks up with him.','Another Night With Neil Diamond',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9887064_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP029111220065','Guy Diamond beschließt, die sehr schüchterne Flora zu seinem Lehrling zu machen.','Guys Lehrling; Der Haarball',_binary '','DEU','Trolls - Die Party geht weiter!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16793552_e_h3_aa.jpg',4,NULL,NULL,'SH029111220000'),('EP012846970241','With encouragement from Walden, Alan decides to update his look, and Alan faces a moral dilemma.','My Bodacious Vidalia',_binary '','GBR','Two and a Half Men',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p9887100_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP014917500110','Examining the promise and perils of artificial intelligence and fears about work and privacy.','In the Age of AI: Part 1',_binary '','GBR','Frontline',NULL,NULL,4,NULL,NULL,'SH014917500000'),('EP019370140048','Sheldon wirft Leonard vor, gegen die Mitbewohner-Vereinbarung zu verstoßen, und flüchtet zu Penny.','Souvlaki statt Pizza',_binary '','DEU','The Big Bang Theory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8605755_e_h3_aa.jpg',4,NULL,NULL,'SH019370140000'),('EP029099400064','Die Kandidaten der Spielshow müssen gegeneinander antreten, um Preise zu gewinnen.','War of Worlds 2 - Paulie vertrauen',_binary '','DEU','The Challenge',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17343297_e_h3_aa.jpg',4,NULL,NULL,'SH029099400000'),('EP013234962370','Topical mix of entertainment, discussion and showbiz glamour as well as the latest fashion and more.','',_binary '\0','GBR','Lorraine',NULL,NULL,4,NULL,NULL,'SH013234960000'),('EP014917500111','Examining the promise and perils of artificial intelligence and fears about work and privacy.','In the Age of AI: Part 2',_binary '','GBR','Frontline',NULL,NULL,4,NULL,NULL,'SH014917500000'),('EP013234962371','Topical mix of entertainment, discussion and showbiz glamour as well as the latest fashion and more.','',_binary '\0','GBR','Lorraine',NULL,NULL,4,NULL,NULL,'SH013234960000'),('EP032442250004','Der Reporter begleitet Tänzer und Gastronomen bei der Vorbereitung auf das Open-Air-Ballhaus.','Walzerfieber - Cottbus im Dreivierteltakt',_binary '','DEU','rbbKultur',NULL,NULL,4,NULL,NULL,'SH032442250000'),('EP024501630004','Shiro must recall painful memories from his past when a giant robot threatens the peace on Arus.','Return of the Gladiator',_binary '','GBR','Voltron: Legendary Defender',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12753156_e_h3_aa.jpg',4,NULL,NULL,'SH024501630000'),('EP012911720022','Best moments of the series so far include the pursuit of a drug dealer.','',_binary '\0','GBR','Police Interceptors',NULL,NULL,4,NULL,NULL,'SH012911720000'),('EP021396030215','The girls at school cast votes for the cutest chipmunk on the bathroom wall.','The Wall',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14697279_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP024501630001','Invaders take the castle and destroy its power crystal in an attempt to steal Voltron.','Fall of the Castle of Lions',_binary '','GBR','Voltron: Legendary Defender',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12753168_e_h3_aa.jpg',4,NULL,NULL,'SH024501630000'),('EP012966383012','Roy questions himself and Jakob makes his feelings clear.','',_binary '\0','GBR','The Archers',NULL,NULL,4,NULL,NULL,'SH012966380000'),('EP021396030217','When the boys accidentally break Dave\'s new TV, they decide to become fugitives on the lam.','The Fugitives',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15181651_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP012966383011','Jim struggles to take in recent events and Oliver has a dilemma on his hands.','',_binary '\0','GBR','The Archers',NULL,NULL,4,NULL,NULL,'SH012966380000'),('EP021396030216','Jeanette and Eleanor act as Sherlock Holmes and Watson when Theodore\'s teddy bear disappears.','Sherlock Chipmunk',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15181655_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP024501630002','The team try to prevent Sendak from leaving as Hunk and Coran retrieve a new crystal.','Tears of the Balmera',_binary '','GBR','Voltron: Legendary Defender',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12753179_e_h3_aa.jpg',4,NULL,NULL,'SH024501630000'),('EP021396030211','Alvin worries that he is losing his mind when Simon goes missing.','Oh Brother Where Art Thou',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14638269_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP021396030210','Alvin\'s luck goes from bad to worse after Theodore finds a four-leaf clover.','Lucky Day',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14772774_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP025069650006','Kortney and Dave flip a cottage-style house that has major kerbside eyesores.','House of Blues',_binary '','GBR','Masters of Flip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11685822_e_h3_ac.jpg',4,NULL,NULL,'SH025069650000'),('EP021396030212','Simon is alarmed to discover he\'s been tagging private property in his sleep.','Simsky',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14772772_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP019675920006','Bob May aims to complete the cabin before his first paying customers arrive.','Cast Away',_binary '','GBR','Building Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9562357_e_h3_aa.jpg',4,NULL,NULL,'SH019675920000'),('EP019675920005','The insulation delays continue as Bob May waits for a delinquent subcontractor.','Self-Sufficient Building',_binary '','GBR','Building Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9562354_e_h3_aa.jpg',4,NULL,NULL,'SH019675920000'),('EP021396030219','When the boys get tired of taking orders from Dave, they move out into the backyard.','Independence Day',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15181661_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP021396030218','Alvin and Simon become inseparable after an invention of Simon\'s accidentally gets knocked over.','Opposites Attract',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15181663_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP012847870028','It\'s Daddy Pig\'s birthday, but he has to go to work, so the family prepares a surprise.','Daddy Pig\'s Birthday',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990179_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP019369690153','Bei einem neuerlichen Versuch in Sachen Internet-Dating wird Alans Begleiterin angebaggert.','Der Familien-Rottweiler',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7993897_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019369690152','Als Chelsea sehr spät nach Hause kommt, geht Charlies Eifersucht mit ihm durch.','Charlies Engel',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8002503_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP019952950206','Mitchell schleust sich in die Lucian-Allianz ein, um einen Bürgerkrieg zu verhindern.','Die Kriegserklärung',_binary '','DEU','Stargate',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018905_e_h3_ab.jpg',4,NULL,NULL,'SH019952950000'),('EP019952950205','Vala wird von Trust-Agenten entführt. Diese wollen mit ihrer Hilfe einen alten Schatz finden.','Tödliche Erinnerungen',_binary '','DEU','Stargate',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018904_e_h3_ab.jpg',4,NULL,NULL,'SH019952950000'),('EP018778360105','Samuel Schnauzbart und Peter landen nach einem Streit gemeinsam in einem Käfig von Herrn Gregor.','Die Geschichte vom Streit um die Himbeere',_binary '','DEU','Peter Hase',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11968029_e_h3_aa.jpg',4,NULL,NULL,'SH018778360000'),('EP018778360102','Weil seine Eichhörnchen-Freunde seinen Geburtstag vergessen haben, möchte Knusper ein Hase werden.','Die Geschichte von Knuspers Hasentag',_binary '','DEU','Peter Hase',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11968016_e_h3_aa.jpg',4,NULL,NULL,'SH018778360000'),('EP024501630010','On the way to the Balmera, the team helps two rebels who are on the run from the Galra.','Taking Flight',_binary '','GBR','Voltron: Legendary Defender',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12753181_e_h3_aa.jpg',4,NULL,NULL,'SH024501630000'),('EP021396030208','Alvin gets a taste of his own medicine when he pulls one too many practical jokes on Simon.','Curiosity Killed The Alvin',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14772775_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP018778360109','Die Hasenfreunde helfen Knusper dabei, die Euleninsel nach Haselnüssen abzusuchen.','Die Geschichte von Knuspers Bauchschmerzen',_binary '','DEU','Peter Hase',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11949754_e_h3_aa.jpg',4,NULL,NULL,'SH018778360000'),('EP034251990019','Young athletes, artists and acrobats train at a circus school and perform regularly for audiences.','The Weight of the World',_binary '','GBR','Big Top Academy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16082387_e_h3_aa.jpg',4,NULL,NULL,'SH034251990000'),('EP018778360108','Friedrich Frosch und die Hasen ernten gemeinsam Gemüse im Garten von Herrn Gregor.','Die Geschichte vom Überraschungs-Held',_binary '','DEU','Peter Hase',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11968034_e_h3_aa.jpg',4,NULL,NULL,'SH018778360000'),('EP021396030209','Miss Croner moves in with the chipmunks when her home gets infested with termites.','House Pest',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14772776_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP023618620015','Mother Goat goes to pick up cabbage, leaving her seven kids alone at home.','The Wolf and the Seven Young Kids',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224566_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP023618620014','Masha tells the story of a fisherman, his wife, the wolf, the fox, the cat and the mouse!','The Wolf and the Fox',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224563_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP030624760002','Jordan Stephens hosts the hip hop comedy panel show as guests go head to head in rap battles.','',_binary '\0','GBR','Don\'t Hate the Playaz',NULL,NULL,4,NULL,NULL,'SH030624760000'),('EP023618620013','There was a man living in a village and a Bear came to ask the man for some tasty treats.','The Tops and the Roots',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224557_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP023618620010','Alyonushka and her brother Ivanushka go to the forest disobeying their parents.','The Magic Swan Geese',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224541_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP019626540003','Die Westküste Neuseelands ist ein spektakulärer, aber gegenüber Menschen gnadenloser Lebensraum.','Neuseelands Wilder Westen',_binary '','DEU','Neuseeland von oben - Ein Paradies auf Erden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10931175_e_h3_aa.jpg',4,NULL,NULL,'SH019626540000'),('EP023865520976','Stay up to date on the day\'s top stories, with the latest breaking news as it happens.','',_binary '\0','GBR','BBC Newsroom Live',NULL,NULL,4,NULL,NULL,'SH023865520000'),('EP012847870014','George is not happy when Peppa stops playing ball with him to play tennis with Suzy Sheep.','Bouncy Ball',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2990176_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP034251990020','Young athletes, artists and acrobats train at a circus school and perform regularly for audiences.','True Champions',_binary '','GBR','Big Top Academy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16082397_e_h3_aa.jpg',4,NULL,NULL,'SH034251990000'),('EP019626540002','Weite Grasebenen wechseln sich ab mit majestätisch aufragenden, kargen Bergketten.','Die Südalpen',_binary '','DEU','Neuseeland von oben - Ein Paradies auf Erden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10931171_e_h3_aa.jpg',4,NULL,NULL,'SH019626540000'),('EP019952950212','Mitchel, Carter und Teal\'c reisen zu einem Planeten, der unter der Herrschaft der Ori steht.','Die Linie im Sand',_binary '','DEU','Stargate',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018910_e_h3_ab.jpg',4,NULL,NULL,'SH019952950000'),('EP023865520977','Stay up to date on the day\'s top stories, with the latest breaking news as it happens.','',_binary '\0','GBR','BBC Newsroom Live',NULL,NULL,4,NULL,NULL,'SH023865520000'),('EP019626540001','Startpunkt der Reise durch Neuseeland ist der Fjordland-Nationalpark.','Fjorde und Regenwälder',_binary '','DEU','Neuseeland von oben - Ein Paradies auf Erden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10931168_e_h3_aa.jpg',4,NULL,NULL,'SH019626540000'),('EP019952950214','Noch immer sucht das SG-1-Team nach dem heiligen Gral, um die Ori endgültig zu bezwingen.','Die Suche',_binary '','DEU','Stargate',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2018907_e_h3_ab.jpg',4,NULL,NULL,'SH019952950000'),('EP012584114328','Just when Pauline thinks things are getting back to normal she makes a shocking discovery.','',_binary '\0','GBR','EastEnders',NULL,NULL,4,NULL,NULL,'SH012584110000'),('EP023618620016','In an enchanted forest there once lived three little piglets, who were expelled from the forest.','Three Little Pigs',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13224573_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP012949680209','Michael Portillo is in Cornwall\'s county town, Truro, with his 1930s Bradshaw\'s Guide.','Truro to St Mawgan',_binary '','GBR','Great British Railway Journeys',NULL,NULL,4,NULL,NULL,'SH012949680000'),('EP012584114327','Arthur gets a mysterious package and Ian visits Cindy, but fails to uncover her secret.','',_binary '\0','GBR','EastEnders',NULL,NULL,4,NULL,NULL,'SH012584110000'),('EP012949680208','Michael Portillo boards the Great Western Railway at the Cornish seaside resort of St Ives.','St Ives to St Day',_binary '','GBR','Great British Railway Journeys',NULL,NULL,4,NULL,NULL,'SH012949680000'),('EP012584114326','Clyde hears some unpleasant home truths from Michelle, and a confession rocks Sharon and Grant.','',_binary '\0','GBR','EastEnders',NULL,NULL,4,NULL,NULL,'SH012584110000'),('EP019334252137','The Bear still hopes to win the female Bear\'s heart so he invites her for a romantic gondola ride.','The Very Fairy Tale',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13223658_e_h3_ab.jpg',4,NULL,NULL,'SH019334250000'),('EP012584114324','Michelle suggests a girls\' night out with Sharon at her college, but the evening ends in disaster.','',_binary '\0','GBR','EastEnders',NULL,NULL,4,NULL,NULL,'SH012584110000'),('EP019334252136','Bear\'s fridge is in danger. Someone has burst in his house to stay for life.','Like Cat and Mouse',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13223677_e_h3_ab.jpg',4,NULL,NULL,'SH019334250000'),('EP012846970239','Alan and Walden end up partying too hard as they try to cheer up Herb.','Big Episode: Someone Stole a Spoon',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9806412_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP019334252135','Masha and Panda get too carried away in a cheating competition.','Liar, Liar, Pants on Fire!',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14541186_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP019626540005','Der äußerste Norden der Nordinsel ist der am dichtesten besiedelte Teil Neuseelands.','Mammutbäume und Inselarchipel',_binary '','DEU','Neuseeland von oben - Ein Paradies auf Erden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10931185_e_h3_aa.jpg',4,NULL,NULL,'SH019626540000'),('EP012846970237','After a fight with Walden, Alan decides to move in with Herb.','The 9:04 From Pemberton',_binary '','GBR','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9780512_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP019334252133','Some wolves decided to change their occupation to get more food.','Driving Lessons',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14541176_e_h3_ac.jpg',4,NULL,NULL,'SH019334250000'),('EP019626540004','Im Jahr 200 nach Christus bricht der Vulkan Taupo aus und verteilt Asche über Neuseeland.','Rauchende Vulkane und dampfende Quellen',_binary '','DEU','Neuseeland von oben - Ein Paradies auf Erden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10931182_e_h3_aa.jpg',4,NULL,NULL,'SH019626540000'),('EP012846970238','Jake visits for the weekend and it\'s the start of a whole heap of trouble.','Bazinga! That\'s From a TV Show',_binary '','GBR','Two and a Half Men',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p9824593_e_h3_aa.jpg',4,NULL,NULL,'SH012846970000'),('EP019334252132','The Bear hates to say goodbye to Masha and can\'t stand being apart.','Coming Back Ain\'t Easy',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14541135_e_h3_ab.jpg',4,NULL,NULL,'SH019334250000'),('EP019334252130','For the first time in her life Masha is frightened in earnest, the whole forest is shaken up.','A Ghost Story',_binary '','GBR','Masha and the Bear',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14829741_e_h3_aa.jpg',4,NULL,NULL,'SH019334250000'),('EP023568700033','Kurz vor der Rente möchte Dagmar noch einmal in den Urlaub fahren. Das Budget ist jedoch begrenzt.','Tag für Tag Benz-Baracken - Folge 14',_binary '','DEU','Hartz und herzlich',NULL,NULL,4,NULL,NULL,'SH023568700000'),('EP023568700036','Der Vermieter der 67-jährigen Christa hat Eigenbedarf angemeldet. Sie ist von Altersarmut betroffen.','Tag für Tag Benz-Baracken - Folge 13',_binary '','DEU','Hartz und herzlich',NULL,NULL,4,NULL,NULL,'SH023568700000'),('EP013048460203','Investigators discuss actress Natalie Wood\'s drowning death and suspicions about her husband.','Death in Dark Water',_binary '','GBR','48 Hours',NULL,NULL,4,NULL,NULL,'SH013048460000'),('EP013048460204','Investigating 19-year-old Noriella Santos\'s involvement in the murder of an ex-boyfriend.','The Good Girl',_binary '','GBR','48 Hours',NULL,NULL,4,NULL,NULL,'SH013048460000'),('EP021739210021','Ein Sprachkurs, der zum Erlernen der französischen Sprache ermuntern und Kenntnisse vermitteln soll.','Sensation in Saint Tropez',_binary '','DEU','Les Gammas',NULL,NULL,4,NULL,NULL,'SH021739210000'),('EP027581962379','Aus dem Nachrichtenstudio wird über aktuelle Ereignisse aus Deutschland und der Welt informiert.','vom 26.02.2020',_binary '','DEU','Nachrichten',NULL,NULL,4,NULL,NULL,'SH027581960000'),('EP017036890143','Game show in which three contestants attempt to solve word puzzles to win prizes.','',_binary '\0','GBR','Wheel of Fortune',NULL,NULL,4,NULL,NULL,'SH017036890000'),('EP021958510159','Mindy und ihr Neffe werden beschuldigt, den Tod ihres Stiefvaters geplant zu haben.','Mindy Dodd',_binary '','DEU','Snapped: Wenn Frauen töten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11565920_e_h3_aa.jpg',4,NULL,NULL,'SH021958510000'),('EP017036890144','Game show in which three contestants attempt to solve word puzzles to win prizes.','',_binary '\0','GBR','Wheel of Fortune',NULL,NULL,4,NULL,NULL,'SH017036890000'),('EP017036890145','Game show in which three contestants attempt to solve word puzzles to win prizes.','',_binary '\0','GBR','Wheel of Fortune',NULL,NULL,4,NULL,NULL,'SH017036890000'),('EP022441490009','Der Privatdetektiv gerät in einen Dschungel politischer Intrigen und Verschwörungen.','Tote Hunde beißen nicht',_binary '','DEU','Der Wolf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12750232_e_h3_aa.jpg',4,NULL,NULL,'SH022441490000'),('EP017036890146','Game show in which three contestants attempt to solve word puzzles to win prizes.','',_binary '\0','GBR','Wheel of Fortune',NULL,NULL,4,NULL,NULL,'SH017036890000'),('EP019578700138','Alle zwei Wochen werden interessante Gäste zur Talkrunde aus Hamburg eingeladen.','Best of',_binary '','DEU','NDR Talk Show',NULL,NULL,4,NULL,NULL,'SH019578700000'),('EP012606120204','The annual Midsomer Regatta is brought to a standstill when a body is found in the river.','Dead in the Water',_binary '','GBR','Midsomer Murders',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8717592_e_h3_ab.jpg',4,NULL,NULL,'SH012606120000'),('EP034320310002','Diese Sendung berichtet von der Berlinale 2020.','Die Pressekonferenzen vom Tage',_binary '','DEU','Berlinale 2020',NULL,NULL,4,NULL,NULL,'SH034320310000'),('EP027610270153','Christoph Sonntag und Alice Hoffmann treten gegen Bodo Bach und Enie van de Meiklokjes an.','Folge 61',_binary '','DEU','Meister des Alltags',NULL,NULL,4,NULL,NULL,'SH027610270000'),('EP027581962380','Aus dem Nachrichtenstudio wird über aktuelle Ereignisse aus Deutschland und der Welt informiert.','vom 27.02.2020',_binary '','DEU','Nachrichten',NULL,NULL,4,NULL,NULL,'SH027581960000'),('EP014726400546','Eine Sprunggelenksfraktur bringt einen beschäftigten Familienvater in große Probleme.','Nicht von dieser Welt',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13078133_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP014726400545','Durch die Kunstfehlerklage von Kris Haas sind die Pläne von Philipp und Arzu Schall und Rauch.','Nicht mit mir!',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13006735_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP015795760028','The CEO of Canada\'s Mr Lube slips undercover to experience a job that\'s normally beneath him.','Mr. Lube',_binary '','GBR','Undercover Boss Canada',NULL,NULL,4,NULL,NULL,'SH015795760000'),('EP019961850056','Als die Erde entwendet wird, machen sich der Doktor und Donna auf die Suche nach dem Planeten.','Die gestohlene Erde',_binary '','DEU','Doctor Who',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3148365_e_h3_ab.jpg',4,NULL,NULL,'SH019961850000'),('EP015795760026','The CEO of fast food firm Freshii finds faults affecting his franchises.','Freshii',_binary '','GBR','Undercover Boss Canada',NULL,NULL,4,NULL,NULL,'SH015795760000'),('EP015442760983','Lea besteht darauf, in der Wohnung zu bleiben. Marek will sich dem Investor als Sunny präsentieren.','Letzte Chance',_binary '','DEU','Lindenstraße',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13539248_e_h3_aa.jpg',4,NULL,NULL,'SH015442760000'),('EP015795760023','Beck Taxi is Canada\'s largest privately owned cab company, transporting 15 million people a year.','Beck Taxi',_binary '','GBR','Undercover Boss Canada',NULL,NULL,4,NULL,NULL,'SH015795760000'),('EP029044220016','Police officers request a new riot van, while a car chase ends with an X5 wedged in a hedge.','Police Support Unit',_binary '','GBR','Cop Car Workshop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17287377_e_h3_aa.jpg',4,NULL,NULL,'SH029044220000'),('EP015795760024','Bellstar Hotels and Resorts has been developing Canadian boutique hotel properties since 2004.','Bellstar Hotels and Resorts',_binary '','GBR','Undercover Boss Canada',NULL,NULL,4,NULL,NULL,'SH015795760000'),('EP029044220017','The team are working flat-out trying to get two new police motorbikes converted in time.','Motorbike',_binary '','GBR','Cop Car Workshop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17310313_e_h3_aa.jpg',4,NULL,NULL,'SH029044220000'),('EP014905920163','In London, Drew haggle\'s for a macabre collection of medical antiques.','Curious Science',_binary '','GBR','Salvage Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13353785_e_h3_aa.jpg',4,NULL,NULL,'SH014905920000'),('EP020045500091','Luis and Ronita orchestrate private showings for their first co-listing together.','Jess We Can!',_binary '','GBR','Million Dollar Listing New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17144098_e_h3_aa.jpg',4,NULL,NULL,'SH020045500000'),('EP032423110005','Diesmal trifft der Gewinner Hendrik aus Köln auf den Sportsoldaten Alexander aus Berlin.','Folge 6',_binary '','DEU','Schlag den Besten',NULL,NULL,4,NULL,NULL,'SH032423110000'),('EP015442760994','Sunny wirft sich vor, das Unternehmen vor die Wand gefahren zu haben. Da hat Nina eine Idee.','Der Investor',_binary '','DEU','Lindenstraße',NULL,NULL,4,NULL,NULL,'SH015442760000'),('EP019379490186','Brian und Stewie haben auf einemal Doppelgänger nach einem Unfall mit einer Teleportationsmaschine.','Wege nach Vegas',_binary '','DEU','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9928418_e_h3_ab.jpg',4,NULL,NULL,'SH019379490000'),('EP022518890117','Als ein Mann in seinen Heimatort zurückkehre, muss er mit ansehen, wie immer mehr Häuser verfallen.','Erlebnis Hessen: Der Dorfretter im Vogelsberg',_binary '','DEU','Erlebnis Hessen',NULL,NULL,4,NULL,NULL,'SH022518890000'),('EP019563180840','Die Schweizer Nachrichtensendung informiert in Berichten, Reportagen, Porträts und Live-Gesprächen.','',_binary '\0','DEU','10vor10',NULL,NULL,4,NULL,NULL,'SH019563180000'),('EP019563180841','Die Schweizer Nachrichtensendung informiert in Berichten, Reportagen, Porträts und Live-Gesprächen.','',_binary '\0','DEU','10vor10',NULL,NULL,4,NULL,NULL,'SH019563180000'),('EP019560070043','Jack und sein Team sollen das plötzliche Verschwinden einer 28-jährigen Marketingfrau aufklären.','Das brave Mädchen',_binary '','DEU','Without a Trace - Spurlos verschwunden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723077_e_h3_aa.jpg',4,NULL,NULL,'SH019560070000'),('EP032161810005','Der Mangel von Pflegepersonal an mehreren Kinderkliniken hat zunehmend dramatische Konsequenzen.','Kein Bett für kranke Kinder - Pflegenotstand in Berlin',_binary '','DEU','Kontraste - Die Reporter',NULL,NULL,4,NULL,NULL,'SH032161810000'),('EP019695870695','Jan is in court to claim £500 for a refund on a sculpture he commissioned for his wedding.','',_binary '\0','GBR','Judge Rinder',NULL,NULL,4,NULL,NULL,'SH019695870000'),('EP034270310006','Starke Momente, starke Gefühle: In der Karwoche ziehen gewaltige Prozessionen durch Sevilla.','Sevilla - Im Bann der Prozessionen',_binary '','DEU','Rituale der Welt',NULL,NULL,4,NULL,NULL,'SH034270310000'),('EP012966741953','Having found his feet in Vienna, Beethoven welcomes his brother to the city.','Beethoven Unleashed: Making His Way: A Glance to the Future',_binary '','GBR','Composer of the Week',NULL,NULL,4,NULL,NULL,'SH012966740000'),('EP012966741955','As his money begins to run out, Beethoven desperately needs to find a source of income in Vienna.','Beethoven Unleashed: Making His Way: A Prince among Patrons',_binary '','GBR','Composer of the Week',NULL,NULL,4,NULL,NULL,'SH012966740000'),('EP019695870697','Criminal barrister Robert Rinder rules on real-life cases.','',_binary '\0','GBR','Judge Rinder',NULL,NULL,4,NULL,NULL,'SH019695870000'),('EP023062940013','Ein Bobfahrer-Team kommt angereist, um im Furchester an einem Trainings-Programm mitzumachen.','Das Pinguin-Bobfahrer-Team',_binary '','DEU','Das Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11205070_e_h3_aa.jpg',4,NULL,NULL,'SH023062940000'),('EP019871220145','Die Dokumentation stellt diesmal das Leben der berühmten Tänzerin Dita von Teese vor.','Dita von Teese',_binary '','DEU','(Fast) Die ganze Wahrheit',NULL,NULL,4,NULL,NULL,'SH019871220000'),('EP023062940014','Der beste Bildhauer der Welt, Henry Muha, hat eine überdimensionale Skulptur von Funella gefertigt.','Die Statue',_binary '','DEU','Das Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11220991_e_h3_aa.jpg',4,NULL,NULL,'SH023062940000'),('EP023062940015','Eine Raupe kommt zu Besuch in das Furchester Hotel. Doch die verschwindet plötzlich.','Die Raupen-Katastrophe',_binary '','DEU','Das Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11220999_e_h3_aa.jpg',4,NULL,NULL,'SH023062940000'),('EP023062940016','Es gibt Probleme. Funella hört, wie sich ein paar Gäste über den langsamen Service aufregen.','Furchester auf Rollen',_binary '','DEU','Das Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11243312_e_h3_aa.jpg',4,NULL,NULL,'SH023062940000'),('EP030640750014','Aunty meets her match in Kiss Chase.','Gobble It',_binary '','GBR','Diddy Bits',NULL,NULL,4,NULL,NULL,'SH030640750000'),('EP030640750015','Aunty meets her match in Kiss Chase.','Nursery Challenge',_binary '','GBR','Diddy Bits',NULL,NULL,4,NULL,NULL,'SH030640750000'),('EP021958510161','Marissa wird beschuldigt, aus Habgier ihren Mann 2009 mit einem Hammer erschlagen zu haben.','Marissa Devault',_binary '','DEU','Snapped: Wenn Frauen töten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11616986_e_h3_ab.jpg',4,NULL,NULL,'SH021958510000'),('EP012970970107','The Flying Wombat, and insulted Italians. Sketches and songs with John Cleese and Bill Oddie.','Curse of the Flying Wombat',_binary '','GBR','I\'m Sorry I\'ll Read That Again',NULL,NULL,4,NULL,NULL,'SH012970970000'),('EP013110090112','Soprano Emma Kirkby discusses the life of English composer Henry Purcell.','',_binary '\0','GBR','Great Lives',NULL,NULL,4,NULL,NULL,'SH013110090000'),('EP014905920145','Drew finds a wild-looking Victorian oil lamp, as well as a stunning old American sign in London.','Fawley Hill',_binary '','GBR','Salvage Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13328459_e_h3_aa.jpg',4,NULL,NULL,'SH014905920000'),('EP019403271126','Das aktuelle Tagesgeschehen wird aus der Sicht von Kindern für Acht- bis Zwölfjährige aufbereitet.','Folge 1257',_binary '','DEU','Arte Journal Junior',NULL,NULL,4,NULL,NULL,'SH019403270000'),('EP019403271125','Das aktuelle Tagesgeschehen wird aus der Sicht von Kindern für Acht- bis Zwölfjährige aufbereitet.','Folge 1256',_binary '','DEU','Arte Journal Junior',NULL,NULL,4,NULL,NULL,'SH019403270000'),('EP020045500089','Fredrik follows a lead for his Tribeca listing. Ryan lands a beautifully renovated loft in Chelsea.','Construction Criticism',_binary '','GBR','Million Dollar Listing New York',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17195421_e_h3_aa.jpg',4,NULL,NULL,'SH020045500000'),('EP019379490174','Die Griffins gehen zu einem Abendessen im Country Club. Peter freundet sich mit dem Besitzer an.','Peter im Country Club',_binary '','DEU','Family Guy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9928420_e_h3_ab.jpg',4,NULL,NULL,'SH019379490000'),('EP013144420175','A lead on an ultra-rare VW beetle ends up being a true barn find.','Beetle in a Haystack',_binary '','GBR','American Pickers',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p12219568_e_h3_aa.jpg',4,NULL,NULL,'SH013144420000'),('EP021958510160','Jennifer, Heather und Kayla werden beschuldigt, wegen Social Media Verbrechen gegangen zu haben.','Social Media',_binary '','DEU','Snapped: Wenn Frauen töten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11598039_e_h3_aa.jpg',4,NULL,NULL,'SH021958510000'),('EP018580670334','Oggy entdeckt eine andere Welt unter dem Haus und wird von deren Bewohnern gefangen genommen.','Gefangen in der Unterwelt',_binary '','DEU','Oggy und die Kakerlaken',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10191803_e_h3_aa.jpg',4,NULL,NULL,'SH018580670000'),('EP018580670333','Oggy reist nach China, um die Chinesische Mauer zu sehen. Die Kakerlaken folgen ihm.','Undankbare Kakerlaken',_binary '','DEU','Oggy und die Kakerlaken',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10191789_e_h3_aa.jpg',4,NULL,NULL,'SH018580670000'),('EP032572390046','When Ollie struggles to make a huge statue as a tribute to Moon, the friends go to Easter Island.','Easter Island Art Adventure',_binary '','GBR','The Ollie & Moon Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15074198_e_h3_aa.jpg',4,NULL,NULL,'SH032572390000'),('EP019571620016','Damit Goofy mit Klarabella tanzen kann, muss er allerdings erst mal die Tanzschritte lernen.','Goofy und die Tanzparty',_binary '','DEU','Disneys Micky Maus Wunderhaus',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3253901_e_h3_ab.jpg',4,NULL,NULL,'SH019571620000'),('EP027710960020','A heatwave hits hard, causing havoc with signalling equipment at Didcot.','',_binary '\0','GBR','Paddington Station 24/7',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15951167_e_h3_aa.jpg',4,NULL,NULL,'SH027710960000'),('EP013085210047','W wants to be a superhero, like his superhero, X. However, being a hero is not as easy as it looks.','Web',_binary '','GBR','Alphablocks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9140326_e_h3_aa.jpg',4,NULL,NULL,'SH013085210000'),('EP032572390043','To celebrate Earth Day, Ollie wants to plant a tree in their garden.','A Tree Grows in Sweden',_binary '','GBR','The Ollie & Moon Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15016193_e_h3_aa.jpg',4,NULL,NULL,'SH032572390000'),('EP015406530351','Die Dokumentation gibt intime Einblicke in das Leben der größten Landsäugetiere der Erde.','Elefanten hautnah - Giganten mit Gefühl',_binary '','DEU','Expeditionen ins Tierreich',NULL,NULL,4,NULL,NULL,'SH015406530000'),('EP032572390044','At his family reunion, Stanley feels he doesn\'t measure up to his amazing relatives.','Stanley\'s Family Reunion',_binary '','GBR','The Ollie & Moon Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15008776_e_h3_aa.jpg',4,NULL,NULL,'SH032572390000'),('EP015406530352','Auf ihren Wanderungen kommen Elefanten den Menschen in der Stadt oft gefährlich nah.','Elefanten hautnah - Ungewöhnliche Nachbarn',_binary '','DEU','Expeditionen ins Tierreich',NULL,NULL,4,NULL,NULL,'SH015406530000'),('EP012943500011','Nazi hunters eye Heinrich Himmler because of his systematic persecution of the Jews and non-Aryans.','Who Killed Heinrich Himmler?',_binary '','GBR','Nazi Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8240939_e_h3_aa.jpg',4,NULL,NULL,'SH012943500000'),('EP032572390045','Stanley, Moon and Ollie have entered an on-line battle of the bands.','Finding the Rhythm in Cuba',_binary '','GBR','The Ollie & Moon Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15008753_e_h3_aa.jpg',4,NULL,NULL,'SH032572390000'),('EP030990790026','The team crack down on the dealers selling dangerous body-building drugs online.','',_binary '\0','GBR','Defenders UK',NULL,NULL,4,NULL,NULL,'SH030990790000'),('EP016398411291','Die Sendung begrüßt prominente Gäste am Frühstückstisch und berichtet von aktuellen Themen.','',_binary '\0','DEU','Volle Kanne - Service täglich',NULL,NULL,4,NULL,NULL,'SH016398410000'),('EP019863440010','Charlotte, Maurice und Basti Wohlrab planen eine Mountainbike-Tour in Sardinien.','Größen: Längen und Flächen',_binary '','DEU','GRIPS: Mathe',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11311059_e_h3_aa.jpg',4,NULL,NULL,'SH019863440000'),('EP016398411292','Die Sendung begrüßt prominente Gäste am Frühstückstisch und berichtet von aktuellen Themen.','',_binary '\0','DEU','Volle Kanne - Service täglich',NULL,NULL,4,NULL,NULL,'SH016398410000'),('EP027610270110','Die Kandidaten rätseln über die Frage, ob Mikrofaser-Bettwäsche anfällig für Bakterien ist.','Folge 63',_binary '','DEU','Meister des Alltags',NULL,NULL,4,NULL,NULL,'SH027610270000'),('EP027710960021','The British Transport Police mount an operation to stop criminals who are running drugs.','',_binary '\0','GBR','Paddington Station 24/7',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15979589_e_h3_aa.jpg',4,NULL,NULL,'SH027710960000'),('EP030990790025','The team investigate an explosion which claimed the lives of two brothers.','',_binary '\0','GBR','Defenders UK',NULL,NULL,4,NULL,NULL,'SH030990790000'),('EP018556470066','Nach den ereignisreichen Homedates in Deutschland begrüßt der Bachelor die verbliebenen drei Ladys zurück in Mexiko. Bei einer Rafting-Tour verbringen Sebastian und die Frauen ein letztes Mal Zeit in der Gruppe.','Folge 8',_binary '','DEU','Der Bachelor',NULL,NULL,4,NULL,NULL,'SH018556470000'),('EP019571620021','Die `hilfreichen Händchen\' in Mickys Wunderhaus funktionieren nicht mehr.','Mickys hilfreiche Händchen',_binary '','DEU','Disneys Micky Maus Wunderhaus',NULL,NULL,4,NULL,NULL,'SH019571620000'),('EP021893360099','Eine kleine Katastrophe erschüttert das Doozertal, als Bäcker Timber Bolt keinen Ketchup mehr hat.','Mission: Gute Mischung',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP021893360098','Im Doozertal verschwinden Sachen und es ist am Tüftler-Team herauszufinden, weshalb das so ist.','Mission: Dieb im Doozer-Tal',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP023618620079','Masha tells a story about a humpbacked horse who grants a wish to a boy who is not very bright.','The Humpbacked Horse',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13370451_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP023618620077','Masha tells a story of a witty tailor who manages to defeat a giant and obtain a fridge of sweets.','The Valiant Little Tailor',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13386742_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP023618620075','Masha tells a story about a fox who tries to fool a cat in order to catch a rooster for herself.','The Fox and the Rolling Pin',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13413529_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP023618620074','Masha tell a story of a soldier who convinces a hungry witch to eat porridge instead of eating him.','Axe Porridge',_binary '','GBR','Masha\'s Tales',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13370447_e_h3_aa.jpg',4,NULL,NULL,'SH023618620000'),('EP019675920090','Lee orchestrates a massive 18-load helicopter drop to deliver equipment in Alaska.','A Helicopter Drop, The Art Of Scribing, and a Thousand-Dollar Mistake',_binary '','GBR','Building Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11302682_e_h3_aa.jpg',4,NULL,NULL,'SH019675920000'),('EP013085210051','O meets a wig and thinks it is the cutest pet ever and is overjoyed that it goes on his head.','Wig',_binary '','GBR','Alphablocks',NULL,NULL,4,NULL,NULL,'SH013085210000'),('EP023584210148','Gekko\'s knowledge on less known dinosaurs helps the PJ Masks to get back stolen bones.','Wolf-O-Saurus',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15894420_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP023584210147','During a scavenger hunt, Owlette is tricked into finding ingredients for Night Ninja\'s invention.','Who\'s Got the Owl Power?',_binary '','GBR','PJ Masks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15535176_e_h3_aa.jpg',4,NULL,NULL,'SH023584210000'),('EP012943500004','Hermann Goering founded the Gestapo and commanded the Luftwaffe.','Goering: The Star Exhibit',_binary '','GBR','Nazi Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8240932_e_h3_aa.jpg',4,NULL,NULL,'SH012943500000'),('EP021893360095','Das Tüftler-Team will pünktlich auf der Doozertal-Fahrzeugausstellung vor Ort sein.','Mission: Staubfrei',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP019863440009','Diese Sendung erläutert häufig benutzte Größenangaben und die Umrechnung verschiedener Maßangaben.','Größen: Volumen, Masse, Zeit',_binary '','DEU','GRIPS: Mathe',NULL,NULL,4,NULL,NULL,'SH019863440000'),('EP021893360097','Professor Gimbal findet, dass das Tüftler-Team zu abhängig von seinen technischen Hilfsmitteln wird.','Mission: Auf sich gestellt',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP021893360096','Das Tüftler-Team hat den jährlichen Geschenke-Tausch-Tag mit den Kindern des Wüstendorfs vergessen.','Mission: Freude schenken',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP019384431709','Dieses Mal lädt Phillipp aus Nahe vier unterschiedliche Hobbyköche zu sich nach Hause ein.','Tag 4: Phillipp, Region Nahe',_binary '','DEU','Das perfekte Dinner',NULL,NULL,4,NULL,NULL,'SH019384430000'),('EP020333741290','Nachrichten und Wissenswertes aus dem Bundesland Rheinland-Pfalz.','',_binary '\0','DEU','Landesschau Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH020333740000'),('EP021143370231','In Los Angeles findet das große Umstyling für die Topmodelanwärterinnen an mit individuellem Look.','Folge 5',_binary '','DEU','Germany\'s next Topmodel',NULL,NULL,4,NULL,NULL,'SH021143370000'),('EP034010480007','A case is turned around when the victim\'s stepdaughter is found clutching a suicide note.','Linda Marie Brown',_binary '','GBR','Murder Wall',NULL,NULL,4,NULL,NULL,'SH034010480000'),('EP014131770784','The Fat Controller splashes out on a new public address system.','Public Address Problems',_binary '','GBR','Thomas & Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14561363_e_h3_aa.jpg',4,NULL,NULL,'SH014131770000'),('EP020569270009','Karge Berge, dichte Regenwälder, Sümpfe und Klippen prägen die Eilande der Philippinen.','Philippinen',_binary '','DEU','Wilde Inseln',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9932476_e_h3_aa.jpg',4,NULL,NULL,'SH020569270000'),('EP033449950003','Colourisation of rare archival film and home movies brings Churchill back to life.','Churchill',_binary '','GBR','Britain in Colour',NULL,NULL,4,NULL,NULL,'SH033449950000'),('EP021672340004','Die kraftvollen Sauger der britischen Top-Marke `Dyson\' mit patentierter Zyklon-Technologie.','',_binary '\0','DEU','Dyson - Technologie Erleben',NULL,NULL,4,NULL,NULL,'SH021672340000'),('EP021672340005','Die kraftvollen Sauger der britischen Top-Marke `Dyson\' mit patentierter Zyklon-Technologie.','',_binary '\0','DEU','Dyson - Technologie Erleben',NULL,NULL,4,NULL,NULL,'SH021672340000'),('EP019384431708','Dieses Mal lädt Carsten aus der Region Nahe vier unterschiedliche Hobbyköche zu sich nach Hause ein.','Tag 3: Carsten, Region Nahe',_binary '','DEU','Das perfekte Dinner',NULL,NULL,4,NULL,NULL,'SH019384430000'),('EP014726400562','Ein Patient verweigert eine Operation, weil er meint, die Sterne stünden an diesem Tag ungünstig.','Zufälle gibt es nicht',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13509612_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP019863440027','Die Grundlagen der Konstruktion erläutert Basti Wohlrab an einem ungewöhnlichen Ort: im Wald.','Grundlagen der Konstruktion',_binary '','DEU','GRIPS: Mathe',NULL,NULL,4,NULL,NULL,'SH019863440000'),('EP019851360041','Frankie erlebt einen schrecklichen Muttertag, an dem sie wieder mehr für Mike und die Kinder tut.','Der Muttertag',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8085704_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP019863440026','Basti Wohlrab zeigt im Billardclub, dass mathematisches Wissen direkt Erfolg im Alltag bringt.','Konstruieren im Koordinatensystem',_binary '','DEU','GRIPS: Mathe',NULL,NULL,4,NULL,NULL,'SH019863440000'),('EP018558460158','Die Sendung liefert aktuelle, recherchierte und spannende Reportagen, die zu Diskussionen anregen.','Thema u.a.: Tödlicher Rechtsextremismus',_binary '','DEU','Spiegel TV Magazin',NULL,NULL,4,NULL,NULL,'SH018558460000'),('EP025154630058','Ein französischer Pilot wird von der Gestapo unter Vorgabe falscher Tatsachen verhört.','Lüfte den Schleier!',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125009_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP025154630059','Nach neun Lagerfluchten plant ein Entfesselungskünstler, seine Karriere im Stalag 13 fortzusetzen.','Malcolm, der Wunderbare',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125010_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP025154630056','Der neue Adjutant Klinks jagt aus Versehen einen Munitionszug der Deutschen in die Luft.','Fasse dich, Kurtz',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125008_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP025154630057','Hogan muss einige Funkgerät-Teile nach Heidelberg schmuggeln und jubelt sie Schultz unter.','Blumen für die Dame',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125007_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP025154630054','Hogan und seine Männer schleusen sich zu Sagotagezwecken als Arbeiter in eine Geschützfabrik ein.','Ein sehr gefragter Mann',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125005_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP025154630055','Ein übergelaufener Finanzmann des Deutschen Reichs muss vor der Gestapo fliehen.','Raten Sie, wer kommt',_binary '','DEU','Ein Käfig voller Helden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1125006_e_h3_aa.jpg',4,NULL,NULL,'SH025154630000'),('EP020333741288','Nachrichten und Wissenswertes aus dem Bundesland Rheinland-Pfalz.','',_binary '\0','DEU','Landesschau Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH020333740000'),('EP020333741289','Nachrichten und Wissenswertes aus dem Bundesland Rheinland-Pfalz.','',_binary '\0','DEU','Landesschau Rheinland-Pfalz',NULL,NULL,4,NULL,NULL,'SH020333740000'),('EP019851360044','Frankie wirft Mike vor, taktlos zu sein. Auch Brick braucht Nachhilfe im Umgang mit Menschen.','Die Signale',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8085737_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP019851360043','Sue ist in der Schule weitgehend unbekannt, während Axl für hochbegabt gehalten wird.','Die Durchschnittsfamilie',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8085791_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP019851360042','Zwischen Axl und seiner Freundin Morgan geht es auf und ab in der Beziehung.','Der Sorgendienst',_binary '','DEU','The Middle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8085669_e_h3_ac.jpg',4,NULL,NULL,'SH019851360000'),('EP013574150098','Mike helps maintain the Star of India, the oldest active merchant ship in the world.','Tar Rigger',_binary '','GBR','Dirty Jobs',NULL,NULL,4,NULL,NULL,'SH013574150000'),('EP014131770773','Millie is very cross with Stephen and Glynn for not helping her when she is given extra work.','Runaway Engine',_binary '','GBR','Thomas & Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14543561_e_h3_aa.jpg',4,NULL,NULL,'SH014131770000'),('EP022943920022','The remaining five potters make two ginger jars and face a Scraffito challenge spot test.','',_binary '\0','GBR','The Great Pottery Throw Down',NULL,NULL,4,NULL,NULL,'SH022943920000'),('EP034353290003','In Südafrika findet man ein Berlin, das von Kolonialismus und Identitätsfragen geprägt ist.','Berlin - Südafrika',_binary '','DEU','Twin Towns',NULL,NULL,4,NULL,NULL,'SH034353290000'),('EP013574150091','Mike heads to the edge of the Arctic Circle to find one of the most enigmatic species of shark.','Greenland Shark Quest',_binary '','GBR','Dirty Jobs',NULL,NULL,4,NULL,NULL,'SH013574150000'),('EP034353290004','Wie ihre Vorfahren segeln die Mitglieder eines gotländischen Clubs mit ihren Booten auf der Ostsee.','Roma - Gotland',_binary '','DEU','Twin Towns',NULL,NULL,4,NULL,NULL,'SH034353290000'),('EP016990740160','Critiques of \"This Morning at the Royal Wedding, The Great Model Railway Challenge\", and more.','',_binary '\0','GBR','Gogglebox',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16085163_e_h3_aa.jpg',4,NULL,NULL,'SH016990740000'),('EP029282470021','Elaine and David search for the dream chateau and Tim and Krys are revisited in the Dordogne.','',_binary '\0','GBR','Escape to the Chateau: DIY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16566818_e_h3_aa.jpg',4,NULL,NULL,'SH029282470000'),('EP029282470022','Tim and Krys race to get their chateau ready, while Steve and Angela refurbish a master bedroom.','',_binary '\0','GBR','Escape to the Chateau: DIY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16566842_e_h3_aa.jpg',4,NULL,NULL,'SH029282470000'),('EP024553550030','Die Kinder werden in der Stadt gefangengenommen. Ivan, Kouki und Nanami greifen wieder an.','Freunde machen stark',_binary '','DEU','Digimon: Data Squad',NULL,NULL,4,NULL,NULL,'SH024553550000'),('EP029282470020','Stephanie\'s big event arrives, and Sophie and James put on a walking tour near their chateau.','',_binary '\0','GBR','Escape to the Chateau: DIY',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15432373_e_h3_aa.jpg',4,NULL,NULL,'SH029282470000'),('EP018580840095','Während eines Ausflugs wird eine Leiche gefunden. Henry beginnt selbst mit den Ermittlungen.','Wer schön sein will, muss sterben',_binary '','DEU','Psych',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9901302_e_h3_aa.jpg',4,NULL,NULL,'SH018580840000'),('EP019695870718','Phillip is in court to claim the maximum of 5,000 pounds owed on a loan he made to his ex-wife.','',_binary '\0','GBR','Judge Rinder',NULL,NULL,4,NULL,NULL,'SH019695870000'),('EP018580840094','Während einer Sendung wird der Radio-DJ ermordet. Könnte ein Fan mit dem Mord zu tun haben?','Kill the Radio Star',_binary '','DEU','Psych',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9901301_e_h3_aa.jpg',4,NULL,NULL,'SH018580840000'),('EP018580840098','Ein Mann behauptet, er wurde vergiftet. Zusätzlich muss er sich um ein Schließfach kümmern.','Wer dem Frieden nicht traut',_binary '','DEU','Psych',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9901303_e_h3_aa.jpg',4,NULL,NULL,'SH018580840000'),('EP019577750029','Die Oberzicke Miss Duttfisch lässt das Burgerbraten in der Krossen Krabbe verbieten.','Burger braten verboten; Stanley S. Schwammkopf',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222580_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP032992490014','Serdars Kaffeepause hat die Durchschlagskraft eines Tornados und die Würze scharfer Chilisauce! Satiriker Serdar Somuncu knöpft sich alle großen gesellschaftlichen Themen vor und ist dabei gewohnt bissig, provokativ und schlau.','Serdars Kaffeepause',_binary '','DEU','BÄM!',NULL,NULL,4,NULL,NULL,'SH032992490000'),('EP012606190150','Police discover a man shot dead in his home after they receive a call from his worried mother.','Hair of the Dog',_binary '','GBR','Medical Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8614520_e_h3_aa.jpg',4,NULL,NULL,'SH012606190000'),('EP029470390205','Eine Schülerin möchte ständig nackt sein. Ein anderes Mädchen kommt nachts nicht nach Hause.','Schülerin will immer nackt sein!',_binary '','DEU','Krass Schule - Die jungen Lehrer',NULL,NULL,4,NULL,NULL,'SH029470390000'),('EP018580840092','Gus steht unter Mordverdacht, weil er an einem Tatort viele Fingerabdrücke hinterlassen hat.','Hast du ein Kollegenschwein',_binary '','DEU','Psych',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9901300_e_h3_aa.jpg',4,NULL,NULL,'SH018580840000'),('EP029470390206','Lennox und Marvin schließen eine Geldwette ab, dass Lennox es schafft, Thea ins Bett zu kriegen.','Die Sex-Wette',_binary '','DEU','Krass Schule - Die jungen Lehrer',NULL,NULL,4,NULL,NULL,'SH029470390000'),('EP022074980187','The Odd Squad investigates strange events. Oona uses her Oonabots to fix an odd problem.','Oona and the Oonabots',_binary '','GBR','Odd Squad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15619856_e_h3_aa.jpg',4,NULL,NULL,'SH022074980000'),('EP022074980183','The agents are called in to help when Ohlm and Orchid have problems working together.','Problem Partnership',_binary '','GBR','Odd Squad',NULL,NULL,4,NULL,NULL,'SH022074980000'),('EP014129450034','Abby hit her head after falling from a high diving board and staff check for serious injuries.','Head First',_binary '','GBR','24 Hours in A&E',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9954520_e_h3_aa.jpg',4,NULL,NULL,'SH014129450000'),('EP014129450035','Nicholas has been punched, Tyrell has hurt his toe, and Ho escorts his grandma to the hospital.','Walk Like a Man',_binary '','GBR','24 Hours in A&E',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9968768_e_h3_aa.jpg',4,NULL,NULL,'SH014129450000'),('EP025581220115','In der Serie empfängt Hannes Ringlstetter, zusammen mit Caro Matzko, wöchentlich zwei Gäste.','Folge 113',_binary '','DEU','Ringlstetter',NULL,NULL,4,NULL,NULL,'SH025581220000'),('EP020143070851','ZIB 2 - das ist das tägliche Nachrichten-Magazin des ORF-Fernsehens.','',_binary '\0','DEU','ZIB 2',NULL,NULL,4,NULL,NULL,'SH020143070000'),('EP030152180006','Shaun Ryder and Bez from the Happy Mondays, are locked in a clash over cash.','',_binary '\0','GBR','Judge Romesh',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15800930_e_h3_aa.jpg',4,NULL,NULL,'SH030152180000'),('EP030152180005','In court today, two friends seek the Judge\'s ruling after a rude prank causes lasting damage.','',_binary '\0','GBR','Judge Romesh',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15800924_e_h3_aa.jpg',4,NULL,NULL,'SH030152180000'),('EP030152180008','A wife brings her husband to court over his obsession with a \"classic\" car.','',_binary '\0','GBR','Judge Romesh',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15800993_e_h3_aa.jpg',4,NULL,NULL,'SH030152180000'),('EP030152180007','Judge Romesh dishes out justice for a rapper and a video producer locked in a bitter battle.','',_binary '\0','GBR','Judge Romesh',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15800955_e_h3_aa.jpg',4,NULL,NULL,'SH030152180000'),('EP012681822549','Paige braces herself for Jack\'s arrival, and is surprised to see him with Mark Gottlieb.','',_binary '\0','GBR','Neighbours',NULL,NULL,4,NULL,NULL,'SH012681820000'),('EP030833490393','Ryder und die Hundefreunde besuchen Carlos. Und: Die Hunde müssen einen Bienenumzug veranlassen.','Der Papagei; Der Bienenumzug',_binary '','DEU','Paw Patrol - Helfer auf vier Pfoten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11541730_e_h3_aa.jpg',4,NULL,NULL,'SH030833490000'),('EP019695870724','Criminal barrister Robert Rinder rules on real-life cases.','',_binary '\0','GBR','Judge Rinder',NULL,NULL,4,NULL,NULL,'SH019695870000'),('EP012612570144','Nana mistakes the customer for Cinderella. Arthur Sleep is late for work.','The Lost Pirate\'s Bus Trip',_binary '','GBR','Gigglebiz',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16596628_e_h3_aa.jpg',4,NULL,NULL,'SH012612570000'),('EP030968590006','Cookie Monster and Gonger make friend Manny some angel hair pasta with vegetables.','Angel Hair Pasta',_binary '','GBR','Cookie Monster\'s Foodie Truck',NULL,NULL,4,NULL,NULL,'SH030968590000'),('EP012612570143','Wizard Tripwick appears in a puff of smoke and tries to teach his wizarding pupils a spell.','Robin Hood\'s New Horse',_binary '','GBR','Gigglebiz',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16596619_e_h3_aa.jpg',4,NULL,NULL,'SH012612570000'),('EP030968590009','Cookie Monster and Gonger visit an onion farm for ingredients to make succotash.','Onions',_binary '','GBR','Cookie Monster\'s Foodie Truck',NULL,NULL,4,NULL,NULL,'SH030968590000'),('EP021687960029','A family have fallen out of love with their house and they need to decide to transform or sell it.','',_binary '\0','GBR','Kirstie and Phil\'s Love It or List It',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16328396_e_h3_aa.jpg',4,NULL,NULL,'SH021687960000'),('EP030403860164','Im Viertel Köln-Vingst sind viele Bewohner auf Grundsicherung oder Hartz IV angewiesen.','Mein Block: Köln-Vingst',_binary '','DEU','Abenteuer Leben',NULL,NULL,4,NULL,NULL,'SH030403860000'),('EP012593120098','Tommy rebels when Dick transfers him to an exclusive private school for gifted students.','World\'s Greatest Dick',_binary '','GBR','3rd Rock From the Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1846898_e_h3_aa.jpg',4,NULL,NULL,'SH012593120000'),('EP012593120097','Dick learns about the importance humans place on competition.','Fourth and Dick',_binary '','GBR','3rd Rock From the Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1846897_e_h3_aa.jpg',4,NULL,NULL,'SH012593120000'),('EP025245330033','André Pohlai und Nicole Bilan-Wedel im Dackelmuseum lernen Olympia-Maskottchen Waldi kennen.','Kofferroulette in Passau',_binary '','DEU','Verrückt nach Fluss',NULL,NULL,4,NULL,NULL,'SH025245330000'),('EP031014330029','Since the other Buffycats are all busy, Pilou is looking for someone else to play with.','A New Friend for Pilou',_binary '','GBR','44 Cats',NULL,NULL,4,NULL,NULL,'SH031014330000'),('EP025245330032','Auf der Etappe von Bamberg nach Kelheim ist bei Kapitän Raul Kraaier Augenmaß gefragt.','Oh, du schöne Donau',_binary '','DEU','Verrückt nach Fluss',NULL,NULL,4,NULL,NULL,'SH025245330000'),('EP012737260002','String beans wrapped in proscuitto; guacamole; Greek yogurt and hummus dip.','Entertaining',_binary '','GBR','Nigella Bites',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2440965_e_h3_aa.jpg',4,NULL,NULL,'SH012737260000'),('EP012737260001','Nigella Lawson shows us how to create great food in a very short space of time for every occasion.','Fast Food',_binary '','GBR','Nigella Bites',NULL,NULL,4,NULL,NULL,'SH012737260000'),('EP020303920129','Steigende Temperaturen lassen das Eis dünner werden - zum Erschwernis der Ice Road Truckers.','Lisas Angebot',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10088855_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP014944530006','Gino D\'Acampo cooks up chicken fajitas, crab with green rice and rompope.','Meat And Fish',_binary '','GBR','Gino D\'Acampo: An Italian in Mexico',NULL,NULL,4,NULL,NULL,'SH014944530000'),('EP014944530005','Mexican food makes use of a wide variety of fruit and vegetables.','Fruit And Veg',_binary '','GBR','Gino D\'Acampo: An Italian in Mexico',NULL,NULL,4,NULL,NULL,'SH014944530000'),('EP023450480861','Piu Piu wins a goldfish at the fair for Molang, but he becomes jealous of the fish.','A New Friend',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562830_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP020303920128','Es kommt zum Streit zwischen zwei Firmenbesitzern. Indes ist eine Lastkraftwagenfahrerin in Gefahr.','Brodelnde Gemüter',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10027606_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP020303920132','Die Straßen sind aufgrund der Eisschmelze überflutet. Der spannende Endspurt beginnt.','Kopf an Kopf',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10088860_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP015933320359','Ein TV-Comedian bricht bei der Bewerbung um die Intendanz des Lessing-Theaters zusammen.','Schluss mit lustig!',_binary '','DEU','Notruf Hafenkante',NULL,NULL,4,NULL,NULL,'SH015933320000'),('EP020303920130','Die schmelzenden Eisstraßen könnten das vorzeitige Ende der aktuellen Saison einläuten.','Kraftakt',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10088857_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP020303920131','Die letzten Tage der Saison und somit des Wettstreits zwischen den Truckern brechen an.','Gefährliche Schmelze',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10088859_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP015248490405','Live rugby league commentary of Hull KR v Castleford Tigers in the Super League.','Hull KR v Castleford Tigers',_binary '\0','GBR','Live: Super League Rugby',NULL,NULL,4,NULL,NULL,'SH015248490000'),('EP014010180002','There\'s and unexpected homecoming when the Meldrews arrive back from a Greek holiday.','In Luton Airport No-One Can Hear You Scream',_binary '','GBR','One Foot in the Grave',NULL,NULL,4,NULL,NULL,'SH014010180000'),('EP019577750058','SpongeBob findet einen Cent auf der Straße. Mr. Krabs beobachtet ihn dabei und will den Cent klauen.','Ohne einen Penny; Das Bootskundemuseum',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222591_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP014726381798','Astrid ist irritiert, dass Bruno, Alex und Henning jedes Gespräch über Heikes Todestag abblocken.','Gerüchte',_binary '','DEU','Rote Rosen',NULL,NULL,4,NULL,NULL,'SH014726380000'),('EP014726381799','Den eindeutigen Avancen von Cynthia Blackrose kann sich Gregor kaum erwehren, was Carla amüsiert.','Befreiende Gespräche',_binary '','DEU','Rote Rosen',NULL,NULL,4,NULL,NULL,'SH014726380000'),('EP012737260015','Roast pork; shredded lamb with mint and pomegranate; sticky toffee pudding.','Slow Cook Weekend',_binary '','GBR','Nigella Bites',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2440970_e_h3_aa.jpg',4,NULL,NULL,'SH012737260000'),('EP023450480858','Extraterrestrials have been observing Molang and Piu Piu from outer space and see them laughing.','',_binary '\0','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562832_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP012737260012','Features how to make easy-to-prepare party treats for any occasion.','Party Girl',_binary '','GBR','Nigella Bites',NULL,NULL,4,NULL,NULL,'SH012737260000'),('EP012737260011','Recipes include chocolate cloud cake, aubergine involtini and home-made pasta with meatballs.','Rainy Days',_binary '','GBR','Nigella Bites',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2440976_e_h3_aa.jpg',4,NULL,NULL,'SH012737260000'),('EP033986750013','Andy blasts off in his safari sub to Antarctica in search of chinstrap penguin chicks.','Andy and the Chinstrap Penguins',_binary '','GBR','Andy\'s Aquatic Adventures',NULL,NULL,4,NULL,NULL,'SH033986750000'),('EP012737260010','Lamb shanks with couscous; raw salmon with ginger and rice vinegar; creme brulee.','Suppertime',_binary '','GBR','Nigella Bites',NULL,NULL,4,NULL,NULL,'SH012737260000'),('EP033986750014','Andy jets off in his safari mobile to the rainforest of Brazil in search of a pygmy gecko.','Andy and the Pygmy Gecko',_binary '','GBR','Andy\'s Aquatic Adventures',NULL,NULL,4,NULL,NULL,'SH033986750000'),('EP023450480855','On a hike in the mountains, Piu Piu falls into a crevasse and finds a creature frozen in the ice.','',_binary '\0','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562676_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP016889010209','Die Sendung erzählt die Geschichte des Gebäck-Imperiums Bahlsen, die im 19. Jahrhundert beginnt.','Deutschlands große Clans: Die Bahlsen-Story',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP019585714229','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 26.02.2020, 12:45 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP012606190191','The homicide of a gay couple leads investigators into the twisted world of White supremacists.','Brotherhoods',_binary '','GBR','Medical Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8666087_e_h3_aa.jpg',4,NULL,NULL,'SH012606190000'),('EP019577750065','SpongeBob hat einen Splitter in seinem Daumen und kann jetzt nicht mehr richtig arbeiten.','Der Splitter; Flötentöne',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222642_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP016889010206','Sternekoch Nelson Müller nimmt Lebensmittelhersteller- und vertriebe unter die Lupe.','Nelson Müllers Lebensmittelreport',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15861545_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP019585714226','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 27.02.2020, 12:45 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP019585714225','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 27.02.2020, 16:00 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP019585714228','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 26.02.2020, 16:00 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP019578190096','Die Voyager entdeckt einen Nebel, aus dem sich Ressourcen gewinnen lassen könnten.','Der mysteriöse Nebel',_binary '','DEU','Star Trek: Raumschiff Voyager',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1749457_e_h3_ab.jpg',4,NULL,NULL,'SH019578190000'),('EP019585714227','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 26.02.2020, 21:45 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP012606190194','A man accused of shooting his estranged wife says she killed herself so investigators look deeper.','Within Arm\'s Reach',_binary '','GBR','Medical Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8666098_e_h3_aa.jpg',4,NULL,NULL,'SH012606190000'),('EP022041530027','Oliver Kalkofe schaut sich die Peinlichkeiten der Fernsehunterhaltung an und parodiert diese.','YouTuber - Shirin Davin, Dagibee etc. 1.0',_binary '','DEU','Kalkofes Mattscheibe',NULL,NULL,4,NULL,NULL,'SH022041530000'),('EP019578190099','Die USS Voyager begegnet einem winzigen Wurmloch, welches sie schnellstmöglich erkunden.','Das Nadelöhr',_binary '','DEU','Star Trek: Raumschiff Voyager',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1749458_e_h3_ab.jpg',4,NULL,NULL,'SH019578190000'),('EP023450480844','Full of admiration for firemen, Molang and Piu Piu want to become firemen themselves.','Vive les pompiers !',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562645_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP019585714235','Das Nachrichtenmagazin für Nordrhein-Westfalen.','vom 26.02.2020, 18:00 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP023450480840','While Mölang tries to be a top model, a designer fixates upon Piu Piu instead.','Top Model',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562805_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP019585714231','Das Nachrichtenmagazin für Nordrhein-Westfalen.','vom 27.02.2020, 18:00 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP029998130010','When the playground is closed for maintenance, Mya Go must find a new spot for playtime.','Mya Go Goes to the Playground',_binary '','GBR','Mya Go',NULL,NULL,4,NULL,NULL,'SH029998130000'),('EP021563140001','Alastair Sooke explores the surprising roots of Greek art, beginning his journey in Crete.','The Age of Heroes',_binary '','GBR','Treasures of Ancient Greece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11642614_e_h3_aa.jpg',4,NULL,NULL,'SH021563140000'),('EP016391980590','Das ZDF-Frühstücksfernsehen informiert über Themen aus Politik, Gesellschaft, Kultur und Sport.','',_binary '\0','DEU','ZDF-Morgenmagazin',NULL,NULL,4,NULL,NULL,'SH016391980000'),('EP016391980591','Das ZDF-Frühstücksfernsehen informiert über Themen aus Politik, Gesellschaft, Kultur und Sport.','',_binary '\0','DEU','ZDF-Morgenmagazin',NULL,NULL,4,NULL,NULL,'SH016391980000'),('EP019577750079','Thaddäus ist wütend und eifersüchtig auf Siegbert Schnösel, der in einer Fernsehshow auftaucht.','Schicker wohnen; Krabbenburger Blues',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222609_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP032270130003','The late Victorian passion for science co-exists with a deeply held belief in the paranormal.','Seeing and Believing',_binary '','GBR','Victorian Sensations',NULL,NULL,4,NULL,NULL,'SH032270130000'),('EP013207570005','The only 1994 sketch show to feature spacehoppers on \"Top Gear\".','Britt Ekland',_binary '','GBR','The Skivers',NULL,NULL,4,NULL,NULL,'SH013207570000'),('EP019585714224','Das Nachrichtenmagazin für Nordrhein-Westfalen - mit Berichten, Reportagen, Nachrichten und Interviews aus unserem Bundesland.','vom 27.02.2020, 21:45 Uhr',_binary '','DEU','WDR aktuell',NULL,NULL,4,NULL,NULL,'SH019585710000'),('EP018433123542','Dieses Magazin bietet vertiefende Hintergrundinformationen zu tagesaktuellen Ereignissen.','',_binary '\0','DEU','Tagesthemen',NULL,NULL,4,NULL,NULL,'SH018433120000'),('EP019619470260','Raketen und Flugzeuge fliegen durch die Sendung. Tanja und André bauen ein Auto mit Ballonantrieb.','Folge 57',_binary '','DEU','Die Sendung mit dem Elefanten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12440321_e_h3_aa.jpg',4,NULL,NULL,'SH019619470000'),('EP018433123543','Dieses Magazin bietet vertiefende Hintergrundinformationen zu tagesaktuellen Ereignissen.','',_binary '\0','DEU','Tagesthemen',NULL,NULL,4,NULL,NULL,'SH018433120000'),('EP019619470261','Heute gehts zum Mond und zurück. Denn der Bär ist verliebt in den Mond und macht sich Sorgen um ihn.','Folge 58',_binary '','DEU','Die Sendung mit dem Elefanten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12440330_e_h3_aa.jpg',4,NULL,NULL,'SH019619470000'),('EP021893360100','Es besteht die Gefahr, dass Löwenzahnsamen das Doozertal in einen Löwenzahn-Dschungel verwandeln.','Mission: Löwenzahn-Dilemma',_binary '','DEU','Jim Hensons: Doozers',NULL,NULL,4,NULL,NULL,'SH021893360000'),('EP019577750084','Plankton entscheidet sich, statt seines Restaurants nun eine Kampfarena zu führen.','Spongikus; Sinfonie in Arzt-Dur',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222592_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP018485471063','Zusammenfassung der wichtigsten Ereignisse des abgelaufenen Tages.','',_binary '\0','DEU','Nachtmagazin',NULL,NULL,4,NULL,NULL,'SH018485470000'),('EP018485471064','Zusammenfassung der wichtigsten Ereignisse des abgelaufenen Tages.','',_binary '\0','DEU','Nachtmagazin',NULL,NULL,4,NULL,NULL,'SH018485470000'),('EP016397950210','Das Politmagazin bietet Reportagen, Analysen und Hintergründe zu aktuellen Themen.','Folge 667',_binary '','DEU','Frontal 21',NULL,NULL,4,NULL,NULL,'SH016397950000'),('EP018485471065','Zusammenfassung der wichtigsten Ereignisse des abgelaufenen Tages.','',_binary '\0','DEU','Nachtmagazin',NULL,NULL,4,NULL,NULL,'SH018485470000'),('EP019559950112','Die Nachrichtensendung informiert über die Geschehnisse des Tages und andere wichtige Themen.','',_binary '\0','DEU','kabel eins news',NULL,NULL,4,NULL,NULL,'SH019559950000'),('EP019559950113','Die Nachrichtensendung informiert über die Geschehnisse des Tages und andere wichtige Themen.','',_binary '\0','DEU','kabel eins news',NULL,NULL,4,NULL,NULL,'SH019559950000'),('EP012681822550','Finn is pushed to breaking point. Lucy is surprised to see an old flame back in town.','',_binary '\0','GBR','Neighbours',NULL,NULL,4,NULL,NULL,'SH012681820000'),('EP031010990275','Zwei Mal am Tag begrüßen Sie die Moderatorinnen und Moderatoren aus dem Bonner Studio - um 17.30 Uhr mit einer 30-minütigen Zusammenfassung und um 23.00 Uhr mit einer umfassenden 60-minütigen Rückschau auf den Tag.','vom 27.02.2020 23:00Uhr',_binary '','DEU','phoenix der tag',NULL,NULL,4,NULL,NULL,'SH031010990000'),('EP012692730262','A TV series creator is a suspect when a network programmer is murdered.','Murder -- According to Maggie',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157007_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP031010990274','Zwei Mal am Tag begrüßen Sie die Moderatorinnen und Moderatoren aus dem Bonner Studio - um 17.30 Uhr mit einer 30-minütigen Zusammenfassung und um 23.00 Uhr mit einer umfassenden 60-minütigen Rückschau auf den Tag.','vom 27.02.2020 17:30Uhr',_binary '','DEU','phoenix der tag',NULL,NULL,4,NULL,NULL,'SH031010990000'),('EP019424280208','Dieses Mal tauschen die 34-jährige Babette und die 24-jährige Jasmin für zehn Tage die Familien.','Babette und Jasmin',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP031010990271','Zwei Mal am Tag begrüßen Sie die Moderatorinnen und Moderatoren aus dem Bonner Studio - um 17.30 Uhr mit einer 30-minütigen Zusammenfassung und um 23.00 Uhr mit einer umfassenden 60-minütigen Rückschau auf den Tag.','vom 26.02.2020 23:00Uhr',_binary '','DEU','phoenix der tag',NULL,NULL,4,NULL,NULL,'SH031010990000'),('EP016394761073','Hobbyköche treten von Montag bis zum Finale am Freitag gegeneinander an.','Alexander Kumptner sucht den Spitzenkoch',_binary '','DEU','Die Küchenschlacht',NULL,NULL,4,NULL,NULL,'SH016394760000'),('EP014220620003','Inside look at witness reports of strange encounters with ghosts and apparitions.','The Haunted',_binary '','GBR','Paranatural',NULL,NULL,4,NULL,NULL,'SH014220620000'),('EP016394761074','Hobbyköche treten von Montag bis zum Finale am Freitag gegeneinander an.','Alexander Kumptner sucht den Spitzenkoch',_binary '','DEU','Die Küchenschlacht',NULL,NULL,4,NULL,NULL,'SH016394760000'),('EP019577750093','SpongeBob bewirbt sich in der Krossen Krabbe, streitet sich mit Thaddäus und lernt Sandy kennen.','Aushilfe gesucht; Meeresbodenpflege; Experten',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2222333_e_h3_ab.jpg',4,NULL,NULL,'SH019577750000'),('EP018438261157','Diese Sendung präsentiert die tägliche Wettervorhersage im Ersten, mit aktuellen Prognosen.','',_binary '\0','DEU','Wetter vor acht',NULL,NULL,4,NULL,NULL,'SH018438260000'),('EP018438261158','Diese Sendung präsentiert die tägliche Wettervorhersage im Ersten, mit aktuellen Prognosen.','',_binary '\0','DEU','Wetter vor acht',NULL,NULL,4,NULL,NULL,'SH018438260000'),('EP017975510017','April 30, 1945. Adolf Hitler kills himself as the Allies close on Berlin. Or did he?','Hitler: Suicide or Survivor?',_binary '','GBR','Forbidden History',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12657964_e_h3_aa.jpg',4,NULL,NULL,'SH017975510000'),('EP017975510014','An Ethiopian church claims to be housing the Ark of the Covenant.','The Real Ark of the Covenant',_binary '','GBR','Forbidden History',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12596590_e_h3_aa.jpg',4,NULL,NULL,'SH017975510000'),('EP019424280212','Heute tauscht die lebensfrohe Claudia mit der Teenager-Mutter Diana für zehn Tage die Familien.','Claudia und Diana',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP019700620360','Neben der Weltmeisterschaft ist die Premier League das populärste Darts-Turnier des Jahres.','Unibet Premier League of Darts - 4. Abend, Dublin/IRL',_binary '\0','DEU','Darts',NULL,NULL,4,NULL,NULL,'SH019700620000'),('EP019932500097','Neal gibt sich als Butler aus, um einen möglichen Hochstapler zu entlarven.','Masterplan',_binary '','DEU','White Collar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10271435_e_h3_aa.jpg',4,NULL,NULL,'SH019932500000'),('EP031695470006','The US gains the upper hand by summer 1944, with the help of better training and supply lines.','The Enemy Underground',_binary '','GBR','The Pacific War in Colour',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15558620_e_h3_aa.jpg',4,NULL,NULL,'SH031695470000'),('EP019369690251','Als ein schwuler Freund von Alan, mit Charlie flirtet, denkt er über seine sexuelle Neigung nach.','Schwul ist cool',_binary '','DEU','Two and a Half Men',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2853205_e_h3_ab.jpg',4,NULL,NULL,'SH019369690000'),('EP024916260006','A double wedding is planned; the squadron doubts its training when fighting starts.','',_binary '\0','GBR','Piece of Cake',NULL,NULL,4,NULL,NULL,'SH024916260000'),('EP016889010243','Sternekoch Nelson Müller präsentiert das Duell der deutschen Mega-Märkte: Kaufland gegen real.','Kaufland oder Real?',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP019561441260','Als ein Baby entführt wird, behauptet eine Zeitung, die Mutter war zum Tatzeitpunkt in einer Kneipe.','Skrupellose Hetzkampagne',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP027661650038','Chizzy Akudolu, Charlie Higson, Kate Williams and Tom Allen test their general knowledge skills.','',_binary '\0','GBR','Richard Osman\'s House of Games',NULL,NULL,4,NULL,NULL,'SH027661650000'),('EP027661650039','Chizzy Akudolu, Charlie Higson, Kate Williams and Tom Allen test their general knowledge skills.','',_binary '\0','GBR','Richard Osman\'s House of Games',NULL,NULL,4,NULL,NULL,'SH027661650000'),('EP013056440047','When Robert O\'Dubaine is found shot to death, this gangland hit unravels into a case of betrayal.','The Black Widow',_binary '','GBR','FBI Case Files',NULL,NULL,4,NULL,NULL,'SH013056440000'),('EP013056440046','The FBI search for missing 9 year-old Jessica Lunsford who disappeared in the middle of the night.','Lurking Menace',_binary '','GBR','FBI Case Files',NULL,NULL,4,NULL,NULL,'SH013056440000'),('EP019561441257','Die Anzeige einer Brautentführung sorgt für Heiterkeit, bis der blutige Brautschleier gefunden wird.','Mord am Hochzeitstag',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP012691630145','When Klinger tries to help a South Korean girl financially, her mother misunderstands his motives.','Private Finance',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145058_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP019561441258','Als ein 17-Jähriger erschossen wird, verdächtigt sein jüngerer Bruder eine brutale Straßengang.','Im Visier der Straßengang',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP019561441251','Eine junge Frau wird schwerverletzt in einer Villa gefunden, doch niemand scheint sie zu kennen.','Spiel mit dem Feuer',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP031410680005','A desert dust storms turns the very day to night and in Arizona, there is a freak hailstorm.','Extreme Elements',_binary '','GBR','Extreme Weather: Caught on Camera',NULL,NULL,4,NULL,NULL,'SH031410680000'),('EP012592870522','The inside story of the downfall of Alberto Salazar, who coached Britain\'s greatest track athlete.','Mo Farah and the Salazar Scandal',_binary '','GBR','Panorama',NULL,NULL,4,NULL,NULL,'SH012592870000'),('EP022485210001','Ireland\'s Customs try to stop drugs, cars and even exotic animals being smuggled into the country.','',_binary '\0','GBR','Stop Search Seize',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12042082_e_h3_aa.jpg',4,NULL,NULL,'SH022485210000'),('EP019561441253','Der Besitzer einer Werkstatt liegt zerquetscht unter der Hebebühne, es war unmöglich ein Unfall.','Von Schulden erdrückt',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP019560520087','Nach dem Mord an einem Regierungsbeamten kommt das Team einer Gruppe von Terroristen auf die Spur.','Neue Gesichter',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8342803_e_h3_aa.jpg',4,NULL,NULL,'SH019560520000'),('EP026256940008','In this edition, properties in Surrey, Wales and Shoreham.','',_binary '\0','GBR','The Home Game',NULL,NULL,4,NULL,NULL,'SH026256940000'),('EP019560520085','Das Team des NCIS L.A. muss den Tod des Antiquitätenhändlers Kurt Renner aufklären.','Auch Spione werden alt',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8369423_e_h3_aa.jpg',4,NULL,NULL,'SH019560520000'),('EP019560520086','Das Team wird auf den Fall von Army Officer Richard Booth angesetzt, der zu Tode gefoltert wurde.','Kopfgeld',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8365993_e_h3_aa.jpg',4,NULL,NULL,'SH019560520000'),('EP019561441259','Ein Spaziergänger findet mitten am Tag eine panische und vor Schmerzen schreiende Frau.','Blind vor Liebe',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP012691630147','The 4077th races the clock to save severely wounded soldiers.','Life Time',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145062_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP012691630146','Father Mulcahy becomes the object of a young nurse\'s affections.','Nurse Doctor',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145061_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP019586731641','Das Wichtigste aus Politik, Kultur, Wirtschaft und Sport, die Szene-Trends und die Kiezgeschichten.','',_binary '\0','DEU','Abendschau',NULL,NULL,4,NULL,NULL,'SH019586730000'),('EP027485190090','Am Flughafen Barcelona-El Prat geraten eine Mutter und ihre Tochter ins Visier der Zollbeamten. Das Problem: Die beiden haben Korallen aus ihrem Thailand-Urlaub mitgebracht. Doch das ist nach dem internationalen Artenschutzabkommen streng verboten!','Folge 90',_binary '','DEU','Border Control - Spaniens Grenzschützer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16571360_e_h3_aa.jpg',4,NULL,NULL,'SH027485190000'),('EP019586731642','Das Wichtigste aus Politik, Kultur, Wirtschaft und Sport, die Szene-Trends und die Kiezgeschichten.','',_binary '\0','DEU','Abendschau',NULL,NULL,4,NULL,NULL,'SH019586730000'),('EP027485190091','Madrid-Barajas: Ein Frachtflugzeug aus den USA muss entladen werden. Das alles geschieht unter den aufmerksamen Blicken der Steuer- und Zollbehörde. Denn es gibt Hinweise, dass sich in einem der Container illegale Ware befindet.','Folge 91',_binary '','DEU','Border Control - Spaniens Grenzschützer',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16598595_e_h3_aa.jpg',4,NULL,NULL,'SH027485190000'),('EP019932500084','Mozzie ist pleite und wohnt bei Neal. Trotzdem kann er Neal bei einer Undercover-Mission helfen.','Ausgetrickst',_binary '','DEU','White Collar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10271431_e_h3_aa.jpg',4,NULL,NULL,'SH019932500000'),('EP016889010234','ZDFzeit stellt den Marktführer für günstige Brillen, Fielmann, auf den Prüfstand.','Das Fielmann-Imperium',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16983989_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP018063270002','This edition comes from the stunning Headland Garden in Polruan, Cornwall.','',_binary '\0','GBR','Garden Hopping',NULL,NULL,4,NULL,NULL,'SH018063270000'),('EP015933460162','Die Entdeckung eines lange gehüteten Geheimnisses führt Hofer und Lind auf die Spur eines Mörders.','Ein mörderischer Geschmack',_binary '','DEU','Die Rosenheim-Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11225532_e_h3_aa.jpg',4,NULL,NULL,'SH015933460000'),('EP012588680161','Dara O Briain and the team present a special end of series show featuring hilarious new material.','',_binary '\0','GBR','Mock the Week',NULL,NULL,4,NULL,NULL,'SH012588680000'),('EP012823690049','There\'s romance between Det. Regan and a journalist who seems to be implicated in a major crime.','Cover Story',_binary '','GBR','The Sweeney',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1205952_e_h3_ab.jpg',4,NULL,NULL,'SH012823690000'),('EP018063270006','This edition comes from Barton House in Warwickshire, where Daphne explores the 12-acre garden.','',_binary '\0','GBR','Garden Hopping',NULL,NULL,4,NULL,NULL,'SH018063270000'),('EP012823690048','Regan and Carter uncover a plot to ship out gold bullion to the Middle East.','Golden Boy',_binary '','GBR','The Sweeney',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1205953_e_h3_aa.jpg',4,NULL,NULL,'SH012823690000'),('EP012697310001','Mobile phones, CCTV and cashpoints can track nearly every human move and help murder investigations.','Electronic Witness',_binary '','GBR','Forensic Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2109440_e_h3_aa.jpg',4,NULL,NULL,'SH012697310000'),('EP015933460163','Mohr und Lind ermitteln undercover in einer Gruppe, die sich auf den Weltuntergang vorbereitet.','Der Untergang von Rosenheim',_binary '','DEU','Die Rosenheim-Cops',NULL,NULL,4,NULL,NULL,'SH015933460000'),('EP012691630151','Klinger falls victim to the peculiar behaviour of the 4077th\'s personnel.','Dear Uncle Abdul',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145066_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP024916260003','For RAF pilots of Hornet Squadron, September 1939 is the moment they have been waiting for.','',_binary '\0','GBR','Piece of Cake',NULL,NULL,4,NULL,NULL,'SH024916260000'),('EP031418120019','Eisschichten haben sich auf den Tragflächen gebildet. So dürfen die Flugzeuge nicht abheben.','Folge 19',_binary '','DEU','Mittendrin - Flughafen Frankfurt',NULL,NULL,4,NULL,NULL,'SH031418120000'),('EP019932500090','Hagan setzt Neal unter Druck, ein Kapitel aus einem Buch aus einem Museum zu stehlen.','Der letzte Fall',_binary '','DEU','White Collar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10202402_e_h3_aa.jpg',4,NULL,NULL,'SH019932500000'),('EP025182560179','Behandelt werden Themen unter anderem im Bereich Geldanlagen, Versicherungen, Finanzierungen.','',_binary '\0','DEU','Ratgeber - Geld',NULL,NULL,4,NULL,NULL,'SH025182560000'),('EP019395241194','Plastik ein Müll- und ein Ressourcenproblem. Eine Lösung könnten sogenannte Bio-Kunststoffe sein.','Biokunststoffe - Die Lösung für unser Plastik-Problem?',_binary '','DEU','Xenius',NULL,NULL,4,NULL,NULL,'SH019395240000'),('EP027195350017','Mavis\' cousin shows up and challenges her to a game of phlegm ball.','Phlegm Ball',_binary '','GBR','Hotel Transylvania',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14376890_e_h3_aa.jpg',4,NULL,NULL,'SH027195350000'),('EP012694720007','Sharon solves Tracey\'s unexpected money problems after the cash machine refuses her card.','Shift!',_binary '','GBR','Birds of a Feather',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1762323_e_h3_aa.jpg',4,NULL,NULL,'SH012694720000'),('EP027195350019','Mavis thinks maybe Aunt Lydia is so bad because she feels lonely, so she\'ll try to fix it.','How Do You Solve a Problem Like Medusa',_binary '','GBR','Hotel Transylvania',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14376866_e_h3_aa.jpg',4,NULL,NULL,'SH027195350000'),('EP027195350018','The kids get trapped in a human house.','Adventures in Vampiresitting',_binary '','GBR','Hotel Transylvania',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14376883_e_h3_aa.jpg',4,NULL,NULL,'SH027195350000'),('EP025057310010','A dying mobster hires Diamond to carry out a final wish.','The Mickey Farmer Case',_binary '','GBR','Richard Diamond, Private Detective',NULL,NULL,4,NULL,NULL,'SH025057310000'),('EP016889010221','Ein Fernsehkoch testet verschiedene Produkte, die Marken sowie No-Names angeboten werden.','No-Name oder Marke? (4)',_binary '','DEU','ZDFzeit',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16523825_e_h3_aa.jpg',4,NULL,NULL,'SH016889010000'),('EP012707030210','Ted says his goodbyes to the gang and prepares to leave for his new life in Chicago.','Last Forever, Part 1',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10504091_e_h3_aa.jpg',4,NULL,NULL,'SH012707030000'),('EP027195350011','While doing her chores around the hotel, Mavis mistakes truth bugs for bed bugs.','Buggin\' Out',_binary '','GBR','Hotel Transylvania',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14376853_e_h3_aa.jpg',4,NULL,NULL,'SH027195350000'),('EP019585321627','Regionales Infotainmentmagazin mit aktuellen Neuigkeiten aus Nordrhein-Westfalen.','',_binary '\0','DEU','Aktuelle Stunde',NULL,NULL,4,NULL,NULL,'SH019585320000'),('EP012707030209','With only 30 minutes before the wedding, both Robin and Barney are having panic attacks.','The End of the Aisle',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10504088_e_h3_aa.jpg',4,NULL,NULL,'SH012707030000'),('EP019585321625','Regionales Infotainmentmagazin mit aktuellen Neuigkeiten aus Nordrhein-Westfalen.','',_binary '\0','DEU','Aktuelle Stunde',NULL,NULL,4,NULL,NULL,'SH019585320000'),('EP012707030208','An old friend of the gang unexpectedly shows up at the hotel for Robin and Barney\'s wedding.','Gary Blauman',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10504087_e_h3_aa.jpg',4,NULL,NULL,'SH012707030000'),('EP019585321626','Regionales Infotainmentmagazin mit aktuellen Neuigkeiten aus Nordrhein-Westfalen.','',_binary '\0','DEU','Aktuelle Stunde',NULL,NULL,4,NULL,NULL,'SH019585320000'),('EP012707030207','Marshall asks Ted and Barney to help him work out where Lily went when stormed out of the hotel.','Daisy',_binary '','GBR','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10504086_e_h3_aa.jpg',4,NULL,NULL,'SH012707030000'),('EP023001141366','Ausführliche Wettervorhersage für die kommenden Tage in Deutschland.','',_binary '\0','DEU','RTLZWEI Wetter',NULL,NULL,4,NULL,NULL,'SH023001140000'),('EP023001141367','Ausführliche Wettervorhersage für die kommenden Tage in Deutschland.','',_binary '\0','DEU','RTLZWEI Wetter',NULL,NULL,4,NULL,NULL,'SH023001140000'),('EP019559881174','Alpenpanorama zeigt Livebilder aus ausgewählten Urlaubsorten.','',_binary '\0','DEU','Alpenpanorama',NULL,NULL,4,NULL,NULL,'SH019559880000'),('EP016982900075','Caroline entdeckt nebenbei die geheime Zutat von Maxs Cupcakes: eine Fertigmischung.','Die geheime Zutat',_binary '','DEU','2 Broke Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8995993_e_h3_ab.jpg',4,NULL,NULL,'SH016982900000'),('EP016889010219','Der Chefkoch Sebastian Lege deckt die vielfältigen Tricks der Lebensmittelindustrie auf.','Die Tricks der Lebensmittelindustrie: Hackfleisch, Wackelpudding & Co.',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP016889010218','Der Chefkoch Sebastian Lege deckt die vielfältigen Tricks der Lebensmittelindustrie auf.','Die Tricks der Lebensmittelindustrie (1)',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP012583110855','Four faces from the past return for Charlie and Baz\'s wedding, but will the it go as planned?','Everlasting Love',_binary '','GBR','Casualty',NULL,NULL,4,NULL,NULL,'SH012583110000'),('EP019562930060','Isaiah Edwards Sohn ist bei einem Verkehrsunfall in Chicago ums Leben gekommen.','Chicago',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142954_e_h3_aa.jpg',4,NULL,NULL,'SH019562930000'),('EP029354590007','Nicolas Köber ist Chefkoch der Waldkliniken Eisenberg und will sein Küchenkonzept ändern.','Folge 4',_binary '','DEU','Die Waldklinik - Echte Fälle, echte Gefühle, echte Menschen',NULL,NULL,4,NULL,NULL,'SH029354590000'),('EP019562930061','Der gut genährte Elmer Miles wird von seinen Mitschülern ständig wegen seiner Körperfülle gehänselt.','Aus Liebe zu Nancy',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142951_e_h3_aa.jpg',4,NULL,NULL,'SH019562930000'),('EP019562930062','Ein Vertreter überzeugt Mrs. Oleson ihr Familienrestaurant in ein Schnellrestaurant umzuwandeln.','Die Restaurantkette',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142952_e_h3_aa.jpg',4,NULL,NULL,'SH019562930000'),('EP019576450868','Toni antwortet auf Mias Mail und kann das Missverständnis um seine Ehe endlich aufklären.','Toni',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP022708430209','Cyberkrieg ist billiger und genauso zerstörerisch wie der Kampf mit Panzern und Kampfflugzeugen.','Kampfroboter, Hackerangriffe, Cyber-Propaganda - Wie verteidigt sich ?',_binary '','DEU','Odysso: Wissen im SWR',NULL,NULL,4,NULL,NULL,'SH022708430000'),('EP019576450869','Mia bekommt Probleme, weil die Polizei sie verdächtigt, Jojo bei der Flucht geholfen zu haben.','Schützenhilfe',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP019562930057','Die Kinder von Walnut Grove ahmen die waghalsigen Kunstücke des alternden Gambini nach.','Der große Gambini',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142949_e_h3_ac.jpg',4,NULL,NULL,'SH019562930000'),('EP026424540003','Die Sendung entdeckt die Geschichte des außergewöhnlichen Reise-Necessaires von Madame Auguié.','Das Reise-Necessaire von Madame Auguié',_binary '','DEU','Zum Ersten, zum Zweiten, zum Dritten!',NULL,NULL,4,NULL,NULL,'SH026424540000'),('EP019562930059','Nels Oleson wird von zwei Möchtegern-Ganoven entführt, Mrs. Oleson weigert sich Lösegeld zu zahlen.','Die Möchtegern-Ganoven',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142950_e_h3_ac.jpg',4,NULL,NULL,'SH019562930000'),('EP012583110850','As the department is forced to close its doors, is Charlie too late to save Baz?','We Can Be Heroes',_binary '','GBR','Casualty',NULL,NULL,4,NULL,NULL,'SH012583110000'),('EP006655400113','A drunk is snagged after an all-night drinking binge and the team pick up many teenagers.','Delta Force',_binary '','GBR','Motorway Patrol',NULL,NULL,4,NULL,NULL,'SH006655400000'),('EP016394871452','Das News- und Boulevardmagazin präsentiert emotionale Geschichten über Menschen in Deutschland.','',_binary '\0','DEU','hallo deutschland',NULL,NULL,4,NULL,NULL,'SH016394870000'),('EP019836710218','Als der Winter kam, mussten Parker Schnabel und sein Team im letzten Jahr am Last Cut die Sachen packen - obwohl dort noch Gold zu holen war. Denn bei eisigen Minustemperaturen konnten die Männer im gefrorenen Boden mit ihren schweren Baggern nicht.','Goldener Zahltag',_binary '','DEU','Die Schatzsucher - Goldrausch in Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17694536_e_h3_aa.jpg',4,NULL,NULL,'SH019836710000'),('EP016394871454','Das News- und Boulevardmagazin präsentiert emotionale Geschichten über Menschen in Deutschland.','',_binary '\0','DEU','hallo deutschland',NULL,NULL,4,NULL,NULL,'SH016394870000'),('EP012597240217','Ross becomes suspicious when Rachel meets a man who may help change her career.','The One Where Chandler Can\'t Remember Which Sister',_binary '','GBR','Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712311_e_h3_ac.jpg',4,NULL,NULL,'SH012597240000'),('EP016394871453','Das News- und Boulevardmagazin präsentiert emotionale Geschichten über Menschen in Deutschland.','',_binary '\0','DEU','hallo deutschland',NULL,NULL,4,NULL,NULL,'SH016394870000'),('EP031675720009','Inside everyone\'s bags are cardboard tubes which are explored through discovery, song and story.','Cardboard Tube',_binary '','GBR','The Baby Club',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16647751_e_h3_aa.jpg',4,NULL,NULL,'SH031675720000'),('EP012597240219','Ross becomes jealous when he hears Rachel\'s new co-worker whispering sweet nothings to her.','The One With All the Jealousy',_binary '','GBR','Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712312_e_h3_ac.jpg',4,NULL,NULL,'SH012597240000'),('EP012597240218','Monica\'s willpower is tested when she runs into Richard at the video store.','The One Where Monica and Richard Are Just Friends',_binary '','GBR','Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712314_e_h3_ac.jpg',4,NULL,NULL,'SH012597240000'),('EP019666900508','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','',_binary '\0','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP031777650010','Peregrine goes undercover in a top-secret science facility to investigate a death.','Space for Murder Part Two',_binary '','GBR','Ms Fisher\'s Modern Murder Mysteries',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16832583_e_h3_aa.jpg',4,NULL,NULL,'SH031777650000'),('EP019576450870','Auf Anraten von Jojo, Alexander und Paloma springt Mia über ihren Schatten und vergibt Annett.','Mit anderen Augen',_binary '','DEU','Anna und die Liebe',NULL,NULL,4,NULL,NULL,'SH019576450000'),('EP012664110140','Nick and the team come to the aid of Hanna, Mike and their three children.','Fareham',_binary '','GBR','DIY SOS: The Big Build',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10235867_e_h3_aa.jpg',4,NULL,NULL,'SH012664110000'),('EP012597100038','A driver is decapitated during a stunt performance, but his death was more than just an accident.','High Octane',_binary '','GBR','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723003_e_h3_ab.jpg',4,NULL,NULL,'SH012597100000'),('EP032868020010','A strong mother swaps lives with a free-spirited farmer wife.','Icgoren vs. Legend',_binary '','GBR','Wife Swap USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16751973_e_h3_aa.jpg',4,NULL,NULL,'SH032868020000'),('EP012863380136','A look at the best, the most interesting and most informative stories from the world of sport.','',_binary '\0','GBR','TransWorld Sport',NULL,NULL,4,NULL,NULL,'SH012863380000'),('EP027081750028','Three friends face Katherine Ryan, Kieron Richardson, Denise Van Outen and Lauren Steadman.','',_binary '\0','GBR','CelebAbility',NULL,NULL,4,NULL,NULL,'SH027081750000'),('EP025488890108','Five family members answer questions on subjects including the Winter Olympics and Tudor monarchs.','Charlie\'s Angels',_binary '','GBR','Tenable',NULL,NULL,4,NULL,NULL,'SH025488890000'),('EP013084810027','Engie is called to the top of Sofa Mountain to help Spaceship.','Snow Daze',_binary '','GBR','Engie Benjy',NULL,NULL,4,NULL,NULL,'SH013084810000'),('EP025488890102','Five university friends take on the Tenable Tower and attempt to win a big cash prize.','Five Swans a-Quizzing',_binary '','GBR','Tenable',NULL,NULL,4,NULL,NULL,'SH025488890000'),('EP012597100043','After a body is found in a sinkhole, the team is lead to a robbery where the target has a secret.','Tunnel Vision',_binary '','GBR','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723038_e_h3_ac.jpg',4,NULL,NULL,'SH012597100000'),('EP025783280025','In der Wildnis von Botswanas geht es um das pure Überleben, denn es gibt keine zweiten Sieger.','Tierische Kämpfer',_binary '','DEU','Tödliches Afrika',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14674239_e_h3_aa.jpg',4,NULL,NULL,'SH025783280000'),('EP025783280026','Es macht Sinn, in Botswanas Wildnis Gang-Mitglied zu sein, solange man sich an die Regeln hält.','Tierische Gangs',_binary '','DEU','Tödliches Afrika',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14674241_e_h3_ab.jpg',4,NULL,NULL,'SH025783280000'),('EP012597100044','DNA at a crime scene shows that Natalia\'s sister is one of the kidnapped women they are looking for.','Darkroom',_binary '','GBR','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723004_e_h3_ab.jpg',4,NULL,NULL,'SH012597100000'),('EP031248540004','One of the Red Arrow jets crashes, resulting in the tragic death of the engineer on board.','',_binary '\0','GBR','Red Arrows: Kings of the Sky',NULL,NULL,4,NULL,NULL,'SH031248540000'),('EP025424720012','Alexei tells the story of a long lost tin of Pâté.','Santa Claused Faced Old...',_binary '','GBR','Alexei Sayle\'s Imaginary Sandwich Bar',NULL,NULL,4,NULL,NULL,'SH025424720000'),('EP012691630118','Hawkeye falls for a Swedish doctor who arrives at the 4077th to observe combat surgery.','Inga',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145098_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP031675720010','The song \"All the leaves are falling down\" features, as does a story involving Baby Bear.','Leaves',_binary '','GBR','The Baby Club',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16647752_e_h3_aa.jpg',4,NULL,NULL,'SH031675720000'),('EP013084810032','Pilot Pete brings his plane to be mended by Benjy, as it has the hiccups.','Jollop to the Rescue',_binary '','GBR','Engie Benjy',NULL,NULL,4,NULL,NULL,'SH013084810000'),('EP012691630116','Col Potter\'s mare, Sophie, mysteriously disappears, while Hawkeye and BJ try to help a young Korean.','The Price',_binary '','GBR','M*A*S*H',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145096_e_h3_ab.jpg',4,NULL,NULL,'SH012691630000'),('EP031675720011','Inside everyone\'s bags are soft toys which are explored through discovery, play, song and story.','Soft Toy',_binary '','GBR','The Baby Club',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16671521_e_h3_aa.jpg',4,NULL,NULL,'SH031675720000'),('EP031675720012','Inside everyone\'s bags are pans which are explored through discovery, play, song and story.','Pan',_binary '','GBR','The Baby Club',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16671536_e_h3_aa.jpg',4,NULL,NULL,'SH031675720000'),('EP019969211192','Die Servicesendung mit vielen Rezepten, Alltagstipps und tollen Dekorationsideen im Ersten.','',_binary '\0','DEU','ARD-Buffet',NULL,NULL,4,NULL,NULL,'SH019969210000'),('EP024268150012','Dr. Wimmer zeigt sieben erstaunliche Fakten über die Knochen des menschlichen Körpers.','Die Knochen',_binary '','DEU','Dr. Wimmer: Wissen ist die beste Medizin',NULL,NULL,4,NULL,NULL,'SH024268150000'),('EP019577750009','Plankton gibt sich als Sandy aus. Plankton wird aus Versehen in SpongeBobs Kopf geschossen.','Der Einzeller im Eichhörnchenpelz; Angezapft',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3622852_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP012613763310','James\'s guilt about shooting Mercedes and contributing to Jesse\'s death resurfaces.','',_binary '\0','GBR','Hollyoaks',NULL,NULL,4,NULL,NULL,'SH012613760000'),('EP012613763311','Mercedes confronts James about his \'secret\'. Courtney is confused at Jesse\'s wake when her speech is interrupted by an emotional outburst. Sid wants more excitement.','',_binary '\0','GBR','Hollyoaks',NULL,NULL,4,NULL,NULL,'SH012613760000'),('EP012613763312','Tony\'s positive outlook jeopardises Edward\'s plan to win back Diane. Sid risks getting caught.','',_binary '\0','GBR','Hollyoaks',NULL,NULL,4,NULL,NULL,'SH012613760000'),('EP019969211193','Die Servicesendung mit vielen Rezepten, Alltagstipps und tollen Dekorationsideen im Ersten.','',_binary '\0','DEU','ARD-Buffet',NULL,NULL,4,NULL,NULL,'SH019969210000'),('EP012613763313','Jordan asks Juliet to work for him, Mercedes advises Tony on how to move things forward with Diane.','',_binary '\0','GBR','Hollyoaks',NULL,NULL,4,NULL,NULL,'SH012613760000'),('EP012613763314','Liam and his heavies trash The Dog in front of a scared Mercedes. Julie begins working for Jordan.','',_binary '\0','GBR','Hollyoaks',NULL,NULL,4,NULL,NULL,'SH012613760000'),('EP019659210231','Das Kulturmagazin des MDR mit Themen aus der Pop- und Hochkultur.','',_binary '\0','DEU','artour',NULL,NULL,4,NULL,NULL,'SH019659210000'),('EP030383050376','Jeremy Vine discusses and dissects the latest news, views and opinions with guests.','',_binary '\0','GBR','Jeremy Vine',NULL,NULL,4,NULL,NULL,'SH030383050000'),('EP030383050377','Jeremy Vine discusses and dissects the latest news, views and opinions with guests.','',_binary '\0','GBR','Jeremy Vine',NULL,NULL,4,NULL,NULL,'SH030383050000'),('EP012597240221','Phoebe reunites with her former singing partner (E.G. Daily).','The One With Phoebe\'s Ex-Partner',_binary '','GBR','Friends',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712315_e_h3_ac.jpg',4,NULL,NULL,'SH012597240000'),('EP016982900036','Max und Caroline versuchen, eine Unterkunft für den Winter für Chestnut zu finden.','Altes Geld sucht neuen Stall',_binary '','DEU','2 Broke Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8937760_e_h3_ab.jpg',4,NULL,NULL,'SH016982900000'),('EP016982900035','Der Ofen von Max gibt den Geist auf. Caroline versucht daher, einen neuen zu besorgen.','Küchenkrise',_binary '','DEU','2 Broke Girls',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8953168_e_h3_ab.jpg',4,NULL,NULL,'SH016982900000'),('EP019426980004','Die Forensiker finden heraus, dass das Opfer eines Zugunglücks bereits vor der Kollision tot war.','Die Pianosaite; Der Roman des Brandstifters; Der Gang-Kodex',_binary '','DEU','Autopsie - Mysteriöse Todesfälle',NULL,NULL,4,NULL,NULL,'SH019426980000'),('EP019426980002','Die Autopsie der 59-Jährigen Madolyn und ein Eintrag in ihrem Tagebuch führen zu ihrem Mörder.','Die Stichwunde; Der letzte Snack; Straße des Todes',_binary '','DEU','Autopsie - Mysteriöse Todesfälle',NULL,NULL,4,NULL,NULL,'SH019426980000'),('EP025488890125','A team of five from Holyhead take on the Tenable Tower as they attempt to win the £125,000 prize.','A-Holyhead of the Game',_binary '','GBR','Tenable',NULL,NULL,4,NULL,NULL,'SH025488890000'),('EP012597100020','Bizarre incidents take place in the CSI lab after the team probes a murder.','Curse of the Coffin',_binary '','GBR','CSI: Miami',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2723002_e_h3_ab.jpg',4,NULL,NULL,'SH012597100000'),('EP024948520001','The early years.','',_binary '\0','GBR','The Story of Stax',NULL,NULL,4,NULL,NULL,'SH024948520000'),('EP016889010254','Es wird der Frage nachgegangen, wie Produzenten schönes Obst herstellen und günstig anbieten können.','Nelson Müllers Lebensmittelreport',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP019561441250','Eine vermisste Politesse wird ermordet im Kofferraum eines gestohlenen Autos gefunden.','Ein Knöllchen zu viel',_binary '','DEU','K11 - Kommissare im Einsatz',NULL,NULL,4,NULL,NULL,'SH019561440000'),('EP012697310067','Police rely on forensic science to expose those guilty of committing crimes of passion.','Crimes of Passion',_binary '','GBR','Forensic Detectives',NULL,NULL,4,NULL,NULL,'SH012697310000'),('EP012697310068','When a victim is caught in a stranger\'s grasp, a crime may go unsolved for years.','Lethal Encounter',_binary '','GBR','Forensic Detectives',NULL,NULL,4,NULL,NULL,'SH012697310000'),('EP016889010257','Die Lebensmittelindustrie hat für jeden Wunsch etwas im Angebot. Sebastian Lege kennt die Tricks.','Die Tricks der Lebensmittelindustrie: Schummel-Vollkorn, Pflanzendrinks & Co.',_binary '','DEU','ZDFzeit',NULL,NULL,4,NULL,NULL,'SH016889010000'),('EP034302800009','Anne bekommt einen Job bei Stumpy\'s und übertreibt es ein wenig: Sie verwandelt das Lokal in ein Thai-Restaurant. Nachdem die Miete für ihren Stand erhöht wird, überredet Anne Hop Pop, Plantars Zaubertränke zu verkaufen.','Der Restaurant-Tester; Hop Pop auf Abwegen',_binary '','DEU','Amphibia',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16999741_e_h3_ab.jpg',4,NULL,NULL,'SH034302800000'),('EP034302800008','Um sich vor der Arbeit zu drücken, macht Anne blau, doch der Rest der Familie wird wirklich krank. Sprig und Polly denken, ihre Familiengeschichte sei langweilig, bis sie auf Familiengeheimnisse stoßen.','Anne-steckend; Familiengeheimnisse',_binary '','DEU','Amphibia',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16956416_e_h3_aa.jpg',4,NULL,NULL,'SH034302800000'),('EP033831270008','Die Templetons geraten an einen Polizisten, der Verbindungen zu dem Verbrecher Bootsy Calico hat.','Katzencop',_binary '','DEU','The Boss Baby: wieder im Geschäft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15381551_e_h3_aa.jpg',4,NULL,NULL,'SH033831270000'),('EP012664110134','Nick Knowles and the team are in Duxford, Cambridgeshire for a couple whose son has liver cancer.','Duxford',_binary '','GBR','DIY SOS: The Big Build',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9277117_e_h3_aa.jpg',4,NULL,NULL,'SH012664110000'),('EP033831270009','Der wohltätige Tim wird zu einem wagemutigen und kühnen \"Tim Templeton: Unleashed\".','Halte durch, Baby!',_binary '','DEU','The Boss Baby: wieder im Geschäft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15381560_e_h3_aa.jpg',4,NULL,NULL,'SH033831270000'),('EP014324590039','Baby Jake and Captain Spacey go on a space adventure and play at space painting.','Baby Jake Loves Space Painting',_binary '','GBR','Baby Jake',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9472767_e_h3_aa.jpg',4,NULL,NULL,'SH014324590000'),('EP012664110137','The team help a woman who promised to look after her dying friend\'s children.','Huntingdon',_binary '','GBR','DIY SOS: The Big Build',NULL,NULL,4,NULL,NULL,'SH012664110000'),('EP014324590038','Baby Jake and Sydney the monkey go on a tropical adventure and play building.','Baby Jake Loves Building',_binary '','GBR','Baby Jake',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9472765_e_h3_aa.jpg',4,NULL,NULL,'SH014324590000'),('EP012664110138','Nick Knowles and the team seek to help Neil Smith and family.','Worksop',_binary '','GBR','DIY SOS: The Big Build',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9746118_e_h3_aa.jpg',4,NULL,NULL,'SH012664110000'),('EP033831270003','Boss Baby versammelt seine Mitarbeiter zu einem letzten Kampf gegen Bootsy Calisco.','Sechs gut platzierte Kätzchen',_binary '','DEU','The Boss Baby: wieder im Geschäft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15381573_e_h3_aa.jpg',4,NULL,NULL,'SH033831270000'),('EP003337730083','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Lap Dance',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP021237750059','Die achte Runde auf der Suche nach den besten kleinen Gesangstalenten Deutschlands beginnt.','Blind Audition 1',_binary '','DEU','The Voice Kids',NULL,NULL,4,NULL,NULL,'SH021237750000'),('EP013183010012','The work machine has finally excreted Peter and Sam. Now the two friends meet.','A Bus Pass',_binary '','GBR','HR',NULL,NULL,4,NULL,NULL,'SH013183010000'),('EP023450480897','When Molang and Piu Piu see their friend has \"forgotten\" his cardboard box, they bring it to him.','The Box',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16562817_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP018580080056','Caillou findet neue Spielgefährten. Caillou fährt zu Sarah an die Schule.Caillou kocht mit Freunden.','Neue Freunde; Caillous erster Schultag; Caillou der Meisterkoch; Abenteuer auf hoher See',_binary '','DEU','Caillou',NULL,NULL,4,NULL,NULL,'SH018580080000'),('EP032733040012','The Rangers are hypnotised into believing they are the characters they dressed up as for Halloween.','Hypnotic Halloween',_binary '','GBR','Power Rangers: Beast Morphers',NULL,NULL,4,NULL,NULL,'SH032733040000'),('EP016395030025','Dieses Mal dreht sich alles um Sir Algernon Farnsworth, den hässlichsten Hund von Hawaii.','Auf den Hund gekommen',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145601_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP032733040015','The Red Ranger gets amazing new powers, but they have unexpected side effects.','Seeing Red',_binary '','GBR','Power Rangers: Beast Morphers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17199921_e_h3_aa.jpg',4,NULL,NULL,'SH032733040000'),('EP016119190058','Can the crew fix them up a \'59 Bonneville before they reach Texas?','No Bull Bonneville',_binary '','GBR','Fast N\' Loud',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10032377_e_h3_aa.jpg',4,NULL,NULL,'SH016119190000'),('EP016395030026','Dieses Mal darf sich Magnum als Frauenversteher profilieren und freundet sich mit Laura Frasier an.','Im Kampf verschollen',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145598_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP016395030028','Richter Robert Caine beauftragt Magnum, seine seit 1941 verschollene Ehefrau Diane zu finden.','Von den Toten auferstanden',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145603_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP019560062111','Toronto steht für kulinarische Delikatessen wie Poutine, Pizza mit Pommes und Peameal Bacon.','Thema u. a.: TOP X Trendfood aus Kanada',_binary '','DEU','Abenteuer Leben täglich',NULL,NULL,4,NULL,NULL,'SH019560060000'),('EP012592931840','Stephen Sackur speaks to Dr Yasser Abu Jamei, director of Gaza\'s biggest mental health programme.','Dr Yasser Abu Jamei: Director, Gaza Community Mental Health Programme',_binary '','GBR','HARDtalk',NULL,NULL,4,NULL,NULL,'SH012592930000'),('EP027580960031','Reading books is wonderful, especially when you\'re sitting with a big cuddly Yeti.','The Parrot',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP031951710014','The winning diet is revealed, and the Two Chubbycubs and Collagen diets are tested.','',_binary '\0','GBR','Save Money: Lose Weight',NULL,NULL,4,NULL,NULL,'SH031951710000'),('EP018090670431','Daring Danny X, dressed as a Bird X mascot, gets carried away by a couple of eagles.','Pups Save a Mascot',_binary '','GBR','PAW Patrol',NULL,NULL,4,NULL,NULL,'SH018090670000'),('EP019586671654','Nachrichtensendung mit dem aktuellen Geschehen aus Politik, Gesellschaft und Kultur für Brandenburg.','',_binary '\0','DEU','Brandenburg aktuell',NULL,NULL,4,NULL,NULL,'SH019586670000'),('EP019586671653','Nachrichtensendung mit dem aktuellen Geschehen aus Politik, Gesellschaft und Kultur für Brandenburg.','',_binary '\0','DEU','Brandenburg aktuell',NULL,NULL,4,NULL,NULL,'SH019586670000'),('EP021826630010','Die Besitzer des Kingston Café in Pasadena müssen befürchten, ihr Lebenswerk zu verlieren.','Kingston Café in Pasadena',_binary '','DEU','In Teufels Küche mit Gordon Ramsay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8617672_e_h3_ab.jpg',4,NULL,NULL,'SH021826630000'),('EP018090670434','Adventure Bay is working hard to earn the record for having the world\'s highest tower of pizzas.','Pups Save a Tower of Pizza',_binary '','GBR','PAW Patrol',NULL,NULL,4,NULL,NULL,'SH018090670000'),('EP019586671655','Nachrichtensendung mit dem aktuellen Geschehen aus Politik, Gesellschaft und Kultur für Brandenburg.','',_binary '\0','DEU','Brandenburg aktuell',NULL,NULL,4,NULL,NULL,'SH019586670000'),('EP021826630011','Im kalifornischen Sherman Oaks geht das Restaurant `La Frite\' langsam den Bach hinunter.','La Frite in Sherman Oaks',_binary '','DEU','In Teufels Küche mit Gordon Ramsay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8594623_e_h3_ac.jpg',4,NULL,NULL,'SH021826630000'),('EP019060020003','The family throw a surprise birthday party for Bridget and it\'s up to Roger to keep her in the dark.','Bridget\'s Surprise 40th',_binary '','GBR','The Moodys',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10736234_e_h3_ab.jpg',4,NULL,NULL,'SH019060020000'),('EP021826630012','Das italienische Restaurant `The Capri\' steht kurz vor dem Konkurs. Gordon nimmt sich der Sache an.','Restaurant The Capri in Eagle Rock, Kalifornien',_binary '','DEU','In Teufels Küche mit Gordon Ramsay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8637985_e_h3_ac.jpg',4,NULL,NULL,'SH021826630000'),('EP021826630013','Im Herzen New Orleans gibt es kreolische Küche im `Oceana\', doch die Gäste bleiben aus.','Restaurant Oceana in New Orleans',_binary '','DEU','In Teufels Küche mit Gordon Ramsay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8639089_e_h3_ab.jpg',4,NULL,NULL,'SH021826630000'),('EP021826630014','Das `Zeke\'s\' ist ein alteingesessenes Lokal in New Orleans, doch sein Ruf ist mittlerweile schlecht.','Restaurant Zeke\'s in New Orleans',_binary '','DEU','In Teufels Küche mit Gordon Ramsay',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8639080_e_h3_ab.jpg',4,NULL,NULL,'SH021826630000'),('EP019658761411','Die Sendung bietet Service im Plauderton, kombiniert mit etwas Klatsch und Tratsch.','',_binary '\0','DEU','hallo hessen',NULL,NULL,4,NULL,NULL,'SH019658760000'),('EP029228150056','Die ehemaligen Hauptdarsteller der Originalserie verbringen gemeinsam ihren Urlaub.','Sport, Sonne, Strippen',_binary '','DEU','Jersey Shore: Family Vacation',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17298380_e_h3_aa.jpg',4,NULL,NULL,'SH029228150000'),('EP019658761412','Die Sendung bietet Service im Plauderton, kombiniert mit etwas Klatsch und Tratsch.','',_binary '\0','DEU','hallo hessen',NULL,NULL,4,NULL,NULL,'SH019658760000'),('EP017232220294','Guy tries crab-stuffed flounder in Atlantic City. In Phoenix, he visits a Mom and Pop pizza shop.','Roadtrippin\'',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11457179_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP014080750454','Presented by Hugh Woozencroft.','UEFA Champions League Football: Real Madrid v Manchester City',_binary '\0','GBR','Live: Kick Off',NULL,NULL,4,NULL,NULL,'SH014080750000'),('EP019579340283','Eine Familie betreibt auf ihrem Bauernhof eine Biohofladen, ein Restaurant und eine Manufaktur.','Viel mehr als Bauernhof: Geschmack, Genuss, Gemeinschaft',_binary '','DEU','die nordstory',NULL,NULL,4,NULL,NULL,'SH019579340000'),('EP033344700018','A tour and history of the highly manoeuvrable pirate ship, once feared by all who sailed the high seas.','The Pirate Ships',_binary '','GBR','The Great Ships',NULL,NULL,4,NULL,NULL,'SH033344700000'),('EP033344700019','Swift schooners that made the transition from fishing to fighting.','The Schooners',_binary '','GBR','The Great Ships',NULL,NULL,4,NULL,NULL,'SH033344700000'),('EP027663480004','Ordinary men and women reveal their secret fantasies in front of a camera.','',_binary '\0','GBR','My Secret Sex Fantasy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16148556_e_h3_aa.jpg',4,NULL,NULL,'SH027663480000'),('EP016391700471','Als Hamburger Jung\' macht er in Paris Karriere: Karl Lagerfeld. Für die Franzosen wird er zu Kaiser Karl. Als Modezar sorgt er auch jenseits des Laufstegs für Furore. Seine steile Karriere umfasst weit mehr als Mode.','Karl Lagerfeld - Eine deutsche Legende',_binary '','DEU','ZDF-History',NULL,NULL,4,NULL,NULL,'SH016391700000'),('EP012687730322','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP012687730323','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP012687730320','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP031503490026','Eliza und Arthur entwickeln ein Interesse füreinander, doch Eliza wehrt sich gegen ihre Gefühle.','Kapitel 27',_binary '','DEU','Total Dreamer - Träume werden wahr',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12491076_e_h3_aa.jpg',4,NULL,NULL,'SH031503490000'),('EP012687730321','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP016395030048','Rick hat unter Higgins\' missbilligenden Blicken ein Kanurennen ins Leben gerufen.','Grundstücksspekulanten',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145606_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP023098770251','Es geht unter anderem um digitalen Stress, der manche Menschen mehr belastet, als falsche Ernährung.','Folge 8',_binary '','DEU','markt',NULL,NULL,4,NULL,NULL,'SH023098770000'),('EP026841680012','A powerful electron microscope is used to follow a UFO back to its home planet.','Close-Up',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235803_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP012697310099','Forensic science links paid killers to their employers.','Deadly Dealings',_binary '','GBR','Forensic Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2109461_e_h3_aa.jpg',4,NULL,NULL,'SH012697310000'),('EP017232220283','Guy\'s going on a flavour filled tour of Scottsdale, Arizona. He tries an Italian beef speciality.','Arizona All-Stars',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11372274_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP017232220284','In Montecatini Alto, a hillside seafood spot serves up a squid ink speciality.','Cruisin\' the Italian Countryside',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11302047_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP017232220285','Guy Fieri\'s hitting up totally traditional Italian spots in Florence.','Fillin\' up in Florence',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11338673_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP017232220288','Guy checks out a funky fusion joint serving up unique burritos.','Fish, Fries and Feet',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11299287_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP019579340273','Mittlerweile haben sich nicht wenige Frauen den maroden Ruinen von Herrenhäusern mit Haut und Haar verschrieben.','Herrenhäuser in Frauenhand',_binary '','DEU','die nordstory',NULL,NULL,4,NULL,NULL,'SH019579340000'),('EP012687730326','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP020073300219','Im Herzen von Americana entdeckt Bob Ross die stille Schönheit der Natur an einem eisigen Januartag.','Winter at the Farm',_binary '','DEU','Bob Ross: The Joy of Painting',NULL,NULL,4,NULL,NULL,'SH020073300000'),('EP012687730327','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP012687730324','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP012687730325','Customs and immigration officials at work at Australian airports.','',_binary '\0','GBR','Nothing to Declare',NULL,NULL,4,NULL,NULL,'SH012687730000'),('EP026841680019','A woman and her lover accidentally kill a crashed alien instead of their intended victim.','Square Triangle',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235808_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP019579470301','Vitaminreicher Orangensaft: lieber frisch gepresst oder aus dem Tetrapack? Es ist der beliebteste Saft hierzulande: Orangensaft wird zu jeder Jahreszeit gerne getrunken. Nicht nur der Geschmack zieht, auch der hohe Vitamin-C-Gehalt ist.','',_binary '\0','DEU','Markt',NULL,NULL,4,NULL,NULL,'SH019579470000'),('EP018558660949','Das Magazin beschäftigt sich mit den Hintergründen tagesaktueller Ereignisse.','',_binary '\0','DEU','Explosiv - Das Magazin',NULL,NULL,4,NULL,NULL,'SH018558660000'),('EP022518890065','Die Dokumentationsreihe zeigt Berichte über die Natur- und Kultursehenswürdigkeiten Hessens.','Einfach anders wohnen',_binary '','DEU','Erlebnis Hessen',NULL,NULL,4,NULL,NULL,'SH022518890000'),('EP019461841159','Das Ländermagazin setzt auf Informationen aus Sachsen, Sachsen-Anhalt und Thüringen.','',_binary '\0','DEU','MDR um 11',NULL,NULL,4,NULL,NULL,'SH019461840000'),('EP017152750066','Hashmot Ali seeks an operation to restore his features, which were destroyed by a tiger.','A Tiger Ate My Face',_binary '','GBR','Body Bizarre',NULL,NULL,4,NULL,NULL,'SH017152750000'),('EP019461841158','Das Ländermagazin setzt auf Informationen aus Sachsen, Sachsen-Anhalt und Thüringen.','',_binary '\0','DEU','MDR um 11',NULL,NULL,4,NULL,NULL,'SH019461840000'),('EP018558660947','Das Magazin beschäftigt sich mit den Hintergründen tagesaktueller Ereignisse.','',_binary '\0','DEU','Explosiv - Das Magazin',NULL,NULL,4,NULL,NULL,'SH018558660000'),('EP018558660948','Das Magazin beschäftigt sich mit den Hintergründen tagesaktueller Ereignisse.','',_binary '\0','DEU','Explosiv - Das Magazin',NULL,NULL,4,NULL,NULL,'SH018558660000'),('EP016395030057','Dieses Mal muss Magnum seinem Freund T.C. aus der Patsche helfen.','Freunde in der Not',_binary '','DEU','Magnum',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1145605_e_h3_aa.jpg',4,NULL,NULL,'SH016395030000'),('EP020018510038','Funella wants to make her fruit guests happy in the hotel\'s new Ripening Lounge.','Ripe \'n\' Shine',_binary '','GBR','The Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11765828_e_h3_aa.jpg',4,NULL,NULL,'SH020018510000'),('EP019202960021','Meet the military personnel who, despite dealing with stammers, are succeeding in their careers.','Stammering: The Unspeakable Truth',_binary '','GBR','Forces World',NULL,NULL,4,NULL,NULL,'SH019202960000'),('EP031503490030','Cassandra erhält die Nachricht, dass sie doch weiterhin am Wettbewerb teilnehmen kann.','Kapitel 29',_binary '','DEU','Total Dreamer - Träume werden wahr',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12491179_e_h3_aa.jpg',4,NULL,NULL,'SH031503490000'),('EP020073300220','Bob präsentiert den Betrachtern ein abgeschiedenes Häuschen in der Nähe eines kleinen Waldteiches.','Daisies at Dawn',_binary '','DEU','Bob Ross: The Joy of Painting',NULL,NULL,4,NULL,NULL,'SH020073300000'),('EP019432910030','Die 13-jährige Estefania steckt mitten in der Pubertät und interessiert sich nur noch für Jungs.','Teenager Sprechstunde',_binary '','DEU','Die Wollnys - Eine schrecklich große Familie!',NULL,NULL,4,NULL,NULL,'SH019432910000'),('EP020018510039','Guests arrive to see the most beautiful flower. The Furchesters need to help the flower to bloom.','The Blooming',_binary '','GBR','The Furchester Hotel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11765832_e_h3_aa.jpg',4,NULL,NULL,'SH020018510000'),('EP019432910031','Estefania ist seit kurzem mit Max zusammen und hat sich seitdem stark verändert.','Kleine Kinder werden groß',_binary '','DEU','Die Wollnys - Eine schrecklich große Familie!',NULL,NULL,4,NULL,NULL,'SH019432910000'),('EP032733040022','When the Rangers get trapped inside holiday ornaments, the Beast Bots must save the day.','Scrozzle\'s Revenge',_binary '','GBR','Power Rangers: Beast Morphers',NULL,NULL,4,NULL,NULL,'SH032733040000'),('EP032733040021','Blaze uses evil tech to massively enhance his Robotron\'s destructive power.','Sound and Fury',_binary '','GBR','Power Rangers: Beast Morphers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17131662_e_h3_aa.jpg',4,NULL,NULL,'SH032733040000'),('EP023090104611','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 26.02.2020, um 12:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP033474100035','Elizabeth Alker introduces a live concert of Russian music from Salford.','Live music from Salford',_binary '','GBR','Afternoon Concert',NULL,NULL,4,NULL,NULL,'SH033474100000'),('EP023090104612','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 26.02.2020, um 17:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP033474100034','Elizabeth Alker introduces a performance of Fromental Halevy\'s 19th-century grand opera La Juive.','Halevy from Hannover',_binary '','GBR','Afternoon Concert',NULL,NULL,4,NULL,NULL,'SH033474100000'),('EP023288870001','Die Experten dieser Sendung präsentieren Bastelideen rund um das Osterfest.','',_binary '\0','DEU','Basteln fürs Osterfest',NULL,NULL,4,NULL,NULL,'SH023288870000'),('EP023090104615','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 27.02.2020, um 12:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP023090104616','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 27.02.2020, um 17:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP023090104613','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 26.02.2020, um 19:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP023090104614','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.','vom 27.02.2020, 19:00 Uhr',_binary '','DEU','heute',NULL,NULL,4,NULL,NULL,'SH023090100000'),('EP026841680025','Commander Straker recalls how his marriage broke up during the early days of SHADO.','Confetti Check A-OK',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235825_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP019560660546','Die Wohnung von Evelyn wird von einer unbekannten Person mit einem Baseballschläger zertrümmert.','Faust im Nacken',_binary '','DEU','Richterin Barbara Salesch',NULL,NULL,4,NULL,NULL,'SH019560660000'),('EP031503490029','Arthur ist eifersüchtig, weil Eliza ihre Freizeit mit Jonatan verbringt. Carolina ist wütend.','Kapitel 28',_binary '','DEU','Total Dreamer - Träume werden wahr',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12490927_e_h3_aa.jpg',4,NULL,NULL,'SH031503490000'),('EP016119190012','A rare \'32 Ford, a \'64 Econoline van and an \'89 Shelby pickup are featured here.','Holy Grail Hot Rod',_binary '','GBR','Fast N\' Loud',NULL,NULL,4,NULL,NULL,'SH016119190000'),('EP019327120008','Files suggest that beneath mountain ranges, deep underground military bases may exist.','Underground Bases',_binary '','GBR','Hangar 1: The UFO Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10575597_e_h3_aa.jpg',4,NULL,NULL,'SH019327120000'),('EP034305610003','Diesmal wird ein genauer Blick auf die legendäre Brooklyn Bridge in New York geworfen.','Die Brooklyn Bridge',_binary '','DEU','Könnten wir das heute?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17040025_e_h3_ab.jpg',4,NULL,NULL,'SH034305610000'),('EP034305610004','Diesmal wird ein genauer Blick auf die eindrucksvollsten Bauprojekte der alten Römer geworfen.','Wasserwege der Römer',_binary '','DEU','Könnten wir das heute?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17215927_e_h3_aa.jpg',4,NULL,NULL,'SH034305610000'),('EP013056510037','Jim and Cinnamon set themselves up as targets for the underworld.','The Execution',_binary '','GBR','Mission: Impossible',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1154108_e_h3_ab.jpg',4,NULL,NULL,'SH013056510000'),('EP013207651163','Contestants try to score as few points as possible by plumbing the depths of their knowledge.','',_binary '\0','GBR','Pointless',NULL,NULL,4,NULL,NULL,'SH013207650000'),('EP013207651164','Contestants try to score as few points as possible by plumbing the depths of their knowledge.','',_binary '\0','GBR','Pointless',NULL,NULL,4,NULL,NULL,'SH013207650000'),('EP016119190011','A 1978 Ford Fairmont becomes a mirrored drift car; Richard restores a rare 1967 Corvette.','Fast & Furious Fairmont',_binary '','GBR','Fast N\' Loud',NULL,NULL,4,NULL,NULL,'SH016119190000'),('EP013056510030','A military commander (Theodore Bikel) plans to substitute a look-alike for an imprisoned cardinal.','The Cardinal',_binary '','GBR','Mission: Impossible',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1154110_e_h3_ab.jpg',4,NULL,NULL,'SH013056510000'),('EP015083210045','Joe Maplin decides that Gladys should be put in charge of the Yellowcoats.','Stripes',_binary '','GBR','Hi-De-Hi!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1124205_e_h3_aa.jpg',4,NULL,NULL,'SH015083210000'),('EP015083210043','Ted Bovis\'s ex-wife turns up at the camp, demanding the arrears of her maintenance.','Trouble & Strife',_binary '','GBR','Hi-De-Hi!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1124204_e_h3_aa.jpg',4,NULL,NULL,'SH015083210000'),('EP017232220264','Wings and a steak wrap, barbeque bird and signature burger, fried chicken and red velvet waffles.','Chicken Chowfest',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11159714_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP017232220265','Smoked wings, apple dumplings, chicken with rice, pork with hominy, Dungeness crab, crayfish pie.','Fresh Fish and Funky Chicken',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11197652_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP017232220266','A nearly century-old chili recipe, seaside joint serving fresh catch since the 1930s.','Oldies but Goodies',_binary '','GBR','Diners, Drive-Ins and Dives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11202455_e_h3_aa.jpg',4,NULL,NULL,'SH017232220000'),('EP012974930185','Combative, provocative and engaging live debate chaired by Michael Buerk.','Profiling, Safety and Trust',_binary '','GBR','The Moral Maze',NULL,NULL,4,NULL,NULL,'SH012974930000'),('EP030692260072','Die Volleyball Bundesliga der Frauen hat weiterhin auf SPORT1 ihr Zuhause.','Bundesliga: Allianz MTV Stuttgart - VfB Suhl LOTTO Thüringen, 19. Spieltag, Frauen',_binary '\0','DEU','Volleyball',NULL,NULL,4,NULL,NULL,'SH030692260000'),('EP018573670014','Ein Mann wird bei der Ausübung seiner speziellen sexuellen Vorlieben getötet.','Es wird eng',_binary '','DEU','CSI: Vegas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10296833_e_h3_ab.jpg',4,NULL,NULL,'SH018573670000'),('EP025233080004','In May 1970, four boys set light to Robert Stephenson\'s famous Britannia Bridge.','The Britannia Bridge',_binary '','GBR','Britain\'s Greatest Bridges',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13417897_e_h3_aa.jpg',4,NULL,NULL,'SH025233080000'),('EP025233080003','Rob Bell tells the story behind Brunel\'s famous bridge over the picturesque Avon gorge at Bristol.','The Clifton Suspension Bridge',_binary '','GBR','Britain\'s Greatest Bridges',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13395321_e_h3_aa.jpg',4,NULL,NULL,'SH025233080000'),('EP016446362599','Marshall Doktors are in concert from 1981, and live BBC sessions by The War On Drugs.','The War On Drugs, 35 Summers, Marshall Doktors, and Adam Green & Binki Shapiro',_binary '','GBR','6 Music Live Hour',NULL,NULL,4,NULL,NULL,'SH016446360000'),('EP019569760102','Peter Pan schenkt Jake magische Bohnen. Käpt\'n Hook versucht Patchs Schätze zu stehlen.','Jake und die Bohnenranke; Rotkäppchen Izzy',_binary '','DEU','Jake und die Nimmerland Piraten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10092253_e_h3_aa.jpg',4,NULL,NULL,'SH019569760000'),('EP034418900001','The mixed fortunes of an extended family of music-hall entertainers in search of their big break.','Side by Side',_binary '','GBR','Funny Man',NULL,NULL,4,NULL,NULL,'SH034418900000'),('EP012851580112','A district attorney matches wits with a much-despised author after the writer\'s best friend dies.','The Bestseller',_binary '','GBR','Matlock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1149150_e_h3_aa.jpg',4,NULL,NULL,'SH012851580000'),('EP012851580111','Defending a widow accused of murdering her husband, Ben suspects her jealous son of the crime.','The Good Boy',_binary '','GBR','Matlock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1149151_e_h3_aa.jpg',4,NULL,NULL,'SH012851580000'),('EP012851580110','Matlock and a deputy sheriff help a veteran framed for murder on Roanoke Island, N.C.','The Hunting Party',_binary '','GBR','Matlock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1149282_e_h3_aa.jpg',4,NULL,NULL,'SH012851580000'),('EP019560630703','Die Moderatoren berichten über topaktuelle Themen aus den Bereichen, Politik und Gesellschaft.','',_binary '\0','DEU','SAT.1-Frühstücksfernsehen',NULL,NULL,4,NULL,NULL,'SH019560630000'),('EP016119190037','The team works on a \'64 Dodge Sweptline, \'32 Ford Roadster and a \'65 Mustang.','Dodge Hodge Podge Part 1; \'65 Mustang',_binary '','GBR','Fast N\' Loud',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10041848_e_h3_ab.jpg',4,NULL,NULL,'SH016119190000'),('EP019560630704','Die Moderatoren berichten über topaktuelle Themen aus den Bereichen, Politik und Gesellschaft.','',_binary '\0','DEU','SAT.1-Frühstücksfernsehen',NULL,NULL,4,NULL,NULL,'SH019560630000'),('EP019560520254','Als Marco Ruiz ein Video dreht, verliert hinter ihm ein Mann die Kontrolle über sein Auto.','Seals im Visier',_binary '','DEU','Navy CIS: L.A',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17550759_e_h3_aa.jpg',4,NULL,NULL,'SH019560520000'),('EP021288230059','Die Vierlinge urteilen über Toms und Annes Pläne, doch dann werden sie eines Besseren belehrt.','Das Eistanz-Café',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13630449_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP021288230058','Während die Vierlinge ihre Lieblingssendung schauen, entscheiden sie, selbst eine zu produzieren.','Wir brauchen Drama!',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13630442_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP013133670432','Kathy Burke and Scott Graham are co-directing the play \"I Think We Are Alone\".','Kathy Burke & Scott Graham and David Soul',_binary '','GBR','Steve Wright in the Afternoon',NULL,NULL,4,NULL,NULL,'SH013133670000'),('EP016990740203','Critiques of the week\'s biggest and best shows, including \"The Stranger, Love Is Blind\", and more.','',_binary '\0','GBR','Gogglebox',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17953746_e_h3_aa.jpg',4,NULL,NULL,'SH016990740000'),('EP027026640050','Bagel, Becky and Percy hear strange laughter coming from the park.','Attack of the Night Shifties',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13814955_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP030044550039','The murder of Dr John Yelenic becomes one of the most infamous in Pennsylvania state history.','Agent of Death',_binary '','GBR','Evidence of Evil',NULL,NULL,4,NULL,NULL,'SH030044550000'),('EP021765130040','Nach dem Kauf einer Immobilie erkennen Tarek und Christina, dass sie überstürzt gehandelt haben.','Nachwuchs bei Tarek und Christina',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12968684_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP014726381800','Gregor gibt den perfekten Partner und Carla kann trotz ihrer Krankheit Leichtigkeit leben.','Endgültig zerstritten',_binary '','DEU','Rote Rosen',NULL,NULL,4,NULL,NULL,'SH014726380000'),('EP014726400607','Kathrin Globisch unterläuft ein Fehler bei der Planung. Sie muss eine Operation selbst durchführen.','Fehler im System',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14458400_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP019569760119','Käpt\'n Hook passt auf eine Katze auf. Käpt\'n Hook begleitet Jake auf einem Camping-Ausflug.','Käpt\'n Hook und das Kätzchen; Der Camping-Ausflug',_binary '','DEU','Jake und die Nimmerland Piraten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9356803_e_h3_ab.jpg',4,NULL,NULL,'SH019569760000'),('EP014726400606','Otto Stein fällt es schwer, das große Haus in Schuss zu halten. Martin besucht seinen Vater.','Eine Frage der Entscheidung',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14440053_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP014726400605','Sibylla Bernhardt liegt im Wachkoma. Ihre Pflegerin stürzt mit ihr und Sibylla bricht ihren Knöchel.','In Liebe loslassen',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14429478_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP027026640053','Grandpa confesses that he\'s a retired spy intent on destroying his arch-nemesis.','The Man With the Golden Walker',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14114086_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP014726400604','Der Triathlet John Neyers muss am Knie operiert werden, dadurch kann er seinen Sohn nicht sehen.','Das große Herz',_binary '','DEU','In aller Freundschaft',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14404850_e_h3_aa.jpg',4,NULL,NULL,'SH014726400000'),('EP030044550038','The investigation into the murder of Maggie Locascio required relentless detective work.','Almost Free',_binary '','GBR','Evidence of Evil',NULL,NULL,4,NULL,NULL,'SH030044550000'),('EP027026640052','A game of athletic prowess and feats of super gross out-ness.','Hairball',_binary '','GBR','The Bagel and Becky Show',NULL,NULL,4,NULL,NULL,'SH027026640000'),('EP013211350009','A murder is announced in the local paper, but is it just a game?','A Murder Is Announced',_binary '','GBR','Agatha Christie\'s Marple',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3104143_e_h3_aa.jpg',4,NULL,NULL,'SH013211350000'),('EP030044550037','The murder of Denise O\'Neill was solved following comprehensive forensics and shrewd detective work.','Nightmare Neighbours',_binary '','GBR','Evidence of Evil',NULL,NULL,4,NULL,NULL,'SH030044550000'),('EP027026640051','Awkward Hills is plagued by a series of hair-related crimes, and Bagel searches for the culprit.','Weredo\'s and Weredon\'ts',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14350088_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP030858310221','From Red Bull Arena (Salzburg).','FC Salzburg - Eintracht Frankfurt',_binary '\0','DEU','UEFA Europa League',NULL,NULL,4,NULL,NULL,'SH030858310000'),('EP003333110203','Auf unterhaltsame Weise präsentiert der Moderator Boulevard-Themen, die in den Schlagezeilen sind.','',_binary '\0','DEU','stern TV',NULL,NULL,4,NULL,NULL,'SH003333110000'),('EP012851580103','Matlock encounters a family full of suspects when an advice-to-the-lovelorn columnist is murdered.','The Lovelorn',_binary '','GBR','Matlock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1149124_e_h3_aa.jpg',4,NULL,NULL,'SH012851580000'),('EP012851580102','Ben defends an irate investor accused of murdering the promoter of a pyramid scheme.','The Hucksters',_binary '','GBR','Matlock',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1149123_e_h3_aa.jpg',4,NULL,NULL,'SH012851580000'),('EP027580960034','Reading books is wonderful, especially when you\'re sitting with a big cuddly Yeti.','The Hare And Tortoise',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP013065590202','Mike sources a 181 Thing from a collector, but is forced to dig deep for the purchase.','VW 181 Thing',_binary '','GBR','Wheeler Dealers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11678320_e_h3_aa.jpg',4,NULL,NULL,'SH013065590000'),('EP019897220011','Alessas großer Auftritt! Heute präsentiert sie ihren neuen Style. Wie kommen die Looks an?','Mehr Mut zur Farbe!',_binary '','DEU','Du bist STYLE!',NULL,NULL,4,NULL,NULL,'SH019897220000'),('EP019897220012','Moritz ist gewachsen. Er fühlt sich groß, dünn und schlaksig. Bisher kleidete er sich sportlich.','Modetipps für Schlaksige!',_binary '','DEU','Du bist STYLE!',NULL,NULL,4,NULL,NULL,'SH019897220000'),('EP013065590209','Mike finds a rare rust-free model of Japan\'s answer to Britain\'s MGB GT.','Datsun 240Z',_binary '','GBR','Wheeler Dealers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11671887_e_h3_aa.jpg',4,NULL,NULL,'SH013065590000'),('EP014881010095','A blind actress is the only witness to her husband\'s murder. But can she really be trusted?','',_binary '\0','GBR','Death in Paradise',NULL,NULL,4,NULL,NULL,'SH014881010000'),('EP012592931839','President Macron\'s bold promise to break the political mould in France has collided with reality.','Gabriel Attal: French Minister for Youth',_binary '','GBR','HARDtalk',NULL,NULL,4,NULL,NULL,'SH012592930000'),('EP021288230044','Nicky, Ricky und Dawn wollen unbedingt zu den coolen Kids ihrer Schule gehören.','Ricky voll beliebt',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13018807_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP014251220741','Essential business news as it breaks and a look ahead to the news that will shape the business day.','',_binary '\0','GBR','Asia Business Report',NULL,NULL,4,NULL,NULL,'SH014251220000'),('EP014251220742','Essential business news as it breaks and a look ahead to the news that will shape the business day.','',_binary '\0','GBR','Asia Business Report',NULL,NULL,4,NULL,NULL,'SH014251220000'),('EP019327120010','Hangar 1 looks into the discovery of a top-secret \"Special Operations Manual\".','The Smoking Gun',_binary '','GBR','Hangar 1: The UFO Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11475719_e_h3_aa.jpg',4,NULL,NULL,'SH019327120000'),('EP019327120011','Countless reports of UFO witnesses being intimidated into silence by mysterious \"Men in Black\".','Men In Black',_binary '','GBR','Hangar 1: The UFO Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11475716_e_h3_aa.jpg',4,NULL,NULL,'SH019327120000'),('EP019468511597','Das Regionalmagazin berichtet von den wichtigsten Ereignissen im Freistaat Sachsen.','',_binary '\0','DEU','MDR Sachsenspiegel',NULL,NULL,4,NULL,NULL,'SH019468510000'),('EP021833580063','The Beipanjiang First Bridge is the highest bridge on Earth, connecting two communities in China.','Beipanjiang First Bridge',_binary '','GBR','Impossible Engineering',NULL,NULL,4,NULL,NULL,'SH021833580000'),('EP014905920058','Drew visits an old manor house in Wales and a reclamation yard in Norfolk.','',_binary '\0','GBR','Salvage Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11590009_e_h3_aa.jpg',4,NULL,NULL,'SH014905920000'),('EP014905920059','Drew drives a 1940s steam engine and visits a country house with hundreds of years\' worth of junk.','',_binary '\0','GBR','Salvage Hunters',NULL,NULL,4,NULL,NULL,'SH014905920000'),('EP031932260017','The racoons are freezing their butts off, so they try to lock Mike outside while they cosy up.','Electric Turtles',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP021765130061','Tarek und Christina finden ein Haus in Whittier, das sich in einem schlechten Zustand befindet.','Babyglück für Tarek und Christina',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12829543_e_h3_ab.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130064','Tarek und Christina finden eine vielversprechende Immobilie und denken damit viel Profit zu machen.','Das Haus mit 1000 Türen',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13476893_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP024029960029','Betty is taking a vacation and is leaving Max and Gark with her cat-obsessed daughter.','Fun in the Sun',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13359369_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP021765130065','Tarek und Christina sind auf der Suche nach einem kleinen Haus, das schnell zu renovieren ist.','Ein Bungalow in Long Beach',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13579798_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130062','Tarek und Christina werden von ihrem Freund Pete gefragt, ein Haus in Anaheim zu renovieren.','Investition zu dritt',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13476914_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130063','Tarek und Christina renovieren ein Haus, wo die Besichtigung nur von außen möglich war.','Das Katzenhaus',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12872064_e_h3_ac.jpg',4,NULL,NULL,'SH021765130000'),('EP013066540167','Tomatoes roasted with pesto and parmesan; desserts using Italian wine and liqueurs.','Italian Old and New',_binary '','GBR','Barefoot Contessa',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8579719_e_h3_aa.jpg',4,NULL,NULL,'SH013066540000'),('EP021765130068','Tarek und Christina erwerben eine Immobilie in einer wunderschönen Gegend in Costa Mesa.','Das 60er-Jahre Haus',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12968681_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130069','Tarek und sein Freund Pete renovieren ein heruntergekommenes Haus in Corona ohne Christinas Hilfe.','Das Projekt ohne Christina',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12968683_e_h3_ab.jpg',4,NULL,NULL,'SH021765130000'),('EP003337730604','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Webcam Girls',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP021765130066','Tarek und Christina lassen sich auf eine risikoreiche Immobilie für 300.000 Dollar ein.','Das Vintage-Haus',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12872084_e_h3_ab.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130067','Tarek und Christina haben eine sehr renovierbedürftige Immobilie in Anaheim Hills erworben.','Die Badezimmer-Challenge',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12968679_e_h3_ab.jpg',4,NULL,NULL,'SH021765130000'),('EP031932260007','Mike pushes Fluffy into a bag of charcoal, making him look like a baby racoon.','Feline A Little Racoon',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP031932260008','Louise finds an old toy in her trunk, but it scares Mike and the racoons use it to keep him away.','Chickie\'s Return',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP021851650073','Ein Thema der Sendung lautet: \"Motoraddiebstahl: Wie die Polizei den Bestohlenen im Stich lässt\".','Folge 70',_binary '','DEU','Voss & Team',NULL,NULL,4,NULL,NULL,'SH021851650000'),('EP019579340205','Die Doku begleitet drei Heidjer, die mit Leidenschaft den alltäglichen Herausforderungen trotzen.','Tradition trifft Talente: Die jungen Heidjer',_binary '','DEU','die nordstory',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14281998_e_h3_aa.jpg',4,NULL,NULL,'SH019579340000'),('EP013101510002','How the Church in the Middle Ages preached against sins of the flesh.','Sex',_binary '','GBR','Inside the Medieval Mind',NULL,NULL,4,NULL,NULL,'SH013101510000'),('EP019692200148','Satiresendung von Querköpfen für Querdenker mit dem Kabarettist Christoph Süß.','Folge 22',_binary '','DEU','quer',NULL,NULL,4,NULL,NULL,'SH019692200000'),('EP016398250451','In der Sendung müssen zwei Teams aus vorgegebenen Zutaten ein komplettes Menü zaubern.','Folge 735',_binary '','DEU','Topfgeldjäger',NULL,NULL,4,NULL,NULL,'SH016398250000'),('EP024029960035','Max is pumped for Sportsbowl Sunday.','Sardonians of the Galaxy',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13359551_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP015402430208','Paulo Emilio ist einer der Bosse des brasilianischen Rodeos und besitzt riesige Rinderzuchtfarmen.','Brasilien-der wahre wilde Westen',_binary '','DEU','Weltreisen',NULL,NULL,4,NULL,NULL,'SH015402430000'),('EP028004160012','Lilly muss ihre Autorität in einem Block voller renitenter Gangmitglieder behaupten.','Überfordert',_binary '','DEU','Der härteste Job der Welt - Ausbildung im Knast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13164075_e_h3_aa.jpg',4,NULL,NULL,'SH028004160000'),('EP016398250452','In der Sendung müssen zwei Teams aus vorgegebenen Zutaten ein komplettes Menü zaubern.','Folge 736',_binary '','DEU','Topfgeldjäger',NULL,NULL,4,NULL,NULL,'SH016398250000'),('EP012568684761','Marlon sobs in his prison cell, while Doug makes a decision, and Arthur feels betrayed.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP012568684760','Vinny comes up with a cunning plan for the campaign, and Moira makes a huge decision.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP028004160013','Im Gefängnis überleben nur die Starken, sowohl unter den Häftlingen als auch unter den Wärtern.','Überlebensstrategie',_binary '','DEU','Der härteste Job der Welt - Ausbildung im Knast',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13164076_e_h3_aa.jpg',4,NULL,NULL,'SH028004160000'),('EP012568684763','Charity struggles to process everything, and Marlon is overwhelmed. Arthur still feels betrayed.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP019561530756','Lenßen und Partner müssen Melanie Neumann helfen, denn sie und ihre Familie werden bedroht.','Die Bombe in der Handtasche',_binary '','DEU','Lenßen & Partner',NULL,NULL,4,NULL,NULL,'SH019561530000'),('EP012568684762','Charity receives some life-changing news. Laurel comforts her son Arthur. Marlon has hope at last.','',_binary '\0','GBR','Emmerdale',NULL,NULL,4,NULL,NULL,'SH012568680000'),('EP013842320056','HHTV\'s War Reporter Mike Peabody regrets his decision to cover the Norman Siege of Palermo.','',_binary '\0','GBR','Horrible Histories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9177994_e_h3_aa.jpg',4,NULL,NULL,'SH013842320000'),('EP013842320055','Queen Elizabeth I goes online dating; Socrates foils his own prison rescue; Emicho goes crusading.','',_binary '\0','GBR','Horrible Histories',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9177991_e_h3_aa.jpg',4,NULL,NULL,'SH013842320000'),('EP019749900202','Die Nordpfälzer Firma `BITO-Lagertechnik\' produziert Dinge für ordnungsliebende Lageristen.','Alles Paletti! Bito-Lagertechnik in Meisenheim',_binary '','DEU','made in Südwest',NULL,NULL,4,NULL,NULL,'SH019749900000'),('EP003337730616','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Webcam Girls',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP029618550002','Ore Oduba hosts the high-tension, fast-paced quiz where contestants battle to outrun the hardball.','',_binary '\0','GBR','Hardball',NULL,NULL,4,NULL,NULL,'SH029618550000'),('EP029618550001','Ore Oduba hosts the high-tension, fast-paced quiz where contestants battle to outrun the hardball.','',_binary '\0','GBR','Hardball',NULL,NULL,4,NULL,NULL,'SH029618550000'),('EP023656340762','Brautprofis unterstützen zukünftige Bräute dabei, das perfekte Brautkleid zu finden.','Zurückhaltung, adieu!',_binary '','DEU','Zwischen Tüll und Tränen',NULL,NULL,4,NULL,NULL,'SH023656340000'),('EP031932260018','After playing with Louise and her doll, Mike stages a rescue mission with the doll to impress Cindy.','Rescuing Roxanne',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP023656340761','Auch diesmal begibt sich eine Heiratswillige ins Brautmodengeschäft für das perfekte Kleid.','',_binary '\0','DEU','Zwischen Tüll und Tränen',NULL,NULL,4,NULL,NULL,'SH023656340000'),('EP012691610085','A flash fire demolishes the second floor of the house, an event threatening to destroy the family.','The Burn Out',_binary '','GBR','The Waltons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1226334_e_h3_aa.jpg',4,NULL,NULL,'SH012691610000'),('EP028781520017','Diesmal geht es um ein Fahrrad, das zum E-Bike wird und wie man mit dem Fußboden Strom erzeugt.','Folge 5',_binary '','DEU','Das Ding des Jahres',NULL,NULL,4,NULL,NULL,'SH028781520000'),('EP012691610087','An old flame builds a fire under John-Boy when she returns to Walton\'s Mountain.','The Collision',_binary '','GBR','The Waltons',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1226199_e_h3_aa.jpg',4,NULL,NULL,'SH012691610000'),('EP023656340760','Auch diesmal begibt sich eine Heiratswillige ins Brautmodengeschäft für das perfekte Kleid.','Folge 680',_binary '','DEU','Zwischen Tüll und Tränen',NULL,NULL,4,NULL,NULL,'SH023656340000'),('EP012680300285','A young man wants to trade a 1750 blunderbuss for an engagement ring.','Brothels & Busses',_binary '','GBR','Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3594836_e_h3_ab.jpg',4,NULL,NULL,'SH012680300000'),('EP013022490110','Randy and Alexa have allowed their Old Neighbourhood restaurant to fall into utter disrepair.','Old Neighborhood',_binary '','GBR','Ramsay\'s Kitchen Nightmares USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10680760_e_h3_ab.jpg',4,NULL,NULL,'SH013022490000'),('EP024029960045','It\'s Christmas and Max explains to Gark how mean Santa is, because he never got the toy he wanted.','Merry Christmax',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13359321_e_h3_ab.jpg',4,NULL,NULL,'SH024029960000'),('EP031932260030','Laura forgot her cell-phone and Mike discovers a hilarious video of Fluffy he must show to Cindy.','Aye Aye Aye Phone',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP031932260031','Wanting to impress Iris, Mike slips his bowtie on and does his best James Bond impression.','Agent 000',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP012612622512','A mix of celebrity interviews, showbiz news, topical discussion, competitions, health, and more.','',_binary '\0','GBR','This Morning',NULL,NULL,4,NULL,NULL,'SH012612620000'),('EP024029960047','It\'s New Year\'s Day and Betty\'s already struggling with her resolution.','Low Resolution',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13489781_e_h3_ab.jpg',4,NULL,NULL,'SH024029960000'),('EP012612622513','A mix of celebrity interviews, showbiz news, topical discussion, competitions, health, and more.','',_binary '\0','GBR','This Morning',NULL,NULL,4,NULL,NULL,'SH012612620000'),('EP027026640014','Becky makes a life-size paper aeroplane.','Aero-Dumb-Namic!',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14289186_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP031932260029','The racoons enviously watch Mike make himself comfortable. Freddy has an excellent idea.','A Sick Trick',_binary '','GBR','Mighty Mike',NULL,NULL,4,NULL,NULL,'SH031932260000'),('EP027580960097','Yetili and the mice put the finishing touch to the decorations and are ready for the last story.','The Shelter',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP027580960098','While Nina and Yetili discuss fine foods, Leon sets off in search of today\'s story.','My House, Your House',_binary '','GBR','Yeti Tales',NULL,NULL,4,NULL,NULL,'SH027580960000'),('EP024603180250','Dads Rezepte werden hinterrücks von einer skrupellosen Tiefkühlkostfirma gestohlen.','Der Rezepte-Diebstahl',_binary '','DEU','Willkommen bei den Louds',NULL,NULL,4,NULL,NULL,'SH024603180000'),('EP027026640017','Mum gives Bagel and Becky a rubber ball and they love it, so much so that they have trouble sharing.','Where the Balls Roll Wild and Free',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14295312_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP013066540186','Red velvet cupcakes, shortbread cookies and orange curd; afternoon-tea inspired flower arrangements.','Afternoon Tea to Go',_binary '','GBR','Barefoot Contessa',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8607179_e_h3_ac.jpg',4,NULL,NULL,'SH013066540000'),('EP027026640016','When the kids make a mess, Mum sends them up to the attic to get their old bibs.','I Got You, Bib',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14295310_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP027026640015','Bagel and Becky go to the moon to replace Mum\'s \"Faberge Moon\".','To The Moon Bagel, To The Moon',_binary '','GBR','The Bagel and Becky Show',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14289130_e_h3_aa.jpg',4,NULL,NULL,'SH027026640000'),('EP029998130031','Someone steals Mya Go and her friends\' freshly baked biscuits from the windowsill!','Cookies',_binary '','GBR','Mya Go',NULL,NULL,4,NULL,NULL,'SH029998130000'),('EP016460840133','Die Folge nimmt die Metropolen und Kleinstädte Deutschlands aus der Vogelperspektive ins Visier.','Deutschland von oben 3: Stadt',_binary '','DEU','Terra X',NULL,NULL,4,NULL,NULL,'SH016460840000'),('EP014905920025','Drew and Tee visit Lemmington Hall in Alnwick and uncover an unusual chair in an outbuilding.','',_binary '\0','GBR','Salvage Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10244314_e_h3_aa.jpg',4,NULL,NULL,'SH014905920000'),('EP014905920026','Today, it\'s full steam ahead at Trinity Marine in Devon but it\'s not all plain sailing.','',_binary '\0','GBR','Salvage Hunters',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10247632_e_h3_aa.jpg',4,NULL,NULL,'SH014905920000'),('EP013626350010','Clare English speaks to Father Roy Day and Mike Tunstall about the history of \"The Samaritans\".','The Samaritans',_binary '','GBR','Pioneers',NULL,NULL,4,NULL,NULL,'SH013626350000'),('EP015443360389','Politisches Satiremagazin mit ironischen Beiträgen und Reportagen.','Folge 26',_binary '','DEU','extra 3',NULL,NULL,4,NULL,NULL,'SH015443360000'),('EP015443360388','Ein Thema der Sendung lautet unter anderem: \"Realer Irrsinn: Luxus-Wasser aus Parchim\".','Folge 25',_binary '','DEU','extra 3',NULL,NULL,4,NULL,NULL,'SH015443360000'),('EP021765130071','Tarek erhält einen Anruf über eine vielversprechende Immobilie in Torrance und begutachtet das Haus.','Eine Küche zum Verlieben',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12968687_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP024029960050','Max is pleased when Gark receives a box with an emoji interface that answers all his questions.','Max Me No Questions',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13834618_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP021765130070','Pete hat eine vielversprechende Immobilie in La Habra gefunden, um diese mit Tarek zu renovieren.','Designduell in La Habra',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13476947_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP015443360387','Zu Gast in der Sendung ist diesmal Youtube-Köchin Monika Fuchs.','Folge 24',_binary '','DEU','extra 3',NULL,NULL,4,NULL,NULL,'SH015443360000'),('EP026471290009','The Lighthouse of Marituga, CentrePoint of the Triangle, is fading.','Lighthouse of the Soul',_binary '','GBR','Zak Storm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13948767_e_h3_aa.jpg',4,NULL,NULL,'SH026471290000'),('EP019162480074','Beim `Quizduell\' treten vier Kandidaten im Studio gegen die Online-Nutzer der Smartphone-App an.','Folge 155',_binary '','DEU','Quizduell',NULL,NULL,4,NULL,NULL,'SH019162480000'),('EP026471290008','Caramba is kidnapped by stupid undersea trolls who mistake his exoskeleton for a piece of gold.','Troll Diving',_binary '','GBR','Zak Storm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13948756_e_h3_aa.jpg',4,NULL,NULL,'SH026471290000'),('EP013022490132','Gordon Ramsay goes back to two restaurants - Giuseppi\'s and Sante La Brea.','Revisited No. 2',_binary '','GBR','Ramsay\'s Kitchen Nightmares USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8565200_e_h3_ab.jpg',4,NULL,NULL,'SH013022490000'),('EP015402360620','Die Sendung zeigt ein Porträt einer Insel, die Spiegelbild und Sehnsuchtsort der Briten ist.','Isle of Wight - Die Insel von Queen Victoria',_binary '','DEU','Länder - Menschen - Abenteuer',NULL,NULL,4,NULL,NULL,'SH015402360000'),('EP020373850037','Henry bekommt die Gelegenheit, bei seiner Lieblings-Gameshow mitzumachen.','Alles wird geklaut',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11374076_e_h3_aa.jpg',4,NULL,NULL,'SH020373850000'),('EP026471290005','The Chaos engines are dead, and she\'s drifting toward a tornado in Aeria, the Sea of Storms.','The Voice of Chaos',_binary '','GBR','Zak Storm',NULL,NULL,4,NULL,NULL,'SH026471290000'),('EP026471290006','The 7Cs save a new-born wyvern from the clutches of Golden Bones.','Freezing Point',_binary '','GBR','Zak Storm',NULL,NULL,4,NULL,NULL,'SH026471290000'),('EP030142550004','Monty Halls and his family return to the Galapagos, where Monty experiences mighty volcanic power.','',_binary '\0','GBR','My Family and the Galapagos',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17908162_e_h3_aa.jpg',4,NULL,NULL,'SH030142550000'),('EP019826901199','Die wichtigsten Ereignisse aus Bayern, aus Deutschland und aus aller Welt.','',_binary '\0','DEU','Rundschau-Magazin',NULL,NULL,4,NULL,NULL,'SH019826900000'),('EP019826901198','Die wichtigsten Ereignisse aus Bayern, aus Deutschland und aus aller Welt.','',_binary '\0','DEU','Rundschau-Magazin',NULL,NULL,4,NULL,NULL,'SH019826900000'),('EP028499440008','Franco kann seinen gebrochenen Fuß nicht behandeln lassen, weil er keine Krankenversicherung hat.','Der Mann ohne Krankenversicherung',_binary '','DEU','Superior Donuts',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13915351_e_h3_aa.jpg',4,NULL,NULL,'SH028499440000'),('EP024603180234','Der elfjährige Lincoln lebt ein chaotisches Leben. Grund dafür sind seine zehn Schwestern.','Geschenkestress',_binary '','DEU','Willkommen bei den Louds',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17100165_e_h3_aa.jpg',4,NULL,NULL,'SH024603180000'),('EP018553660034','N\'awlins Cafe, in New Orleans, is struggling because the manager is hiring friends.','Friends With Benefits',_binary '','GBR','Mystery Diners',NULL,NULL,4,NULL,NULL,'SH018553660000'),('EP031014330001','Lampo, Milady, Pilou and Meatball live inside Granny Pina\'s house.','Buffycats on a Mission',_binary '','GBR','44 Cats',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16268504_e_h3_aa.jpg',4,NULL,NULL,'SH031014330000'),('EP024029960069','Gark decides to rid cats of all their fears, turning the cat box into a time machine.','Cat Box of Fear',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973820_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP019395240996','In manchen Regionen Deutschlands und Frankreichs schwinden immer schneller Vogelbestände.','Unsere Vögel: Wie wir sie schützen können',_binary '','DEU','Xenius',NULL,NULL,4,NULL,NULL,'SH019395240000'),('EP026040630023','Mei from Beijing requests a shadow puppet to use in a shadow play.','Shadow Play',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11611044_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP026040630024','Jett goes to Venice with a mask for Luca to wear at his masquerade party.','Great Gondolas',_binary '','GBR','Super Wings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11611041_e_h3_aa.jpg',4,NULL,NULL,'SH026040630000'),('EP018553660033','The owner of Deanie\'s Seafood worries that his manager is too focused on his amateur comedy career.','No Laughing Matter',_binary '','GBR','Mystery Diners',NULL,NULL,4,NULL,NULL,'SH018553660000'),('EP012691610059','Grandpa Walton sees a falling star and believes the superstition which says death will be eminent.','The Star',_binary '','GBR','The Waltons',NULL,NULL,4,NULL,NULL,'SH012691610000'),('EP020425850003','Auf seiner großen Reise durch Australien erreicht Sven Furrer in der Folge Sydney.','Folge 4',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11288061_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP020425850004','In der Folge seiner Reise durch Australien trifft Sven Furrer in Canberra auf Karreen Thomas.','Folge 3',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11288065_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP019162480063','Beim `Quizduell\' treten vier Kandidaten im Studio gegen die Online-Nutzer der Smartphone-App an.','Folge 144',_binary '','DEU','Quizduell',NULL,NULL,4,NULL,NULL,'SH019162480000'),('EP020425850005','Sven Furrer reist durch die wildromantischen Kimberleys, die schönste Region des lucky country.','Folge 5',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11305348_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP024029960070','Max and Throckmorton throw Gark a surprise party to celebrate his first Earthday.','Happy Earthday',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973825_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP020425850006','In der letzten Folge reist Sven Furrer in die ehemalige Minenstadt Wittenoom und zum Ningaloo Reef.','Folge 6',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11321188_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP012906520001','A pretty woman looses control of her car and dies in a flaming wreck.','Hellride',_binary '','GBR','Charlie\'s Angels',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052389_e_h3_ab.jpg',4,NULL,NULL,'SH012906520000'),('EP024029960071','A giant wart has appeared on Betty\'s nose, Max deduces that this can only mean that Zaxos is back.','Zaxos Returns',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973827_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP020425850001','Sven Furrers Reise beginnt in Alice Springs, der Stadt mitten im australischen Outback.','Folge 1',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11221871_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP020373850028','Henry und Ray müssen sich mit einem neuen, anstrengenden Feind namens Spoiler herumschlagen.','Spoileralarm',_binary '','DEU','Henry Danger',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11374075_e_h3_ab.jpg',4,NULL,NULL,'SH020373850000'),('EP020425850002','In der zweiten Folge besucht Sven Furrer die Clayton Station.','Folge 2',_binary '','DEU','12\'378 km Australien: Sven Furrer auf Abwegen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11264554_e_h3_aa.jpg',4,NULL,NULL,'SH020425850000'),('EP012847870554','It is Richard Rabbit\'s birthday party and George is invited. That means one thing, soft play.','Soft Play',_binary '','GBR','Peppa Pig',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14516572_e_h3_aa.jpg',4,NULL,NULL,'SH012847870000'),('EP025194970053','Laa-Laa and Po have fun, first rolling a ball down a hill and then rolling each other.','Rolling',_binary '','GBR','Teletubbies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13343427_e_h3_aa.jpg',4,NULL,NULL,'SH025194970000'),('EP024029960077','Max wanders into the park and is horrified to find Gark in full personal trainer mode.','Mere Mortals',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973857_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP024029960078','Gark and the park animals are all doing warm-up exercises before playing Trash-Ball.','The Garkest Timeline',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973867_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP025194970055','The Teletubbies stand up straight to see who is the tallest and who is the shortest.','Tallest Shortest',_binary '','GBR','Teletubbies',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13343433_e_h3_aa.jpg',4,NULL,NULL,'SH025194970000'),('EP024029960079','Max introduces Gark to his favourite superhero TV show, Wombatman.','The Gark Knight Rises',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973877_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP031932260061','Mike tries to brighten Iris\'s day by putting together an impromptu circus on the patio.','What a Circus',_binary '','GBR','Mighty Mike',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16676602_e_h3_aa.jpg',4,NULL,NULL,'SH031932260000'),('EP031932260062','Mike uses a new robot that looks exactly like him as his stunt double to impress Iris.','Double Dog',_binary '','GBR','Mighty Mike',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16631098_e_h3_aa.jpg',4,NULL,NULL,'SH031932260000'),('EP015402360619','Die Reportagen führen in unerforschte Gebiete, zeigen Traumreiseziele und das Leben fremder Völker.','Die gefährlichsten Schulwege der Welt - Sibirien',_binary '','DEU','Länder - Menschen - Abenteuer',NULL,NULL,4,NULL,NULL,'SH015402360000'),('EP031014330016','The Buffycats are charmed by the clown cat. Blister and Scab try to attract him to their team.','Milky and Chock\'s Circus',_binary '','GBR','44 Cats',NULL,NULL,4,NULL,NULL,'SH031014330000'),('EP029025790045','Desperate teenage lovers Tia Skinner and Jonathan Kurtz trigger a deadly chain of events.','Tia Skinner & Jonathan Kurtz',_binary '','GBR','Killer Couples',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16616595_e_h3_aa.jpg',4,NULL,NULL,'SH029025790000'),('EP031014330015','Meatball is the clumsiest of the Buffycats, the perfect target for Blister and Scab.','Milady and the Cat-fu Master',_binary '','GBR','44 Cats',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16272129_e_h3_aa.jpg',4,NULL,NULL,'SH031014330000'),('EP018553660024','The owner of Cooper\'s Old Time Pit Bar-B-Que fears that an employee is selling his secret recipe.','Secret Sauce',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9938702_e_h3_aa.jpg',4,NULL,NULL,'SH018553660000'),('EP031014330018','Granny Pina lost her precious lucky locket near the river and the Buffycats rush there to find it.','Meatball\'s Secret Move',_binary '','GBR','44 Cats',NULL,NULL,4,NULL,NULL,'SH031014330000'),('EP031014330017','The Buffycats teach the puppies, Zoe and Bucky, to get along better with each other.','Dogsitter Mission',_binary '','GBR','44 Cats',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16272131_e_h3_aa.jpg',4,NULL,NULL,'SH031014330000'),('EP033413060026','Charlie\'s efforts to scare Helsing backfire when the gang summon fear monsters.','Scare Helsing',_binary '','GBR','The Strange Chores',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17560568_e_h3_aa.jpg',4,NULL,NULL,'SH033413060000'),('EP018553660029','A restaurant owner fields complaints about constant fighting between the cooks and a bartender.','Crazy Hearts',_binary '','GBR','Mystery Diners',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9939576_e_h3_ac.jpg',4,NULL,NULL,'SH018553660000'),('EP033413060025','When the archive room floods, the gang are up a creek without a paddle.','Clean the Archive Room',_binary '','GBR','The Strange Chores',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17560566_e_h3_aa.jpg',4,NULL,NULL,'SH033413060000'),('EP033413060023','The gang find themselves in over their heads when a mummy steals their senses.','Babysit the Mummy',_binary '','GBR','The Strange Chores',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17560534_e_h3_aa.jpg',4,NULL,NULL,'SH033413060000'),('EP019585951283','Magazinsendung, die sich mit Themen aus den Bereichen Gesundheit, Geld und Ernährung beschäftigt.','',_binary '\0','DEU','Servicezeit',NULL,NULL,4,NULL,NULL,'SH019585950000'),('EP026841680003','Passengers aboard a lunar module that was chased by an alien saucer try to murder Straker.','Kill Straker',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235817_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP033413060022','While stuck in a time loop, Charlie and Que take advantage of their situation and play all day long.','Survive the Strange Loop',_binary '','GBR','The Strange Chores',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17560529_e_h3_aa.jpg',4,NULL,NULL,'SH033413060000'),('EP026471290011','CeCe thinks that she has failed finding the way point of Dezer.','The Shipwrecked in Sand',_binary '','GBR','Zak Storm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13948773_e_h3_aa.jpg',4,NULL,NULL,'SH026471290000'),('EP012691610044','John-Boy borrows the Baldwin sisters\' treasured typewriter to work on a short story for a magazine.','The Typewriter',_binary '','GBR','The Waltons',NULL,NULL,4,NULL,NULL,'SH012691610000'),('EP019585951284','Magazinsendung, die sich mit Themen aus den Bereichen Gesundheit, Geld und Ernährung beschäftigt.','',_binary '\0','DEU','Servicezeit',NULL,NULL,4,NULL,NULL,'SH019585950000'),('EP013022490129','Chef Gordon Ramsay works his magic on a New York state eatery, The Olde Stone Mill.','Olde Stone Mill',_binary '','GBR','Ramsay\'s Kitchen Nightmares USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3360354_e_h3_ab.jpg',4,NULL,NULL,'SH013022490000'),('EP026841680006','An ESP-gifted man writes a screenplay that exposes SHADO\'s secrets.','ESP',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235820_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP026841680009','A spy within SHADO has allegedly leaked information to the press.','Court Martial',_binary '','GBR','UFO',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1235823_e_h3_aa.jpg',4,NULL,NULL,'SH026841680000'),('EP026471290010','Zak unleashes all of the Seven Powers of the Seas at the same time, endangering Calabrass.','Forged in Fire',_binary '','GBR','Zak Storm',NULL,NULL,4,NULL,NULL,'SH026471290000'),('EP019396742928','Die Nachrichtensendung bereitet täglich das aktuelle Tagesgeschehen auf.','vom 26.02.2020, 19:20 Uhr',_binary '','DEU','Arte Journal',NULL,NULL,4,NULL,NULL,'SH019396740000'),('EP019396742927','Die Nachrichtensendung bereitet täglich das aktuelle Tagesgeschehen auf.','vom 26.02.2020, 12:50 Uhr',_binary '','DEU','Arte Journal',NULL,NULL,4,NULL,NULL,'SH019396740000'),('EP019743790252','An Halloween ereignet sich ein schauderhafter Doppelmord, der das Five-O-Team auf den Plan ruft: Mitten in ihrer Wohnung wird die ehemalige Nonne Edith erschossen aufgefunden.','Verschwunden',_binary '','DEU','Hawaii Five-0',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17432330_e_h3_aa.jpg',4,NULL,NULL,'SH019743790000'),('EP024029960080','To show off to the animals in the park, Max wants to get abducted by aliens.','Any Takers?',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973888_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP027579730002','Die Schüler sollen Marktstände für den Schulbassar vorbereiten. Maricela und Lucky bilden ein Team.','Der Konkurrenzkampf',_binary '','DEU','Spirit: wild und frei',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14121588_e_h3_aa.jpg',4,NULL,NULL,'SH027579730000'),('EP024029960081','Max becomes jealous after Gark is hailed as a hero for saving Nelson\'s life.','I, Maxine',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973896_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP019396742929','Die Nachrichtensendung bereitet täglich das aktuelle Tagesgeschehen auf.','vom 27.02.2020, 12:50 Uhr',_binary '','DEU','Arte Journal',NULL,NULL,4,NULL,NULL,'SH019396740000'),('EP024029960082','Max is impressed when he sees Gark performing as a living statue in the park.','Gark\'s Got Talent',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973902_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP019667871921','Deutsches Bildungsfernsehen mit breitem Themenspektrum und Sendungen zu allen Schulfächern.','Der große Crash von 1929 - Die Wirtschaftskrise von 1929 in Deutschland',_binary '','DEU','Planet Schule',NULL,NULL,4,NULL,NULL,'SH019667870000'),('EP024029960083','Gark does not see his reflection in the mirror.','Mirror Mirror',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973906_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP034269680008','Caïn lässt sich in eine Klinik einweisen, um verdeckt in einem Mord zu ermitteln.','Weiße Kittel, schmutzige Westen',_binary '','DEU','Kommissar Caïn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10651963_e_h3_aa.jpg',4,NULL,NULL,'SH034269680000'),('EP024029960084','Gark invents an invisible girlfriend named Arugula.','Arugula',_binary '','GBR','Counterfeit Cat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13973913_e_h3_aa.jpg',4,NULL,NULL,'SH024029960000'),('EP034269680009','In einem Kloster kommen innerhalb kürzester Zeit zwei Nonnen ums Leben. Caïn glaubt nicht an Suizid.','Hinter (schein-) heiligen Mauern',_binary '','DEU','Kommissar Caïn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10651980_e_h3_aa.jpg',4,NULL,NULL,'SH034269680000'),('EP024029960085','Gark appreciates Max\'s training, but wishes he would teach him how to tackle the big stuff.','Gone Gark, Part 1',_binary '','GBR','Counterfeit Cat',NULL,NULL,4,NULL,NULL,'SH024029960000'),('EP024029960086','Gark appreciates Max\'s training, but wishes he would teach him how to tackle the big stuff.','Gone Gark, Part 2',_binary '','GBR','Counterfeit Cat',NULL,NULL,4,NULL,NULL,'SH024029960000'),('EP019656370518','MareTV findet auf der ganzen Welt die schönsten und spannendsten Geschichten von Menschen und Meer. Das Magazin der Meere zeigt die ganze Vielfalt.','Dorset - Strandvergnügen',_binary '','DEU','mare TV kompakt',NULL,NULL,4,NULL,NULL,'SH019656370000'),('EP003337730629','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Webcam Girls',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP028256840048','The latest crop of junior doctors have to put all their training and experience to the test.','',_binary '\0','GBR','Island Medics',NULL,NULL,4,NULL,NULL,'SH028256840000'),('EP019654750189','In der aktuellen Ausgabe liegt der Fokus auf aktuellen Testergebnissen für den Endverbraucher.','',_binary '\0','DEU','Ratgeber - Test',NULL,NULL,4,NULL,NULL,'SH019654750000'),('EP031685700010','Peter and Katy are taking their frustrations out on each other.','',_binary '\0','GBR','Home',NULL,NULL,4,NULL,NULL,'SH031685700000'),('EP022835500038','Tashi tells Jack about the annual dancing competition, but the trouble is that Jack can\'t dance.','Tashi & the Dancing Shoes',_binary '','GBR','Tashi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12204848_e_h3_aa.jpg',4,NULL,NULL,'SH022835500000'),('EP022835500037','Tashi and Jack have been invited to CanDu\'s birthday party and acquire an old rug from Second Uncle.','Tashi & the Magic Carpet',_binary '','GBR','Tashi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12204847_e_h3_aa.jpg',4,NULL,NULL,'SH022835500000'),('EP019162480086','Diesmal treten Sven Plöger und Christa Stipp gegen Team Deutschland an.','Folge 162',_binary '','DEU','Quizduell',NULL,NULL,4,NULL,NULL,'SH019162480000'),('EP027579730012','Lucky erlebt ihren ersten Campingausflug und begibt sich auf eine abenteuerliche Schatzsuche.','Die rätselhafte Karte',_binary '','DEU','Spirit: wild und frei',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14121568_e_h3_aa.jpg',4,NULL,NULL,'SH027579730000'),('EP022835500039','The only way to stop Lily\'s goons from smashing down the fort is to build their very own Golem.','Tashi & the Golem',_binary '','GBR','Tashi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12204850_e_h3_aa.jpg',4,NULL,NULL,'SH022835500000'),('EP022835500036','Upon exploring the bamboo forest with Tashi and Jack, Lotus Blossom gets bitten by a bamboo snake.','Tashi Gets Bamboozled',_binary '','GBR','Tashi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12204845_e_h3_aa.jpg',4,NULL,NULL,'SH022835500000'),('EP019396742930','Die Nachrichtensendung bereitet täglich das aktuelle Tagesgeschehen auf.','vom 27.02.2020, 19:20 Uhr',_binary '','DEU','Arte Journal',NULL,NULL,4,NULL,NULL,'SH019396740000'),('EP021114690002','Scottish chef Tony Singh travels to India to trace his family roots, beginning in Amritsar.','Tony Singh\'s India',_binary '','GBR','A Cook Abroad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11454421_e_h3_aa.jpg',4,NULL,NULL,'SH021114690000'),('EP021736140003','A beautifully filmed portrait of the making of a simple glass jug.','Glass',_binary '','GBR','Handmade',NULL,NULL,4,NULL,NULL,'SH021736140000'),('EP013066540132','Ina reveals her bread secrets with honey white bread, plus tips from master baker Amy Scherber.','Flour Power',_binary '','GBR','Barefoot Contessa',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8696385_e_h3_ac.jpg',4,NULL,NULL,'SH013066540000'),('EP013066540134','Classic bolognese gets an easy makeover, followed by a Tuscan classic of roasted sausage and grapes.','Buon Appetito',_binary '','GBR','Barefoot Contessa',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8696876_e_h3_aa.jpg',4,NULL,NULL,'SH013066540000'),('EP012906520053','The Angels pose as stunt women when a crossbow-wielding attacker descends upon a movie remake set.','Stuntwomen Angels',_binary '','GBR','Charlie\'s Angels',NULL,NULL,4,NULL,NULL,'SH012906520000'),('EP027080810010','Marty is good at being Burnatron\'s sidekick, so good in fact that he alienates his friend Burnie.','Moonlighting Marty',_binary '','GBR','ToonMarty',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14160826_e_h3_aa.jpg',4,NULL,NULL,'SH027080810000'),('EP012906520050','Foul play is suspected after both the choreographer and the star of a Vegas-bound show disappear.','Chorus Line Angels',_binary '','GBR','Charlie\'s Angels',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052394_e_h3_aa.jpg',4,NULL,NULL,'SH012906520000'),('EP019568770004','Diesmal sollen die Jungs für Anke einen schnittigen Oldtimer bis 8.000 Euro finden.','Ein Oldtimer für Anke',_binary '','DEU','Die PS Profis - Mehr Power aus dem Pott',NULL,NULL,4,NULL,NULL,'SH019568770000'),('EP012906520051','A stakeout to nab a white-collar thief ends in tragedy when Kelly is shot in the head.','Let Our Angel Live',_binary '','GBR','Charlie\'s Angels',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1052399_e_h3_aa.jpg',4,NULL,NULL,'SH012906520000'),('EP012906520052','The Angels try to find the culprit behind several attempts on the life of a body builder.','Mr. Galaxy',_binary '','GBR','Charlie\'s Angels',NULL,NULL,4,NULL,NULL,'SH012906520000'),('EP033419250007','Featuring the lesser-known areas of Forest Hill, Hither Green, and Cubitt Town.','',_binary '\0','GBR','London Districts',NULL,NULL,4,NULL,NULL,'SH033419250000'),('EP020848860004','As seasons change in McCarthy, the town is haunted by its darkest day.','The Thaw',_binary '','GBR','Edge of Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11125027_e_h3_aa.jpg',4,NULL,NULL,'SH020848860000'),('EP019451610594','Die Samen der sibirischen Zirbelkiefer gelten als uraltes Heilmittel der einheimischen Volksmedizin.','Die Zedernuss, die Königin der Taiga',_binary '','DEU','360° - Geo Reportage',NULL,NULL,4,NULL,NULL,'SH019451610000'),('EP020848860003','The locals can finally reach the outside world. Jeremy walks a bull calf home through bear country.','The Road',_binary '','GBR','Edge of Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11146593_e_h3_aa.jpg',4,NULL,NULL,'SH020848860000'),('EP019568770009','Kai ist ein gestandener Mann und will sich seinen automobilen Traum erfüllen.','SUV-Power für einen gestandenen Mann',_binary '','DEU','Die PS Profis - Mehr Power aus dem Pott',NULL,NULL,4,NULL,NULL,'SH019568770000'),('EP019022550033','James gets behind the wheel of a Ferrari California whose owner wants £100,000.','',_binary '\0','GBR','Posh Pawn',NULL,NULL,4,NULL,NULL,'SH019022550000'),('EP020303920036','Mit Beginn der Saison fängt auch das Rennen VP Express und Polar Industries wieder an.','Zurück auf die Eisstraße',_binary '','DEU','Ice Road Truckers - Gefahr auf dem Eis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10834022_e_h3_aa.jpg',4,NULL,NULL,'SH020303920000'),('EP016157680030','Follows members of the Highway Patrol on duty.','',_binary '\0','GBR','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11437991_e_h3_aa.jpg',4,NULL,NULL,'SH016157680000'),('EP019577750150','Zwischen Plankton und Mr. Krabs bricht ein Fettgericht-Wettstreit aus. Sponge bangt um seinen Job.','Schmierige Schlacht; Ein Schwamm will nach oben',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7913844_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP016157680031','Follows members of the Highway Patrol on duty.','',_binary '\0','GBR','Highway Cops',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11437995_e_h3_aa.jpg',4,NULL,NULL,'SH016157680000'),('EP019022550034','A Pilates instructor hopes her designer handbag collection will fund a trip of a lifetime.','',_binary '\0','GBR','Posh Pawn',NULL,NULL,4,NULL,NULL,'SH019022550000'),('EP030162510545','Die Moderatoren präsentieren die schönen Bilder und Basteleien, die die Zuschauer geschickt haben.','Ratet wo ich war: Bäckerei',_binary '','DEU','Baumhaus',NULL,NULL,4,NULL,NULL,'SH030162510000'),('EP030162510544','Die Moderatoren präsentieren die schönen Bilder und Basteleien, die die Zuschauer geschickt haben.','Adé Karneval',_binary '','DEU','Baumhaus',NULL,NULL,4,NULL,NULL,'SH030162510000'),('EP019022550039','James is armed in an army tank that a military vehicle enthusiast hopes to sell for £30,000.','',_binary '\0','GBR','Posh Pawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14063913_e_h3_aa.jpg',4,NULL,NULL,'SH019022550000'),('EP015401980530','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','ZEN-Meditation',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP019577750156','SpongeBob und Patrick bauen Sandburgen um die Wette. Gary braucht ein neues Schneckenhaus.','Sandburgen im Sand; Gary allein ohne Haus',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3572183_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP003337730579','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Neighbours',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP028661210006','Melissa hid her huge lipoma for years, and Tyler\'s fear of cancer stopped his lumps being diagnosed.','The Lipoma Whisperer',_binary '','GBR','Dr. Pimple Popper',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15640864_e_h3_aa.jpg',4,NULL,NULL,'SH028661210000'),('EP014051470019','Debbie and Carmel team up to sell dresses to sister brides. Will both girls find their dream gowns?','Two for One',_binary '','GBR','Say Yes to the Dress',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3568387_e_h3_aa.jpg',4,NULL,NULL,'SH014051470000'),('EP019022550040','High-end pawnbroker James heads to Marbella to appraise a 75-foot yacht worth £250,000.','',_binary '\0','GBR','Posh Pawn',NULL,NULL,4,NULL,NULL,'SH019022550000'),('EP014051470014','Leah is assigned to consultant Dianne, who is challenged by her opinionated maid-of-honour.','Clicking With Brides',_binary '','GBR','Say Yes to the Dress',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3557998_e_h3_aa.jpg',4,NULL,NULL,'SH014051470000'),('EP019979900025','Das Team versucht einen Brief, den Bill Clinton im College-Alter geschrieben hat, zu erwerben.','Brief von Bill',_binary '','DEU','Cajun Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9354909_e_h3_aa.jpg',4,NULL,NULL,'SH019979900000'),('EP019577750164','Thaddäus liest aus SpongeBobs Tagebuch vor. SpongeBob scheitert wieder bei der Fahrprüfung.','Kleines geheimes Buch; Denk nur an die Straße',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9573656_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP022752910022','Absurde und komische Geschichten hinter historischen Ereignissen werden gezeigt.','Folge 20',_binary '','DEU','Sketch History',NULL,NULL,4,NULL,NULL,'SH022752910000'),('EP016446362600','With sessions by Ultravox, Trials Of Cato, The Lucid Dream, and The Bert Jansch Conundrum.','Ultravox, Trials Of Cato, The Lucid Dream, and The Bert Jansch Conundrum',_binary '','GBR','6 Music Live Hour',NULL,NULL,4,NULL,NULL,'SH016446360000'),('EP019138540902','Angelos Dad bringt ein Smart-Home-Gerät mit nach Hause, das so ziemlich alles erledigen kann.','Electra; Ziemlich allerbeste Freunde',_binary '','DEU','Angelo!',NULL,NULL,4,NULL,NULL,'SH019138540000'),('EP019138540901','Angelo und seine Freunde träumen davon, mit einem eigenen Comic reich und berühmt zu werden.','Fausthandschuhe; Das Gratisessen',_binary '','DEU','Angelo!',NULL,NULL,4,NULL,NULL,'SH019138540000'),('EP019979900022','Stammkunde Joker bringt den DeRamus-Brüdern einen afrikanischen Fruchtbarkeitsstuhl vorbei.','Der Fruchtbarkeitsstuhl',_binary '','DEU','Cajun Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9305367_e_h3_ab.jpg',4,NULL,NULL,'SH019979900000'),('EP019979900023','Die DeRamus-Brüder sind begeistert, als sie ein superschnelles Renn-Go-Kart entdecken.','Königlicher Besuch',_binary '','DEU','Cajun Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9305355_e_h3_aa.jpg',4,NULL,NULL,'SH019979900000'),('EP019979900024','Die DeRamus-Brüder begutachten einen Jeep der US-Armee aus den 1950er Jahren.','Gut Gewickelt',_binary '','DEU','Cajun Pawn Stars',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9354908_e_h3_aa.jpg',4,NULL,NULL,'SH019979900000'),('EP019468801589','Das Magazin informiert die Zuschauer etwa in Sachen Politik, Kultur und Alltagsleben.','',_binary '\0','DEU','MDR Thüringen Journal',NULL,NULL,4,NULL,NULL,'SH019468800000'),('EP028233180028','It\'s the day of the Biggleton teddy bears\' picnic. Evie makes a poster about the big event.','Teddy Bears\' Picnic',_binary '','GBR','Biggleton',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16243139_e_h3_aa.jpg',4,NULL,NULL,'SH028233180000'),('EP030382920045','ChiChi wants to build a tower from toy blocks, but his friends keep asking for the blocks.','Tower',_binary '','GBR','Baby Riki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15922295_e_h3_aa.jpg',4,NULL,NULL,'SH030382920000'),('EP019468801588','Das Magazin informiert die Zuschauer etwa in Sachen Politik, Kultur und Alltagsleben.','',_binary '\0','DEU','MDR Thüringen Journal',NULL,NULL,4,NULL,NULL,'SH019468800000'),('EP019694470258','Mitmachsendung von Vorschülern für Vorschüler.','Wir drucken mit Gelantine',_binary '','DEU','ENE MENE BU - und dran bist du',NULL,NULL,4,NULL,NULL,'SH019694470000'),('EP019694470259','Mitmachsendung von Vorschülern für Vorschüler.','Luaia webt',_binary '','DEU','ENE MENE BU - und dran bist du',NULL,NULL,4,NULL,NULL,'SH019694470000'),('EP028233180027','There\'s a new cafe in Biggleton and Cafe Owner Ria wants to make sure the opening goes to plan.','The Grand Opening',_binary '','GBR','Biggleton',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16243138_e_h3_aa.jpg',4,NULL,NULL,'SH028233180000'),('EP019559820096','Ein Recycling-Berater wird tot aus einem Abfallschacht geborgen.','Aus Liebe zur Umwelt',_binary '','DEU','Castle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7927768_e_h3_ab.jpg',4,NULL,NULL,'SH019559820000'),('EP019559820095','Der Mord an einem Bezirksanwalt führt Castle und Beckett in die Welt von Escort-Diensten.','Käufliche Liebe',_binary '','DEU','Castle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7898234_e_h3_ab.jpg',4,NULL,NULL,'SH019559820000'),('EP013883270194','Highlights of the latest round of the Elite Ice Hockey League, with analysis from Aaron Murphy.','Highlights',_binary '','GBR','Elite League Ice Hockey',NULL,NULL,4,NULL,NULL,'SH013883270000'),('EP019559820093','Eine vielversprechende Rocksängerin wird Opfer eines grausigen Mordes.','Berühmte letzte Worte',_binary '','DEU','Castle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7897159_e_h3_ab.jpg',4,NULL,NULL,'SH019559820000'),('EP025542980164','Grizzy findet eine Flasche mit Liebestrank, der ihn unwiderstehlich machen soll.','Unwiderstehlicher Bär',_binary '','DEU','Grizzy und die Lemminge',NULL,NULL,4,NULL,NULL,'SH025542980000'),('EP019559820097','Ein bekannter Galerist wird in seiner Galerie erschossen, doch die etwas stimmt an dem Tatort nicht.','Die fünfte Kugel',_binary '','DEU','Castle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7932176_e_h3_ab.jpg',4,NULL,NULL,'SH019559820000'),('EP028457600021','The Spy School discover that one of Goldfist\'s henchmen has assumed the identity of an MP.','Operation: Law and Disorder',_binary '','GBR','Spy School',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16371003_e_h3_aa.jpg',4,NULL,NULL,'SH028457600000'),('EP028457600022','With the hight cost of living in the capital, Goldfist tries to make London less appealing.','Operation: Capital Catastrophe',_binary '','GBR','Spy School',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16403643_e_h3_aa.jpg',4,NULL,NULL,'SH028457600000'),('EP017909440087','Steve and Sylvia are convinced enthusiasm and blind ambition is enough to build a property.','',_binary '\0','GBR','Building the Dream',NULL,NULL,4,NULL,NULL,'SH017909440000'),('EP033419250002','Featuring the London districts of Woolwich, Plumstead, and Deptford.','',_binary '\0','GBR','London Districts',NULL,NULL,4,NULL,NULL,'SH033419250000'),('EP033561270002','Ludwig hat sich aus dem Dienst zurückgezogen, bis er von seinem alten CIA-Kollegen kontaktiert wird.','Folge 1',_binary '','DEU','West of Liberty',NULL,NULL,4,NULL,NULL,'SH033561270000'),('EP013005240022','A Rolls-Royce with a corpse in the trunk is found the same day a woman kills her husband.','Kojak\'s Days',_binary '','GBR','Kojak',NULL,NULL,4,NULL,NULL,'SH013005240000'),('EP013005240024','The corpse in the Rolls-Royce is identified, as Kojak searches for the suicidal murderess.','Kojak\'s Days',_binary '','GBR','Kojak',NULL,NULL,4,NULL,NULL,'SH013005240000'),('EP030875280026','Mrs Juniper decides to give the Wobbly Coffee Pot Cafe a makeover and Mack and Sandy help.','Cafe Juniper',_binary '','GBR','Molly and Mack',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17538247_e_h3_aa.jpg',4,NULL,NULL,'SH030875280000'),('EP012682880033','The Tombliboos are practising their music so loudly it can be heard all over the garden.','Too Loud Tombliboos - Nice and Quiet',_binary '','GBR','In the Night Garden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3429179_e_h3_aa.jpg',4,NULL,NULL,'SH012682880000'),('EP012981001929','Luke Evans, the actor and singer, chooses his Tracks of My Years with songs from Jennifer Rush.','Luke Evans selects the Tracks of My Years',_binary '','GBR','Ken Bruce',NULL,NULL,4,NULL,NULL,'SH012981000000'),('EP012682880031','Upsy Daisy is kissing everything in the garden. She kisses a tree, a flower and Igglepiggle.','The Ninky Nonk Wants a Kiss',_binary '','GBR','In the Night Garden',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3429173_e_h3_aa.jpg',4,NULL,NULL,'SH012682880000'),('EP016460840124','In der Dokumentarreihe wirft Terra X einen Blick unter die Oberfläche Deutschlands.','Deutschlands Supergrabungen',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10994515_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP030875280025','Molly and Mack decide that James needs some time off, as he always works so hard.','Dad\'s Day Off',_binary '','GBR','Molly and Mack',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17538245_e_h3_aa.jpg',4,NULL,NULL,'SH030875280000'),('EP012981001927','Luke Evans, the actor and singer, selects his favourite songs in the Tracks of My Years.','Luke Evans and PopMaster',_binary '','GBR','Ken Bruce',NULL,NULL,4,NULL,NULL,'SH012981000000'),('EP016460840125','In keinem anderen europäischen Land wird so viel gebuddelt und gegraben wie in Deutschland.','Deutschlands Supergrabungen',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10994520_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP019577750181','SpongeBobs Milchshake-Lizenz ist abgelaufen und er muss zur Milchshake-Schule, um sie zu erneuern.','Lizenz zum Mixen; Thaddi Baby',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9457277_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP030218130226','Unbedachte Jugendliche inszenieren einen Zombie-Flashmob. Schließlich greift die Polizei ein.','Zombie AG',_binary '','DEU','Klinik am Südring - Die Familienhelfer',NULL,NULL,4,NULL,NULL,'SH030218130000'),('EP032878430003','Zak and Alex face a four-day mission to deliver a pair of classic steam locomotives.','Mega Freight Train',_binary '','GBR','Train Truckers',NULL,NULL,4,NULL,NULL,'SH032878430000'),('EP012692730163','Jessica learns that not all the snakes in a California zoo are in cages.','A Nest of Vipers',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157083_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP012692730164','Jessica discovers a letter that leads to disgrace and murder.','To Kill a Legend',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157085_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP012692730165','The brother of a candidate for U.S. Senate in Hawaii disappears; with Ken Howard; Nina Foch.','Death in Hawaii',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157086_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP019424280104','Katja ist seit einem Jahr mit Kerstin zusammen und lebt mit ihr in einer Patchworkfamilie.','Katja und Manuela',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP019424280105','Die 25-jährige Daniela hat einen lieben Mann, zwei Kinder und führt ein glückliches Leben.','Daniela und Giovanna',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP020072230020','Die BR-alpha-Reihe schaut in jeder Folge für 15 Minuten hinter die Kulissen der Volksmusik-Szene.','Zwirbeldirn',_binary '','DEU','bäckstage Volksmusik',NULL,NULL,4,NULL,NULL,'SH020072230000'),('EP019424280106','Angelika und Markus leben auf 100 Quadratmetern zusammen mit ihren acht Kindern.','Sonya und Angelika',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP015402790222','Themen: Wilke-Wurst-Skandal - Warum die tödlichen Keime so lange unentdeckt blieben Einmal Weltspitze und zurück - 150 Jahre Deutsche Bank und Commerzbank Perfide Finanz-Masche - Wie Anwälte mit Insolvenzen Geschäfte machen ürne.','Folge 44',_binary '','DEU','Plusminus',NULL,NULL,4,NULL,NULL,'SH015402790000'),('EP030875280019','Molly examines her shelf of special things at the back of Mack\'s stall. She chooses the torch.','The Sleepover',_binary '','GBR','Molly and Mack',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16257282_e_h3_aa.jpg',4,NULL,NULL,'SH030875280000'),('EP019424280102','Anja sitzt am liebsten zuhause auf ihrem Sofa, während ihr Freund Sven sehr unternehmungslustig ist.','Anja und Jennifer',_binary '','DEU','Frauentausch',NULL,NULL,4,NULL,NULL,'SH019424280000'),('EP031923850020','Joanna has a long-term health condition and struggles to pay for her prescriptions.','Joanna: Can\'t Afford My Medication',_binary '','GBR','My Name Is..',NULL,NULL,4,NULL,NULL,'SH031923850000'),('EP015402790223','Die Sendung vermittelt Hintergründe, deckt Missstände auf und bringt konkrete Verbrauchertipps.','Folge 46',_binary '','DEU','Plusminus',NULL,NULL,4,NULL,NULL,'SH015402790000'),('EP032878430004','Heavy haulage experts Ian Bagladi and Jamie Turnbull need to move a 70-tonne locomotive.','Railway Mega Machine',_binary '','GBR','Train Truckers',NULL,NULL,4,NULL,NULL,'SH032878430000'),('EP030875280018','Molly examines her shelf of special things at the back of Mack\'s stall. She chooses the pencil.','Mrs Juniper\'s Choir',_binary '','GBR','Molly and Mack',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16257279_e_h3_aa.jpg',4,NULL,NULL,'SH030875280000'),('EP029820540045','Wie sicher sind unsere Renten in Deutschland? Ist das System noch haltbar oder müssen wir neue Wege gehen, um die heute Jüngeren vor Altersarmut zu bewahren? Zusammen mit Hubertus Bardt, Geschäftsführer des Institutes der Deutschen Wirtschaft und Horst Vöge, stellvertretender Vorsitzender des Sozialverbandes VdK, versucht Hans-Werner Fittkau, diese Fragen zu beantworten.','Zukunft der Rente',_binary '','DEU','phoenix plus',NULL,NULL,4,NULL,NULL,'SH029820540000'),('EP017428590215','Walross Neseyka hat nie gelernt, wie sie den Fisch mir ihrem Maul aufschürfen muss.','Neseyka soll lernen, wie ein Walross zu fressen',_binary '','DEU','Leopard, Seebär & Co.',NULL,NULL,4,NULL,NULL,'SH017428590000'),('EP017428590212','Leitstute Yassi drängt sich ständig zwischen die Zebramutter Vicky und ihr Fohlen Jule.','Streit um ein Zebrafohlen',_binary '','DEU','Leopard, Seebär & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12143342_e_h3_aa.jpg',4,NULL,NULL,'SH017428590000'),('EP019374111392','Die Moderatoren berichten über aktuelle Nachrichten und interessante Ereignisse.','',_binary '\0','DEU','Newstime',NULL,NULL,4,NULL,NULL,'SH019374110000'),('EP017598500088','Jonathan helps a sidewalk Santa jailed for protesting a store\'s promotion of toy weapons.','With Love, the Claus',_binary '','GBR','Highway to Heaven',NULL,NULL,4,NULL,NULL,'SH017598500000'),('EP017598500089','Four orphaned brothers must defy a court order placing them in separate foster homes.','A Mother\'s Love',_binary '','GBR','Highway to Heaven',NULL,NULL,4,NULL,NULL,'SH017598500000'),('EP019374111391','Die Moderatoren berichten über aktuelle Nachrichten und interessante Ereignisse.','',_binary '\0','DEU','Newstime',NULL,NULL,4,NULL,NULL,'SH019374110000'),('EP021219770003','Dr Janina Ramirez investigates the dissolution of monasteries under Henry VIII and Thomas Cromwell.','',_binary '\0','GBR','Saints and Sinners: Britain\'s Millennium of Monasteries',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11529281_e_h3_aa.jpg',4,NULL,NULL,'SH021219770000'),('EP028840320021','Die erste Aufgabe bietet große Vielfalt und jede Menge Lokalkolorit: Unter dem Motto Bei mir Zuhaus sollen die Promi-Hobbybäcker ein typisches Gericht aus ihrer Heimat kreieren. In der Technischen Prüfung entführt die Jury die.','Folge 3',_binary '','DEU','Das große Promibacken',NULL,NULL,4,NULL,NULL,'SH028840320000'),('EP016460840105','Am Limes entstanden aus Militärlagern blühende Siedlungen, geschützt von der gewaltigen Grenzanlage.','Schliemanns Erben: Der Limes - Gefahr an Roms Grenze',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10947740_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP016460840106','Eine schwer befestigte Grenzanlage zieht sich vor beinahe 2000 Jahren quer durch Europa - der Limes.','Schliemanns Erben: Der Limes - Grenzwall gegen die Barbaren',_binary '','DEU','Terra X',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10947800_e_h3_aa.jpg',4,NULL,NULL,'SH016460840000'),('EP003337730580','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Neighbours',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP025207040125','Grizzy dreams that he\'s a valiant knight. Grizzy stands in front of the pantry, desperate.','A Midsummer Bear\'s Dream; Manufacturing Secret; Bling Bling Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14994503_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP003337730583','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Neighbours',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP025703520003','Sam and Henry are trying to make a show about birds, but Sam keeps being distracted.','Whistling',_binary '','GBR','Sam Simmons Is Not a People Person',NULL,NULL,4,NULL,NULL,'SH025703520000'),('EP019560062099','Wo in Deutschland gibt es das leckerste Gericht vom Rind? Egal ob Steak, Burger, Wurst oder Braten - Achim Müller reist dafür von der Ostsee bis nach München. Dabei achtet der Experte bei den Gerichten besonders auf Regionalität und Nachhaltigkeit.','Thema u. a.: Achim Müller auf der Suche nach dem Besten vom Rind',_binary '','DEU','Abenteuer Leben täglich',NULL,NULL,4,NULL,NULL,'SH019560060000'),('EP029035350292','Die trinkfeste Bauleiterin Nicole trifft auf den ungern kochenden Speditionsleiter Daniel.','Folge 248',_binary '','DEU','First Dates - Ein Tisch für zwei',NULL,NULL,4,NULL,NULL,'SH029035350000'),('EP020907320022','Wendy kann im letzten Moment verhindern, dass Joanna sich über den Tod ihrer Töchter umbringt.','Der Untergang des Hauses Beauchamp',_binary '','DEU','Witches of East End',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10989573_e_h3_ab.jpg',4,NULL,NULL,'SH020907320000'),('EP029022100019','Frank and Lu investigate a death threat at an exclusive tennis club which hides a toxic threat.','The Envious Court',_binary '','GBR','Shakespeare and Hathaway: Private Investigators',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16612194_e_h3_aa.jpg',4,NULL,NULL,'SH029022100000'),('EP029022100018','When an amnesiac wanders into their lives, Frank and Lu must work out what happened to him.','In My Memory Lock\'d',_binary '','GBR','Shakespeare and Hathaway: Private Investigators',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16612193_e_h3_aa.jpg',4,NULL,NULL,'SH029022100000'),('EP019451610557','Hoch in den peruanischen Anden leben die Vikunjas, Verwandte der Lamas.','Peru, das Goldhaar der Vikunjas',_binary '','DEU','360° - Geo Reportage',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16240135_e_h3_aa.jpg',4,NULL,NULL,'SH019451610000'),('EP029782290033','Cricket lässt Gloria mit der Arbeit im Café alleine, denn er will gerne die Parade sehen.','Der Paradetag',_binary '','DEU','Big City Greens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15647599_e_h3_aa.jpg',4,NULL,NULL,'SH029782290000'),('EP020072230019','Die BR-alpha-Reihe schaut in jeder Folge für 15 Minuten hinter die Kulissen der Volksmusik-Szene.','Unterbiberger Hofmusik',_binary '','DEU','bäckstage Volksmusik',NULL,NULL,4,NULL,NULL,'SH020072230000'),('EP029782290031','Bill nutzt einen Ausflug zum Baumarkt, um Remy eine Lektion in Eigenständigkeit zu erteilen.','Die Heimwerker',_binary '','DEU','Big City Greens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15711344_e_h3_aa.jpg',4,NULL,NULL,'SH029782290000'),('EP020072230018','Die BR-alpha-Reihe schaut in jeder Folge für 15 Minuten hinter die Kulissen der Volksmusik-Szene.','3 Gesang',_binary '','DEU','bäckstage Volksmusik',NULL,NULL,4,NULL,NULL,'SH020072230000'),('EP015401980514','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','aktiv & beweglich',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP015401980513','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','Aerobic, Bewegung, Tanz',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP020072230017','Die Gruppe Fei Scho sucht das Befreiende im Musikmachen, unabhängig von Stilen und Traditionen.','FeiScho',_binary '','DEU','bäckstage Volksmusik',NULL,NULL,4,NULL,NULL,'SH020072230000'),('EP015401980517','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','Fit - auch ohne Sport',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP030218130228','Die Familienhelfer sind alarmiert. Sie wollen aufklären, was einen kleinen Jungen ins All zieht.','Ilias und die Außerirdischen',_binary '','DEU','Klinik am Südring - Die Familienhelfer',NULL,NULL,4,NULL,NULL,'SH030218130000'),('EP020333821279','Die Sendung gibt Hintergrundinformationen zu aktuellen Themen und zeigt Reportagen.','',_binary '\0','DEU','Landesschau Baden-Württemberg',NULL,NULL,4,NULL,NULL,'SH020333820000'),('EP015401980516','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','Emotional Moves',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP020333821278','Die Sendung gibt Hintergrundinformationen zu aktuellen Themen und zeigt Reportagen.','',_binary '\0','DEU','Landesschau Baden-Württemberg',NULL,NULL,4,NULL,NULL,'SH020333820000'),('EP015401980515','In unserem Programm finden Sie Übungen, die Sie jederzeit in Ihren Alltag einfügen können.','Aktiv in den Tag',_binary '','DEU','Tele-Gym',NULL,NULL,4,NULL,NULL,'SH015401980000'),('EP029216990027','After getting pummelled by exploded moon debris, Hanazuki\'s treasure trees have been destroyed.','The Transplant',_binary '','GBR','Hanazuki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15291944_e_h3_aa.jpg',4,NULL,NULL,'SH029216990000'),('EP018310520018','James Wong is convinced everyone should be growing lilies in their gardens.','Lilies and Woodland Gardens',_binary '','GBR','Great British Garden Revival',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11404392_e_h3_aa.jpg',4,NULL,NULL,'SH018310520000'),('EP018310520019','Joe Swift campaigns for the return of the bog garden and visits a Victorian one in Warwickshire.','Bog Gardens and Soft Fruit',_binary '','GBR','Great British Garden Revival',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11404423_e_h3_aa.jpg',4,NULL,NULL,'SH018310520000'),('EP019568770080','Mirko sucht ein Auto mit luxuriöser Ausstattung und jeder Menge PS für höchstens 15.000 Euro.','Ein dicker Luxusschlitten',_binary '','DEU','Die PS Profis - Mehr Power aus dem Pott',NULL,NULL,4,NULL,NULL,'SH019568770000'),('EP017030432000','Olivia gibt vor, dass ihre Verbindung zu Tim wahre Liebe sei, um Lukasz eifersüchtig zu machen.','Ohne dich geht es nicht',_binary '','DEU','Berlin - Tag & Nacht',NULL,NULL,4,NULL,NULL,'SH017030430000'),('EP029227230001','Eduardo soll Joana Soares verteidigen, die ihren Mann ermordet haben soll. Alles spricht gegen sie.','Der Tote in Der Brandung',_binary '','DEU','Der Lissabon-Krimi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15282413_e_h3_aa.jpg',4,NULL,NULL,'SH029227230000'),('EP021288230030','Die Vierlinge kommen im Sommercamp auf die grandiose Idee, sich eine neue Identität zuzulegen.','Das Sommercamp',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11810411_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP029216990025','Hanazuki and Sleepy Unicorn are miraculously saved by a new Moonflower named Maroshi.','Rescued!',_binary '','GBR','Hanazuki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15291936_e_h3_aa.jpg',4,NULL,NULL,'SH029216990000'),('EP015402070219','Erkrankt die Aorta, verläuft das oft unbemerkt. Doch die Folgen können lebensbedrohlich sein.','',_binary '\0','DEU','Hauptsache gesund',NULL,NULL,4,NULL,NULL,'SH015402070000'),('EP021288230024','Dawn tritt dem Schulorchester bei und versichert ihren Eltern, dass sie nicht überfordert sein wird.','Tausendsassa-Dawn!',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11810409_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP021288230023','Die Vierlinge finden heraus, dass sie höchst interessante Vorfahren haben.','Gesucht: Die Zuckerrüben-Gang',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11727722_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP021288230026','Die Vierlinge verwandeln die Garage ihrer Eltern in eine wahre Chill-Oase.','Kein Wenn, Und oder Aber',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11727730_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP014726381805','Petra möchte Nicks Verlegung in die Staaten verhindern und kämpft gegen ihre Gefühle für ihn an.','Folge 74',_binary '','DEU','Rote Rosen',NULL,NULL,4,NULL,NULL,'SH014726380000'),('EP014726381806','Petra akzeptiert die Trennung von Jonas und gesteht sich ihre ungebrochene Liebe zu Nick ein.','Folge 75',_binary '','DEU','Rote Rosen',NULL,NULL,4,NULL,NULL,'SH014726380000'),('EP019568770070','Die PS Profis sollen einen PS-starken, autogasbetriebenen SUV für maximal 30.000 Euro besorgen.','Ein fettes Sparschwein',_binary '','DEU','Die PS Profis - Mehr Power aus dem Pott',NULL,NULL,4,NULL,NULL,'SH019568770000'),('EP019001930087','Beni wird Opfer von Woozles Experiment. Woozle bastelt eine alte Erfindung um.','Ausgestorbene Riesen; Medizin',_binary '','DEU','Woozle Goozle',NULL,NULL,4,NULL,NULL,'SH019001930000'),('EP030320100048','Die Reihe beschäftigt sich mit relevanten Themen und Entscheidungen aus Politik und Wirtschaft.','Jungbrunnen Joghurt? Chinesen pilgern in ein bulgarisches Dorf',_binary '','DEU','DOK',NULL,NULL,4,NULL,NULL,'SH030320100000'),('EP022621970180','Eine Gruppe fremder Menschen lebt in einem Container zusammen und wird dabei von Kameras beobachtet.','Folge 8',_binary '','DEU','Big Brother',NULL,NULL,4,NULL,NULL,'SH022621970000'),('EP019001930089','Woozle baut einen `Müllbeamer 3001\'. Beni und Woozle kämpfen um den Titel des Studiokönigs.','Müll und Recycking; Könige und Königinnen',_binary '','DEU','Woozle Goozle',NULL,NULL,4,NULL,NULL,'SH019001930000'),('EP018310520020','Diarmuid Gavin wants Britain\'s gardens to become havens for wildlife.','Wildlife Gardens and Peonies',_binary '','GBR','Great British Garden Revival',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11404457_e_h3_aa.jpg',4,NULL,NULL,'SH018310520000'),('EP034191820005','Eines Tages wird Thamina Issa erschlagen aufgefunden. Maloufs Sohn Bassam gerät unter Verdacht.','Sandgräfin',_binary '','DEU','Blutige Anfänger',NULL,NULL,4,NULL,NULL,'SH034191820000'),('EP034267490002','Mary Beard explores unusual bodies in Western Art which challenge conventions of beauty.','',_binary '\0','GBR','Mary Beard\'s Shock of the Nude',NULL,NULL,4,NULL,NULL,'SH034267490000'),('EP021288230022','Dawn erfindet eine Geschichte für einen Artikel auf der Schul-Website, der schnell die Runde macht.','Die Legende von Pigfoot',_binary '','DEU','Nicky, Ricky, Dicky & Dawn',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11810404_e_h3_aa.jpg',4,NULL,NULL,'SH021288230000'),('EP015402070221','Naturheilmediziner Prof. Andreas Michalsen ist zu Gast und erklärt, was das Fasten so gesund macht.','',_binary '\0','DEU','Hauptsache gesund',NULL,NULL,4,NULL,NULL,'SH015402070000'),('EP018485680558','Bei den Plumploris gibt es ein Sorgenkind. Uni bringt weniger auf die Waage als ihr Bruder.','Die Mundräuberin',_binary '','DEU','Elefant, Tiger & Co',NULL,NULL,4,NULL,NULL,'SH018485680000'),('EP018485680556','Bei den Bonobos herrscht eine strenge Ordnung. Im Känguru-Gehege werden Gemüse-Mobiles aufgehangen.','Der Wutbaum',_binary '','DEU','Elefant, Tiger & Co',NULL,NULL,4,NULL,NULL,'SH018485680000'),('EP012692730191','Jessica\'s investigation leads her into a world of smuggling and murder.','Amsterdam Kill',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157084_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP020254440016','Michael Friedman diskutiert und untersucht popkulturelle sowie gesellschaftskritische Themen.','Hate Speech',_binary '','DEU','Friedman schaut hin',NULL,NULL,4,NULL,NULL,'SH020254440000'),('EP029097970005','Heinrich Himmler with his strange beliefs, drove him to carry out the most shocking act of genocide.','Himmler',_binary '','GBR','True Evil: Making of a Nazi',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15212170_e_h3_aa.jpg',4,NULL,NULL,'SH029097970000'),('EP029097970004','Adolf Eichmann designed the system that would bring about the holocaust and terror to many.','Eichmann',_binary '','GBR','True Evil: Making of a Nazi',NULL,NULL,4,NULL,NULL,'SH029097970000'),('EP029097970002','Albert Seers, an architect whose desire to build grand buildings leads him to sell his soul.','Speer',_binary '','GBR','True Evil: Making of a Nazi',NULL,NULL,4,NULL,NULL,'SH029097970000'),('EP019562930180','Als die Ingalls am Heiligen Abend eingeschneit werden, erzählen sie von schönen Weihnachtsfesten.','Eine unvergessliche Weihnacht',_binary '','DEU','Unsere kleine Farm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1142953_e_h3_aa.jpg',4,NULL,NULL,'SH019562930000'),('EP020985130024','Nach den OPs steckt Ben Ahlbeck in einem depressiven Loch. Seine Kollegen wissen nicht weiter.','Schuld und Vergebung',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12083577_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP020985130023','Der Endoprothetiker Dr. Philipp Brentano operiert mit Dr. Moreau Bens komplizierten Trümmerbruch.','Auf Messers Schneide',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12079946_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP020985130021','Elly Winter ist neu im Team und bekommt gleich die Gelegenheit, ihr Können unter Beweis zu stellen.','Schritt für Schritt',_binary '','DEU','In aller Freundschaft - Die jungen Ärzte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11881513_e_h3_aa.jpg',4,NULL,NULL,'SH020985130000'),('EP017098660482','Ein 15-jähriges Mädchen möchte mit seinem 17-jährigen Freund ihr gemeinsames Kind großziehen.','Die Teeniemutter',_binary '','DEU','Verklag mich doch!',NULL,NULL,4,NULL,NULL,'SH017098660000'),('EP017098660481','Eine Familie wird aus ihrer Wohnung geworfen, weil der neue Eigentümer die Miete erhöhen will.','Eigenbedarf',_binary '','DEU','Verklag mich doch!',NULL,NULL,4,NULL,NULL,'SH017098660000'),('EP019679880008','Von bizarr bis unglaublich reicht auch diesmal das Spektrum tierischer Verhaltensweisen.','Folge 2',_binary '','DEU','Safari-Paparazzi',NULL,NULL,4,NULL,NULL,'SH019679880000'),('EP012603133288','A man is accused of accepting a pair of purebred dogs under false pretenses.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012602100148','House takes a special interest in an attractive nutritionist.','Resignation',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056262_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP012602100146','Foreman\'s diagnosis of a young underprivileged scam artist forces him to examine his own life.','House Training',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056260_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP012602100147','Wilson prepares a 14-year-old leukaemia patient for a bone-marrow transplant.','Family',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056261_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP017098660492','Anne Walter arbeitet in einem Fitnessstudio und entdeckt in der Dusche eine versteckte Kamera.','Tatort Fitnessstudio',_binary '','DEU','Verklag mich doch!',NULL,NULL,4,NULL,NULL,'SH017098660000'),('EP022947910191','Newt and Bubbles take a car trip, but soon discover that each has a very different idea of fun.','Road Trip',_binary '','GBR','Oddbods',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14708854_e_h3_aa.jpg',4,NULL,NULL,'SH022947910000'),('EP012857430257','Discover how cufflinks, blueberry turnovers, dashboards and earthenware pottery are made.','Cufflinks; Blueberry Turnovers',_binary '','GBR','How It\'s Made',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8866903_e_h3_ab.jpg',4,NULL,NULL,'SH012857430000'),('EP012857430256','Discover how rally cars, pork pies, floating fountains and artificial stone ornaments are made.','Rally Cars; Pork Pies',_binary '','GBR','How It\'s Made',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8895599_e_h3_ab.jpg',4,NULL,NULL,'SH012857430000'),('EP022947910197','Newt has an accident with some paint and soon finds herself misdiagnosed with an infectious illness.','Oddbreak',_binary '','GBR','Oddbods',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14740794_e_h3_aa.jpg',4,NULL,NULL,'SH022947910000'),('EP012664100206','Mark Sloan suspects his neighbour of killing his wife.','Deadly Mirage',_binary '','GBR','Diagnosis Murder',NULL,NULL,4,NULL,NULL,'SH012664100000'),('EP012692510094','A charge of negligence concerning the death of a patient results in the suspension of a nurse.','The Flight of the Nightingale',_binary '','GBR','Quincy, M.E.',NULL,NULL,4,NULL,NULL,'SH012692510000'),('EP012857430259','Top and bowler hats; solar water heaters; sticky buns; electrostatic speakers.','Top And Bowler Hats; Solar Water Heaters',_binary '','GBR','How It\'s Made',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8934980_e_h3_ab.jpg',4,NULL,NULL,'SH012857430000'),('EP019560090101','Bei einer Festnahme verliert Don seine Waffe, mit der kurz darauf zwei Dealer erschossen werden.','Es gibt keinen Zufall',_binary '','DEU','Numb3rs - Die Logik des Verbrechens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8032082_e_h3_ab.jpg',4,NULL,NULL,'SH019560090000'),('EP012857430258','Pharmaceutical blister packs; deli slicers; oysters; weather vanes.','Pharmaceutical Blister Packs; Deli Slicers',_binary '','GBR','How It\'s Made',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8921474_e_h3_ab.jpg',4,NULL,NULL,'SH012857430000'),('EP025691790239','Die Beamten für Biosicherheit habe es mit einer Touristin aus Indonesien zu tun.','Kakerlaken an Bord',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP025691790238','Bei der Untersuchung eines Pakets stoßen die Beamten auf eine große Menge Ephedrin.','Schmackhaftes aus Nepal',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP025691790237','Drogenschmuggel ist in Australien gang und gäbe, weshalb Schmugglern immer neue Wege einfallen.','Die benebelten Briten',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP025691790236','Ein Paar hat Gepäck für fünf Wochen dabei, obwohl sie nur fünf Tage Urlaub machen wollen.','Die Liebesperle',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP025691790235','Ein Mann versucht einzureisen, der weder ein Rückflugticket noch finanzielle Mittel hat.','Flitterwochen beim Grenzschutz',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP012588680089','Dara O Briain and the team are joined by Chris Addison, Greg Davies, Milton Jones and Seann Walsh.','',_binary '\0','GBR','Mock the Week',NULL,NULL,4,NULL,NULL,'SH012588680000'),('EP016398181361','Nachrichten aus den Bundesländern mit Themen aus der Politik, Wirtschaft und Gesellschaft.','',_binary '\0','DEU','heute - in deutschland',NULL,NULL,4,NULL,NULL,'SH016398180000'),('EP025691790234','Ein Mann muss sich eingestehen, dass ihn seine große Internetliebe jahrelang ausgenutzt hat.','Die Online-Liebe',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP016398181362','Nachrichten aus den Bundesländern mit Themen aus der Politik, Wirtschaft und Gesellschaft.','',_binary '\0','DEU','heute - in deutschland',NULL,NULL,4,NULL,NULL,'SH016398180000'),('EP025691790233','Großalarm bei den Beamten: Zwei vietnamesische Frauen versuchen, organisches Material einzuführen.','Zigarettenregen',_binary '','DEU','Border Patrol Australia',NULL,NULL,4,NULL,NULL,'SH025691790000'),('EP022063600009','Alex calls in an specialist after finding that he could be arrested if he tries to oust squatters.','',_binary '\0','GBR','Nightmare Tenants, Slum Landlords',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12692219_e_h3_aa.jpg',4,NULL,NULL,'SH022063600000'),('EP033333490009','Long before there were gas grills and charcoal, before rotisseries and planchas, there was fire.','Extreme Grilling',_binary '','GBR','Steven Raichlen\'s Project Fire',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15586271_e_h3_aa.jpg',4,NULL,NULL,'SH033333490000'),('EP027913340005','A 76-year-old man searches for the daughter he abandoned at a tragic time of grief.','',_binary '\0','GBR','Long Lost Family',NULL,NULL,4,NULL,NULL,'SH027913340000'),('EP015442761002','Dr. Dressler will als Investor in das Start-up einsteigen. Hans liegt im Krankenhaus.','Ein erfolgreicher Tag',_binary '','DEU','Lindenstraße',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13604811_e_h3_aa.jpg',4,NULL,NULL,'SH015442760000'),('EP015267980192','Gary and Kim Harrison can\'t wait to retire on the Caribbean island of St. Lucia.','St. Lucia',_binary '','GBR','A Place in the Sun: Winter Sun',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14845805_e_h3_aa.jpg',4,NULL,NULL,'SH015267980000'),('EP019711840017','In dieser Folge geht es um das wohl exklusivste Hotel auf hoher See - die Crystal Serenity.','Luxusliner Crystal Serenity',_binary '','DEU','Superschiffe',NULL,NULL,4,NULL,NULL,'SH019711840000'),('EP019711840018','In dieser Folge geht es um das Schwergewicht Cristóbal Colón, das 78.000 Tonnen auf die Wage bringt.','Hightech-Bagger Cristóbal Colón',_binary '','DEU','Superschiffe',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8132502_e_h3_aa.jpg',4,NULL,NULL,'SH019711840000'),('EP013065590279','Mike hopes to capitalise on 80s nostalgia by restoring an original 1982 Toyota Supra.','Toyota Supra',_binary '','GBR','Wheeler Dealers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14620845_e_h3_aa.jpg',4,NULL,NULL,'SH013065590000'),('EP019577750128','Patrick will die ganze Stadt aufzuräumen. Und: SpongeBob will Garys Besessenheit heilen.','Patrick-Man!; Ball oder Bob?',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9567915_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP028586800056','Die Welpen reisen nach Italien und haben einen alten Pyjama von Bob dabei, der Kunst sein soll.','Tierische Kunst',_binary '','DEU','Welpen Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15186736_e_h3_aa.jpg',4,NULL,NULL,'SH028586800000'),('EP012602100168','A documentary film crew follows House and his team, as they treat a teenager who had a heart attack.','Ugly',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056271_e_h3_ac.jpg',4,NULL,NULL,'SH012602100000'),('EP028586800055','Die Mopswelpen finden ein Hundespielzeug und machen sich sofort auf die Suche nach seinem Besitzer.','Spielkameraden',_binary '','DEU','Welpen Freunde',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15162748_e_h3_aa.jpg',4,NULL,NULL,'SH028586800000'),('EP012602100169','House encounters a magician whose heart failed during an act.','You Don\'t Want to Know',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056272_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP012692510089','Quincy is drawn into a complicated arson investigation.','Smoke Screen',_binary '','GBR','Quincy, M.E.',NULL,NULL,4,NULL,NULL,'SH012692510000'),('EP012602100167','The CIA recruits House to help an agent; the fellowship candidates question Foreman\'s judgement.','Whatever It Takes',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056270_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP012602100164','A 16-year-old chess prodigy offends the members of House\'s team.','The Jerk',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056263_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP028810230050','Poppy must figure out how to handle crime in Troll Village when Cooper steals a pie.','Funishment',_binary '','GBR','Trolls: The Beat Goes On!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16263864_e_h3_aa.jpg',4,NULL,NULL,'SH028810230000'),('EP028810230051','Poppy discovers that Branch and Bridget\'s birthdays are on the same day so decides to throw a party.','Two Party System',_binary '','GBR','Trolls: The Beat Goes On!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16263880_e_h3_aa.jpg',4,NULL,NULL,'SH028810230000'),('EP019733301114','Rosi nimmt überglücklich Fischers Heiratsantrag an, doch sie ist gespannt, wie das Umfeld reagiert.','Ruhe vor dem Sturm',_binary '','DEU','Dahoam is Dahoam',NULL,NULL,4,NULL,NULL,'SH019733300000'),('EP028810230052','Branch attempts to prove to the Snack Pack that he is fun.','Fun Branch',_binary '','GBR','Trolls: The Beat Goes On!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16263888_e_h3_aa.jpg',4,NULL,NULL,'SH028810230000'),('EP019733301115','Max und Bamberger hecken einen Plan aus, um Florian und Veronika zu einer Aussprache zu bringen.','Wenn Worte nichts nutzen...',_binary '','DEU','Dahoam is Dahoam',NULL,NULL,4,NULL,NULL,'SH019733300000'),('EP019733301116','Fischer wird von Schattenhofer angehalten, seine Beliebtheit in der Bevölkerung zu steigern.','Zu zweit in die Zukunft',_binary '','DEU','Dahoam is Dahoam',NULL,NULL,4,NULL,NULL,'SH019733300000'),('EP024622100042','The crews race to rescue a shark attack victim and 2 boys being swept far out to sea.','',_binary '\0','GBR','Saving Lives at Sea',NULL,NULL,4,NULL,NULL,'SH024622100000'),('EP033333490011','Health-conscious Southern California boasts some of the most vibrant grilling in North America.','So-Cal Grill',_binary '','GBR','Steven Raichlen\'s Project Fire',NULL,NULL,4,NULL,NULL,'SH033333490000'),('EP033333490010','The first tailgating party took place in 1869 at a Princeton-Rutgers football game.','Wrangler Tailgate',_binary '','GBR','Steven Raichlen\'s Project Fire',NULL,NULL,4,NULL,NULL,'SH033333490000'),('EP022063600011','A landlord discovers that his tenants have left him over £20,000 behind with his mortgage.','',_binary '\0','GBR','Nightmare Tenants, Slum Landlords',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12741478_e_h3_aa.jpg',4,NULL,NULL,'SH022063600000'),('EP027942170029','Jede Menge Stress, viel Arbeit und Tränen verbinden deutsche Auswanderer miteinander.','Erfolgreiche Auswanderer',_binary '','DEU','Big Stories',NULL,NULL,4,NULL,NULL,'SH027942170000'),('EP022063600010','A landlord\'s son has to deal with unruly tenants when his father passes away.','',_binary '\0','GBR','Nightmare Tenants, Slum Landlords',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12716897_e_h3_aa.jpg',4,NULL,NULL,'SH022063600000'),('EP023711990088','Alex\'s tiny fixer-upper was perfect as a bachelor pad, but then came Samantha and two rescue dogs.','Samantha & Alex',_binary '','GBR','Buying and Selling',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14541073_e_h3_aa.jpg',4,NULL,NULL,'SH023711990000'),('EP025495960007','Familie Adolphs aus Ruppichteroth will ein großes Gartenfest feiern, am liebsten mit kleinem Budget.','Feste feiern',_binary '','DEU','Viel für wenig - Clever kochen mit Björn Freitag',NULL,NULL,4,NULL,NULL,'SH025495960000'),('EP023711990089','With three growing boys, Samantha and Justin need more space and have tried selling their home.','Samantha & Justin',_binary '','GBR','Buying and Selling',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14493804_e_h3_aa.jpg',4,NULL,NULL,'SH023711990000'),('EP016397840617','Die Talkshow mit Markus Lanz bietet eine große Bandbreite an Themen und Gästen.','Folge 1359',_binary '','DEU','Markus Lanz',NULL,NULL,4,NULL,NULL,'SH016397840000'),('EP025495960006','Björn Freitag rettet Lebensmittel vor der Tonne. Familie Heine aus Leverkusen braucht seine Hilfe.','Schlau planen & sparen - Björn Freitag rettet Lebensmittel vor der Tonne!',_binary '','DEU','Viel für wenig - Clever kochen mit Björn Freitag',NULL,NULL,4,NULL,NULL,'SH025495960000'),('EP016397840616','Die Talkshow mit Markus Lanz bietet eine große Bandbreite an Themen und Gästen.','Folge 1358',_binary '','DEU','Markus Lanz',NULL,NULL,4,NULL,NULL,'SH016397840000'),('EP028810230049','Poppy faces her first royal review as Queen and sets out to ensure 100 happiness in Troll Village.','Royal Review',_binary '','GBR','Trolls: The Beat Goes On!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16263856_e_h3_aa.jpg',4,NULL,NULL,'SH028810230000'),('EP027080810001','When Marty plugs in an old waffle iron, he unleashes Waffle Man.','Awful Waffle',_binary '','GBR','ToonMarty',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14093823_e_h3_aa.jpg',4,NULL,NULL,'SH027080810000'),('EP019577750134','Patrick bekommt einen Job. Und: SpongeBob und Patrick übernachten im Spielzeugladen.','Der hutlose Patrick; Spielzeuggeschäft des Grauens',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3622861_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP012615270011','Simon becomes involved in a plot to overthrow a South American dictator.','The Reluctant Revolution',_binary '','GBR','The Saint',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1221332_e_h3_aa.jpg',4,NULL,NULL,'SH012615270000'),('EP012615270010','A Russian physicist defects to the West during a convention in Geneva.','The Russian Prisoner',_binary '','GBR','The Saint',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1221328_e_h3_aa.jpg',4,NULL,NULL,'SH012615270000'),('EP019370400059','Ted ist immer noch in seine Hautärztin Stella verliebt und versucht, sie zu einem Date zu überreden.','Zehn Sitzungen',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152446_e_h3_ac.jpg',4,NULL,NULL,'SH019370400000'),('EP012694170172','An exchange program makes Riker an officer on a Klingon ship, which later threatens the Enterprise.','A Matter of Honor',_binary '','GBR','Star Trek: The Next Generation',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204063_e_h3_ab.jpg',4,NULL,NULL,'SH012694170000'),('EP012602100170','House assigns the candidates to the case of an over-the-hill rock star.','Games',_binary '','GBR','House',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3056273_e_h3_ab.jpg',4,NULL,NULL,'SH012602100000'),('EP017065120090','Watch all the coverage of the latest episode of this season\'s Strongman Champions League.','Finland',_binary '','GBR','Champions League Strongest Man',NULL,NULL,4,NULL,NULL,'SH017065120000'),('EP015352281300','Victoria Derbyshire presents the BBC\'s daily news and current affairs programme.','',_binary '\0','GBR','Victoria Derbyshire',NULL,NULL,4,NULL,NULL,'SH015352280000'),('EP012993201098','Our intrepid adventurer meets a character called Duane, who freely admits to having \"gold fever\".','Gold Fever',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP012993201097','The author meets a character called Dave Mack, who agrees to let him tag along.','Gold Fever',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP029331620002','Landlords fall foul of two young tenants who are using their rental property as a film set.','',_binary '\0','GBR','Bad Tenants, Rogue Landlords',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15377179_e_h3_aa.jpg',4,NULL,NULL,'SH029331620000'),('EP034276860001','Weekly political chat and analysis with the Brexitcast team.','',_binary '\0','GBR','Newscast',NULL,NULL,4,NULL,NULL,'SH034276860000'),('EP012603133290','A young man blames a car\'s floor mat for his crash into a fire hydrant.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012993201099','The author heads off along the North Yuba River to try his hand at gold prospecting alone.','Gold Fever',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP034276860003','Adam Fleming, Laura Kuenssberg and friends discuss the week\'s biggest stories.','',_binary '\0','GBR','Newscast',NULL,NULL,4,NULL,NULL,'SH034276860000'),('EP019577941562','Nachrichtenmagazin über die Themen und Menschen aus Niedersachsen.','',_binary '\0','DEU','Hallo Niedersachsen',NULL,NULL,4,NULL,NULL,'SH019577940000'),('EP019577941561','Nachrichtenmagazin über die Themen und Menschen aus Niedersachsen.','',_binary '\0','DEU','Hallo Niedersachsen',NULL,NULL,4,NULL,NULL,'SH019577940000'),('EP021319170030','This time, beauty blogger Tia Ward shows how to create this stunning Rihanna inspired look.','Tia Ward - Rihanna Red Carpet Look',_binary '','GBR','Be Beautiful',NULL,NULL,4,NULL,NULL,'SH021319170000'),('EP019577941560','Nachrichtenmagazin über die Themen und Menschen aus Niedersachsen.','',_binary '\0','DEU','Hallo Niedersachsen',NULL,NULL,4,NULL,NULL,'SH019577940000'),('EP020098650019','Als Ersatz für die ursprüngliche Champlain-Brücke wurde über dem Sank-Lorenz-Strom im kanadischen Québec eine Doppelschrägseilbrücke gebaut. Die gigantische Betonkonstruktion der neuen Samuel-De-Champlain-Brücke muss den harten kanadisc.','Champlain Bridge',_binary '','DEU','Mega-Konstruktionen',NULL,NULL,4,NULL,NULL,'SH020098650000'),('EP012971895065','A round up of yesterday\'s racing action from Catterick.','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP018580010065','Um das Verhalten von Honigbienen zu verstehen, will Chris ihnen so nah wie möglich kommen.','Pollenflug!',_binary '','DEU','Go Wild! - Mission Wildnis',NULL,NULL,4,NULL,NULL,'SH018580010000'),('EP018580010067','Das Wild-Team veranstaltet einen Quiz-Wettbewerb. Doch dann wird Jimmy angegriffen.','Krokodil oder Alligator?',_binary '','DEU','Go Wild! - Mission Wildnis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10775210_e_h3_ac.jpg',4,NULL,NULL,'SH018580010000'),('EP012971895069','A round up of today\'s racing action from Ludlow, Taunton, Musselburgh, Chelmsford and Meydan.','',_binary '\0','GBR','Racing Replay',NULL,NULL,4,NULL,NULL,'SH012971890000'),('EP013634930051','After a trip to a brothel, the lads of the King\'s Own Fusiliers bring more than memories to camp.','Lost and Found',_binary '','GBR','Soldier, Soldier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8440846_e_h3_aa.jpg',4,NULL,NULL,'SH013634930000'),('EP009160030225','Die Talksendung mit Maybrit Illner widmet sich aktuellen politischen Themen.','Folge 816',_binary '','DEU','maybrit illner',NULL,NULL,4,NULL,NULL,'SH009160030000'),('EP021396030027','While cleaning out their treehouse, the girls reminisce about how they saved the tree.','The Tree House',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12038866_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP021396030029','Alvin convinces Simon to build him an exact replica of a dangerous toy sports car.','Safety Third',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12038841_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP021396030024','Alvin must pass a manners course to prove he is worthy of meeting a princess.','Mister Manners',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12038842_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP023924010188','Die Sendung informiert über aktuelle Themen aus den Bereichen Wirtschaft und Soziales.','Folge 179',_binary '','DEU','mehr:wert',NULL,NULL,4,NULL,NULL,'SH023924010000'),('EP020041940023','Riesenbiber Oonski verliebt sich in den verkleideten Raketentruck. Jelly ist in Gefahr.','Verrückt nach Vanessa; Der Tunnel der Angst',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10751842_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP021396030023','The Chipmunks accidentally ruin Dave\'s new song for a music festival.','Driving Dave Crazy',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11913825_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP020041940022','SwaySway ist verliebt und macht unvernünftige Sachen. Das Teichmonster hat Appetit auf Brotpiloten.','Das Liebes-Brot; Ein Strandtag des Grauens',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10596761_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP021396030026','Alvin and Theodore think that Simon is going away to boarding school and try to stop it.','Saving Simon',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12038867_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP020041940021','Die Brotpiloten stranden im großen Teich. Stammkunde T-Midi wird von den Erpeln zwangsgepflegt.','Verschollen im Teich...; Die Chaos-Pfleger',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10596737_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP015352281299','Victoria Derbyshire presents the BBC\'s daily news and current affairs programme.','',_binary '\0','GBR','Victoria Derbyshire',NULL,NULL,4,NULL,NULL,'SH015352280000'),('EP018042140031','Natalie follows up on a skinny shar pei cross with an eye infection.','',_binary '\0','GBR','The Dog Rescuers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11905863_e_h3_aa.jpg',4,NULL,NULL,'SH018042140000'),('EP018042140030','Jason is shocked to discover two desperately malnourished mastiffs close to starvation.','',_binary '\0','GBR','The Dog Rescuers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11885333_e_h3_aa.jpg',4,NULL,NULL,'SH018042140000'),('EP019962300075','In dieser Folge kommt keine Langeweile auf, denn unter anderem wird eine Unterwassermine entschärft.','Das Boot',_binary '','DEU','Steel Buddies - Stahlharte Geschäfte',NULL,NULL,4,NULL,NULL,'SH019962300000'),('EP018042140032','Inspector Herchy rescues four very hungry puppies from a home that is unable to cope.','',_binary '\0','GBR','The Dog Rescuers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11926323_e_h3_aa.jpg',4,NULL,NULL,'SH018042140000'),('EP012664100131','Mark\'s investigation of a hit-and-run death leads him to a priest.','Miracle Cure',_binary '','GBR','Diagnosis Murder',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1659781_e_h3_aa.jpg',4,NULL,NULL,'SH012664100000'),('EP021319170029','Freddy My Love shows how to get this stunning Cara Delevingne-inspired look.','Freddy My Love - Cara Delevingne Bold Look',_binary '','GBR','Be Beautiful',NULL,NULL,4,NULL,NULL,'SH021319170000'),('EP030474620084','Optimus Prime leads a strike team of Autobots on a mission deep into Decepticon territory.','Silent Strike',_binary '','GBR','Transformers: Cyberverse',NULL,NULL,4,NULL,NULL,'SH030474620000'),('EP013634930048','Tucker is over the moon when he finds out he\'s going to be a dad, but his joy is short-lived.','Lifelines',_binary '','GBR','Soldier, Soldier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8440808_e_h3_aa.jpg',4,NULL,NULL,'SH013634930000'),('EP021649870075','After getting telephone answering machines, Murray and Pop-Pop wage a message war on one another.','Crazy Calls',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13337354_e_h3_ac.jpg',4,NULL,NULL,'SH021649870000'),('EP021649870073','Erica and Lainey use technology to find a woman for Bill. Barry wants to be a gym teacher.','I Heart Video Dating',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13280819_e_h3_ab.jpg',4,NULL,NULL,'SH021649870000'),('EP021649870074','Adam risks bodily harm during an intense game of paintball to impress his latest crush.','George! George Glass!',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13304093_e_h3_ab.jpg',4,NULL,NULL,'SH021649870000'),('EP030474620085','The Autobots and Decepticons confront The Other One, a powerful being from another universe.','The Other One',_binary '','GBR','Transformers: Cyberverse',NULL,NULL,4,NULL,NULL,'SH030474620000'),('EP021649870072','Adam tries to improve his persona on the first day of high school. The Goldberg kids get detention.','Breakfast Club',_binary '','GBR','The Goldbergs',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13035938_e_h3_ab.jpg',4,NULL,NULL,'SH021649870000'),('EP012911720228','Eight police cars and the eye in the sky hunt down a high powered Porsche Cayenne.','',_binary '\0','GBR','Police Interceptors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16647964_e_h3_aa.jpg',4,NULL,NULL,'SH012911720000'),('EP018580010063','Chris und Martin haben das Gefühl, dass auf der Tortuga etwas nicht mit rechten Dingen zugeht.','Geheimnisvolle Kreaturen',_binary '','DEU','Go Wild! - Mission Wildnis',NULL,NULL,4,NULL,NULL,'SH018580010000'),('EP015244990021','A devastating M27 crash leaves a driver trapped. The coastguard race by air to a fisherman\'s aid.','',_binary '\0','GBR','Winter Road Rescue',NULL,NULL,4,NULL,NULL,'SH015244990000'),('EP021319170017','Lyndsey Harrison shows Georgia Kousoulou how to create a stunning blue-eyed look.','Lyndsey Harrison - Electric Blue Eyes with Georgia Kousoulou',_binary '','GBR','Be Beautiful',NULL,NULL,4,NULL,NULL,'SH021319170000'),('EP022915380643','Today\'s live evening racing action from Kempton..','',_binary '\0','GBR','Live: Evening Racing',NULL,NULL,4,NULL,NULL,'SH022915380000'),('EP022915380642','Today\'s live evening racing action from Chelmsford..','',_binary '\0','GBR','Live: Evening Racing',NULL,NULL,4,NULL,NULL,'SH022915380000'),('EP013022490076','Gordon travels to New Orleans to visit Zekes, a restaurant serving soul food to the loving locals.','Zeke\'s',_binary '','GBR','Ramsay\'s Kitchen Nightmares USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8639080_e_h3_ab.jpg',4,NULL,NULL,'SH013022490000'),('EP028119100039','Dennis and the gang train Bertie in the art of standing up to people, but they train him too well.','Bertie\'s Backbone',_binary '','GBR','Dennis & Gnasher Unleashed!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15567275_e_h3_aa.jpg',4,NULL,NULL,'SH028119100000'),('EP013022490074','Can Gordon can transform La Frite into a successful family business, or has it had its chips?','La Frite',_binary '','GBR','Ramsay\'s Kitchen Nightmares USA',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8594623_e_h3_ab.jpg',4,NULL,NULL,'SH013022490000'),('EP016391700357','Die Sendung geht der Geschichte von Mata Hari, die als Spionin hingerichtet wurde, auf den Grund.','Mata Hari - Die schöne Spionin',_binary '','DEU','ZDF-History',NULL,NULL,4,NULL,NULL,'SH016391700000'),('EP012798330174','With celebrity guests Paul Hollywood, Dawn O\'Porter, Joe Wilkinson and Rob Beckett.','',_binary '\0','GBR','8 Out of 10 Cats',NULL,NULL,4,NULL,NULL,'SH012798330000'),('EP012798330175','With celebrity guests Steve Jones, David O\'Doherty, Deborah Meaden, and Seann Walsh.','',_binary '\0','GBR','8 Out of 10 Cats',NULL,NULL,4,NULL,NULL,'SH012798330000'),('EP013634930072','When a bush fire breaks out, a bunch of marines and the King\'s Fusiliers work together.','The Last Post',_binary '','GBR','Soldier, Soldier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8441062_e_h3_aa.jpg',4,NULL,NULL,'SH013634930000'),('EP021396030007','The Chipmunks try to find Dave a girlfriend when he tries to spend more time with them.','Slippin Thru My Fingers',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11563411_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP020041940002','Ein Roboter wird zum ernsten Problem. Und: Alarmstufe Rot - der Schimmel ist ausgebrochen.','Raketenärger; Die Schimmelkrieger',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10580462_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP018580670507','Monika hat Langeweile. Weil es regnet, wird Hallensport ausprobiert. Die Kakerlaken sind dabei.','Extrem-Sport; Achtung, die Maus kommt!; Die Macht der Liebe',_binary '','DEU','Oggy und die Kakerlaken',NULL,NULL,4,NULL,NULL,'SH018580670000'),('EP022736231122','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Neues von hier & Leichter leben',NULL,NULL,4,NULL,NULL,'SH022736230000'),('EP018580670508','Oggys Teddybär ist weg. Ein Pinguin macht sich im Kühlschrank breit. Die Kakerlaken ziehen zu Bob.','Oggys Teddybär; Ein Gast im Kühlschrank; Die Kakerlaken ziehen um',_binary '','DEU','Oggy und die Kakerlaken',NULL,NULL,4,NULL,NULL,'SH018580670000'),('EP022736231121','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps.','',_binary '\0','DEU','MDR um 4: Neues von hier & Leichter leben',NULL,NULL,4,NULL,NULL,'SH022736230000'),('EP012798330176','The special guests in this edition are Jack Dee, Example, Jerry Springer, and Roisin Conaty.','',_binary '\0','GBR','8 Out of 10 Cats',NULL,NULL,4,NULL,NULL,'SH012798330000'),('EP011645731253','Fernsehzuschauer können Antiquitäten kostenlos von renommierten Kunsthistorikern bewerten lassen.','Familienschätze unter der Lupe',_binary '','DEU','Kunst & Krempel',NULL,NULL,4,NULL,NULL,'SH011645730000'),('EP023277870001','Die Folge berichtet von der Anpassungsfähigkeit der Haie, die sie zu großartigen Jägern macht.','Meister der Jagd',_binary '','DEU','Die Welt der Haie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11716222_e_h3_aa.jpg',4,NULL,NULL,'SH023277870000'),('EP012664490134','Irish comedy star Ed Byrne introduces Angela Barnes and Geoff Norcott to the world-famous stage.','Ed Byrne',_binary '','GBR','Live at the Apollo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14952038_e_h3_aa.jpg',4,NULL,NULL,'SH012664490000'),('EP023277870002','Diese Folge beschäftigt sich mit typischen Verhaltensmerkmalen von Haien und ihren Verwandten.','Geheimnisvolles Leben',_binary '','DEU','Die Welt der Haie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11742660_e_h3_aa.jpg',4,NULL,NULL,'SH023277870000'),('EP028880440034','Kugelis is a recipe from Lithuania that contains bacon and grated potato.','Harry\'s Lithuanian Kugelis',_binary '','GBR','My World Kitchen',NULL,NULL,4,NULL,NULL,'SH028880440000'),('EP028880440035','Aksara is cooking a curry from Sri Lanka which contains a very special ingredient: tamarind paste.','Aksara\'s Sri Lankan Fish Curry',_binary '','GBR','My World Kitchen',NULL,NULL,4,NULL,NULL,'SH028880440000'),('EP012658650006','When Arkwright\'s corner shop is broken into, he employs a large dog to guard his property.','Beware of the Dog',_binary '','GBR','Open All Hours',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1175722_e_h3_aa.jpg',4,NULL,NULL,'SH012658650000'),('EP030474620060','The Autobots must defeat the Decepticons in order to restore Cybertron to life with the Allspark.','Battle for Cybertron I',_binary '','GBR','Transformers: Cyberverse',NULL,NULL,4,NULL,NULL,'SH030474620000'),('EP012658650007','Arkwright has a sales drive with Granville demonstrating the product - very reluctantly.','Apples and Self Service',_binary '','GBR','Open All Hours',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1175724_e_h3_aa.jpg',4,NULL,NULL,'SH012658650000'),('EP020070080220','Astrophysiker Harald Lesch beantwortet spannende astronomische Fragen.','Kann man',_binary '','DEU','alpha-Centauri',NULL,NULL,4,NULL,NULL,'SH020070080000'),('EP016182160156','Family conflict may prevent Angie from seeking Dr Nowzaradan\'s help in Houston.','Angie J\'s Story, Pt. 2',_binary '','GBR','My 600-Lb. Life',NULL,NULL,4,NULL,NULL,'SH016182160000'),('EP023450480171','It is Halloween today and Piu Piu has spent a lot of time carving a huge pumpkin to decorate.','The Pumpkin',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13310919_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP023450480174','Molang and Piu Piu go into the forest with their friends to collect mushrooms, but end up lost.','The Forest',_binary '','GBR','Mölang',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13311009_e_h3_aa.jpg',4,NULL,NULL,'SH023450480000'),('EP012600992486','Nick Hewer and Rachel Riley host, and Dr Linda Papadopoulos joins Susie Dent in Dictionary Corner.','',_binary '\0','GBR','Countdown',NULL,NULL,4,NULL,NULL,'SH012600990000'),('EP012600950648','In Exeter, a spicy-food war breaks out between Geoff Green and up-front party girl Beka Platt. There is also a rabbit showdown between keen hunter John G Wills and bunny-owning drama student Mandy Plumridge.','All in One: Exeter',_binary '','GBR','Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH012600950000'),('EP012600992487','Nick Hewer and Rachel Riley host, and Dr Linda Papadopoulos joins Susie Dent in Dictionary Corner.','',_binary '\0','GBR','Countdown',NULL,NULL,4,NULL,NULL,'SH012600990000'),('EP016659300009','After months of work without taking time to grieve, Zeke reaches his breaking point.','Waterfalls of Gold',_binary '','GBR','Gold Divers: Under the Ice',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10335432_e_h3_aa.jpg',4,NULL,NULL,'SH016659300000'),('EP012600950647','Complete strangers in East London battle it out for the title of ultimate dinner party host.','All in One: East London',_binary '','GBR','Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH012600950000'),('EP012600992488','Nick Hewer and Rachel Riley host, and Dr Linda Papadopoulos joins Susie Dent in Dictionary Corner.','',_binary '\0','GBR','Countdown',NULL,NULL,4,NULL,NULL,'SH012600990000'),('EP016659300008','Cocky newcomer Glen clashes with Zeke over how to best run the dredge.','No Fuel to Burn',_binary '','GBR','Gold Divers: Under the Ice',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10330393_e_h3_aa.jpg',4,NULL,NULL,'SH016659300000'),('EP016659300007','Zeke takes a gamble on a new dredger with game-changing technology.','Dozers and Dragons',_binary '','GBR','Gold Divers: Under the Ice',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10330388_e_h3_aa.jpg',4,NULL,NULL,'SH016659300000'),('EP016182160155','At over 600-lbs, Angie is trying to see Dr Now and get life-saving weight-loss surgery.','Angie J\'s Story, Pt. 1',_binary '','GBR','My 600-Lb. Life',NULL,NULL,4,NULL,NULL,'SH016182160000'),('EP012600950646','In south east Essex, Matthew, Kate, Simon and Jane battle it out for the ultimate dinner host title.','All in One: South East Essex',_binary '','GBR','Come Dine with Me',NULL,NULL,4,NULL,NULL,'SH012600950000'),('EP034078630005','In dieser Sendung geht es um Haarpflege- und Stylingprodukte aus `Margot Schmitt Frisiersalon\'.','',_binary '\0','DEU','MARGOT SCHMITT Frisiersalon',NULL,NULL,4,NULL,NULL,'SH034078630000'),('EP013634930061','A diplomatic scandal threatens to break when Major Cochrane is charged attempted rape.','Saving Face',_binary '','GBR','Soldier, Soldier',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8440959_e_h3_aa.jpg',4,NULL,NULL,'SH013634930000'),('EP030474620063','The Autobots must defeat the Decepticons in order to restore Cybertron to life with the Allspark.','Battle for Cybertron II',_binary '','GBR','Transformers: Cyberverse',NULL,NULL,4,NULL,NULL,'SH030474620000'),('EP012658650005','Arkwright leaves his shop for a few hours to attend the funeral of a friend.','The Well Catered Funeral',_binary '','GBR','Open All Hours',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1175723_e_h3_aa.jpg',4,NULL,NULL,'SH012658650000'),('EP018485480144','Wenn man den Rückspiegel abkippt, wird er dunkler. Vince Ebert erklärt in der Sendung, warum.','Wieso wird der Rückspiegel nachts dunkler, wenn man ihn abkippt?',_binary '','DEU','Wissen vor acht - Werkstatt',NULL,NULL,4,NULL,NULL,'SH018485480000'),('EP012598221354','A semi in Bilston, a cottage in Bignall End and a mid-terrace in Brimrod are sold under the hammer.','',_binary '\0','GBR','Homes Under the Hammer',NULL,NULL,4,NULL,NULL,'SH012598220000'),('EP012600992485','Nick Hewer and Rachel Riley host, and Dr Linda Papadopoulos joins Susie Dent in Dictionary Corner.','',_binary '\0','GBR','Countdown',NULL,NULL,4,NULL,NULL,'SH012600990000'),('EP021765130116','Ein zu renovierendes Haus in Santa Ana ist diesmal das Projekt von Tarek und Christina.','Die Bad-Challenge',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15808691_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130117','Als Tarek Christina ein interessantes Angebot zeigt, könnte sich dieses für die beiden lohnen.','Schieflage in Fullerton',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17575391_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP019560640838','Weil sie sie bestohlen haben soll, greift eine Krankenhaus-Patientin eine Krankenschwester an.','Arme Elster',_binary '','DEU','Auf Streife',NULL,NULL,4,NULL,NULL,'SH019560640000'),('EP021765130114','Im Inneren eines Hauses gibt es für Tarek und Christina in Anaheim Hills eine böse Überraschung.','Ärger in Anaheim Hills',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15606069_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP021765130115','Christina und Tarek haben es auf ein Haus mit einer vielversprechenden Nachbarschaft abgesehen.','Das Hipster-Haus',_binary '','DEU','Die Super-Makler - Top oder Flop?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15606062_e_h3_aa.jpg',4,NULL,NULL,'SH021765130000'),('EP028119100040','When Grizzly Griller forgets all his survival skills, his greatest fan must help him re-learn them.','Grizzly\'s Great Outdoors',_binary '','GBR','Dennis & Gnasher Unleashed!',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15567281_e_h3_aa.jpg',4,NULL,NULL,'SH028119100000'),('EP020041940019','SwaySway ernennt den Mitarbeiter des Monats. Ein Berg von schmutzigem Geschirr wird zur Gefahr.','Der Mitarbeiter des Monats; Die Drückeberger-Bro\'s',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10524406_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP022003840150','Alvin und Simon bilden ein Team für den Forschungswettbewerb. Miss Smith konfisziert alle Handys.','Theozilla; Hundeglück; Die Feriengäste',_binary '','DEU','Alvinnn!!! und die Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13828143_e_h3_aa.jpg',4,NULL,NULL,'SH022003840000'),('EP013125290015','The connection between the secretary, the minister\'s press secretary and the victim is revealed.','Bad Apples',_binary '','GBR','Colvil and Soames',NULL,NULL,4,NULL,NULL,'SH013125290000'),('EP027888400003','Die Sonden Viking I und II erreichen nach einem Jahr Flugzeit den Mars und starten dessen Erkundung.','Die erste Marslandung',_binary '','DEU','Griff nach den Sternen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14102477_e_h3_aa.jpg',4,NULL,NULL,'SH027888400000'),('EP030370750049','All the goals and talking points from the latest action in Serie A.','',_binary '\0','GBR','Serie A Full Impact',NULL,NULL,4,NULL,NULL,'SH030370750000'),('EP013125290014','When it appears the murder victim is not dead after all, exactly whose body is lying on the slab?','Bad Apples',_binary '','GBR','Colvil and Soames',NULL,NULL,4,NULL,NULL,'SH013125290000'),('EP025311350035','Die Lemminge können Grizzy schrumpfen. Die Lemminge haben Grizzys Schokocreme gestohlen.','Klein, aber fein; Der Bausteinstreit; Bär auf Zeitreise',_binary '','DEU','Grizzy and The Lemmings',NULL,NULL,4,NULL,NULL,'SH025311350000'),('EP013050000166','Sandi Toksvig considers pain and punishment with Jimmy Carr, Lee Mack, Alice Levine and Alan Davies.','Pain and Punishment',_binary '','GBR','QI XL',NULL,NULL,4,NULL,NULL,'SH013050000000'),('EP027380460184','Boomer accidentally tears the pocket on Girl Hooman\'s new blouse.','Project Sewing Machine',_binary '','GBR','Floogals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17844114_e_h3_aa.jpg',4,NULL,NULL,'SH027380460000'),('EP013050000168','Sandi Toksvig procrastinates with Aisling Bea, Holly Walsh, Nikki Bedi and Alan Davies.','Procrastination',_binary '','GBR','QI XL',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16845607_e_h3_aa.jpg',4,NULL,NULL,'SH013050000000'),('EP022554840023','Hinrich will gegen die Werft vorgehen. Margot ruft einen Kontaktkreis für Seemannsfrauen ins Leben.','Seemannsfrauen',_binary '','DEU','Kümo Henriette',NULL,NULL,4,NULL,NULL,'SH022554840000'),('EP013050000167','Sandi Toksvig looks at a Potpourri of topics with Phill Jupitus, Cally Beaton and Rhod Gilbert.','Potpourri',_binary '','GBR','QI XL',NULL,NULL,4,NULL,NULL,'SH013050000000'),('EP013050000169','Sandi Toksvig considers various phenomena with Alan Davies, and guests.','Phenomena',_binary '','GBR','QI XL',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16850700_e_h3_aa.jpg',4,NULL,NULL,'SH013050000000'),('EP013125290007','A disturbing murder on a Brighton beach is set to cause government shockwaves.','Bad Apples',_binary '','GBR','Colvil and Soames',NULL,NULL,4,NULL,NULL,'SH013125290000'),('EP015402261812','Das wochentägliche Wissenschaftsmagazin zeigt aktuelle Erkenntnisse mit praktischem Nutzen.','',_binary '\0','DEU','nano',NULL,NULL,4,NULL,NULL,'SH015402260000'),('EP019227910004','Shaun und Co werden des Nachts von einem seltsamen Geräusch und grünem Licht geweckt.','Der Außerirdische',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344262_e_h3_aa.jpg',4,NULL,NULL,'SH019227910000'),('EP015402261811','Das wochentägliche Wissenschaftsmagazin zeigt aktuelle Erkenntnisse mit praktischem Nutzen.','',_binary '\0','DEU','nano',NULL,NULL,4,NULL,NULL,'SH015402260000'),('EP020284720019','Johannes Eckert, Abt der Benediktinerabtei Sankt Bonifaz, spricht zum Aschermittwoch.','Gedanken zum Aschermittwoch',_binary '','DEU','Zeit und Ewigkeit',NULL,NULL,4,NULL,NULL,'SH020284720000'),('EP019227910001','Shaun ernennt sich zum Personal Trainer eines dicken Schafes.','Abspecken mit Shaun',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344241_e_h3_ab.jpg',4,NULL,NULL,'SH019227910000'),('EP016113240044','An exploration of the rise in young people challenging authority across the United Kingdom.','',_binary '\0','GBR','999: What\'s Your Emergency?',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14857571_e_h3_aa.jpg',4,NULL,NULL,'SH016113240000'),('EP015402261810','Das wochentägliche Wissenschaftsmagazin zeigt aktuelle Erkenntnisse mit praktischem Nutzen.','',_binary '\0','DEU','nano',NULL,NULL,4,NULL,NULL,'SH015402260000'),('EP019227910006','Das erste Schaf, das der Bauer geschoren hat, ist voller Wollreste und fieser Schnitte.','Der große Ausbruch',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344235_e_h3_ab.jpg',4,NULL,NULL,'SH019227910000'),('EP029307670020','When JG\'s popcorn maker ruins the kids\' favourite film, it is up to the kids to save the day.','POP! Goes the Movie',_binary '','GBR','Shane the Chef',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16243907_e_h3_aa.jpg',4,NULL,NULL,'SH029307670000'),('EP030488180002','Michael ventures beyond Pyongyang to see more of this mysterious country and meet its people.','',_binary '\0','GBR','Michael Palin In North Korea',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15944744_e_h3_aa.jpg',4,NULL,NULL,'SH030488180000'),('EP013075980068','Sabrina\'s bad spell causes her aunts to become prisoners in Merlin\'s castle.','Oh What a Tangled Spell She Weaves',_binary '','GBR','Sabrina, the Teenage Witch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1909399_e_h3_aa.jpg',4,NULL,NULL,'SH013075980000'),('EP022513700608','Als es an einem kleinen Flughafen brennt, erblicken Beamte zwei bewusstlose Gestalten.','Hangar Games',_binary '','DEU','Auf Streife - Die Spezialisten',NULL,NULL,4,NULL,NULL,'SH022513700000'),('EP030257660039','Angela suffers a loss, Boogie betrays his family, while a dispute comes to a head at Romeo\'s party.','Hard Times',_binary '','GBR','Growing Up Hip Hop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16316473_e_h3_aa.jpg',4,NULL,NULL,'SH030257660000'),('EP012692450015','When Ringo wins a holiday, Simon and Oliver are soon vying to accompany him.','Viva Espana',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP034364840003','In dieser Folge wird gezeigt, wie sehr Wasser durch menschlichen Einfluss verändert wurde.','Wasser',_binary '','DEU','Anthropozän - Das Zeitalter des Menschen',NULL,NULL,4,NULL,NULL,'SH034364840000'),('EP020073300138','In dieser Folge zaubert Bob Ross eine beeindruckende Brücke auf die Leinwand.','Covered Bridge Oval',_binary '','DEU','Bob Ross: The Joy of Painting',NULL,NULL,4,NULL,NULL,'SH020073300000'),('EP012692450016','A soul-searching Simon gets on his soapbox when he thinks he has discovered the meaning of life.','Born Again',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP034364840002','In dieser Folge geht es um die Geschichte menschlicher Veränderung der Erdatmosphäre.','Luft',_binary '','DEU','Anthropozän - Das Zeitalter des Menschen',NULL,NULL,4,NULL,NULL,'SH034364840000'),('EP034364840001','In dieser Sendung steht die Landwirtschaft im Vordergrund, die das Gesicht der Welt veränderte.','Erde',_binary '','DEU','Anthropozän - Das Zeitalter des Menschen',NULL,NULL,4,NULL,NULL,'SH034364840000'),('EP012692450014','Simon and Oliver find themselves on the wrong side of the law when they set off on a joyride.','A Car by Any Other Name',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP019227910010','Der Farmer hat seine Brille kaputt getreten. Mit Bitzers Superkleber ist sie wieder einsatzbereit.','Kleb an mir',_binary '','DEU','Shaun, das Schaf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3344268_e_h3_aa.jpg',4,NULL,NULL,'SH019227910000'),('EP020073300137','In dieser Folge zaubert Bob Ross einen atemberaubenden Wasserfall inmitten eines Waldes.','Waterfall in the Woods',_binary '','DEU','Bob Ross: The Joy of Painting',NULL,NULL,4,NULL,NULL,'SH020073300000'),('EP013266310001','James visits a local brewery and cooks beef and Black Sheep ale pie.','Richmond Market',_binary '','GBR','James Martin: Yorkshire\'s Finest',NULL,NULL,4,NULL,NULL,'SH013266310000'),('EP027380460170','After seeing a pile of soil, the Floogals burrow deep underground in search for a mole.','Mole',_binary '','GBR','Floogals',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17812671_e_h3_aa.jpg',4,NULL,NULL,'SH027380460000'),('EP012623900670','Shami and Clive share a love of Sicily and can\'t wait to find a place where they can relocate.','Sicily',_binary '','GBR','A Place in the Sun',NULL,NULL,4,NULL,NULL,'SH012623900000'),('EP030257660040','Angela is blindsided when Vanessa takes business matters into her own hands.','Meet Your New Daddy',_binary '','GBR','Growing Up Hip Hop',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16316512_e_h3_aa.jpg',4,NULL,NULL,'SH030257660000'),('EP006655400264','Cameras capture a car crash as a drunk driver pushes his speed to the limit.','',_binary '\0','GBR','Motorway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13955934_e_h3_aa.jpg',4,NULL,NULL,'SH006655400000'),('EP020041940043','Buhdeuce isst Müffelbrot und kriegt bösen Mundgeruch. Jelly bringt den Brotpiloten ein Monsterei.','Müffliger Atem; Ein froschiger Nachmittag',_binary '','DEU','Die Brotpiloten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10524404_e_h3_aa.jpg',4,NULL,NULL,'SH020041940000'),('EP014726400721','Ausgerechnet am Geburtstag ihres Mannes Thomas stürzt Erika Wildenhorst von einem Stuhl und zieht sich eine komplizierte Schulterfraktur zu. Um die volle Funktionalität der Schulter wiederherzustellen, braucht Erika eine Endoprothese. Doch davon.','Bruchlandung',_binary '','DEU','In aller Freundschaft',NULL,NULL,4,NULL,NULL,'SH014726400000'),('EP006655400267','An angry woman breaks the law but demands police help, and a dim car thief is caught on camera.','',_binary '\0','GBR','Motorway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13957096_e_h3_aa.jpg',4,NULL,NULL,'SH006655400000'),('EP013266310007','In Whitby, James visits the fish auction with a local fish merchant and cooks a Thai crab risotto.','Whitby Fish Market',_binary '','GBR','James Martin: Yorkshire\'s Finest',NULL,NULL,4,NULL,NULL,'SH013266310000'),('EP006655400265','Police call on multiple units and a helicopter as they hunt a stolen Subaru.','',_binary '\0','GBR','Motorway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13955939_e_h3_aa.jpg',4,NULL,NULL,'SH006655400000'),('EP012692450017','When Auntie announces her engagement, Simon faces the prospect of having a brand new uncle.','There Goes the Bride',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP006655400266','A car crash leads to some unusual behaviour on the side of the motorway.','',_binary '\0','GBR','Motorway Patrol',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13955947_e_h3_aa.jpg',4,NULL,NULL,'SH006655400000'),('EP012692450018','Even the antiques business suffers from the recession and Simon and Oliver both feel the pinch.','Two Fools and Their Money',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP025063190730','Eine Lehrerin stößt mit einer jungen Fahrradfahrerin zusammen und kommt daraufhin in die Klinik.','',_binary '\0','DEU','Klinik am Südring',NULL,NULL,4,NULL,NULL,'SH025063190000'),('EP019088410106','Dizzy spells, falls and their related injuries keep the GPs on their toes.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14395724_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP019088410105','Sophia has been scheduled for a heart valve operation. Laura is struggling with anxiety.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14380712_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP019962300067','Wegen zu hoher Standgebühren will Michael Manousakis eine Luxusjacht in einen anderen Hafen bringen.','Abgesoffen!',_binary '','DEU','Steel Buddies - Stahlharte Geschäfte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17413538_e_h3_aa.jpg',4,NULL,NULL,'SH019962300000'),('EP019962300068','In dieser Sendung kürzt Michael Manousakis einen Hummer, doch das Projekt läuft nicht problemlos.','Kurz und knapp!',_binary '','DEU','Steel Buddies - Stahlharte Geschäfte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17440779_e_h3_aa.jpg',4,NULL,NULL,'SH019962300000'),('EP026387930005','Star, Alexandra and Simone work on a demo for a chance to perform at a music festival.','The Devil You Know',_binary '','GBR','Star',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13589694_e_h3_ab.jpg',4,NULL,NULL,'SH026387930000'),('EP034331450003','Examining the 1970s and 1980s, when the world is in the grip of the Cold War.','',_binary '\0','GBR','The Windsors: Secrets of the Royal Tours',NULL,NULL,4,NULL,NULL,'SH034331450000'),('EP025063190725','Einer Frau scheint etwas passiert zu sein, als sie ohne Erinnerung und blutend aufgefunden wird.','Frau ohne Vergangenheit',_binary '','DEU','Klinik am Südring',NULL,NULL,4,NULL,NULL,'SH025063190000'),('EP025063190726','Die Ärzte kämpfen plötzlich um das Leben eines Mädchens, als sie sich das Kahnbein gebrochen hat.','Ich will hier nicht weg',_binary '','DEU','Klinik am Südring',NULL,NULL,4,NULL,NULL,'SH025063190000'),('EP012671510013','Pete and Jim give chase to a burglar, while officers Daz and Rosie raid a suspect\'s house.','',_binary '\0','GBR','Road Wars',NULL,NULL,4,NULL,NULL,'SH012671510000'),('EP022829461259','Die Frankenschau aktuell berichtet werktags die wichtigsten Neuigkeiten aus der Region.','',_binary '\0','DEU','Frankenschau aktuell',NULL,NULL,4,NULL,NULL,'SH022829460000'),('EP022829461261','Die Frankenschau aktuell berichtet werktags die wichtigsten Neuigkeiten aus der Region.','',_binary '\0','DEU','Frankenschau aktuell',NULL,NULL,4,NULL,NULL,'SH022829460000'),('EP012597991896','Eric Knowles is at the helm with experts Danny Sebastian and Caroline Hawley.','King\'s Lynn 30',_binary '','GBR','Bargain Hunt',NULL,NULL,4,NULL,NULL,'SH012597990000'),('EP022829461260','Die Frankenschau aktuell berichtet werktags die wichtigsten Neuigkeiten aus der Region.','',_binary '\0','DEU','Frankenschau aktuell',NULL,NULL,4,NULL,NULL,'SH022829460000'),('EP013075980031','Sabrina uses an illegal spell to transform her nemesis, Libby, into a puzzle.','Five Easy Pieces of Libby',_binary '','GBR','Sabrina, the Teenage Witch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1909402_e_h3_aa.jpg',4,NULL,NULL,'SH013075980000'),('EP025012910006','A parole officer unites a boy and his father, a convict who lacks purpose in life.','Apples Don\'t Fall Far',_binary '','GBR','Dick Powell Theatre',NULL,NULL,4,NULL,NULL,'SH025012910000'),('EP018994710232','A-Troupe decides to take on a new opportunity but Nationals are right around the corner.','The Bicycle Thief',_binary '','GBR','The Next Step',NULL,NULL,4,NULL,NULL,'SH018994710000'),('EP032163690002','Animals in the Andes\' Altiplano plateau have developed many adaptations in order to survive.','Extreme Survival',_binary '','GBR','The Wild Andes',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16096548_e_h3_aa.jpg',4,NULL,NULL,'SH032163690000'),('EP025194970132','Some wellies and umbrellas magically appear and the Teletubbies go outside for splashy, rainy fun.','Go Outside',_binary '','GBR','Teletubbies',NULL,NULL,4,NULL,NULL,'SH025194970000'),('EP025194970134','A musical staircase magically appears in Teletubbyland, and the teletubbies take turns making music.','Stairs',_binary '','GBR','Teletubbies',NULL,NULL,4,NULL,NULL,'SH025194970000'),('EP003337730739','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Alm III - Girlfriends on Tour',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP031978930014','Dave finds a very rare 70s Sunbeam Lotus that has been rotting away in a farmyard for 29 years.','',_binary '\0','GBR','Bangers and Cash',NULL,NULL,4,NULL,NULL,'SH031978930000'),('EP018558610934','Das Magazin zeigt von Montag bis Freitag aktuelle Nachrichten zur Mittagszeit.','',_binary '\0','DEU','Punkt 12 - Das RTL-Mittagsjournal',NULL,NULL,4,NULL,NULL,'SH018558610000'),('EP032600570066','Out of work actor, Arthur Hatchett, is taken ill.','',_binary '\0','GBR','Rooms',NULL,NULL,4,NULL,NULL,'SH032600570000'),('EP018558610935','Das Magazin zeigt von Montag bis Freitag aktuelle Nachrichten zur Mittagszeit.','',_binary '\0','DEU','Punkt 12 - Das RTL-Mittagsjournal',NULL,NULL,4,NULL,NULL,'SH018558610000'),('EP019883330140','Frau Chen organisiert eine Theateraufführung und Sam spielt den legendären Piraten Pontypandy Pete.','Bühne frei für Feuerwehrmann Sam',_binary '','DEU','Feuerwehrmann Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11175882_e_h3_aa.jpg',4,NULL,NULL,'SH019883330000'),('EP013075980050','Sabrina\'s faulty spell drops Mr. Kraft\'s maturity level, jeopardising a ski trip.','Little Big Kraft',_binary '','GBR','Sabrina, the Teenage Witch',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1909401_e_h3_aa.jpg',4,NULL,NULL,'SH013075980000'),('EP019883330138','Es herrscht eisige Kälte und die Feuerwache ist mit verschiedenen Aufwärmmethoden beschäftigt.','Die Liebesboten',_binary '','DEU','Feuerwehrmann Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11266832_e_h3_aa.jpg',4,NULL,NULL,'SH019883330000'),('EP013031830137','Contestants try to find which of the 100 balls conceal cash and which contain the killer balls.','',_binary '\0','GBR','Golden Balls',NULL,NULL,4,NULL,NULL,'SH013031830000'),('EP012847870699','Dr. Hamster goes to school to talk about butterflies. The children have fun afterwards.','Butterflies',_binary '','GBR','Peppa Pig',NULL,NULL,4,NULL,NULL,'SH012847870000'),('EP019883330137','Die Kinder von Pontypandy sind mit Dilys und Trevor im Wald. Norman wagt eine Wette.','Ameisenalarm',_binary '','DEU','Feuerwehrmann Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11175877_e_h3_aa.jpg',4,NULL,NULL,'SH019883330000'),('EP012847870698','Peppa and his family are taking Goldie the Fish to Dr Hamster for a checkup.','Doctor Hamster\'s Big Present',_binary '','GBR','Peppa Pig',NULL,NULL,4,NULL,NULL,'SH012847870000'),('EP019883330136','Es findet eine große Haustierschau statt. Sarah, James, Mandy und Norman treten ebenfalls an.','Hund gegen Katze',_binary '','DEU','Feuerwehrmann Sam',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11175880_e_h3_ab.jpg',4,NULL,NULL,'SH019883330000'),('EP018486920073','On Halloween, the squad members compete for the title of \"Ultimate Detective Slash Genius\".','Halloween IV',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13341641_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP016391760023','Peter Mehring ist entführt worden und von seiner Frau Claudia verlangen die Entführer 150.000 Euro.','Ohne Abschied',_binary '','DEU','SOKO Wismar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10800888_e_h3_aa.jpg',4,NULL,NULL,'SH016391760000'),('EP018486920076','When a famous author gets death threats, Jake and Terry take the case so Terry can meet his hero.','Skyfire Cycle',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13391285_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP016391760024','Als Merwin Fischer mit seinem neuen ferngesteuerten Boot spielt, macht er einen grausigen Fund.','Außenborder',_binary '','DEU','SOKO Wismar',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10820438_e_h3_aa.jpg',4,NULL,NULL,'SH016391760000'),('EP018486920075','Jake tries to impress Amy\'s father at Thanksgiving dinner and Charles is on turkey duty.','Mr. Santiago',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13468948_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP013031830138','Contestants try to find which of the 100 balls conceal cash and which contain the killer balls.','',_binary '\0','GBR','Golden Balls',NULL,NULL,4,NULL,NULL,'SH013031830000'),('EP018486920074','When Pimento and Rosa decide to tie the knot, the squad prepare a wedding under Amy\'s direction.','Monster in the Closet',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13444920_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP019560690216','Kim befürchtet, Opfer einer illegalen Adoption zu sein. Es existieren Indizien zu dieser Annahme.','Falsche Mütter',_binary '','DEU','Anwälte im Einsatz',NULL,NULL,4,NULL,NULL,'SH019560690000'),('EP033574100008','Die Gäste sind: Jens Spahn, Mehmet Daimagüler, Micky Beisenherz, Bettina Gaus, Michael Bröcker.','Folge 21',_binary '','DEU','maischberger. die woche',NULL,NULL,4,NULL,NULL,'SH033574100000'),('EP013139780023','Little Princess has opened her own cafe, but running a cafe needs lots of organisation.','I Mustn\'t Be Bossy',_binary '','GBR','Little Princess',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8284684_e_h3_aa.jpg',4,NULL,NULL,'SH013139780000'),('EP013139780024','Princess and Algie are having a sleepover at the castle, but Princess is much too excited to sleep.','I Want a Sleepover',_binary '','GBR','Little Princess',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8284686_e_h3_aa.jpg',4,NULL,NULL,'SH013139780000'),('EP024296700114','Jessica heftet sich an die Fersen von Principal Hunter, um zu erfahren, was an der Schule passiert.','Die perfekte Niederlage',_binary '','DEU','Fresh Off the Boat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16531030_e_h3_aa.jpg',4,NULL,NULL,'SH024296700000'),('EP024296700115','Der Valentinstag steht bevor, und Evan feiert zum ersten Mal mit seiner Freundin Sicily.','DIe heimliche Verehrerin',_binary '','DEU','Fresh Off the Boat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16507169_e_h3_aa.jpg',4,NULL,NULL,'SH024296700000'),('EP016507610114','An agnostic man (Kirk Douglas) refuses to attend his grandson\'s bar mitzvah.','Bar Mitzvah',_binary '','GBR','Touched by an Angel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1711189_e_h3_aa.jpg',4,NULL,NULL,'SH016507610000'),('EP024296700112','Louis möchte seinen 40. Geburtstag bei einem Camping-Ausflug in der Wildnis feiern.','Der Cha-Cha-King wird 40',_binary '','DEU','Fresh Off the Boat',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16419094_e_h3_aa.jpg',4,NULL,NULL,'SH024296700000'),('EP021402410049','Winning an award for being role models comes at a price for Sonic and the gang.','Role Models',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12198869_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP022708620016','Watch a well-muscled thespian perform the immortal words of the Bard while pumping iron.','',_binary '\0','GBR','Now That\'s Funny',NULL,NULL,4,NULL,NULL,'SH022708620000'),('EP030986500002','Follow the trials of Baker Flight as they struggle to adapt to the discipline of military life.','Baker Flight',_binary '','GBR','Bomber Boys: The Fighting Lancaster',NULL,NULL,4,NULL,NULL,'SH030986500000'),('EP030986500003','Opening with a re-creation of a Lancaster bomber at war and the haunting memories from the veterans.','Combat',_binary '','GBR','Bomber Boys: The Fighting Lancaster',NULL,NULL,4,NULL,NULL,'SH030986500000'),('EP018486920022','Peralta suspects a civic leader of money laundering, but his investigation is soon shut down.','Charges and Specs',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10625853_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP018486920021','Peralta gets the weekend off and enlists Jeffords\' help in tackling a cold case.','Unsolvable',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10608653_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP021402410045','Things spiral out of control after the gang discover Amy\'s play, that portrays her friends.','Cabin Fever',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12198871_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP021402410048','Eggman slows down time in order to complete his previous New Year\'s resolution - to defeat Sonic!','New Year\'s Retribution',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11999303_e_h3_ab.jpg',4,NULL,NULL,'SH021402410000'),('EP018486920014','Sergeant Jeffords prepares to join Peralta and Boyle in infiltrating a gym.','The Ebony Falcon',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10462134_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP021402410041','Dr Eggman and Amy bond over a tabletop figurine game, and the gang worry about her safety.','Fuzzy Puppy Buddies',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12188780_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP018486920013','Peralta and Santiago\'s bet about who can make the most arrests comes to an embarrassing conclusion.','The Bet',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10448904_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP018486920012','Peralta tries to make a deal with a suspect Diaz has just arrested.','Pontiac Bandit',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10436776_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP018042140075','Anthony comes to the aid of Rottweiler Max, and Angellica meets the team at Medical Detection Dogs.','Fat Rottie',_binary '','GBR','The Dog Rescuers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15658135_e_h3_aa.jpg',4,NULL,NULL,'SH018042140000'),('EP022086540002','In dieser Folge geht es um die Sandstürme, die 2011 über die Hauptstadt Kuwaits und Phoenix fegten.','Gefangen im Sandsturm',_binary '','DEU','Naturgewalten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9302920_e_h3_aa.jpg',4,NULL,NULL,'SH022086540000'),('EP034253870013','In der Rateshow müssen Kandidatenpaar den Wert verschiedener Gegenstände richtig schätzen.','Kandidatenpaar Manuela und Peter',_binary '','DEU','Kitsch oder Kasse',NULL,NULL,4,NULL,NULL,'SH034253870000'),('EP034253870014','In der Rateshow müssen Kandidatenpaar den Wert verschiedener Gegenstände richtig schätzen.','Kandidatenpaar Bianca & Markus',_binary '','DEU','Kitsch oder Kasse',NULL,NULL,4,NULL,NULL,'SH034253870000'),('EP018042140070','Billy is going blind and struggling with kennel life. Can he receive a deserved home this Christmas?','Christmas with the Dog Rescuers',_binary '','GBR','The Dog Rescuers',NULL,NULL,4,NULL,NULL,'SH018042140000'),('EP027255020010','At Bleak Bank farm William takes charge and gets baling during a break in the weather.','',_binary '\0','GBR','The Yorkshire Dales and the Lakes',NULL,NULL,4,NULL,NULL,'SH027255020000'),('EP027255020011','There is a visit to England\'s last remaining slate mine and the cows are brought in for winter.','',_binary '\0','GBR','The Yorkshire Dales and the Lakes',NULL,NULL,4,NULL,NULL,'SH027255020000'),('EP027255020012','Arnold\'s sheep break into the farm next door and Rector Sarah Lunn is busy building communities.','',_binary '\0','GBR','The Yorkshire Dales and the Lakes',NULL,NULL,4,NULL,NULL,'SH027255020000'),('EP019462190523','Timmi und Teddynaut geraten auf einen grauen Planeten, wo nur schlecht gelaunte Bewohner wohnen.','Raketenflieger Timmi: Piesepampelplanet',_binary '','DEU','Unser Sandmännchen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12410265_e_h3_aa.jpg',4,NULL,NULL,'SH019462190000'),('EP018486920011','When Captain Holt receives death threats, Peralta is put in charge of his security.','Christmas',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10360666_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP003337730774','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Auto, Motor, Sex',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP018042140069','Matt rescues Tia and Arora from an outside TV cabinet and Alan meets a rare raccoon dog.','',_binary '\0','GBR','The Dog Rescuers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14536893_e_h3_aa.jpg',4,NULL,NULL,'SH018042140000'),('EP030752620002','From Red Carpet horrors to dated retro shockers, a count down of some celebrity fashion fails.','Fashion Fails',_binary '','GBR','Totally Unbelievable',NULL,NULL,4,NULL,NULL,'SH030752620000'),('EP016991810154','Ben und Semir sollen in ihrem neuesten Fall undercover ein Heroin-Kartell sprengen.','Das Kartell',_binary '','DEU','Alarm für Cobra 11 - Die Autobahnpolizei',NULL,NULL,4,NULL,NULL,'SH016991810000'),('EP014788440010','Alle Produkte rund ums Schlafzimmer werden aus dem aktuellen Sortiment präsentiert.','',_binary '\0','DEU','Das gemütliche Schlafzimmer - Himmlisch schlafen',NULL,NULL,4,NULL,NULL,'SH014788440000'),('EP021402410051','Tails\' workshop is ruined by a fire, and the team have conflicting versions of how it happened.','Fire in a Crowded Workshop',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12106883_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP021402410050','Tails has a crush! Also, Dr Eggman has some difficulty picking up his package from the post office.','Tails\' Crush',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12001810_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP013709260073','The fearless investigators do a ward round of the abandoned 19th-century Tuolumne Hospital.','Tuolumne Hospital',_binary '','GBR','Ghost Adventures',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10117055_e_h3_aa.jpg',4,NULL,NULL,'SH013709260000'),('EP012623900607','Danni Menzies shows Gary and Linda five properties around Manilva in southern Spain.','Manilva',_binary '','GBR','A Place in the Sun',NULL,NULL,4,NULL,NULL,'SH012623900000'),('EP013709260072','The team investigate a saloon near the site of the crash which killed legend Carole Lombard.','The Pioneer Saloon',_binary '','GBR','Ghost Adventures',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9746643_e_h3_ab.jpg',4,NULL,NULL,'SH013709260000'),('EP016507610120','The angels help a female convict face the truth about a crime she does not believe she committed.','True Confessions',_binary '','GBR','Touched by an Angel',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1711190_e_h3_aa.jpg',4,NULL,NULL,'SH016507610000'),('EP012623900609','Joanne and Dean from Hertfordshire look to buy their own holiday home in Tenerife.','Costa Adeje',_binary '','GBR','A Place in the Sun',NULL,NULL,4,NULL,NULL,'SH012623900000'),('EP020868640015','Jürgen H. leidet unter Gicht. Franziska K. hat einen Reizdarm, der ihr Leben stark beeinflusst.','Folge 15',_binary '','DEU','Die Ernährungs-Docs',NULL,NULL,4,NULL,NULL,'SH020868640000'),('EP022417610078','Brian Rose talks to world superbike racer Carl Fogarty about his life lessons.','Carl Fogarty',_binary '','GBR','London Real',NULL,NULL,4,NULL,NULL,'SH022417610000'),('EP012671510037','A driver blows the highest reading Roman and Ronnie have ever seen on a breathalyser.','',_binary '\0','GBR','Road Wars',NULL,NULL,4,NULL,NULL,'SH012671510000'),('EP024705800029','Glamour girl Hannah wants a glitzy gown to rival a Kardashian.','Brides Just Wanna Be Glam',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13597828_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP021402410029','Dave The Intern wants to prove his villainy to his mother, and inadvertently captures Eggman.','Next Top Villain',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11921859_e_h3_aa.jpg',4,NULL,NULL,'SH021402410000'),('EP024705800028','Lacie wants an extravagant glittery princess dress with the \"wow\" factor.','Dreams Do Come True',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13597827_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP024705800027','Katie had a serious illness that hit her confidence, but it won\'t stand in the way of her dress.','Wrong Frock Shock',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13597825_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP003337730740','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Alm III - Girlfriends on Tour',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP024705800026','Sophia wants a beaded dress that nods to her Pakistani and Cypriot heritage.','Culture Clash',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13580746_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP024705800025','Best friends Alice and Katie go wedding dress shopping together. Can David help?','Bridal BFFs',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13580739_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP024705800024','Nana is Ghanaian royalty and is running out of time to find her wedding gown.','Fit for a Princess Bride',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13560537_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP019855871382','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Ruhrgebiet.','',_binary '\0','DEU','Lokalzeit Ruhr',NULL,NULL,4,NULL,NULL,'SH019855870000'),('EP024705800023','Glamour model Danielle Lloyd is marrying for a second time and won\'t repeat the same dress mistakes.','Sexy Versus Princess',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13560534_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP019855871381','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Ruhrgebiet.','',_binary '\0','DEU','Lokalzeit Ruhr',NULL,NULL,4,NULL,NULL,'SH019855870000'),('EP034398560004','Brand new series: Quiz show with Jon Snow. Britain\'s best quiz teams face TV\'s toughest questions, on any topic. So Far Solent Good take on Picture Perfect.','',_binary '\0','GBR','Jon Snow\'s Very Hard Questions',NULL,NULL,4,NULL,NULL,'SH034398560000'),('EP034398560003','Ein-Steins and The Kumars at Number 15 compete for a place in the grand final.','',_binary '\0','GBR','Jon Snow\'s Very Hard Questions',NULL,NULL,4,NULL,NULL,'SH034398560000'),('EP030382920008','Rosy is very sad and even the morning is gloomy as they cannot see the sun today.','The Sun',_binary '','GBR','Baby Riki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15871221_e_h3_aa.jpg',4,NULL,NULL,'SH030382920000'),('EP030382920009','Krashy teaches Rosy and Wally how to jump, thinking it is simple and fun but it is not for everyone.','Hopping',_binary '','GBR','Baby Riki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15871226_e_h3_aa.jpg',4,NULL,NULL,'SH030382920000'),('EP033320290001','The boys\' team of rugby player Franc, American Footballer Reef and gymnast Sol are in Guatemala.','Guatemala Day 1',_binary '','GBR','A Week to Beat the World',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17459022_e_h3_aa.jpg',4,NULL,NULL,'SH033320290000'),('EP030382920006','Rosy cannot find her red panama hat and Wally tries his best to help her find it.','The Hat',_binary '','GBR','Baby Riki',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15871198_e_h3_aa.jpg',4,NULL,NULL,'SH030382920000'),('EP032912880003','Der Sommer ist eine Zeit der Fülle. Die Natur zeigt sich von ihrer schönsten Seite und bietet vielen Tieren die Chance, an leckeres Futter zu kommen und auf Partnersuche zu gehen.Auf der Weihnachtsinsel beginnt die Wanderung der Roten Landkrabben.','Sommer',_binary '','DEU','Magie der Jahreszeiten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17244075_e_h3_aa.jpg',4,NULL,NULL,'SH032912880000'),('EP019658750027','Ilana\'s parents visit for their 30th anniversary, but Abbi and Ilana find it hard to celebrate.','Burning Bridges',_binary '','GBR','Broad City',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12680695_e_h3_ab.jpg',4,NULL,NULL,'SH019658750000'),('EP032012092466','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 28.02.2020, 00:53 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP034332530003','Christopher Donnelly was found battered. His wife Hannegret had been abusing him at home for years.','Hannegret Donnelly',_binary '','GBR','The Lady Killers',NULL,NULL,4,NULL,NULL,'SH034332530000'),('EP015402360511','Die Tour soll Ariane Reimers und Ronald Schütze vom Qinghai-See bis hinauf zum Animaqing führen.','Mit dem Rad durch China - Abenteuer in Yunnan',_binary '','DEU','Länder - Menschen - Abenteuer',NULL,NULL,4,NULL,NULL,'SH015402360000'),('EP018077060051','Featuring footage of two off-duty police officers as they tackle an armed gang.','',_binary '\0','GBR','Criminals: Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14709913_e_h3_aa.jpg',4,NULL,NULL,'SH018077060000'),('EP019560330275','Das Nachrichtenmagazin berichtet über die aktuellsten Geschehnisse des Tages.','',_binary '\0','DEU','SAT.1 Nachrichten',NULL,NULL,4,NULL,NULL,'SH019560330000'),('EP032012092461','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 13:58 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP032012092460','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 10:55 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP019560330274','Das Nachrichtenmagazin berichtet über die aktuellsten Geschehnisse des Tages.','',_binary '\0','DEU','SAT.1 Nachrichten',NULL,NULL,4,NULL,NULL,'SH019560330000'),('EP024705800018','Nasreen travels from Dubai with just a few days to find her dream dress - the countdown is on.','Sky High Expectations',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13253978_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP032012092463','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 19:30 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP024705800017','Josie feels frustrated when her sister and sister-in-law disagree over her wedding dress.','Squabbling Sisters',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13253973_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP032012092462','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 17:45 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP024705800016','Steph wants a mermaid dress for her beach wedding, but her mum has something else in mind.','Mother Knows Best',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13232963_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP032912880001','Unterschiedliche Jahreszeiten prägen das Leben auf unserem Planeten. Ihr immerwährender Zyklus bestimmt das Leben von Pflanzen und Tieren, bringt neue Chancen und Gefahren.Der Frühling ist die Zeit des Neubeginns, des Werdens und Wachsens.','Frühling',_binary '','DEU','Magie der Jahreszeiten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17244069_e_h3_aa.jpg',4,NULL,NULL,'SH032912880000'),('EP032012092465','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 23:03 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP024705800015','Bride Lara beat a brain illness but the weight she gained makes dress shopping a trial.','Dare To Be Me',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13232962_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP032012092464','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 21:45 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP024705800014','Laura wants a frock to rock with her favourite leather jacket.','Leather and Lace',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13208478_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP024705800013','Fussy bride Katie that has unsuccessfully tried on countless dresses.','Picky Princess',_binary '','GBR','Say Yes to the Dress UK',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13208475_e_h3_aa.jpg',4,NULL,NULL,'SH024705800000'),('EP021402410031','The guys go undercover and form a boy band to prove that Sticks and Amy are being brainwashed.','Battle of the Boy Bands',_binary '','GBR','Sonic Boom',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12001802_e_h3_ab.jpg',4,NULL,NULL,'SH021402410000'),('EP018486920024','Captain Holt is taken by surprise when his long-time nemesis, Deputy Chief Madeline Wuntch, arrives.','Chocolate Milk',_binary '','GBR','Brooklyn Nine-Nine',NULL,NULL,4,NULL,NULL,'SH018486920000'),('EP018486920023','Peralta\'s undercover FBI operation ends in a successful mass arrest.','Undercover',_binary '','GBR','Brooklyn Nine-Nine',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10909519_e_h3_ab.jpg',4,NULL,NULL,'SH018486920000'),('EP033320290019','It\'s day four of the girls\' team adventure in Mongolia for Alesha, Jocelyn and Neisha.','Mongolia Day 4',_binary '','GBR','A Week to Beat the World',NULL,NULL,4,NULL,NULL,'SH033320290000'),('EP033320290018','It\'s day three of the girls\' team adventure in Mongolia for Alesha, Jocelyn and Neisha.','Mongolia Day 3',_binary '','GBR','A Week to Beat the World',NULL,NULL,4,NULL,NULL,'SH033320290000'),('EP019658750029','Abbi and Ilana go on a trip but getting to the airport ends up being a trip in itself.','Getting There',_binary '','GBR','Broad City',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12702950_e_h3_ab.jpg',4,NULL,NULL,'SH019658750000'),('EP019658750028','Abbi and Ilana list their apartments on B&B-NYC to make some extra money.','B&B-NYC',_binary '','GBR','Broad City',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12660994_e_h3_ab.jpg',4,NULL,NULL,'SH019658750000'),('EP032012092456','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 23:33 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP012698770010','Dr. Greene gives up his dream of joining NASA; Carter releases Lucy from mentorship.','Double Blind',_binary '','GBR','ER',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712618_e_h3_ab.jpg',4,NULL,NULL,'SH012698770000'),('EP032012092455','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 21:45 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP026984750004','Agent Danny finds out what a day in the life of a zookeeper is really like.','Zookeeper',_binary '','GBR','Mission Employable',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14167781_e_h3_aa.jpg',4,NULL,NULL,'SH026984750000'),('EP032012092458','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 02:18 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP026984750003','Agent Danny gets the chance to train with the ladies\' team at Sunderland AFC.','Footballer',_binary '','GBR','Mission Employable',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14167777_e_h3_aa.jpg',4,NULL,NULL,'SH026984750000'),('EP032012092457','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 01:18 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP013040330080','Craig and Jo look to move from London to the north Cornwall coast on their £750,000 budget.','',_binary '\0','GBR','Fantasy Homes by the Sea',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16233500_e_h3_aa.jpg',4,NULL,NULL,'SH013040330000'),('EP032012092459','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 27.02.2020, 08:48 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP030053650008','A moving look at the emotional difficulties of being a mum in prison. At HMP Foston Hall, Kelly seeks to renew contact with her boys, while Lexi has some tough questions to answer.','',_binary '\0','GBR','Prison',NULL,NULL,4,NULL,NULL,'SH030053650000'),('EP019578551675','Der Fotograf York Hovest ist zu Gast und berichtet von seinem aktuellen Bildband \"Helden der Meere\".','',_binary '\0','DEU','DAS!',NULL,NULL,4,NULL,NULL,'SH019578550000'),('EP032012092450','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 08:48 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP018573510931','Ausführliche Wettervorhersage für Deutschland in den kommenden Tagen.','',_binary '\0','DEU','RTL Nachtjournal - Das Wetter',NULL,NULL,4,NULL,NULL,'SH018573510000'),('EP018573510932','Ausführliche Wettervorhersage für Deutschland in den kommenden Tagen.','',_binary '\0','DEU','RTL Nachtjournal - Das Wetter',NULL,NULL,4,NULL,NULL,'SH018573510000'),('EP019758630142','Der `Fliegende Calimero\' unterstützt den Bürgermeister bei dem Wettbewerb für den schönsten Garten.','Der Fliegende Calimero; Die schüchterne Romi',_binary '','DEU','Calimero',NULL,NULL,4,NULL,NULL,'SH019758630000'),('EP016628550040','The Dubai World Cup Carnival runs from January to March every year.','',_binary '\0','GBR','Live: Dubai World Cup Carnival Horse Racing',NULL,NULL,4,NULL,NULL,'SH016628550000'),('EP032012092452','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 13:58 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP023609770002','In dieser Folge werden verschiedene Zustandsänderungen eines Gases besprochen.','Thermodynamische Systeme',_binary '','DEU','TELEKOLLEG Technologie',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12596901_e_h3_aa.jpg',4,NULL,NULL,'SH023609770000'),('EP014466550035','The disappearance of a soldier linked to atomic testing, plus the tale of an elaborate bank job.','',_binary '\0','GBR','Unsolved Mysteries',NULL,NULL,4,NULL,NULL,'SH014466550000'),('EP032012092451','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 10:55 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP014466550036','An attacked woman makes an amazing recovery, and a photography student disappears in San Francisco.','',_binary '\0','GBR','Unsolved Mysteries',NULL,NULL,4,NULL,NULL,'SH014466550000'),('EP032012092454','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 19:30 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP019578551673','Das tägliche Nachrichten- und Talkmagazin berichtet über tagesaktuelle Ereignisse.','',_binary '\0','DEU','DAS!',NULL,NULL,4,NULL,NULL,'SH019578550000'),('EP032012092453','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 17:45 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP019578551674','Das tägliche Nachrichten- und Talkmagazin berichtet über tagesaktuelle Ereignisse.','Gast: Josef M. Gaßner, Physiker',_binary '','DEU','DAS!',NULL,NULL,4,NULL,NULL,'SH019578550000'),('EP019759590017','Andy und Lou nehmen an einer Spieleshow teil, ob sie wohl viele Preise abräumen werden?','Folge 16',_binary '','DEU','Little Britain',NULL,NULL,4,NULL,NULL,'SH019759590000'),('EP003337730688','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.','Sexy Sport Games',_binary '','DEU','SPORT CLIPS',NULL,NULL,4,NULL,NULL,'SH003337730000'),('EP014466550037','The miracle of Our Lady of Guadalupe is explored, and the death of a rock star is also investigated.','',_binary '\0','GBR','Unsolved Mysteries',NULL,NULL,4,NULL,NULL,'SH014466550000'),('EP019562270055','Jonathan ist Arzt und untersucht Üauls Bruder George, einen von Geburt aphatischen Mann.','Ein unnötiges Opfer',_binary '','DEU','Ein Engel auf Erden',NULL,NULL,4,NULL,NULL,'SH019562270000'),('EP012838610025','A teenager shoots at a doctor, hits an innocent, then kills himself.','Positive',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289935_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP014466550038','The tale of the friendly Gray Man ghost, plus the story behind anthrax sent through the US Mail.','',_binary '\0','GBR','Unsolved Mysteries',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8074752_e_h3_aa.jpg',4,NULL,NULL,'SH014466550000'),('EP012838610022','McCoy and Southerlyn are determined to get a hit-and-run driver on a murder charge.','Darwinian',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289878_e_h3_ac.jpg',4,NULL,NULL,'SH012838610000'),('EP019098250131','Die Bundesligaprofis von Borussia Mönchengladbach fahren inmitten von Terrorzeiten nach Tel Aviv.','Geheimmission Tel Aviv - Wie Fußball die Geschichte veränderte',_binary '','DEU','Geschichte im Ersten',NULL,NULL,4,NULL,NULL,'SH019098250000'),('EP012838610020','An embedded reporter reveals too much about his unit\'s position in Iraq, and is shot.','Embedded',_binary '','GBR','Law & Order',NULL,'https://s3.amazonaws.com/schedulesdirect/assets/p1289875_e_h3_aa.jpg',4,NULL,NULL,'SH012838610000'),('EP012838610021','When a factory owner is found murdered, the detectives search for an unidentified evening caller.','Ill-Conceived',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289876_e_h3_ac.jpg',4,NULL,NULL,'SH012838610000'),('EP019666900393','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','Folge 320',_binary '','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP027662080010','Sarah and Jay save a jacket, a bird cage, a Japanese instrument and fabric from South East Asia.','',_binary '\0','GBR','Celebrity Money for Nothing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14511582_e_h3_aa.jpg',4,NULL,NULL,'SH027662080000'),('EP012588780151','Poirot investigates when a middle-aged man is found stabbed to death.','The Clocks',_binary '','GBR','Agatha Christie\'s Poirot',NULL,NULL,4,NULL,NULL,'SH012588780000'),('EP014287220161','Live coverage of questions in the House of Commons to Prime Minister Boris Johnson.','',_binary '\0','GBR','Prime Minister\'s Questions',NULL,NULL,4,NULL,NULL,'SH014287220000'),('EP019562270053','Mark wird mit Jonathans Fähigkeiten ausgestattet und in einen Hund verwandelt.','Ein traumhafter Auftrag',_binary '','DEU','Ein Engel auf Erden',NULL,NULL,4,NULL,NULL,'SH019562270000'),('EP019952770258','Die Moderatorin beleuchtet im Ranking neue Erfindungen und Trends aus der Lebensmittelbranche.','Ranking: Food extrem (3)',_binary '','DEU','Galileo 360°',NULL,NULL,4,NULL,NULL,'SH019952770000'),('EP033589520001','This historic coastal walk takes artist Shanaz Gulzar along a stretch of the 109-mile Cleveland Way.','Runswick Bay to Whitby',_binary '','GBR','Yorkshire Walks',NULL,NULL,4,NULL,NULL,'SH033589520000'),('EP025360430029','Police spot two men acting suspiciously and drive home a drunk man they found at the roadside.','',_binary '\0','GBR','Cops UK: Bodycam Squad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16281117_e_h3_ab.jpg',4,NULL,NULL,'SH025360430000'),('EP012698770012','Dr. Ross helps a single mother cope with her child\'s disorder.','Choosing Joi',_binary '','GBR','ER',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1712620_e_h3_ab.jpg',4,NULL,NULL,'SH012698770000'),('EP019759590016','Bei einem Aufenthalt im Spa-Hotel läuft Bubbles de Vere in ihren Ex-Mann und seine junge Freundin.','Folge 15',_binary '','DEU','Little Britain',NULL,NULL,4,NULL,NULL,'SH019759590000'),('EP019562270051','Die Ex-Schauspielerin Tawny wird von Mark und Jonathan in ein Sommercamp für Blinde Kinder gebracht.','Ein neuer Anfang?',_binary '','DEU','Ein Engel auf Erden',NULL,NULL,4,NULL,NULL,'SH019562270000'),('EP025360430028','Two young men are stabbed outside a fast-food restaurant and the police chase down the suspects.','',_binary '\0','GBR','Cops UK: Bodycam Squad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16253373_e_h3_ab.jpg',4,NULL,NULL,'SH025360430000'),('EP021430130048','Weil Heidrun androht, ihn nie wieder zum Abendessen bei den Hoffmanns einzuladen, wenn er nicht netter zu Hannah ist, gibt sich Edwin redlich Mühe, freundlich zu sein - wenn auch nicht aus Überzeugung. Und zu seiner Überraschung funktioniert die.','Ich bring dich um',_binary '','DEU','Rentnercops',NULL,NULL,4,NULL,NULL,'SH021430130000'),('EP032012092449','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 02:33 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP013033590143','Jaz Mudhar felt time was running out for her dream of Australia.','Mudhar',_binary '','GBR','Wanted Down Under Revisited',NULL,NULL,4,NULL,NULL,'SH013033590000'),('EP032012092448','Die Nachrichtensendung berichtet von regionalen und internationalen Ereignissen.','vom 26.02.2020, 01:03 Uhr',_binary '','DEU','MDR aktuell',NULL,NULL,4,NULL,NULL,'SH032012090000'),('EP019559640122','Ein Dämon hat die Macht über die sieben Todsünden und kämpft damit gegen die Hexen.','Die sieben Todsünden',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134966_e_h3_ac.jpg',4,NULL,NULL,'SH019559640000'),('EP027662080002','Louise Minchin and Chris Hollins open their homes to Sarah and Jay who search for trash to save.','',_binary '\0','GBR','Celebrity Money for Nothing',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14488404_e_h3_aa.jpg',4,NULL,NULL,'SH027662080000'),('EP031781460002','Lily is eager to help Jas with her form, but Jas herself just wants to eat snacks.','Jas and Lily',_binary '','GBR','So Awkward Files',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16671084_e_h3_aa.jpg',4,NULL,NULL,'SH031781460000'),('EP019560641349','Eine blutende Frau läuft verwirrt im Abendkleid umher. Die Polizei wird auf sie aufmerksam.','Findet Nori',_binary '','DEU','Auf Streife',NULL,NULL,4,NULL,NULL,'SH019560640000'),('EP013378660008','When John Basilone falls for the beautiful Lena, the couple must come to terms with his departure.','Part Eight',_binary '','GBR','The Pacific',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8068958_e_h3_aa.jpg',4,NULL,NULL,'SH013378660000'),('EP012838610037','Detectives discover a murdered prosecutor had been using an alias.','Nowhere Man',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289886_e_h3_ad.jpg',4,NULL,NULL,'SH012838610000'),('EP023120050001','Simon explores the early years of the country, its emergence as the battleground of empires.','Conquest',_binary '','GBR','Blood and Gold: The Making of Spain with Simon Sebag Montefiore',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12353213_e_h3_aa.jpg',4,NULL,NULL,'SH023120050000'),('EP025360430036','James is called to a man threatening to throw himself into a river.','',_binary '\0','GBR','Cops UK: Bodycam Squad',NULL,NULL,4,NULL,NULL,'SH025360430000'),('EP025360430035','Laura makes her first arrest and James is called to a disturbance on a quiet residential street.','',_binary '\0','GBR','Cops UK: Bodycam Squad',NULL,NULL,4,NULL,NULL,'SH025360430000'),('EP012838610033','The detectives investigate the murder of a Hollywood producer, whose death could be mob-related.','Everybody Loves Raimondo\'s',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289887_e_h3_ac.jpg',4,NULL,NULL,'SH012838610000'),('EP012838610034','When a woman is beaten to death, the police look to an ambulance driver stealing from passengers.','Evil Breeds',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289885_e_h3_aa.jpg',4,NULL,NULL,'SH012838610000'),('EP018050100365','Celebrating Howard Jones\' birthday with his biggest hits in one non-stop 10-minute mix!','Howard Jones',_binary '','GBR','Sounds of the 80s',NULL,NULL,4,NULL,NULL,'SH018050100000'),('EP029035350387','TV-Koch Roland Trettl heißt Singles aus ganz Deutschland in seinem Restaurant willkommen.','Barbara und Maik',_binary '','DEU','First Dates - Ein Tisch für zwei',NULL,NULL,4,NULL,NULL,'SH029035350000'),('EP033331500001','Wissenschaftler auf der ganzen Welt sind sich einig: Die globale Erwärmung ist menschengemacht.','Die Fakten',_binary '','DEU','Klima außer Kontrolle',NULL,NULL,4,NULL,NULL,'SH033331500000'),('EP034331040003','Sue lost control of the housework since she moving in with her mother who has dementia.','',_binary '\0','GBR','Filthy House SOS',NULL,NULL,4,NULL,NULL,'SH034331040000'),('EP033331500002','Die Klimaforscher zeigen, wie gefährlich eine Erwärmung von zwei Grad Celsius und mehr wäre.','Auswirkungen und Strategien',_binary '','DEU','Klima außer Kontrolle',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17464904_e_h3_aa.jpg',4,NULL,NULL,'SH033331500000'),('EP019559640127','Piper und Leo haben endlich geheiratet, doch schon stehen sie vor der nächsten wichtigen Frage.','Aller guten Dinge sind Neun',_binary '','DEU','Charmed - Zauberhafte Hexen',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2134964_e_h3_ab.jpg',4,NULL,NULL,'SH019559640000'),('EP019088410097','Lauren\'s symptoms could suggest multiple sclerosis and Clothilde has high blood pressure.','',_binary '\0','GBR','GPs: Behind Closed Doors',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14210551_e_h3_aa.jpg',4,NULL,NULL,'SH019088410000'),('EP019188450070','In Carpentras, painter and decorator Lydia gives a pair of side tables the shabby-chic look.','Carpentras & Manchester',_binary '','GBR','French Collection',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10793026_e_h3_aa.jpg',4,NULL,NULL,'SH019188450000'),('EP025207040040','Grizzy finds two identical vases that are actually communicating vessels.','Teleportation\'s the Way to Go!',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968747_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040041','Grizzy snatches the last jar of chocolate spread out from under the noses of the Lemmings.','The Sound of a Lemming',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968749_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP014788440009','Alle Produkte rund ums Schlafzimmer werden aus dem aktuellen Sortiment präsentiert.','',_binary '\0','DEU','Das gemütliche Schlafzimmer - Himmlisch schlafen',NULL,NULL,4,NULL,NULL,'SH014788440000'),('EP025207040042','Grizzy dreams that he\'s a valiant knight who has delivered his beloved.','A Midsummer Bear\'s Dream',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092765_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040043','Grizzy sees his stock of chocolate spread depleted, but realises that the Lemmings are making some.','Manufacturing Secret',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092770_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040044','Grizzy gleefully discovers that he can print images taken with the ranger\'s camera.','Bear Prints',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092782_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP031649620024','Voters in Edinburgh put their questions to Keith Brown, Oliver Mundell and Monica Lennon.','',_binary '\0','GBR','Debate Night',NULL,NULL,4,NULL,NULL,'SH031649620000'),('EP012603133301','A limousine company accuses drunken partygoers of damaging a vehicle.','',_binary '\0','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP025207040045','Grizzy imagines himself offering the ranger\'s engagement ring to his beloved she-bear.','Bling Bling Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092774_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040046','Grizzy is transformed into an exceptionally intelligent being capable of predicting future events.','Intellectual Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092767_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040047','The Lemmings prepare a dream afternoon snack with the last jar of chocolate spread in the cupboard.','Voodoo Blanket',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14092777_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP015403140239','Das Reisemagazin stellt norddeutsche Landschaften, menschliche Originale, Spaß und Sport vor.','',_binary '\0','DEU','Nordtour',NULL,NULL,4,NULL,NULL,'SH015403140000'),('EP025207040048','A van pulls up to the ranger\'s cabin to deliver a full crate of jars of chocolate spread.','Inspector Grizzy',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14221414_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP029100490006','Emily und die Crew werden von einem Sturm überrascht und ein Teil der Ausrüstung droht zu versinken.','Neue Saison, neues Glück',_binary '','DEU','Die Schatzsucher - Goldtaucher der Beringsee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11524959_e_h3_aa.jpg',4,NULL,NULL,'SH029100490000'),('EP012838610003','New York\'s most infamous baseball fan is stabbed to death in a bar.','Vendetta',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289888_e_h3_ad.jpg',4,NULL,NULL,'SH012838610000'),('EP030518540063','Robert Peston presents a fresh, intelligent and lively perspective on the big matters of the day.','',_binary '\0','GBR','Peston',NULL,NULL,4,NULL,NULL,'SH030518540000'),('EP030057840005','Am 8. Dezember 1941 entscheidet Präsident Roosevelt allein über den weiteren Verlauf der Geschichte.','Roosevelt und Pearl Harbor',_binary '','DEU','Tag der Entscheidung',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15710492_e_h3_aa.jpg',4,NULL,NULL,'SH030057840000'),('EP019836710038','Todd Hoffmans Aussichten, dass sich alles noch zum Guten wendet, sind vielversprechend.','Ein harter Deal',_binary '','DEU','Die Schatzsucher - Goldrausch in Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11146592_e_h3_ab.jpg',4,NULL,NULL,'SH019836710000'),('EP019836710037','Für Todd Hoffman läuft es gut, während Parker Schnabel auf großen Benzinkosten sitzen bleibt.','Goldfieber',_binary '','DEU','Die Schatzsucher - Goldrausch in Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11125026_e_h3_ac.jpg',4,NULL,NULL,'SH019836710000'),('EP019836710039','Massive Geldsorgen bedrohen die Existenzen der Goldsucher in Alaska.','Goldzilla',_binary '','DEU','Die Schatzsucher - Goldrausch in Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11210712_e_h3_ab.jpg',4,NULL,NULL,'SH019836710000'),('EP027609630086','Themen: Banale Preisverleihung Fit For Pfand Zu Gast: Schauspieler und Regisseur Dani Levy.','Live aus Berlin',_binary '','DEU','Abendshow - Live aus Berlin',NULL,NULL,4,NULL,NULL,'SH027609630000'),('EP019577750295','Plankton tarnt sich als Flaschengeist. Dadurch versucht er, endlich die Geheimformel herauszufinden.','Flaschendrehen; Da ist ein Schwamm in meiner Suppe',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14338263_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP019577750293','Als ein prähistorischer Schwamm aufgetaut wird, kann niemand außer SpongeBob mit ihm kommunizieren.','Der Höhlenschwamm; Der Muschelflüsterer',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14408565_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP019577750292','Mr. Krabs hat Angst, dass die Krosse Krabbe den strengen Gesundheitscheck nicht besteht.','Amöbennachwuchs; Der Gesundheits-Check',_binary '','DEU','SpongeBob Schwammkopf',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13894965_e_h3_aa.jpg',4,NULL,NULL,'SH019577750000'),('EP019577901554','Das Nachrichtenmagazin für die Region zwischen Nord- und Ostsee.','',_binary '\0','DEU','Schleswig-Holstein Magazin',NULL,NULL,4,NULL,NULL,'SH019577900000'),('EP018077060012','A CCTV operator\'s instincts lead him to keep an eye on a man acting suspiciously at a train station.','Armed and Dangerous',_binary '','GBR','Criminals: Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11070005_e_h3_aa.jpg',4,NULL,NULL,'SH018077060000'),('EP034354990003','Watch the latest round-up of the all this week\'s action from the FIH Pro League.','',_binary '\0','GBR','FIH Hockey Pro League Highlights Show',NULL,NULL,4,NULL,NULL,'SH034354990000'),('EP019577901553','Das Nachrichtenmagazin für die Region zwischen Nord- und Ostsee.','',_binary '\0','DEU','Schleswig-Holstein Magazin',NULL,NULL,4,NULL,NULL,'SH019577900000'),('EP019570890013','Hook nimmt an einem Drifting-Autorennen in Tokio teil. Hook will wie die Flugzeuge fliegen.','Hook in Tokio; Hook hebt ab',_binary '','DEU','Cars Toons - Hooks unglaubliche Geschichten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14784308_e_h3_aa.jpg',4,NULL,NULL,'SH019570890000'),('EP018077060015','Journalist Nick Wallis investigates the effect of alcohol and drugs-related violence.','Streets of Rage',_binary '','GBR','Criminals: Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11220194_e_h3_aa.jpg',4,NULL,NULL,'SH018077060000'),('EP018077060014','Nick Wallis reveals how CCTV and technological advances are helping to ensure convictions.','Assault and Robbery',_binary '','GBR','Criminals: Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11176336_e_h3_aa.jpg',4,NULL,NULL,'SH018077060000'),('EP018077060013','Footage includes communities fighting back as neighbourhood watch takes on new meaning.','Burglars and Break-Ins',_binary '','GBR','Criminals: Caught on Camera',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11156148_e_h3_aa.jpg',4,NULL,NULL,'SH018077060000'),('EP016047780078','Moe returns to Fort Worth to make his annual purchase and Ricky and Bubba get devious.','Moe\'s Def',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10412249_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP016047780077','Jenny employs a new strategy when the buyers arrive in the city of Longview.','For the Benefit of Mr. Charles',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10412241_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP012861820184','Carrie takes a temporary job working with Doug. What could possibly go wrong?','Santa Claustrophobia',_binary '','GBR','The King of Queens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2147803_e_h3_ab.jpg',4,NULL,NULL,'SH012861820000'),('EP016047780076','The bidders seek treasures in the upscale hamlet of Haslet, and Ricky\'s mother clashes with Lesa.','Puffy the Auction Slayer',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10341839_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP012861820185','Deacon and Kelly decide to take Arthur out to dinner so that Doug and Carrie can be alone.','Switch Sitters',_binary '','GBR','The King of Queens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2147806_e_h3_ab.jpg',4,NULL,NULL,'SH012861820000'),('EP016047780075','Bubba works solo in the city of Longview and Kenny gets an unexpected dance partner.','Waltz Across Texas',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10341838_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP012861820182','Carrie reminds Doug of a past incident when he wants to buy a chainsaw from an infomercial.','Dougie Houser',_binary '','GBR','The King of Queens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2147804_e_h3_ab.jpg',4,NULL,NULL,'SH012861820000'),('EP012861820183','After Arthur wins $2,500 playing bingo, a dispute erupts over how the money should be spent.','Frigid Heirs',_binary '','GBR','The King of Queens',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2147805_e_h3_aa.jpg',4,NULL,NULL,'SH012861820000'),('EP016047780074','The buyers brawl in the city of Henderson and Vic and Sonny receive a shot in the arm.','When Vic Comes to Shove',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10341837_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP016047780073','The buyers visit the city of Mesquite and Mary\'s discovery leads her to a llama farm.','Everything\'s Coming Up Sonny!',_binary '','GBR','Storage Wars Texas',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10341836_e_h3_aa.jpg',4,NULL,NULL,'SH016047780000'),('EP012838610017','A bank manager is forced to commit a robbery when his daughter is kidnapped.','Thinking Makes It So',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289934_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP025207040020','After making a fool of himself in front of the she-bear, Grizzy is ousted from the cabin.','Bear Luck',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13517315_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP019666900344','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','Folge 274',_binary '','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP019666900343','Vier prominente Gäste spielen in Einzelduellen gegen den `Jäger\' für gute Zwecke.','Folge 273',_binary '','DEU','Gefragt - Gejagt',NULL,NULL,4,NULL,NULL,'SH019666900000'),('EP025207040022','Grizzy and the Lemmings discover the entrance to an underground gallery with an old treasure card.','Treasure Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13517317_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP013033590112','A near-fatal crash made Paul determined to live life to the full, not in the UK but in New Zealand.','Nicholls Family',_binary '','GBR','Wanted Down Under Revisited',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15198272_e_h3_aa.jpg',4,NULL,NULL,'SH013033590000'),('EP025207040023','Grizzy discovers a baby raccoon not far from the log cabin and adopts the creature.','Bear\'s Best Friend',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13598189_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040024','Grizzy is persuaded that the she-bear he\'s in love with has been turned into a frog.','Bear Charm',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13598192_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040025','Grizzy builds a look-alike robot to keep the Lemmings away while he prepares a party.','Fake Brothers',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13598196_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP019973301228','Die interaktive Fernsehsendung, bei der via Chat Fragen an die Gäste gestellt werden können.','',_binary '\0','DEU','heute+',NULL,NULL,4,NULL,NULL,'SH019973300000'),('EP025207040027','Grizzy discovers the pleasures of video games on the ranger\'s console.','Super Grizzy Bros',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13598206_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040028','When a meteorite falls not far from the log cabin, strange berries start to grow.','A Sizeable Problem',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13753682_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP021410940031','Journalist Nikki Fox discovers what\'s really in takeaways, and what they do to people\'s health.','Takeaways',_binary '','GBR','The Truth About...',NULL,NULL,4,NULL,NULL,'SH021410940000'),('EP019003870007','Andy Wilson and his wife attempt to raise the money to renovate an Edwardian property in Derbyshire.','Andy and Marie Wilson',_binary '','GBR','My Dream Derelict Home',NULL,NULL,4,NULL,NULL,'SH019003870000'),('EP025207040029','Grizzy is disturbed in the middle of his TV snack by a flow of incongruous objects.','Lemming Airlines',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13896899_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP017805980062','Tee is so excited about a dinosaur party that he accidentally loses his voice from over-rawr-ing.','Dino Tee',_binary '','GBR','Tee and Mo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15793153_e_h3_aa.jpg',4,NULL,NULL,'SH017805980000'),('EP026041300006','Five arrives to get the band together, and the party started, with a big high five.','Five',_binary '','GBR','Numberblocks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13743886_e_h3_aa.jpg',4,NULL,NULL,'SH026041300000'),('EP019188450005','Three rivals with a passion for all things vintage and retro get 800 euros to spend in Paris.','Porte de Vanves & York',_binary '','GBR','French Collection',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10770562_e_h3_aa.jpg',4,NULL,NULL,'SH019188450000'),('EP012838610066','Investigation of a series of seemingly random murders leads to a hit list that includes Jack McCoy.','Criminal Law',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289925_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP012838610065','Van Buren leads a mission to catch the killer of a friend\'s daughter.','Acid',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289926_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP013316830443','Highlights from the Virgin Australia Supercars Championship.','Adelaide 500: Race 2',_binary '','GBR','Virgin Australia Championship Supercars',NULL,NULL,4,NULL,NULL,'SH013316830000'),('EP025207040030','The Lemmings throw a surprise birthday party for one of the clan.','Happy Birthday',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13896906_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040031','A gust of wind sweeps away the flower that Grizzy\'s adored she-bear wears in her hair.','Flower Power',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13896902_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040032','Grizzy tries to impress the she-bear he\'s in love with by making a sculpture of her out of wood.','Bear Art',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968728_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040033','Grizzy finds a vintage stopwatch in the garage which lets one wind back the minute that has passed.','Bear Countdown',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968729_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040034','The Lemmings play kitesurf with a homemade kite and the she-bear Grizzy\'s in love with watches.','Bear Gliding',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968731_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040035','The Lemmings play a new game, floating like flags in the breeze from the fan set on maximum.','Bear in the Wind',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968732_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040036','The Lemmings have a grand old time tearing down their Kapla block buildings.','Construction Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968734_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040037','Grizzy sees the Lemmings bow-low before an Indian sceptre and behave like servants.','In the Service of His Majesty',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968741_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040039','Grizzy discovers that the ranger has purchased a brand new multi-function Stressless recliner.','Relax Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13968744_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP019560670716','Ein Verkäufer im Sexshop soll einen Herumtreiber engagiert haben, um den Laden zu überfallen.','Gemeinsame Sache',_binary '','DEU','Richter Alexander Hold',NULL,NULL,4,NULL,NULL,'SH019560670000'),('EP019395240921','Eine Arbeitspsychologin präsentiert Auswege aus der gesundheitsgefährdenden Hektik des Alltags.','Erholung - Wie integriere ich sie in den Alltag?',_binary '','DEU','Xenius',NULL,NULL,4,NULL,NULL,'SH019395240000'),('EP019836710040','Todd und Dave streiten über den Frost, Tonys Tochter leitet die Lkws per Funk zur Fundstelle an.','Eingefroren und überflutet',_binary '','DEU','Die Schatzsucher - Goldrausch in Alaska',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11167059_e_h3_ab.jpg',4,NULL,NULL,'SH019836710000'),('EP013661630106','Held hostage in Colombia, two backpackers formed a controversial relationship with their kidnappers.','Colombian Kidnap',_binary '','GBR','Banged up Abroad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9440697_e_h3_aa.jpg',4,NULL,NULL,'SH013661630000'),('EP013661630105','Man winds up cross-dressing in an audacious bid for freedom from a Mexican jail.','Black Palace of Horrors',_binary '','GBR','Banged up Abroad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9427016_e_h3_aa.jpg',4,NULL,NULL,'SH013661630000'),('EP026041300010','The Numberblocks present their very own, very numbery version of the classic tale.','Three Little Pigs',_binary '','GBR','Numberblocks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13743910_e_h3_aa.jpg',4,NULL,NULL,'SH026041300000'),('EP017098660300','Nach der Geburt seiner Tochter will ein Mann Elternzeit nehmen und wird auf der Arbeit gemobbt.','In der Elternzeit gekündigt',_binary '','DEU','Verklag mich doch!',NULL,NULL,4,NULL,NULL,'SH017098660000'),('EP033435170002','Everybody gets jealous when Boy bakes amazing cookies that he only shares with his new pen pal.','Pen Pals',_binary '','GBR','Boy Girl Dog Cat Mouse Cheese',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17590477_e_h3_aa.jpg',4,NULL,NULL,'SH033435170000'),('EP033435170001','The kids watch a scary old horror movie where a character speaks a certain ancient-language phrase.','Greb-Nefual E-neg!',_binary '','GBR','Boy Girl Dog Cat Mouse Cheese',NULL,NULL,4,NULL,NULL,'SH033435170000'),('EP019567660084','Im Südwesten von Tasmanien wüten heftige Buschbrände. Das Feuer wurde während eines Sommergewitters durch Blitzeinschläge ausgelöst und breitet sich immer weiter aus. Deshalb fürchten Adrian und Neil Bennett um ihre Ressourcen.','Folge 81',_binary '','DEU','Outback Truckers',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17190783_e_h3_aa.jpg',4,NULL,NULL,'SH019567660000'),('EP013033590109','Viv dreamt about moving to NZ, but the future she wanted presented the toughest choice of her life.','Stirk Family',_binary '','GBR','Wanted Down Under Revisited',NULL,NULL,4,NULL,NULL,'SH013033590000'),('EP014129450241','Including a partially severed hand, a long-standing stab wound, and a serious quad-bike accident.','',_binary '\0','GBR','24 Hours in A&E',NULL,NULL,4,NULL,NULL,'SH014129450000'),('EP033435170008','Mouse buys a videogame that is supposed to teach the family teamwork.','Happy Game',_binary '','GBR','Boy Girl Dog Cat Mouse Cheese',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17616486_e_h3_aa.jpg',4,NULL,NULL,'SH033435170000'),('EP013027581784','Live coverage of the evening\'s proceedings in the House of Lords on Wednesday 26 February.','',_binary '\0','GBR','House of Lords',NULL,NULL,4,NULL,NULL,'SH013027580000'),('EP024243280016','Lily findet ein Barometer, welches plötzlich auf `Sturm\' zeigt, und versteckt sich.','Ein Sturm zieht auf',_binary '','DEU','Lilys Strandschatz Eiland',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11309723_e_h3_aa.jpg',4,NULL,NULL,'SH024243280000'),('EP013099920005','Red Troop must locate and disarm a bomb in London that threatens to cause mass destruction.','Slow Bomb',_binary '','GBR','Ultimate Force',NULL,NULL,4,NULL,NULL,'SH013099920000'),('EP014466550090','A couple is murdered in their Georgia church. A woman is forced by her parents to give up her child.','',_binary '\0','GBR','Unsolved Mysteries',NULL,NULL,4,NULL,NULL,'SH014466550000'),('EP029861680093','Bedeutende historische Ereignisse werden vorgestellt.','Jahresthema: Das letzte Jahr der DDR',_binary '','DEU','phoenix history',NULL,NULL,4,NULL,NULL,'SH029861680000'),('EP013027581787','Business in the House of Lords on Wednesday 26 February, including stages of the NHS Funding Bill.','NHS Funding Bill',_binary '','GBR','House of Lords',NULL,NULL,4,NULL,NULL,'SH013027580000'),('EP013027581786','Including the committee stage of the Sentencing (Pre-Consolidation Amendments) Bill.','Sentencing',_binary '','GBR','House of Lords',NULL,NULL,4,NULL,NULL,'SH013027580000'),('EP013027581785','Highlights of business in the House of Lords.','',_binary '\0','GBR','House of Lords',NULL,NULL,4,NULL,NULL,'SH013027580000'),('EP019461871137','Das Mittagsmagazin informiert über Themen aus der Region, Deutschland und der ganzen Welt.','',_binary '\0','DEU','MDR um 2',NULL,NULL,4,NULL,NULL,'SH019461870000'),('EP019461871138','Das Mittagsmagazin informiert über Themen aus der Region, Deutschland und der ganzen Welt.','',_binary '\0','DEU','MDR um 2',NULL,NULL,4,NULL,NULL,'SH019461870000'),('EP015403000010','Sie wirken mitunter reglos und unbeteiligt und lassen sie sich mit einem Stock hin und her schieben.','Pediküre bei den Poitoueseln',_binary '','DEU','Eisbär, Affe & Co.',NULL,NULL,4,NULL,NULL,'SH015403000000'),('EP013099920007','The SAS scramble to find the sniper rifle used in the attempted assassination of a European banker.','Just a Target',_binary '','GBR','Ultimate Force',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2748952_e_h3_aa.jpg',4,NULL,NULL,'SH013099920000'),('EP017805980043','Tee is sad when he can\'t use his umbrella outside in the rain, so he looks for other uses for it.','Umbrella',_binary '','GBR','Tee and Mo',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15700354_e_h3_aa.jpg',4,NULL,NULL,'SH017805980000'),('EP012838610047','A paper reveals the identity of an undercover officer, getting her killed.','Kingmaker',_binary '','GBR','Law & Order',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1289933_e_h3_ab.jpg',4,NULL,NULL,'SH012838610000'),('EP030382680059','An accident causes the daily chore assignments to get mixed up.','A Zafari Delegation',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15943540_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP030382680064','After a sleep-over party lit by the glowing goo balls, Zoomba and the others must clean up.','Goo Team Goo',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16093923_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP034216870005','The couples split up to spend two nights alone in the wild and two more are sent home.','',_binary '\0','GBR','Win the Wilderness: Alaska',NULL,NULL,4,NULL,NULL,'SH034216870000'),('EP034216870003','The competition heats up as the couples clear a dog mushing trail through the Alaskan bush.','',_binary '\0','GBR','Win the Wilderness: Alaska',NULL,NULL,4,NULL,NULL,'SH034216870000'),('EP024243280024','Lord von Hirsch lädt die Strandschatz Eiland Bewohner ein, ihn bei seinem ersten Flug zu beobachten.','Barne hebt ab',_binary '','DEU','Lilys Strandschatz Eiland',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11309732_e_h3_aa.jpg',4,NULL,NULL,'SH024243280000'),('EP030382680065','A tree has grown so tall it covers the vegetable garden in shadow.','You Snooze You Lose',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16057347_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP030382680066','As a storm bears down on Zafari, Zoomba realises his friends might be in danger.','Zoomba\'s Choice',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16093924_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP019618100120','Die Folge begleitet eine Frau, die im Alter von 47 Jahren eine SOS-Kinderdorf-Familie gründet.','Von Beruf Mutter - Kann man fremde Kinder lieben?',_binary '','DEU','Menschen hautnah',NULL,NULL,4,NULL,NULL,'SH019618100000'),('EP025207040016','Grizzy\'s comfortable TV dinner is interrupted by unexplained static.','Lemming Interference',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13472079_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040017','The Lemmings are having a rave and Grizzy throws their stereo into the river.','High Voltage Bear Attack',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13472085_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP019632710232','Die Talkrunde vereint prominente Gäste und Menschen mit außergewöhnlichen Geschichten.','',_binary '\0','DEU','Kölner Treff',NULL,NULL,4,NULL,NULL,'SH019632710000'),('EP032960910001','Dieses abenteuerliche Mädchen strotzt nur so von großen Träumen trotz ihrer kleinen Größe.','Der Mega-Wirbel',_binary '','DEU','Polly Pocket',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15657015_e_h3_aa.jpg',4,NULL,NULL,'SH032960910000'),('EP032960910002','Dieses abenteuerliche Mädchen strotzt nur so von großen Träumen trotz ihrer kleinen Größe.','Hunde-Chaos',_binary '','DEU','Polly Pocket',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15657019_e_h3_ab.jpg',4,NULL,NULL,'SH032960910000'),('EP025207040019','Realising his beloved she-bear loves flowers, Grizzy decides to offer her the geraniums.','Bear Scents',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13517313_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP014466550089','A wealthy man disappears after befriending a homeless man; two tales of reincarnation.','',_binary '\0','GBR','Unsolved Mysteries',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8074811_e_h3_aa.jpg',4,NULL,NULL,'SH014466550000'),('EP026041300038','When an alien ship crashes in Numberland, the Numberblocks decide to help the alien get back home.','Building Blocks',_binary '','GBR','Numberblocks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15983571_e_h3_aa.jpg',4,NULL,NULL,'SH026041300000'),('EP012662490002','A kitten is trapped in a network of underground pipes; a dog faces a life-threatening injury.','Down the Drain',_binary '','GBR','Animal Cops: Phoenix',NULL,NULL,4,NULL,NULL,'SH012662490000'),('EP026041300037','Sing along to the Numberblocks counting song with the Numberblocks\' favourite friends.','Numberblobs',_binary '','GBR','Numberblocks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15983569_e_h3_aa.jpg',4,NULL,NULL,'SH026041300000'),('EP015403000009','Großeinsatz bei den Skuddenschafen: Heute setzten Ramona und ihre Helferschar die Schere an.','Geduld und Präzision',_binary '','DEU','Eisbär, Affe & Co.',NULL,NULL,4,NULL,NULL,'SH015403000000'),('EP015403000007','Badetag bei den Japanmakaken: In ihrem ursprünglichen Lebensraum herrschen eisige Temperaturen.','Guten Appetit, mit kleinen Hindernissen',_binary '','DEU','Eisbär, Affe & Co.',NULL,NULL,4,NULL,NULL,'SH015403000000'),('EP012662490008','A cat in a tree takes a 20-foot plunge; a German shepherd has a wooden frame around his neck.','Pepe Loves Chachee',_binary '','GBR','Animal Cops: Phoenix',NULL,NULL,4,NULL,NULL,'SH012662490000'),('EP019460040017','Martin hat seine Bedenken über Bord geworfen und ist mit Katja der Einladung der Simkows gefolgt.','Am Abgrund',_binary '','DEU','Weissensee',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12164602_e_h3_aa.jpg',4,NULL,NULL,'SH019460040000'),('EP034149340001','Three Huey helicopter pilots risked their lives to rescue soldiers caught in an ambush in Vietnam.','Vietnam Firefight',_binary '','GBR','Helicopter Missions',NULL,NULL,4,NULL,NULL,'SH034149340000'),('EP024243280036','Auf Strandschatz Eiland wird heute ein Strandtag eingelegt. Alle wollen Spaß haben.','Ein Tag am Strand',_binary '','DEU','Lilys Strandschatz Eiland',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11906996_e_h3_aa.jpg',4,NULL,NULL,'SH024243280000'),('EP012834433282','A look back at all the action from the latest round of Italy\'s Serie A.','Highlights',_binary '\0','GBR','Serie A Football',NULL,NULL,4,NULL,NULL,'SH012834430000'),('EP012925240109','To find out more about England, Milkshake! Monkey goes on a London bus tour and tries some food.','England',_binary '','GBR','Milkshake Monkey',NULL,NULL,4,NULL,NULL,'SH012925240000'),('EP019563250023','Eine Frau liegt ermordet im Kanal. Wenig später wird ihre angebliche Affäre tot aufgefunden.','Die Toten im Fluss',_binary '','DEU','Inspector Banks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11537212_e_h3_aa.jpg',4,NULL,NULL,'SH019563250000'),('EP012925240107','Intrigued by a strange rock, Milkshake! Monkey visits Lyme Regis to learn about fossils.','Fossils',_binary '','GBR','Milkshake Monkey',NULL,NULL,4,NULL,NULL,'SH012925240000'),('EP034372420001','German Description.','Die silberne Festung! - Ruffys und Bartolomeos großes Abenteuer',_binary '','DEU','One PIece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13030093_e_h3_aa.jpg',4,NULL,NULL,'SH034372420000'),('EP034372420002','German Description.','Tief in der Mine - Ruffy gegen den menschlichen Zug!',_binary '','DEU','One PIece',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13030104_e_h3_aa.jpg',4,NULL,NULL,'SH034372420000'),('EP024243280032','Flöckchen will mit Lily ein Picknick bei den wilden Felsen machen, wo es schön und einsam ist.','Die wilden Felsen',_binary '','DEU','Lilys Strandschatz Eiland',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12128043_e_h3_ab.jpg',4,NULL,NULL,'SH024243280000'),('EP019577881560','Das Hamburg Journal ist das Stadtmagazin, bei dem täglich die lokalen News präsentiert werden.','',_binary '\0','DEU','Hamburg Journal',NULL,NULL,4,NULL,NULL,'SH019577880000'),('EP032069840003','Forensics begin an immediate investigation when a teenage girl is raped in a park.','Every Contact Leaves a Trace',_binary '','GBR','Forensics: The Real CSI',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16871016_e_h3_aa.jpg',4,NULL,NULL,'SH032069840000'),('EP012692450066','Oliver and Simon go out to celebrate 10 years of neighbourly rivalry being antique dealers.','The Best Laid Plans',_binary '','GBR','Never the Twain',NULL,NULL,4,NULL,NULL,'SH012692450000'),('EP030382680001','When Zoomba and Quincy win the annual Zafari foot race, it seems that their prize is to be servants.','Sore Winners',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118274_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP030382680002','After a stormy night destroys Quincy\'s sleeping branch, Zoomba offers Quincy to stay with him.','Tree for Two',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118283_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP019918650081','Alaskans race to gather resources while battling challenges from unpredictable weather.','Against the Tide',_binary '','GBR','Life Below Zero',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13466181_e_h3_aa.jpg',4,NULL,NULL,'SH019918650000'),('EP013761480038','The shopping quiz in which contestants can compete for a big cash prize in the super sweep.','',_binary '\0','GBR','Supermarket Sweep',NULL,NULL,4,NULL,NULL,'SH013761480000'),('EP013761480039','The shopping quiz in which contestants can compete for a big cash prize in the super sweep.','',_binary '\0','GBR','Supermarket Sweep',NULL,NULL,4,NULL,NULL,'SH013761480000'),('EP019379550103','Leela kauft frische Bio-Eier beim Bauern. Fry rettet eines davon und brütet ein Monster aus.','Das Ei des Fry',_binary '','DEU','Futurama',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p8733427_e_h3_aa.jpg',4,NULL,NULL,'SH019379550000'),('EP019918650084','Alaskans must take advantage of the long days to prepare for the long freeze that lies ahead.','The Slow Grind',_binary '','GBR','Life Below Zero',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13491915_e_h3_aa.jpg',4,NULL,NULL,'SH019918650000'),('EP013761480037','The shopping quiz in which contestants can compete for a big cash prize in the super sweep.','',_binary '\0','GBR','Supermarket Sweep',NULL,NULL,4,NULL,NULL,'SH013761480000'),('EP012834433276','Action from Italy\'s Serie A.','Brescia v Napoli',_binary '\0','GBR','Serie A Football',NULL,NULL,4,NULL,NULL,'SH012834430000'),('EP012993202280','Heather Christle considers the power and meaning of white lady tears.','The Crying Book',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP019994380166','Das Politikmagazin, dessen Reportagen und Interviews sich mit Themen aus Rheinland-Pfalz befassen.','',_binary '\0','DEU','zur Sache Rheinland-Pfalz!',NULL,NULL,4,NULL,NULL,'SH019994380000'),('EP012834433278','Action from Italy\'s Serie A.','SPAL v Juventus',_binary '\0','GBR','Serie A Football',NULL,NULL,4,NULL,NULL,'SH012834430000'),('EP018439280025','Oink, Boink und Kloink sind drei Schweinchen. Oink ist der Kleinste, aber der Fleissigste.','Die drei kleinen Schweinchen',_binary '','DEU','SimsalaGrimm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11498022_e_h3_aa.jpg',4,NULL,NULL,'SH018439280000'),('EP012692730076','Jessica enters the world of high finance when she attempts to solve the murder of her stockbroker.','How to Make a Killing Without Really Trying',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157006_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP018439280024','Anna landet mit Yoyo und Doc Croc bei Frau Holle, wo sie sich beweisen muss.','Frau Holle',_binary '','DEU','SimsalaGrimm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11494262_e_h3_aa.jpg',4,NULL,NULL,'SH018439280000'),('EP012692730077','Jessica attends a variety-show reunion to research a 25-year-old unsolved murder case.','The Big Show of 1965',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157012_e_h3_ab.jpg',4,NULL,NULL,'SH012692730000'),('EP012896311823','Dani, Chris, Bernie and Martin try to beat one of the country\'s finest quiz brains for a cash prize.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP012993202281','Heather Christle explores the relationship between a depressed author and her physician.','The Crying Book',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP019667871774','DIE GROßE LITERATOUR begibt sich auf die Spuren von einigen der spannendsten Reiseschriftstellern der Geschichte, folgt ihren Reisen nach und sieht die Länder aus ihren Blickwinkeln. Eine literarische Zeitreise, die auf einzigartige Weise Vergangenheit und Gegenwart miteinander verschränkt. Im Jahr 1954 reist Heinrich Böll für einige Monate nach Irland und verfasst dort Reiseberichte, die zuerst in Zeitungen erscheinen.','Die große Literatour - Heinrich Bölls Irland',_binary '','DEU','Planet Schule',NULL,NULL,4,NULL,NULL,'SH019667870000'),('EP018439280027','Edgar ist in Miranda verliebt und beginnt eine Lehre bei ihrem Vater, einem Buchhändler.','Der Zauberer-Wettkampf',_binary '','DEU','SimsalaGrimm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11515729_e_h3_aa.jpg',4,NULL,NULL,'SH018439280000'),('EP030382680003','Zoomba gets on Renalda\'s bad side and must spend the day doing her bidding.','Getting to Know Renalda',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118293_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP018439280026','Prinzessin Amelia wird entführt. Die vier kunstreichen Brüder wollen die Prinzessin befreien.','Die vier kunstreichen Brüder',_binary '','DEU','SimsalaGrimm',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11511105_e_h3_aa.jpg',4,NULL,NULL,'SH018439280000'),('EP012896311826','Lucy, Anthony, Hilary and Sam are the brave team willing to take on the challenge of the chase.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP030382680004','Babatua notices that Zoomba is not standing up for himself and defending his rights.','Zoomba in Charge',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118362_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP030382680009','Zoomba feels unheard, so local Zafarian scientist Elspeth gives him a sound-making device.','The Soundmaker',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118980_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP013026900509','Charles Hanson and Catherine Southon travel around the Tudor towns of Warwickshire.','',_binary '\0','GBR','Antiques Road Trip',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13605006_e_h3_aa.jpg',4,NULL,NULL,'SH013026900000'),('EP030382680007','Zoomba hurts his trunk, so while he is recovering, Quincy decides to help him.','Funk in the Trunk',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118823_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'); +REPLACE INTO episode (id, description, episode_title, is_series, language, name, number, picture, rating, season, wanted, series_id) VALUES ('EP012697430012','Hetty is in hospital, an unlikely place to find her most urgent case yet.','A Minor Operation',_binary '','GBR','Hetty Wainthropp Investigates',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p2104448_e_h3_aa.jpg',4,NULL,NULL,'SH012697430000'),('EP030382680008','Everybody in Zafari seems to be fighting until Babatua announces the arrival of a special guest.','Big Night',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118849_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP019578260104','Phoebe fordert Max heraus, für Unruhe zu sorgen, damit sie als Superheldin agieren kann.','Phoebe gegen Max - Jetzt erst recht',_binary '','DEU','Die Thundermans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11827720_e_h3_ab.jpg',4,NULL,NULL,'SH019578260000'),('EP029401500004','Bickering deli owners Shirley and Max have a simultaneous life-changing moment.','The Anniversary Waltz',_binary '','GBR','Hopes and Desires',NULL,NULL,4,NULL,NULL,'SH029401500000'),('EP030382680012','Pokey and Antonio do not think the other\'s role is important so Zoomba suggests they switch jobs.','Trading Places',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15119007_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP019578260108','Phoebe macht sich Sorgen und versucht, Max davor zu bewahren, wieder zum Schurken zu werden.','Die Gefängnismission',_binary '','DEU','Die Thundermans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13734993_e_h3_aa.jpg',4,NULL,NULL,'SH019578260000'),('EP030382680013','It is the day of the annual Zafarian Talent Show, and Pokey assumes he will be the host.','The Pokey Must Go On',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15119023_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP019578260107','Da Phoebe sich verletzt hat, soll sich Cherry beim Z-Force-Interview als Phoebe ausgeben.','Die doppelte Phoebe',_binary '','DEU','Die Thundermans',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13784330_e_h3_aa.jpg',4,NULL,NULL,'SH019578260000'),('EP030382680010','Somebody has been playing pranks on the sleeping Zafarians each night, so Zoomba investigates.','Jumping to Conclusions',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15118988_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP021396030087','The boys try to keep up with the neighbourhood bully\'s powerful computer game.','Keeping Up With the Humphries',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13319158_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP015402261720','Die Themen sind unter anderem `Starliner-Testflug\' und `Gen-Profil von Schizophrenie & Co.\'.','',_binary '\0','DEU','nano',NULL,NULL,4,NULL,NULL,'SH015402260000'),('EP018901990036','Food Busker John Quilter knocks up some bacon meatballs and DJ BBQ gets stuck into some hot dogs.','',_binary '\0','GBR','Food Junkies',NULL,NULL,4,NULL,NULL,'SH018901990000'),('EP012896310520','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP012896310521','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP031541560003','Po and the kids are recruited to perform in Mei Mei\'s theatrical show.','Blade of the Red Phoenix',_binary '','GBR','Kung Fu Panda: The Paws of Destiny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16258710_e_h3_aa.jpg',4,NULL,NULL,'SH031541560000'),('EP019809071184','Das Kulturmagazin nimmt ein aktuelles Thema aus Politik oder Wirtschaft unter die Lupe.','Folge 1949',_binary '','DEU','28 Minuten',NULL,NULL,4,NULL,NULL,'SH019809070000'),('EP012606270098','Vivid nightmares insert Allison into scenes from \"Night of the Living Dead.\"','Bite Me',_binary '','GBR','Medium',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p7879498_e_h3_aa.jpg',4,NULL,NULL,'SH012606270000'),('EP031541560004','When Jindiao arrives to the village, he invites the kids to participate in an exhibition match.','The Intruder Flies a Crooked Path',_binary '','GBR','Kung Fu Panda: The Paws of Destiny',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16258711_e_h3_aa.jpg',4,NULL,NULL,'SH031541560000'),('EP021396030089','Alvin and Simon tease the Chipettes about being scared by a monster movie.','Monster Madness',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13120168_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP019577881559','Das Hamburg Journal ist das Stadtmagazin, bei dem täglich die lokalen News präsentiert werden.','',_binary '\0','DEU','Hamburg Journal',NULL,NULL,4,NULL,NULL,'SH019577880000'),('EP029438090013','Ein Schwertwal greift einen Delfin an und ein Oktopus legt kannibalistisches Verhalten an den Tag.','Kampf unter Löwen',_binary '','DEU','Safari-Paparazzi: Wildlife pur',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9129747_e_h3_aa.jpg',4,NULL,NULL,'SH029438090000'),('EP013761480040','The shopping quiz in which contestants can compete for a big cash prize in the super sweep.','',_binary '\0','GBR','Supermarket Sweep',NULL,NULL,4,NULL,NULL,'SH013761480000'),('EP019809071185','Das Kulturmagazin nimmt ein aktuelles Thema aus Politik oder Wirtschaft unter die Lupe.','Folge 1950',_binary '','DEU','28 Minuten',NULL,NULL,4,NULL,NULL,'SH019809070000'),('EP030382680018','When everything goes wrong for him, Zoomba think he is jinxed, but is it all in his head?','Hi, Jinx',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15119001_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP030382680019','Due to a small mishap, Zoomba and Quincy each think the other is mad at him and try to make amends.','Apples and Pumpkins and Grapes, Oh My!',_binary '','GBR','Zafari',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15119237_e_h3_aa.jpg',4,NULL,NULL,'SH030382680000'),('EP012993202279','Heather Christle continues her investigation of how and why we cry.','The Crying Book',_binary '','GBR','Book of the Week',NULL,NULL,4,NULL,NULL,'SH012993200000'),('EP012603133372','A yoga studio owner says she was scammed and kicked out after investing in a gym.','Yoga/Gym Merger Mess!; Ex-Fiance Fight',_binary '','GBR','Judge Judy',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10511659_e_h3_aa.jpg',4,NULL,NULL,'SH012603130000'),('EP012603133373','A man who had tear gas sprayed in his face says his friend was responsible for driving him home.','Maced in the Face!; Divorced and Still Fighting!',_binary '','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012603133374','A father denies that his children damaged another man\'s house, garage and car with their ATV.','ATV Hit and Run; Sugar in Gas Tank Threat',_binary '','GBR','Judge Judy',NULL,NULL,4,NULL,NULL,'SH012603130000'),('EP012623900583','Tracey and Dean have raised their family, and are now in a position to buy a holiday home.','Mar Menor',_binary '','GBR','A Place in the Sun',NULL,NULL,4,NULL,NULL,'SH012623900000'),('EP026256820008','When a casino heist takes a deadly turn, Riggs befriends the only credible witness.','Can I Get a Witness?',_binary '','GBR','Lethal Weapon',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13444928_e_h3_ab.jpg',4,NULL,NULL,'SH026256820000'),('EP012694170011','The crew fights against a mysterious disease which accelerates the natural ageing process.','Unnatural Selection',_binary '','GBR','Star Trek: The Next Generation',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1204062_e_h3_ab.jpg',4,NULL,NULL,'SH012694170000'),('EP013040330025','Jenni is in Devon with a writer and a musician who want an inspirational sea view.','North Devon',_binary '','GBR','Fantasy Homes by the Sea',NULL,NULL,4,NULL,NULL,'SH013040330000'),('EP012606190314','A case appears to be a murder-suicide. But clues soon lead investigators to believe otherwise.','Private Thoughts',_binary '','GBR','Medical Detectives',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p9774559_e_h3_aa.jpg',4,NULL,NULL,'SH012606190000'),('EP019962300025','Die Steel Buddies haben einen britischen Panzer verkauft und müssen diesen nun zum Käufer befördern.','Ein Panzer für den Garten',_binary '','DEU','Steel Buddies - Stahlharte Geschäfte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14057379_e_h3_aa.jpg',4,NULL,NULL,'SH019962300000'),('EP012896310519','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP019962300024','Die Reparatur des alten Schulbusses verschlingt wesentlich mehr Geld als angenommen.','Schuss ins Schwarze',_binary '','DEU','Steel Buddies - Stahlharte Geschäfte',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p13525581_e_h3_aa.jpg',4,NULL,NULL,'SH019962300000'),('EP012615250341','PC Gabriel Kent abandons Andrea to her fate in the fire which destroys all the evidence against him.','Inferno',_binary '','GBR','The Bill',NULL,NULL,4,NULL,NULL,'SH012615250000'),('EP012615250340','PC Andrea Dunbar appears in court to give evidence in the trial of serial rapist, Alan Kennedy.','Confessions of a Killer',_binary '','GBR','The Bill',NULL,NULL,4,NULL,NULL,'SH012615250000'),('EP012896310518','A thrilling battle of brainpower as four contestants pit their wits against the Chaser.','',_binary '\0','GBR','The Chase',NULL,NULL,4,NULL,NULL,'SH012896310000'),('EP013233370069','It is no longer legal to refuse to rent a property to a benefits claimant.','MBL: Discrimination and housing benefit',_binary '','GBR','Money Box',NULL,NULL,4,NULL,NULL,'SH013233370000'),('EP013040330023','A London woman is searching for a £1 million holiday retreat in Hampshire or West Sussex.','Chichester and Lymington',_binary '','GBR','Fantasy Homes by the Sea',NULL,NULL,4,NULL,NULL,'SH013040330000'),('EP027992090003','King James of Scotland travels south to take the throne at the invitation of Robert Cecil.','',_binary '\0','GBR','Elizabeth I\'s Secret Agents',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14735840_e_h3_aa.jpg',4,NULL,NULL,'SH027992090000'),('EP022890690016','The pair head to Moscow to infriltrate the exclusive world of billionaire oligarchs.','Russian Roulette',_binary '','GBR','Eamonn and Ruth: How the Other Half Lives',NULL,NULL,4,NULL,NULL,'SH022890690000'),('EP019664140001','Der Kurs führt in einem halben Jahr zur Beherrschung der wichtigsten Konversationsformeln.','Leonardi da Vinci: Sono stufo di andare a piedi!',_binary '','DEU','Avanti! Avanti!',NULL,NULL,4,NULL,NULL,'SH019664140000'),('EP027992090002','Robert Cecil battles for his spy network and the power to choose the next King of England.','',_binary '\0','GBR','Elizabeth I\'s Secret Agents',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14708966_e_h3_aa.jpg',4,NULL,NULL,'SH027992090000'),('EP018630230063','Die Pinguine im Frankfurter Zoo lassen zurzeit viele Federn. Sie befinden sich in der Mauser.','Wasservögel auf dem Trockenen',_binary '','DEU','Giraffe, Erdmännchen & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11375612_e_h3_aa.jpg',4,NULL,NULL,'SH018630230000'),('EP018630230065','Die Pandababys im Kronberger Opel-Zoo sollen heute ihre zweite Impfung und einen Chip bekommen.','Wehrhafte Pandababys',_binary '','DEU','Giraffe, Erdmännchen & Co.',NULL,NULL,4,NULL,NULL,'SH018630230000'),('EP018630230064','Im Opel-Zoo Kronberg haben sich die Pfleger eine Beschäftigung für Gepardenkater Obelix ausgedacht.','Ein Gepard als Mittelstürmer',_binary '','DEU','Giraffe, Erdmännchen & Co.',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p11375623_e_h3_aa.jpg',4,NULL,NULL,'SH018630230000'),('EP019370400185','Barney wird von seinem schlechten Gewissen geplagt und Ted trifft eine schockierende Entscheidung.','Die Ziege',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152450_e_h3_ab.jpg',4,NULL,NULL,'SH019370400000'),('EP019370400184','Marshalls neuer Chef bringt ihn zum Weinen und er lässt sich von Barney beraten, was Folgen hat.','Die Kette des Anbrüllens',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152448_e_h3_ab.jpg',4,NULL,NULL,'SH019370400000'),('EP013661630194','Michael Singh loses his job an falls into depression until he is offered a job smuggling cocaine.','Caribbean Coke King',_binary '','GBR','Banged up Abroad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16187120_e_h3_aa.jpg',4,NULL,NULL,'SH013661630000'),('EP019370400180','Barneys Versuche, Frauen abzuschleppen, werden von einer mysteriösen Dame torpediert.','Die Rächerin',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152447_e_h3_ac.jpg',4,NULL,NULL,'SH019370400000'),('EP019370400183','Als Robins Jugendliebe Simon auftaucht, verwandelt sie sich wieder in einen naiven Teenager.','Jugendliebe',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152449_e_h3_aa.jpg',4,NULL,NULL,'SH019370400000'),('EP030833490103','Mr. Porters Auslieferungsdrohnen geraten außer Kontrolle. Mayor Humdinger übernimmt ein Steuer.','Außer Kontrolle; Ein Riesenrad macht sich selbständig',_binary '','DEU','Paw Patrol - Helfer auf vier Pfoten',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14047178_e_h3_ab.jpg',4,NULL,NULL,'SH030833490000'),('EP019370400182','Barney bekommt einen neuen Begleiter beim Aufreißen von Frauen und Ted lernt Stellas Tochter kennen.','Der Lückenfüller',_binary '','DEU','How I Met Your Mother',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p3152451_e_h3_ac.jpg',4,NULL,NULL,'SH019370400000'),('EP024102700072','Der kleine Bruder von Nino entdeckt die vielen Geschenke, die Marinette für Adrien hortet.','Marinette, die Weihnachtselfe',_binary '','DEU','Miraculous - Geschichten von Ladybug und Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16356722_e_h3_aa.jpg',4,NULL,NULL,'SH024102700000'),('EP013661630195','Carlos Quijas is a happy family man but his life is changed forever when he\'s falsely imprisoned.','Mexican Cartel Hell',_binary '','GBR','Banged up Abroad',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16187154_e_h3_aa.jpg',4,NULL,NULL,'SH013661630000'),('EP024102700071','Während der Bandprobe von Kitty Section finden Marinette und Luka immer mehr Gefallen aneinander.','Das Miraculous der Schlange',_binary '','DEU','Miraculous - Geschichten von Ladybug und Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17249234_e_h3_aa.jpg',4,NULL,NULL,'SH024102700000'),('EP030833490105','Die Pups haben ein großes Ziel: Sie müssen einen schlafwandelnden Bären zurück nach Hause bringen.','Der falsche Eisbär; Ein Tag auf der Ranch',_binary '','DEU','Paw Patrol - Helfer auf vier Pfoten',NULL,NULL,4,NULL,NULL,'SH030833490000'),('EP022890690007','Eamonn and Ruth are in New York on the trail of the mega-rich that call the Big Apple home.','',_binary '\0','GBR','Eamonn and Ruth: How the Other Half Lives',NULL,NULL,4,NULL,NULL,'SH022890690000'),('EP032896120004','Das eSports-Magazin bwin Inside eSports bietet einen kompakten Überblick zu allen bekannten Titeln und Wettbewerben wie Dota 2, League of Legends, FIFA 20 oder Overwatch. Die Zuschauer werden dabei mit aktuellen News, Interviews und Beiträgen aus der eSports-Szene versorgt.','',_binary '\0','DEU','bwin Inside eSports',NULL,NULL,4,NULL,NULL,'SH032896120000'),('EP019560340414','Wegen eines mit Krötensekret vergifteten Karinettenblatts stirbt ein Klarinettist eines Ensembles.','Falsche Töne',_binary '','DEU','Navy CIS',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p17550837_e_h3_aa.jpg',4,NULL,NULL,'SH019560340000'),('EP022820390068','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP024102700069','Chloé ist sehr enttäuscht, weil sie nicht zur Freisetzung des Sentimonsters gerufen wurde.','Gestohlene Kräfte',_binary '','DEU','Miraculous - Geschichten von Ladybug und Cat Noir',NULL,NULL,4,NULL,NULL,'SH024102700000'),('EP024102700066','Marinette und die Band Kitty Section nehmen gemeinsam an einem Musik-Wettbewerb teil.','Ladybug ist sprachlos',_binary '','DEU','Miraculous - Geschichten von Ladybug und Cat Noir',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p16356659_e_h3_aa.jpg',4,NULL,NULL,'SH024102700000'),('EP018547050112','Die Sendung widmet sich unter anderem der \"Volkskrankheit Diabetes\" und dem Thema \"Sterbehilfe\".','',_binary '\0','DEU','Report Mainz',NULL,NULL,4,NULL,NULL,'SH018547050000'),('EP017610890169','Cook and Line want to apply for a TV show, but they don\'t want Captain HeyHo to find out.','The Only Way is Pirate',_binary '','GBR','Swashbuckle',NULL,NULL,4,NULL,NULL,'SH017610890000'),('EP024102700061','Ladybug und Cat Noir erwachen ohne jede Erinnerung in einem Aufzug des Montparnasse Hochhauses.','Vergissmeinnicht',_binary '','DEU','Miraculous - Geschichten von Ladybug und Cat Noir',NULL,NULL,4,NULL,NULL,'SH024102700000'),('EP025207040083','Grizzy and the Lemmings discover a magical game inside a mysterious cave.','Bear Game',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492749_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040084','A jar of chocolate sinks to the bottom of the river, so Grizzy and the Lemmings have to recover it.','Clean Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492758_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP020070080154','In dieser Folge erklärt der Moderator, was ein Galaxiehaufen mit dem `Cooling Flow\' gemein hat.','Was ist ein Cooling Flow?',_binary '','DEU','alpha-Centauri',NULL,NULL,4,NULL,NULL,'SH020070080000'),('EP025207040086','Grizzy discovers the leftovers of a Halloween party in the ranger\'s cabin.','Halloween Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492788_e_h3_ab.jpg',4,NULL,NULL,'SH025207040000'),('EP016391700399','Uschi Obermaier, einstiges Mitglied der Kommune I, blickt auf ein bewegtes Leben zurück.','Uschi Obermaier - Die Ikone der 68er',_binary '','DEU','ZDF-History',NULL,NULL,4,NULL,NULL,'SH016391700000'),('EP020070080150','In dieser Folge erklärt der Moderator, wie - und vor allem wie schnell - die Erde entstanden ist.','Wie schnell entstand die Erde?',_binary '','DEU','alpha-Centauri',NULL,NULL,4,NULL,NULL,'SH020070080000'),('EP029152330033','Bob is preparing his special top-secret recipe in order to beat rival competitors Zip and Pop.','Castle Bake Off',_binary '','GBR','Bitz & Bob',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15810441_e_h3_aa.jpg',4,NULL,NULL,'SH029152330000'),('EP029152330034','Bitz and Purl have started the Amazing Owl Club, with its own rulebook, a members-only clubhouse.','Amazing Owl Club',_binary '','GBR','Bitz & Bob',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p15810445_e_h3_aa.jpg',4,NULL,NULL,'SH029152330000'),('EP019433120119','Ein Paar möchte heiraten. Doch sein vier Monate alter Sohn erfordert seine ganze Aufmerksamkeit.','Sandra und Saskia',_binary '','DEU','Teenie-Mütter - Wenn Kinder Kinder kriegen',NULL,NULL,4,NULL,NULL,'SH019433120000'),('EP027663660037','In London, dancer Kea hopes to be impressed by the choices of three single lads.','',_binary '\0','GBR','Dress to Impress',NULL,NULL,4,NULL,NULL,'SH027663660000'),('EP022820390059','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP021115670086','`Deutschland sucht den Kinderstar\' und junge Talente mit kreativen Songideen.','',_binary '\0','DEU','Dein Song',NULL,NULL,4,NULL,NULL,'SH021115670000'),('EP027663660038','Tommy, Miguel and Jac compete for the affections of Londoner Remus.','',_binary '\0','GBR','Dress to Impress',NULL,NULL,4,NULL,NULL,'SH027663660000'),('EP022820390056','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP021115670087','`Deutschland sucht den Kinderstar\' und junge Talente mit kreativen Songideen.','',_binary '\0','DEU','Dein Song',NULL,NULL,4,NULL,NULL,'SH021115670000'),('EP019855801434','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Bonn.','',_binary '\0','DEU','Lokalzeit aus Bonn',NULL,NULL,4,NULL,NULL,'SH019855800000'),('EP027663660039','Politics student Demi is hoping to be impressed by the style choices of three single lads.','',_binary '\0','GBR','Dress to Impress',NULL,NULL,4,NULL,NULL,'SH027663660000'),('EP016999664513','Niclas begegnet Marian und gerät ins Wanken. Er kann seine Aggressionen nicht mehr zügeln.','Außer Kontrolle',_binary '','DEU','Alles was zählt',NULL,NULL,4,NULL,NULL,'SH016999660000'),('EP016999664514','Auch wenn Marian jetzt ruhiger erscheint, als Lena bei Niclas einzieht, tickt er total aus.','Kochende Wut',_binary '','DEU','Alles was zählt',NULL,NULL,4,NULL,NULL,'SH016999660000'),('EP017610890170','Captain HeyHo\'s finger is twitching, and this can only mean one thing, a storm\'s a\'coming.','Storm\'s A\'Coming',_binary '','GBR','Swashbuckle',NULL,NULL,4,NULL,NULL,'SH017610890000'),('EP016999664512','Chiara ist der festen Überzeugung, dass sie beim Entscheidungslauf besser performt hat als Marie.','Gefangen im eigenen Körper',_binary '','DEU','Alles was zählt',NULL,NULL,4,NULL,NULL,'SH016999660000'),('EP022820390054','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP022820390055','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP022820390053','Documentary series joining police forces across Australia as they deal with crime of all kinds.','',_binary '\0','GBR','Police Force: Australia',NULL,NULL,4,NULL,NULL,'SH022820390000'),('EP025207040094','Vibrations created by Grizzy\'s snoring during his nap give the Lemmings an idea for a bouncing game.','Shaken-Up Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492932_e_h3_ab.jpg',4,NULL,NULL,'SH025207040000'),('EP020070080141','Harald Lesch weiß, wie man feststellen kann, dass etwas rotiert, was man nicht beobachten kann.','Rotieren schwarze Löcher?',_binary '','DEU','alpha-Centauri',NULL,NULL,4,NULL,NULL,'SH020070080000'),('EP025207040095','The Lemmings steal Grizzy\'s last jar of chocolate spread, so Grizzy trains a raccoon to detect it.','Sniffer Sniffler Raccoon',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492943_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040097','Wedged in his sofa to relieve his aching back, Grizzy baulks at getting up.','Transformational Bear',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492955_e_h3_ab.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040098','Grizzy finds a strange figurine and finds himself imprisoned in the body of a caribou.','Wandering Spirits',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492963_e_h3_ab.jpg',4,NULL,NULL,'SH025207040000'),('EP019656210031','Ein blindes Pony streunt durch die Gegend. Anna ist sofort begeistert vom süßen Miro.','Miro',_binary '','DEU','Lenas Ranch',NULL,NULL,4,NULL,NULL,'SH019656210000'),('EP018580010031','Chris und Martin haben eine Idee: Sie möchten herausfinden, welches Tier das schnellste ist.','Die schnellsten Läufer der Tierwelt',_binary '','DEU','Go Wild! - Mission Wildnis',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p10774007_e_h3_ad.jpg',4,NULL,NULL,'SH018580010000'),('EP021396030031','When Dave discovers he didn\'t graduate from high school, he finds himself in school with Alvin.','Back to School',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12075955_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP021396030032','Simon\'s new friend decides to ditch him to spend time with Alvin.','Bromance',_binary '','GBR','Alvinnn!!! and the Chipmunks',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p12075956_e_h3_aa.jpg',4,NULL,NULL,'SH021396030000'),('EP012692730098','While in California, Jessica is reunited with her niece Victoria, a real estate broker.','Fixer Upper',_binary '','GBR','Murder, She Wrote',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p1157008_e_h3_ac.jpg',4,NULL,NULL,'SH012692730000'),('EP020133000008','Die Sendung blickt auf die Ursprünge der Reederei Hapag-Lloyd und die Zukunft des Unternehmens.','Hapag-Lloyd: Aus Hamburg in die Welt',_binary '','DEU','Made in Norddeutschland',NULL,NULL,4,NULL,NULL,'SH020133000000'),('EP025207040090','While salmon fishing on the riverbank, Grizzy hauls in an old mirror straight out of a fairytale.','Mirror, Mirror on the Wall',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492822_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040092','Grizzy finds a birthday pinata in the ranger\'s living room and wants to burst it open.','Piñata Party',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492914_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'),('EP025207040093','Grizzy is bothered by an object stuck in between the sofa cushions, a big fur lemming puppet glove.','Ranger Lemming',_binary '','GBR','Grizzy and The Lemmings',NULL,'https://json.schedulesdirect.org/20141201/image/assets/p14492921_e_h3_aa.jpg',4,NULL,NULL,'SH025207040000'); +/*!40000 ALTER TABLE episode ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Dumping data for table `series` +-- + +LOCK TABLES series WRITE; +/*!40000 ALTER TABLE series DISABLE KEYS */; +REPLACE INTO series (id, description, is_series, language, name, picture, rating, watched) VALUES ('SH013027100000','Coverage of the day\'s activities in Parliament.',NULL,'GBR','Westminster Hall','https://s3.amazonaws.com/schedulesdirect/assets/p528649_b_h3_aa.jpg',4,NULL),('SH031459900000','Comedy game show hosted by Josh Widdicombe and James Acaster, in which leading comedians are posed increasingly absurd hypothetical situations.',NULL,'GBR','Hypothetical','https://s3.amazonaws.com/schedulesdirect/assets/p16485312_b_h3_aa.jpg',4,NULL),('SH025302610000','A weekly look at the world of Formula E, with driver interviews and pre/post race analysis.',NULL,'GBR','Formula E: Street Racers','https://s3.amazonaws.com/schedulesdirect/assets/p13372468_b_h3_aa.jpg',4,NULL),('SH019863440000','In Mathe verstehst du nur Bahnhof? Sebastian Wohlrab und seine Schüler helfen dir weiter.',NULL,'DEU','GRIPS: Mathe','https://s3.amazonaws.com/schedulesdirect/assets/p11026617_b_h3_aa.jpg',4,NULL),('SH012943500000','\"Nazi Hunters\" tells of how an unrelenting band of secret agents and avengers hunted down some of the most evil men in history and finally brought them to justice. Included are tales of the pursuit of Adolf Eichmann, Erich Priebke, \"Butcher of Lyon\" Klaus Barbie, and \"Angel of Death\" Josef Mengele.',NULL,'GBR','Nazi Hunters','https://s3.amazonaws.com/schedulesdirect/assets/p8173535_i_h3_aa.jpg',4,NULL),('SH013634930000','The life of the officers and men of the King\'s Fusiliers infantry regiment, at home and at battle.',NULL,'GBR','Soldier, Soldier','https://s3.amazonaws.com/schedulesdirect/assets/p490454_b_h3_aa.jpg',4,NULL),('SH019656370000','Die Dokumentationsreihe berichtet über Geschichten von exotischen Schauplätzen, außergewöhnlichen Menschen, wenig erforschten Tierarten sowie erstaunlichen Naturphänomenen, und zeigt interessante Forschungsberichte über die Tiefsee.',NULL,'DEU','mare TV kompakt','https://s3.amazonaws.com/schedulesdirect/assets/p10944077_b_h3_aa.jpg',4,NULL),('SH019560060000','Die Sendung berichtet über Themen aus den Bereichen Wissenschaft, Technik und Mensch. Auf unterschiedliche Fragen wird versucht, Antworten zu finden und diese auf unkomplizierte und leicht verständliche Weise zu vermitteln.',NULL,'DEU','Abenteuer Leben täglich','https://s3.amazonaws.com/schedulesdirect/assets/p10903651_st_h3_ab.jpg',4,NULL),('SH013022490000','Chef Gordon Ramsay hits the road in search of restaurants in crisis, where he steps in and addresses some of the most stressful aspects of running a successful food business. Ramsay and his team redecorate each eatery to give it a fresh look in the hope of attracting a larger crowd. Ramsay\'s ultimate goal is to make the restaurants he visits profitable for their struggling owners.',NULL,'GBR','Ramsay\'s Kitchen Nightmares USA','https://s3.amazonaws.com/schedulesdirect/assets/p185566_i_h3_ab.jpg',4,NULL),('SH012595550000','Sick, twisted and politically incorrect, the animated series features the adventures of the Griffin family. Endearingly ignorant Peter and stay-at-home wife Lois reside in Quahog, R.I., and have three kids. Meg, the eldest child, is a social outcast, and teenage Chris is awkward and clueless when it comes to the opposite sex. The youngest, Stewie, is a genius baby bent on killing his mother and destroying the world. The talking dog, Brian, keeps Stewie in check while sipping martinis and sorting through his own life issues.',NULL,'GBR','Family Guy','https://s3.amazonaws.com/schedulesdirect/assets/p184483_i_h3_ab.jpg',4,NULL),('SH023535090000','Swords may not be the weapon of choice for many people nowadays, but that doesn\'t stop some from continuing to work as bladesmiths. \"Forged in Fire\' tests some of the best in the field as they attempt to re-create some of history\'s most iconic edged weapons. Former Army Ranger Wil Willis hosts the competition series that sees four master bladesmiths challenged in each episode to forge the swords, which are then tested by a panel of judges consisting of J. Neilson, who has been making knives for more than 20 years, hand-to-hand combat specialist Doug Marcaida, and David Baker, an authority on replicating period-accurate weaponry. The contestant who survives the elimination rounds and wins the episode\"s contest earns $10,000 and the title of Forged in Fire champion.',NULL,'GBR','Forged in Fire','https://s3.amazonaws.com/schedulesdirect/assets/p11771815_i_h3_ab.jpg',4,NULL),('SH013005830000','Waverly council lifeguards patrol the shores of Australia\'s famous Bondi Beach, where they face a multitude of challenges, and participate in daring rescues to ensure that the guests experience a safe environment at the beach.',NULL,'GBR','Bondi Rescue','https://s3.amazonaws.com/schedulesdirect/assets/p343242_b_h3_ac.jpg',4,NULL),('SH015402070000','Ratgebermagazin rund um die Gesundheit.',NULL,'DEU','Hauptsache gesund','https://s3.amazonaws.com/schedulesdirect/assets/p9125757_b_h3_aa.jpg',4,NULL),('SH025551370000','Auf dem Gelände des ehemaligen Stahlwerks ist in den vergangenen Jahren ein Naherholungsgebiet entstanden. Dieser Strukturwandel lässt zwei soziale Milieus aufeinandertreffen, die normalerweise nicht miteinander in Berührung kämen: die Alteingesessenen in der Arbeitersiedlung Hörde und die, die in die neuen Villen am Ufer des Phoenixsees zugezogen sind.',NULL,'DEU','Phoenixsee','https://json.schedulesdirect.org/20141201/image/assets/p13500120_i_h3_aa.jpg',4,NULL),('SH032268380000','Die Strohhüte landen auf der Insel Dressrosa. Nachdem sie von Doflamingos Eroberung des Königreichs erfahren haben, schließen sich die Strohhüte mit den Revolutionären und Prinzessin Viola zusammen, um Doflamingo zu stürzen und die Insel zu retten.',NULL,'DEU','One Piece','https://s3.amazonaws.com/schedulesdirect/assets/p12201877_st_h3_aa.jpg',4,NULL),('SH025069650000','Canadian-born Dave and Kortney Wilson met in Nashville, Tennessee, and a few years later they were making a family and music together, dropping their solo careers to perform as the Wilsons. Ever creative, Dave and Kortney have since packed the microphones and left the studio to take advantage of the Music City\'s burgeoning housing market. \"Masters of Flip\' tells of the couple\"s adventures through the messes and stresses of renovations and the anticipation of enormous profits. Tireless contractor Dave and award-winning realtor Kortney have built their real estate business through flips, buy and hold properties, and vacation rentals.',NULL,'GBR','Masters of Flip','https://s3.amazonaws.com/schedulesdirect/assets/p11680488_b_h3_ad.jpg',4,NULL),('SH022488570000','A comprehensive round-up of all the weekend\'s action in Spain\'s LaLiga.',NULL,'GBR','LaLiga World','https://s3.amazonaws.com/schedulesdirect/assets/p12043305_b_h3_aa.jpg',4,NULL),('SH014069440000','Coverage of a fixture from the top division of the Spanish football league system.',NULL,'GBR','LaLiga Football','https://s3.amazonaws.com/schedulesdirect/assets/p8626808_b_h3_ab.jpg',4,NULL),('SH016571710000','An insight into this rarely seen world of high stakes, colourful characters and extreme conditions.',NULL,'GBR','Outback Truckers','https://s3.amazonaws.com/schedulesdirect/assets/p9629919_i_h3_ab.jpg',4,NULL),('SH022786090000','This series goes on a journey through history to discover the world\'s ultimate spies. Several countries have been known to incorporate espionage to keep an eye on enemy plans. Working for the state, crown or government, these spies operated sophisticated-but-hidden communication networks in times when modern technology was nonexistent. The episodes explore the secrets of Tudor and Elizabethan England, 17th-century France and the American Civil War. Drama reconstructions depict historical profiles of operatives carrying out their dangerous missions.',NULL,'GBR','History\'s Ultimate Spies','https://json.schedulesdirect.org/20141201/image/assets/p12182428_i_h3_aa.jpg',4,NULL),('SH019672380000','Geschichten aus Gesellschaft, Wissenschaft und Kultur: Ereignisse, die bewegten und bewegen.',NULL,'DEU','Der Osten: Entdecke wo du lebst','https://s3.amazonaws.com/schedulesdirect/assets/p10950638_b_h3_ab.jpg',4,NULL),('SH013286270000','A short broadcast made by a political party.',NULL,'GBR','Party Political Broadcast','https://s3.amazonaws.com/schedulesdirect/assets/p849531_b_h3_aa.jpg',4,NULL),('SH028224030000','Gordon Ramsay reist zu den beliebten Touristenzielen in Europa. Dort hilft er Briten, die sich ihren Traum vom eigenen Restaurant erfüllt haben. Jedoch droht deren Traum zum Albtraum zu werden, denn die Restaurants stecken in der Krise.',NULL,'DEU','In Teufels Küche mit Gordon Ramsay - Weltweit','https://s3.amazonaws.com/schedulesdirect/assets/p11067716_i_h3_ab.jpg',4,NULL),('SH034253870000','In der Rateshow müssen Kandidatenpaar den Wert verschiedener Gegenstände richtig schätzen. Es geht ganz schön zur Sache, und wem es gelingt, am Ende den wertvollsten Gegenstand ausgewählt zu haben, räumt den Gegenwert in Cash ab.',NULL,'DEU','Kitsch oder Kasse','https://s3.amazonaws.com/schedulesdirect/assets/p17860386_st_h3_aa.jpg',4,NULL),('SH019834270000','Ein Team von forensischen Spezialisten der Polizei in Las Vegas untersucht Tatorte und arbeitet daran, grausame Verbrechen in der Stadt der Sünden aufzulösen.',NULL,'DEU','CSI: Den Tätern auf der Spur','https://s3.amazonaws.com/schedulesdirect/assets/p184657_b_h3_at.jpg',4,NULL),('SH034314030000','Deutschlands bekanntester Make-up-Künstler Boris Entrup hat bereits Berühmtheiten wie Topmodel Naomi Campbell und Angelina Jolie für Auftritte geschminkt. In dieser Sendung sucht er frische Talente, die unterschiedliche Looks kreieren können.',NULL,'DEU','Let\'s Glow - Die Make-Up-Challenge','https://s3.amazonaws.com/schedulesdirect/assets/p17898512_st_h3_aa.jpg',4,NULL),('SH020143070000','ZIB 2 - das ist das tägliche Nachrichten-Magazin des ORF-Fernsehens. Die Sendung setzt Schwerpunkte und liefert Hintergründe.',NULL,'DEU','ZIB 2','https://s3.amazonaws.com/schedulesdirect/assets/p11119175_i_h3_aa.jpg',4,NULL),('SH027888400000','Die Sendung stellt die Genies hinter den Errungenschaften der US-amerikanischen Raumfahrt vor.',NULL,'DEU','Griff nach den Sternen','https://s3.amazonaws.com/schedulesdirect/assets/p14070943_i_h3_ac.jpg',4,NULL),('SH034364840000','Auf einer Reise rund um den Planeten geht Dirk Steffens der Frage nach, warum Wissenschaftler ein neues Erdzeitalter benennen wollen: das Anthropozän, das Zeitalter des Menschen.In der Folge Erde steht die Landwirtschaft im Vordergrund.',NULL,'DEU','Anthropozän - Das Zeitalter des Menschen','https://s3.amazonaws.com/schedulesdirect/assets/p17933876_st_h3_aa.jpg',4,NULL),('SH020284720000','Bekannte Persönlichkeiten des kirchlichen Lebens in Bayern nehmen die Zeichen der Zeit in den Blick und deuten das Evangelium hin auf die momentanen gesellschaftlichen Befindlichkeiten. Mit ihren Gedanken zu christlichen Festen wollen sie die Zuschauer sensibilisieren für das, was hinter den Dingen und unter der Oberfläche des menschlichen Lebens liegt, und die göttliche Wirklichkeit im Alltag aufdecken.',NULL,'DEU','Zeit und Ewigkeit','https://s3.amazonaws.com/schedulesdirect/assets/p11168144_b_h3_aa.jpg',4,NULL),('SH015829260000','The daytime game show, presented by Ben Shephard, features contestants getting a chance to play a large coin-drop machine, provided they answer questions correctly. Wrong answers and the players could be eliminated. The last contestant standing has an opportunity to win the machine\'s £10,000 jackpot.',NULL,'GBR','Tipping Point','https://s3.amazonaws.com/schedulesdirect/assets/p9322562_i_h3_aa.jpg',4,NULL),('SH021649870000','In the 1980s, geeky 11-year-old Adam uses a video camera to document his family\'s crazy life. His mother, Beverly, is overprotective and lacks boundaries, while his dad has a hot temper and finds it difficult to parent without screaming. Rounding out the clan are Adam\'s terrifying sister, Erica, 17; his older brother, Barry, who has middle-child syndrome; and the family\'s beloved grandfather, Al \"Pops\" Solomon. Pops is responsible for wild antics, including offering drinks to Barry and teaching Adam about the ways of love - which create more chaos in an already high-strung family.',NULL,'GBR','The Goldbergs','https://s3.amazonaws.com/schedulesdirect/assets/p9977319_l_h3_ab.jpg',4,NULL),('SH017028920000','Eine Geburt ist ein Wunder - für die Eltern jedoch meist auch eine emotionale Achterbahnfahrt. Die Doku-Serie gibt einen Einblick in den Alltag im Klinikum Südstadt Rostock, in dem jedes Jahr ca. 3000 Entbindungen stattfinden.',NULL,'DEU','Babys! Kleines Wunder - großes Glück','https://s3.amazonaws.com/schedulesdirect/assets/p9804879_st_h3_aa.jpg',4,NULL),('SH018446000000','Lisa Vanderpump first gained fame as a cast member on \"The Real Housewives of Beverly Hills\', but her full-time job is as co-owner and boss at West Hollywood, California, restaurant SUR, which stands for Sexy Unique Restaurant. Vanderpump balances her motherly instinct with her shrewd business sense to maintain control over the restaurant\'s wild group of employees who are working at the eatery while pursuing their dreams. SUR\"s employees include server Stassi, who wants to be the next big thing in fashion, and her sometimes boyfriend, bartender Jax, who is a model.',NULL,'GBR','Vanderpump Rules','https://s3.amazonaws.com/schedulesdirect/assets/p9656862_l_h3_aa.jpg',4,NULL),('SH012846970000','Chiropractor and single father Alan Harper lives in a beachfront house with his underachieving son, Jake, and divorced Internet billionaire Walden Schmidt. Schmidt moves in with the Harpers and offers to buy the house following the untimely death of Alan\'s brother, Charlie, who owned the house and had lived there with Alan and Jake when the father and son moved in following Alan\'s divorce. Alan\'s ex-wife and Jake\'s mother, Judith, remains a part of their lives. Also featured in the series are Alan\'s mother, Evelyn, and sharp-tongued housekeeper Berta.',NULL,'GBR','Two and a Half Men','https://s3.amazonaws.com/schedulesdirect/assets/p8218909_b_h3_aa.jpg',4,NULL),('SH033118560000','Following the lives of a small community of garden dwellers, who try to solve the problems of everyday life with a positive attitude.',NULL,'GBR','Tall Tales','https://s3.amazonaws.com/schedulesdirect/assets/p17364893_b_h3_aa.jpg',4,NULL),('SH018042140000','With more than one million reports of animal cruelty and mistreatment every year, the RSPCA is under increased pressure to keep Britain\'s pets safe from abusive owners and unscrupulous breeders. \"The Dog Rescuers\' follows the organisation\'s inspectors as they track down some of the UK\"s abused and mistreated animals in an attempt to rescue them. Among the crimes against dogs that they investigate are poor living conditions, illegal mass breeding, malnutrition and organised fights. When successful in rescuing the dogs, the animals are rehabilitated and eventually given new homes.',NULL,'GBR','The Dog Rescuers','https://s3.amazonaws.com/schedulesdirect/assets/p10243572_i_h3_aa.jpg',4,NULL),('SH006655400000','Series following New Zealand cops as they confront the best and the worst behaviour on the nation\'s busiest motorway.',NULL,'GBR','Motorway Patrol','https://s3.amazonaws.com/schedulesdirect/assets/p265855_i_h3_aa.jpg',4,NULL),('SH028880440000','Talented young cooks take over the kitchen and celebrate their heritage by cooking some very special recipes. They discover where these dishes and ingredients come from along the way.',NULL,'GBR','My World Kitchen','https://s3.amazonaws.com/schedulesdirect/assets/p15105079_st_h3_aa.jpg',4,NULL),('SH019654750000','Aktuelle Tests und Testergebnisse von Produkten und Dienstleistungen werden präsentiert, angefangen von Säften über Elektronikgeräte, Mobilfunkshops, Fluganbieter, der Riester-Rente, Autozubehör und Stromversorger bis hin zu teuren Restaurants.',NULL,'DEU','Ratgeber - Test','https://s3.amazonaws.com/schedulesdirect/assets/p10943714_st_h3_ab.jpg',4,NULL),('SH020868640000','Drei Mediziner wollen allein mit gezielten Ernährungsstrategien Symptome deutlich verbessern und Krankheiten sogar heilen. Die Reihe zeigt, wie mit speziellem Essen schon innerhalb weniger Monate oft mehr erreicht werden kann als mit Tabletten.',NULL,'DEU','Die Ernährungs-Docs','https://s3.amazonaws.com/schedulesdirect/assets/p11358042_b_h3_aa.jpg',4,NULL),('SH026290490000','Dana Newman präsentiert verschiedene Themen, um vorhandene Englischkenntnisse aufzufrischen. In kleinen Häppchen werden Grammatikregeln wiederholt oder Unterhaltungsthemen wie englischsprachige Musik präsentiert, um den Wortschatz zu erweitern.',NULL,'DEU','English bite-size','https://s3.amazonaws.com/schedulesdirect/assets/p13854651_st_h3_aa.jpg',4,NULL),('SH019560930000','Die siebenköpfige, hochspezialisierte FBI-Eliteeinheit aus erfahrenen Psychologen und Special Agents erstellt Serientäterprofile, um damit Gewaltverbrechern zuvorzukommen. Jeder der Ermittler trägt mit seinem Spezialwissen zur Analyse und Aufklärung der Verbrechen bei und gemeinsam riskieren sie Kopf und Kragen, denn Criminal Minds ist wie ein Spiel gegen einen unberechenbaren Gegner: Jeder Zug ist ungewiss und kann ein schnelles Schachmatt bedeuten.',NULL,'DEU','Criminal Minds','https://s3.amazonaws.com/schedulesdirect/assets/p185123_l_h3_aa.jpg',4,NULL),('SH029665690000','Goldsucher Dakota und sein Sohn wollen mithilfe von erfahrenen Tauchern und Bergsteigern das Gold aus dem Boden holen, das sich am Grund des McKinley Creek befindet. Die beiden gehen auf volles Risiko und versuchen, was noch keiner geschafft hat.',NULL,'DEU','Goldrausch: White Water Alaska','https://json.schedulesdirect.org/20141201/image/assets/p14928011_i_h3_aa.jpg',4,NULL),('SH028472930000','Following the success of Impossible Engineering, the history series displays the world\'s most extraordinary railway engineering achievements, and serves as the ultimate guide to the world\'s rail networks. \"Impossible Railways\" explores how railways have been at the forefront of modern engineering and transport since their meteoric rise in the 19th century. The series captures design breakthroughs and the genius of pioneers who embraced nature and the challenges of physics in order to create a global railway network.',NULL,'GBR','Impossible Railways','https://s3.amazonaws.com/schedulesdirect/assets/p14957254_st_h3_ab.jpg',4,NULL),('SH018580010000','Chris und Martin Kratt sind Brüder. Der Biologe und der Zoologe widmen ihre Zeit und ihr Leben dem Tierschutz und sind immer zur Stelle, wenn Tiere in Not geraten. Und so reisen sie um die ganze Welt, erleben ein spannendes Abenteuer nach dem anderen und lernen die exotischsten Tiere kennen.',NULL,'DEU','Go Wild! - Mission Wildnis','https://s3.amazonaws.com/schedulesdirect/assets/p8369911_i_h3_aa.jpg',4,NULL),('SH012970810000','Magazine style sketch show that comically scrutinises the latest news, views and issues of the day.',NULL,'GBR','Newsjack','https://s3.amazonaws.com/schedulesdirect/assets/p8182115_st_h3_aa.jpg',4,NULL),('SH034073570000','After Whitney loses her job, she moves her two kids to Toronto to start a gymnastics club with her father.',NULL,'GBR','My Perfect Landing','https://s3.amazonaws.com/schedulesdirect/assets/p17780012_st_h3_aa.jpg',4,NULL),('SH023711990000','Two brothers help homeowners buy and sell homes.',NULL,'GBR','Buying and Selling','https://s3.amazonaws.com/schedulesdirect/assets/p9180009_i_h3_aa.jpg',4,NULL),('SH003165340000','Das Magazin befasst sich vor allem mit den Themen Wirtschaft, Politik, Finanzen und Verbraucherschutz, erklärt neue Gesetze und aktuelle Wirtschaftsereignisse und deckt auf, wann und wo der Normalbürger ausgetrickst oder betrogen wurde.',NULL,'DEU','WISO','https://s3.amazonaws.com/schedulesdirect/assets/p526802_b_h3_ab.jpg',4,NULL),('SH021319170000','Be Beautiful brings you the best make-up artists and beauty vloggers for a series of individual make-up tutorials.',NULL,'GBR','Be Beautiful','https://s3.amazonaws.com/schedulesdirect/assets/p11531827_b_h3_aa.jpg',4,NULL),('SH020683970000','Duggee is a big, friendly dog who runs The Squirrel Club, an after-school activity club where children can learn and take part in all kinds of activities, have fun adventures, and earn badges for their achievements.',NULL,'GBR','Hey Duggee','https://s3.amazonaws.com/schedulesdirect/assets/p11305731_b_h3_aa.jpg',4,NULL),('SH034254140000','Der Moderator lädt drei Hobbyköche zum Improvisations-Kochduell ein. In 25 Minuten müssen sie ein vorgegebenes Gericht zubereiten, wobei Steffen Henssler einige Gemeinheiten in der Hinterhand hat, um den Kandidaten das Leben schwer zu machen.',NULL,'DEU','Hensslers Countdown - Kochen am Limit','https://s3.amazonaws.com/schedulesdirect/assets/p17860617_st_h3_aa.jpg',4,NULL),('SH032896120000','Das Magazin bietet einen kompakten Überblick zu allen bekannten Titeln und Wettbewerben.',NULL,'DEU','bwin Inside eSports','https://s3.amazonaws.com/schedulesdirect/assets/p16448204_st_h3_ae.jpg',4,NULL),('SH029547070000','Die Sendung zeigt die aktuellsten Neuigkeiten aus dem Alltag aus allen Regionen Deutschlands mit spannenden Geschichten. Meteorologen vertiefen sachkundig die Wetterlage und Windbewegungen bis hin zum Bio- und Pflanzwetter.',NULL,'DEU','Live nach Neun','https://s3.amazonaws.com/schedulesdirect/assets/p15445469_st_h3_aa.jpg',4,NULL),('SH019560690000','Anwälte befassen sich in authentisch nachgestellten Rechtsfällen mit Streitigkeiten aller Art und klären verschiedene Fälle auf. Die Juristen sind spezialisiert in Fällen wie unter anderem Baupfusch, Mobbing oder Scheidung.',NULL,'DEU','Anwälte im Einsatz','https://s3.amazonaws.com/schedulesdirect/assets/p10904313_b_h3_aa.jpg',4,NULL),('SH034353290000','Europäische Hauptstädte haben Namensvettern in den verschiedensten Ecken der Welt. Diese Dokumentationsreihe lädt auf eine Entdeckungsreise ein, bei der diese Zwillingsstädte auf informative und unterhaltsame Art erkundet werden.',NULL,'DEU','Twin Towns','https://s3.amazonaws.com/schedulesdirect/assets/p17927955_st_h3_aa.jpg',4,NULL),('SH030383050000','Jeremy Vine discusses and dissects the latest news, views and opinions with guests.',NULL,'GBR','Jeremy Vine','https://s3.amazonaws.com/schedulesdirect/assets/p15871191_b_h3_aa.jpg',4,NULL),('SH029111220000','Die musikalischen Trolle Branch und Poppy erleben weitere spannende Abenteuer mit ihren Freunden.',NULL,'DEU','Trolls - Die Party geht weiter!','https://s3.amazonaws.com/schedulesdirect/assets/p14940594_i_h3_aa.jpg',4,NULL),('SH016936530000','An English aristocrat and an American millionaire come together to tackle crime.',NULL,'GBR','The Persuaders!','https://s3.amazonaws.com/schedulesdirect/assets/p509590_b_h3_ab.jpg',4,NULL),('SH020060470000','Die Sendung bietet ein Forum für die aktuelle politische Debatte in Deutschland. Regelmäßig diskutieren kompetente Gäste Fragen zum politischen, wirtschaftlichen und sozialen Leben in Deutschland und Ereignisse aus dem Ausland.',NULL,'DEU','phoenix Runde','https://s3.amazonaws.com/schedulesdirect/assets/p11091787_b_h3_aa.jpg',4,NULL),('SH019357340000','\"Alaskan Bush People\" is a reality-documentary series that introduces the Brown family - Billy, wife Ami and their seven grown children who - according to Discovery - are interesting because \"they are unlike any other family in America.\" The channel says they are so far removed from civilization that they often go six to nine months each year without seeing an outsider. They refer to themselves as a \"wolf pack\" and, perhaps due to isolation, have their own accent and dialect. The Browns live in the Copper River Valley, where temperatures can drop to 60 degrees below zero, and the family recently relocated and built a cabin there because, they say, their former home of many years was seized and burned down for being in the wrong location on public land.',NULL,'GBR','Alaskan Bush People','https://s3.amazonaws.com/schedulesdirect/assets/p10598238_l_h3_aa.jpg',4,NULL),('SH012617000000','Shaun\'s flock tries to live a peaceful life under the watchful eye of their sheepdog Bitzer.',NULL,'GBR','Shaun the Sheep','https://s3.amazonaws.com/schedulesdirect/assets/p186454_i_h3_aa.jpg',4,NULL),('SH013183010000','Comedy drama series by Nigel Williams that charts the misfortunes of a middle-aged HR officer.',NULL,'GBR','HR','https://s3.amazonaws.com/schedulesdirect/assets/p8259945_st_h3_aa.jpg',4,NULL),('SH026387930000','Three talented singers navigate the music industry on their road to success.',NULL,'GBR','Star','https://s3.amazonaws.com/schedulesdirect/assets/p12900832_b_h3_ac.jpg',4,NULL),('SH025939220000','Der immer fröhliche Jett ist das beste und schnellste Düsenflugzeug der Welt. Jeden Tag liefert Jett Kindern in aller Welt Pakete aus. Gemeinsam mit seinen Freunden hilft er den Kindern, besondere Herausforderungen zu meistern.',NULL,'DEU','Super Wings','https://s3.amazonaws.com/schedulesdirect/assets/p11545356_l_h3_aa.jpg',4,NULL),('SH022880900000','Das Magazin für Lebensfragen. Es werden aktuelle gesellschaftliche und soziale Fragen erörtert.',NULL,'DEU','Nah dran','https://s3.amazonaws.com/schedulesdirect/assets/p12226390_b_h3_aa.jpg',4,NULL),('SH025424720000','Alexei Sayle delivers a mixture of stand-up, memoir and philosophy from behind the counter of his Imaginary Sandwich Bar.',NULL,'GBR','Alexei Sayle\'s Imaginary Sandwich Bar','https://s3.amazonaws.com/schedulesdirect/assets/p13441240_st_h3_aa.jpg',4,NULL),('SH012586810000','Presented by designer and writer Kevin McCloud, each episode follows different people who have set out to pursue their vision of a dream home by building it themselves. Each project is completely unique, with many calling for custom-made elements that make the final result not only a home, but also a work of art. Some of the most unusual buildings include a domed house in a hillside built entirely by the owner and his family, and a glass house on top of a Welsh cliff which is part home, part architectural monument.',NULL,'GBR','Grand Designs','https://s3.amazonaws.com/schedulesdirect/assets/p241160_i_h3_ab.jpg',4,NULL),('SH019695870000','In a format similar to popular American show \"Judge Judy\", small claims cases are adjudicated in a studio courtroom presided over by criminal law barrister Rob Rinder. Each programme sees three different cases brought before the judge, who questions claimants and defendants, speaks to witnesses, assess the evidence and makes judgements. He also reserves the right to throw the case, and the people, out of his court! Called in 2001, Rinder at his legal practice focuses on international fraud, money laundering, and other forms of financial crime, a long gavel throw away from the cases he judges on TV.',NULL,'GBR','Judge Rinder','https://s3.amazonaws.com/schedulesdirect/assets/p10959520_i_h3_aa.jpg',4,NULL),('SH017450200000','Peter embarks on a series of exciting adventures with his friends as he overcomes obstacles, outwits his foes and tries to be a good rabbit.',NULL,'GBR','Peter Rabbit','https://s3.amazonaws.com/schedulesdirect/assets/p9628545_b_h3_ab.jpg',4,NULL),('SH014715700000','This entry in the venerable Dick Wolf-produced \"Law & Order\' franchise mixes things up by taking the show\"s tried-and-true formula out of New York and moving it to Los Angeles. Corey Stoll, Rachel Ticotin, Alana De La Garza, Alfred Molina and Terrence Howard star in the crime drama.',NULL,'GBR','Law & Order: LA','https://s3.amazonaws.com/schedulesdirect/assets/p8127171_l_h3_aa.jpg',4,NULL),('SH030690410000','CBeebies\' very own rally driver, Catie, is in the driving seat of some amazing machines as she introduces pre-school audiences to some of the biggest and fastest machines in the world!',NULL,'GBR','Catie\'s Amazing Machines','https://s3.amazonaws.com/schedulesdirect/assets/p16090680_i_h3_aa.jpg',4,NULL),('SH034271030000','Inside every museum is a hidden world, and now, cameras have been allowed behind the scenes at the world-famous Victoria and Albert Museum in London. Only a small part of the two million wonders in the collection are on display to the public.',NULL,'GBR','Secrets Of The Museum','https://s3.amazonaws.com/schedulesdirect/assets/p17870032_b_h3_aa.jpg',4,NULL),('SH012612620000','A vibrant mix of showbiz news, fashion, cookery, gardening, travel, advice and DIY.',NULL,'GBR','This Morning','https://s3.amazonaws.com/schedulesdirect/assets/p957528_b_h3_ac.jpg',4,NULL),('SH019739060000','Zu später Stunde informiert die Nachrichtensendung über die wichtigsten Ereignisse.',NULL,'DEU','Rundschau-Nacht','https://s3.amazonaws.com/schedulesdirect/assets/p10976485_b_h3_aa.jpg',4,NULL),('SH012701380000','Elmo takes great joy in discovering the fanciful world around him.',NULL,'GBR','Elmo\'s World','https://s3.amazonaws.com/schedulesdirect/assets/p376871_i_h3_aa.jpg',4,NULL),('SH024873100000','Die Serie geht den mysteriösen Geheimnissen der Heiligen Schrift auf den Grund. Archäologen, Historiker und Abenteurer begeben sich auf die Suche nach Antworten.',NULL,'DEU','Mythen-Jäger','https://s3.amazonaws.com/schedulesdirect/assets/p11223564_i_h3_aa.jpg',4,NULL),('SH019997570000','Die Sendung zeigt Reporterberichte, Nachrichtenfilme, Meldungen, Kommentare und die Meinung der Zuschauerinnen und Zuschauer. Diese können sich täglich mit ihren Fragen und Diskussionsbeiträgen direkt via Telefon an Experten im Studio wenden.',NULL,'DEU','aktueller bericht','https://s3.amazonaws.com/schedulesdirect/assets/p11072383_b_h3_aa.jpg',4,NULL),('SH028214330000','The adventures of the Trullalleri who attend cookery classes at the famous school of magic and cooking. They must learn to use their cookery skills as well as their magic powers.',NULL,'GBR','Trulli Tales','https://s3.amazonaws.com/schedulesdirect/assets/p14625055_i_h3_aa.jpg',4,NULL),('SH013518000000','If you own a business, you probably think it\'s the best in the industry. But would you be willing to put your money and reputation on the line to prove it? The bed-and-breakfast owners in this programme do just that. The business owners stay at one another\'s bed and breakfast and, essentially, compete to determine whose is the best. Each owner judges the bed and breakfast where he or she stays and pays for the room -- an amount that is deemed acceptable by the person staying there.',NULL,'GBR','Four in a Bed','https://s3.amazonaws.com/schedulesdirect/assets/p8395638_l_h3_aa.jpg',4,NULL),('SH012757430000','The third permutation of the \"CSI\" franchise sets up shop in the Big Apple, where taciturn Detective Mac Taylor and his partner, Investigator Jo Danville, lead a crime-solving team. Taylor knows that people may lie, but the evidence rarely does.',NULL,'GBR','CSI: NY','https://s3.amazonaws.com/schedulesdirect/assets/p185030_i_h3_aa.jpg',4,NULL),('SH025778850000','Ein Kamerateam begleitet die neuseeländischen Grenzschutzbeamten und Einwanderungsbehörde bei der täglichen Arbeit. Diese schützen die einheimische Bevölkerung vor wirtschaftlichen, gesundheitlichen und radikalen Bedrohungen.',NULL,'DEU','Border Patrol New Zealand','https://json.schedulesdirect.org/20141201/image/assets/p8603832_st_h3_ae.jpg',4,NULL),('SH021050460000','Ricky creates art that viewers can recreate at home - encouraging them to catch the animation bug.',NULL,'GBR','Art Ninja','https://s3.amazonaws.com/schedulesdirect/assets/p11411972_i_h3_aa.jpg',4,NULL),('SH025164400000','The adventure of five beaming balls of light that cause mischief wherever they go.',NULL,'GBR','Sunny Bunnies','https://s3.amazonaws.com/schedulesdirect/assets/p13311154_b_h3_ab.jpg',4,NULL),('SH012877770000','\"Don\'t Tell the Bride\' is a reality series where the groom is left the responsibility of planning an entire wedding, leaving his bride completely in the dark. The couple are separated for a few weeks whilst the groom organises their wedding, choosing every detail such as the venue, cake and wedding dress. The bride is not told what is going on during the planning process. She doesn\'t see the invitations until they go out in the mail, she sees the reception setup at the same time the guests do and she doesn\"t even try on her dress until just before she walks down the aisle. These brides shed tears of joy and, at times, sadness when they finally get to see what their weddings look like.',NULL,'GBR','Don\'t Tell the Bride','https://s3.amazonaws.com/schedulesdirect/assets/p3517989_i_h3_aa.jpg',4,NULL),('SH031993090000','Die Sendung begleitet Polizisten bei ihren Einsätzen auf den Australischen Straßen. Wenn Temposünder oder Verkehrsrowdys durch rücksichtsloses Verhalten am Steuer das Leben anderer Menschen gefährden, kennen die Ordnungshüter kein Pardon.',NULL,'DEU','Highway Patrol','https://s3.amazonaws.com/schedulesdirect/assets/p8120522_i_h3_aa.jpg',4,NULL),('SH019675920000','Construction teams develop large-scale cabin homes in remote, rugged regions of Alaska.',NULL,'GBR','Building Alaska','https://s3.amazonaws.com/schedulesdirect/assets/p9501972_l_h3_aa.jpg',4,NULL),('SH018024280000','Clients who rely on Hawaii Life Real Estate to make their island living dreams come true.',NULL,'GBR','Hawaii Life','https://s3.amazonaws.com/schedulesdirect/assets/p9628583_l_h3_aa.jpg',4,NULL),('SH022943920000','Ten home potters from around the country compete to become Top Potter.',NULL,'GBR','The Great Pottery Throw Down','https://json.schedulesdirect.org/20141201/image/assets/p12263938_i_h3_aa.jpg',4,NULL),('SH026256940000','Four homeowners aim to make the most profit after a major renovation.',NULL,'GBR','The Home Game','https://s3.amazonaws.com/schedulesdirect/assets/p13838339_b_h3_aa.jpg',4,NULL),('SH024155100000','The much loved British Royal Family is re-imagined through the lens of a soap opera, as you\'ve never seen them before.',NULL,'GBR','The Windsors','https://s3.amazonaws.com/schedulesdirect/assets/p12823796_b_h3_aa.jpg',4,NULL),('SH027942170000','Die Rankingshow beschäftigt sich mit den Geschichten hinter Liedern, Videos und anderen Beiträgen. Es kann sich um rührende, spannende oder lustige Themen handeln. Die jeweiligen Clips werden von verschiedenen Prominenten kommentiert.',NULL,'DEU','Big Stories','https://s3.amazonaws.com/schedulesdirect/assets/p14638451_st_h3_aa.jpg',4,NULL),('SH025406220000','Der E-Sport bezeichnet den sportlichen Wettkampf zwischen Menschen mit Hilfe von Computerspielen. Der Wettkampf wird mit Hilfe des Mehrspielermodus eines Computerspieles ausgetragen. Die Reihe zeigt die Übertragung von aktuellen Turnieren.',NULL,'DEU','eSports','https://s3.amazonaws.com/schedulesdirect/assets/p10122190_b_h3_ab.jpg',4,NULL),('SH034427240000','A fictional window into the frustrated marriage of Jon Richardson and Lucy Beaumont, who play exaggerated versions of themselves in their home and work lives, surrounded by their celebrity friends and their Hebden Bridge neighbours.',NULL,'GBR','Meet the Richardsons','https://s3.amazonaws.com/schedulesdirect/assets/p17973997_st_h3_aa.jpg',4,NULL),('SH031006840000','Die 16-jährige Kyra führt ein normales Teenager-Leben, bis sie durch einen Zauber in eine Fee verwandelt wird. Sie wird freundlich von der Feengemeinschaft aufgenommen. Doch schon bald muss sie sich behaupten und gegen eine Widersacherin wehren.',NULL,'DEU','Club der magischen Dinge','https://s3.amazonaws.com/schedulesdirect/assets/p15686629_i_h3_ac.jpg',4,NULL),('SH030488180000','Michael Palin\'s travels show life for many of the millions of North Korean subjects who live,work and have families in the DPRK. He discovers everyday life for the population in the capital Pyongyang to exploring the snowy peaks of Mount Paektu.',NULL,'GBR','Michael Palin In North Korea','https://s3.amazonaws.com/schedulesdirect/assets/p15921879_b_h3_aa.jpg',4,NULL),('SH013125290000','Intelligence officers Henry Colvil and Alex Soames probe mysteries.',NULL,'GBR','Colvil and Soames','https://s3.amazonaws.com/schedulesdirect/assets/p630069_st_h3_aa.jpg',4,NULL),('SH019577880000','Die Sendung informiert über das politische und kulturelle Leben in Hamburg und liefert Hintergrundinformationen zu besonderen Ereignissen. Auch der Sport in Hamburg sowie Heimatgeschichten aus dem Land sind Themen der Sendung.',NULL,'DEU','Hamburg Journal','https://s3.amazonaws.com/schedulesdirect/assets/p10910696_i_h3_aa.jpg',4,NULL),('SH012597240000','Three young men and three young women - of the BFF kind - live in the same apartment complex and face life and love in New York. They\'re not above sticking their noses into one another\'s businesses and swapping romantic partners, which always leads to the kind of hilarity average people will never experience, especially during breakups.',NULL,'GBR','Friends','https://s3.amazonaws.com/schedulesdirect/assets/p183931_i_h3_aa.jpg',4,NULL),('SH020459360000','Alex Simmons hosts a Rugby League Chat Show, offering expert analysis and witty banter on the comings and goings in the world of Rugby League in Yorkshire and the North.',NULL,'GBR','Rugby AM','https://s3.amazonaws.com/schedulesdirect/assets/p11232824_b_h3_aa.jpg',4,NULL),('SH019692200000','Das aktuelle Wochenmagazin quer präsentiert ungewöhnliche Blicke auf das Zeitgeschehen. Kritisch und informativ, bissig und direkt, aber auch unterhaltsam präsentiert Moderator und Kabarettist Christoph Süß die Themen der Woche.',NULL,'DEU','quer','https://s3.amazonaws.com/schedulesdirect/assets/p10958185_i_h3_aa.jpg',4,NULL),('SH033227900000','Ein Single und fünf Menü-Vorschläge, hinter denen sich Blind Dates verbergen.',NULL,'DEU','Dinner Date','https://s3.amazonaws.com/schedulesdirect/assets/p17408304_b_h3_aa.jpg',4,NULL),('SH027630210000','The Rangers must master their arsenal, which is made of legendary ninja steel, to save the galaxy.',NULL,'GBR','Power Rangers Ninja Steel','https://s3.amazonaws.com/schedulesdirect/assets/p13630339_b_h3_aa.jpg',4,NULL),('SH018575210000','In Chuggington sind Züge das einzige Transportmittel - und nicht nur das, sie sind außerdem gleichwertige Mitglieder der Gesellschaft und können sogar reden. Es leben hier Diesel-, Elektro-, Dampf-, Rangier- und Güterloks friedlich beisammen.',NULL,'DEU','Chuggington - Die Loks sind los!','https://json.schedulesdirect.org/20141201/image/assets/p623991_i_h3_aa.jpg',4,NULL),('SH025275740000','Wie und weshalb gehen Experimente schief und kommt es zu anderen wissenschaftlichen Fehltritten und Peinlichkeiten? Die Dokumentation, präsentiert von `Mr. Brainiac\' Richard Hammond, klärt auf.',NULL,'DEU','Science of Stupid: Wissenschaft der Missgeschicke','https://s3.amazonaws.com/schedulesdirect/assets/p10483010_i_h3_aa.jpg',4,NULL),('SH019659210000','Das Kulturmagazin des MDR mit Themen aus der Pop- und Hochkultur.',NULL,'DEU','artour','https://s3.amazonaws.com/schedulesdirect/assets/p10945152_b_h3_aa.jpg',4,NULL),('SH016391880000','Die Sendung berichtet wöchentlich über politische Themen und aktuelle Geschehnisse aus aller Welt.',NULL,'DEU','auslandsjournal','https://s3.amazonaws.com/schedulesdirect/assets/p9561764_b_h3_ab.jpg',4,NULL),('SH013786220000','Classic BBC comedy starring Tony Hancock, written by Galton and Simpson.',NULL,'GBR','Hancock\'s Half Hour','https://s3.amazonaws.com/schedulesdirect/assets/p8502126_st_h3_aa.jpg',4,NULL),('SH024705800000','This is a UK version of the popular US series \"Say Yes to the Dress\', the show where wives-to-be are united with their perfect bridal dress. Set in Essex, the Confetti and Lace bridal boutique welcomes customers from all over the UK as they seek to find the wedding dress of their dreams. On hand with their expert advice is store owner and wedding dress designer, Christine Dando and creator of Princess Diana\"s infamous wedding dress, David Emanuel. The pair do everything in their power to make the day a special experience for each unique bride who also shares their personal anecdotes with the crew.',NULL,'GBR','Say Yes to the Dress UK','https://s3.amazonaws.com/schedulesdirect/assets/p13078005_i_h3_aa.jpg',4,NULL),('SH034226470000','Savannah and Chase Chrisley do their best to prove to their father, Todd Chrisley, that they can make it in the real world without his help. They set out on a road trip to Los Angeles with Nanny Faye in tow to seek some independence.',NULL,'GBR','Growing Up Chrisley','https://json.schedulesdirect.org/20141201/image/assets/p16475005_b_h3_ab.jpg',4,NULL),('SH033502550000','1980s comedy starring Bruce Forsyth as the manager of a London supermarket with incompetent staff and ensuing disasters.',NULL,'GBR','Slinger\'s Day','https://s3.amazonaws.com/schedulesdirect/assets/p17543557_st_h3_aa.jpg',4,NULL),('SH012592870000','Current affairs programme, featuring interviews and investigative reports on all aspects of life in Britain.',NULL,'GBR','Panorama','https://s3.amazonaws.com/schedulesdirect/assets/p273696_b_h3_ad.jpg',4,NULL),('SH022073810000','Three teenage girls who don\'t appear to have much in common, other than going to the same school, come together to form a K-pop-inspired band. The members must balance schoolwork and relationships as they continue to grow the band.',NULL,'GBR','Make It Pop','https://s3.amazonaws.com/schedulesdirect/assets/p11555241_b_h3_aa.jpg',4,NULL),('SH016446360000','Classic live music from the BBC archives.',NULL,'GBR','6 Music Live Hour','https://s3.amazonaws.com/schedulesdirect/assets/p9583080_st_h3_aa.jpg',4,NULL),('SH012594650000','The dedicated team at the Houston Society for the Prevention of Cruelty to Animals, a private charity, respond to a variety of distress calls involving an average of more than 100 animals per day. This series documents the work they do, from the initial investigation through, in some cases, the animals being adopted into loving homes.',NULL,'GBR','Animal Cops: Houston','https://s3.amazonaws.com/schedulesdirect/assets/p185358_b_h3_aa.jpg',4,NULL),('SH021739210000','Die Sendereihe ist ein als Fernsehspiel in Fortsetzungen angelegter Sprachkurs, der zum Erlernen der französischen Sprache ermuntern und Grundkenntnisse vermitteln oder auffrischen soll. Er wurde als ein Beitrag zum Kulturabkommen entwickelt.',NULL,'DEU','Les Gammas','https://s3.amazonaws.com/schedulesdirect/assets/p11727496_b_h3_aa.jpg',4,NULL),('SH031661660000','In Knowsley, Liverpool, three out of every five families has a single parent. But the impressive single mums who live there have each other. In the first of the series, our single mums find a way to provide for their kids, come what may.',NULL,'GBR','Single Mum & Proud','https://json.schedulesdirect.org/20141201/image/assets/p16602792_i_h3_aa.jpg',4,NULL),('SH019370140000','Dr. Leonard Leakey Hofstadter und Dr. Sheldon Cooper sind geniale Physiker, arbeiten im selben Institut und teilen sich eine Wohnung. Im Umgang mit der sozialen Umwelt hingegen hat vor allem Sheldon seine Schwierigkeiten. Zu ihrem Freundeskreis gehören Dr. Rajesh Ramayan Koothrappali und der Ingenieur Howard Wolowitz. Als die hübsche Penny in die Wohnung nebenan einzieht, kann sie zunächst nicht viel mit den merkwürdigen Wissenschaftlern, die ihre Freizeit am liebsten im Comicbuchladen und Halo oder World of Warcraft spielend verbringen, anfangen. Nach einer Weile wächst ihr die Gruppe aber ans Herz.',NULL,'DEU','The Big Bang Theory','https://s3.amazonaws.com/schedulesdirect/assets/p185554_l_h3_aa.jpg',4,NULL),('SH012600970000','This series uses re-enactments and interviews to retell the circumstances of, well, mysteries that are unsolved. Covering crimes, tales of lost love, unexplained history and paranormal events, viewers are encouraged to provide information that might solve the mystery.',NULL,'GBR','Unsolved Mysteries','https://s3.amazonaws.com/schedulesdirect/assets/p184516_i_h3_aa.jpg',4,NULL),('SH013042310000','Inside the secure corridors of Criminal Intelligence 5, a high-level British anti-crime unit, George Cowley hands out tough assignments to his two top agents: thuggish William Andrew Philip Bodie, who favors a \"hit first, ask questions later\" style, and the more cerebral Raymond Doyle, a former Docklands police constable.',NULL,'GBR','The Professionals','https://s3.amazonaws.com/schedulesdirect/assets/p184229_i_h3_aa.jpg',4,NULL),('SH016889010000','Die Sendung `ZDFzeit\' zeigt Dokumentationen mit einem breiten Spektrum an zeitgeschichtlichen sowie historischen, wirtschaftlichen und politischen Themen.',NULL,'DEU','ZDFzeit','https://s3.amazonaws.com/schedulesdirect/assets/p9745829_b_h3_aa.jpg',4,NULL),('SH016113240000','An inside look at the lives of emergency services personnel in the United Kingdom, following the specially trained police, fire and ambulance teams on the front line as they answer millions of emergency calls every year, and discovering how they cope with making life or death decisions under stress on a daily basis. The cameras follow the work of first responders around the clock, providing an insight into a world full of drug- and alcohol-induced injuries, domestic violence, car accidents and fires.',NULL,'GBR','999: What\'s Your Emergency?','https://s3.amazonaws.com/schedulesdirect/assets/p9448418_i_h3_ab.jpg',4,NULL),('SH032600570000','Two part dramas concerning the various drifters who rent rooms in a lodging house.',NULL,'GBR','Rooms','https://s3.amazonaws.com/schedulesdirect/assets/p17089032_st_h3_aa.jpg',4,NULL),('SH020265790000','Eccentric genius Walter O\'Brien leads a group of brilliant misfits who constitute Homeland Security\'s new think tank, helping defend against the high-tech threats of the computer age. The team - dubbed Scorpion - includes behaviourist Toby Curtis, mechanical prodigy Happy Quinn, and statistics guru Sylvester Dodd. While comfortable with one another, the team members struggle with understanding life outside their circle, so when they need help translating societal cues, they rely on the skills of Paige Dineen, a woman with a gifted young son.',NULL,'GBR','Scorpion','https://s3.amazonaws.com/schedulesdirect/assets/p10779263_l_h3_aa.jpg',4,NULL),('SH019403270000','Die Nachrichtensendung ist speziell für Acht- bis Zwölfjährige ausgelegt, und berichtet über relevante Themen aus Europa und der ganzen Welt. In jeder Sendung stellen deutsche oder französische Schüler Fragen zu einem aktuellen Thema.',NULL,'DEU','Arte Journal Junior','https://s3.amazonaws.com/schedulesdirect/assets/p10850057_b_h3_aa.jpg',4,NULL),('SH023568700000','Man sagt, Menschen aus dem Ruhrgebiet tragen das `Herz auf der Zunge\'. Die Sozialdokumentation begleitet vier Monate lang den teilweise beklemmenden Alltag von Menschen aus dem Ruhrgebiet, die aber immer das Herz am richtigen Fleck tragen.',NULL,'DEU','Hartz und herzlich','https://s3.amazonaws.com/schedulesdirect/assets/p12553832_st_h3_aa.jpg',4,NULL),('SH012974930000','Michael Buerk chairs a debate on the moral questions behind the week\'s news.',NULL,'GBR','The Moral Maze','https://s3.amazonaws.com/schedulesdirect/assets/p301267_b_h3_aa.jpg',4,NULL),('SH032161810000','Die Siedler der Anastasia-Bewegung sehen aus wie Hippies und Öko-Aussteiger, doch bei so manchem verbirgt sich hinter der grünen Fassade eine völkische, braune Ideologie.',NULL,'DEU','Kontraste - Die Reporter','https://s3.amazonaws.com/schedulesdirect/assets/p16856557_st_h3_aa.jpg',4,NULL),('SH012966740000','Series exploring the life and works of a succession of composers.',NULL,'GBR','Composer of the Week','https://s3.amazonaws.com/schedulesdirect/assets/p221825_i_h3_aa.jpg',4,NULL),('SH019617580000','Der kleine Bauernjunge Trenk Tausendschlag lebt im Mittelalter und erlebt einige Abenteuer.',NULL,'DEU','Der kleine Ritter Trenk','https://s3.amazonaws.com/schedulesdirect/assets/p9679011_b_h3_aa.jpg',4,NULL),('SH025311350000','Der riesige Grizzlybär Grizzy wird von einer Horde nervtötender Lemminge geneckt.',NULL,'DEU','Grizzy and The Lemmings','https://s3.amazonaws.com/schedulesdirect/assets/p13330553_i_h3_aa.jpg',4,NULL),('SH032330000000','Dokumentationen und Reportagen zu unterschiedlichen gesellschaftlichen Themen.',NULL,'DEU','STATIONEN','https://s3.amazonaws.com/schedulesdirect/assets/p10976501_i_h3_aa.jpg',4,NULL),('SH033100900000','ONE lässt die Herzen von echten Serien-Nerds höher schlagen und lädt zu einem ernsthaften Talk über Serien ein.',NULL,'DEU','Seriös - Das Serienquartett','https://s3.amazonaws.com/schedulesdirect/assets/p17355309_b_h3_aa.jpg',4,NULL),('SH027485190000','Die Dokumentarreihe begleitet die Grenzschützer Spaniens bei ihrer täglichen Verbrechensbekämpfung. Rund um die Uhr sind die Männer und Frauen im Einsatz, um Drogenhändlern, Schlepperbanden und Schmugglern zuvorzukommen.',NULL,'DEU','Border Control - Spaniens Grenzschützer','https://s3.amazonaws.com/schedulesdirect/assets/p13272827_i_h3_aa.jpg',4,NULL),('SH020657010000','Frank Reagan ist Chef der Polizei von New York. Der Witwer folgt damit seinem Vater, der diese Behörde früher ebenfalls leitete und mit seinem Wissen und seinen Kontakten immer wieder hilfreich zur Seite steht. Der Kampf gegen das Verbrechen ist für die Reagans also kein bloßer Job sondern eine regelrechte Familienangelegenheit. Denn auch Franks Tochter Erin und seine Söhne Daniel und Jamison sind schon Träger der typischen blauen Polizeiuniformen.',NULL,'DEU','Blue Bloods - Crime Scene New York','https://s3.amazonaws.com/schedulesdirect/assets/p8130493_i_h3_ab.jpg',4,NULL),('SH029383020000','Experten geben Tipps für die Gartenpraxis sowie die Gestaltung von Gärten und Balkonen. Einen Schwerpunkt bilden Berichte über Pflanzen und Filme über die schönsten Gärten der Welt. Hinzu kommen viele Anregungen und Gestaltungs-Inspirationen.',NULL,'DEU','Schnittgut. Alles aus dem Garten','https://s3.amazonaws.com/schedulesdirect/assets/p15372135_st_h3_aa.jpg',4,NULL),('SH027712470000','Following an hour in the life of the West Midlands paramedics as they deal with a wide range of cases where life is on the line.',NULL,'GBR','999: On the Frontline','https://s3.amazonaws.com/schedulesdirect/assets/p14513130_st_h3_aa.jpg',4,NULL),('SH034302800000','Die 13-jährige furchtlose Anne Boonchuy landet aus Versehen in der magischen Welt `Amphibia\', die von sprechenden Fröschen, Kröten und Insekten bevölkert wird. Dort freundet sie sich mit einem Frosch namens Sprig an und lernt seine Familie kennen.',NULL,'DEU','Amphibia','https://s3.amazonaws.com/schedulesdirect/assets/p16947359_b_h3_ab.jpg',4,NULL),('SH015401980000','Bei Tele-Gym werden verschiedene Gymnastikübungen vor der Kamera präsentiert. Die Athleten fordern die Zuschauer vor dem Bildschirm auf die Übungen mitzumachen. Es gibt Sendungen mit verschiedenen Schwerpunkten, wie beispielsweise Rückentraining.',NULL,'DEU','Tele-Gym','https://s3.amazonaws.com/schedulesdirect/assets/p9125740_b_h3_aa.jpg',4,NULL),('SH027196650000','Die Sendung verbindet wissenschaftliche Untersuchungen mit CGI-Animationen, um ungeklärte und unentdeckte Geheimnisse bedeutender Monumente zu lüften. Der Mix aus Ingenieurswesen, Geologie und Archäologie enthüllt die Strukturen hinter den Bauten.',NULL,'DEU','Giganten der Geschichte','https://s3.amazonaws.com/schedulesdirect/assets/p13174682_i_h3_aa.jpg',4,NULL),('SH029044220000','Behind-the-scenes look inside one of the United Kingdom\'s biggest police car workshops. Documenting the day-to-day tasks carried out by the Cheshire Police, this series focuses primarily on the team in charge of keeping the force\'s large fleet of vehicles in tip-top shape. From repairing damaged riot vans to building new armed response cars, all of the vehicles that are worked on need to be delivered in a condition that enables officers to perform their demanding roles successfully in the line of duty.',NULL,'GBR','Cop Car Workshop','https://s3.amazonaws.com/schedulesdirect/assets/p15183597_b_h3_aa.jpg',4,NULL),('SH024268150000','In der medizinischen Ratgebersendung behandelt Dr. Johannes Wimmer vom Universitätskrankenhaus Hamburg alltagsrelevante Themen rund um Medikamente und Gesundheit. Er gibt Tipps, wie sich die Zuschauer im Medizindschungel zurechtfinden.',NULL,'DEU','Dr. Wimmer: Wissen ist die beste Medizin','https://json.schedulesdirect.org/20141201/image/assets/p12876075_i_h3_aa.jpg',4,NULL),('SH015244990000','Snowplough drivers and patrols work around the clock to keep the UK going when winter weather hits.',NULL,'GBR','Winter Road Rescue','https://s3.amazonaws.com/schedulesdirect/assets/p9048680_b_h3_aa.jpg',4,NULL),('SH026720770000','Die Sendung informiert über aktuelle Ratgeber- und Wirtschaftsthemen aus der Region Berlin und Brandenburg. Im Mittelpunkt des Reportage-Magazins steht der hohe Nutzwert für die Verbraucher und ihre Sparmöglichkeiten im Allgemeinen.',NULL,'DEU','Super.Markt','https://s3.amazonaws.com/schedulesdirect/assets/p14050639_st_h3_aa.jpg',4,NULL),('SH016659300000','Produced by Thom Beers\' Original Productions (\"Deadliest Catch\'), the `Gold Divers\' franchise (known as `Bering Sea Gold\' in the United States) expands to include this programme, which follows daring dredgers who don\"t let solid ice on the Bering Sea deter them from diving for gold on the sea floor. The winters in Nome, Alaska, are brutal enough, but these gold miners also subject themselves to the dangerous effects of diving beneath ice that is 4 feet thick. With potential hypothermia, vertigo and frostbite, the risks are great, but the payoff is even greater.',NULL,'GBR','Gold Divers: Under the Ice','https://s3.amazonaws.com/schedulesdirect/assets/p9378647_i_h3_aa.jpg',4,NULL),('SH027081750000','Hosted by Scottish comedian Iain Sterling, this game show sees a team of celebrities from the world of entertainment take on a team of friends in a series of physical, light-hearted challenges. Each contested round is based on a curious ability or talent that the celebrities claim to possess, and the friends that manage to qualify for the final round must then answer a number of questions successfully in order to win a cash prize.',NULL,'GBR','CelebAbility','https://s3.amazonaws.com/schedulesdirect/assets/p14212806_st_h3_aa.jpg',4,NULL),('SH013088890000','Classic children\'s puppet comedy.',NULL,'GBR','Sooty','https://s3.amazonaws.com/schedulesdirect/assets/p910544_i_h3_aa.jpg',4,NULL),('SH013063840000','Lynne Ferguson\'s bittersweet sitcom set on a small island off the West Coast of Scotland.',NULL,'GBR','Millport','https://s3.amazonaws.com/schedulesdirect/assets/p264197_st_h3_aa.jpg',4,NULL),('SH034428120000','A talented young physicist discovers a potion that makes him invisible. But the drug has deadly side effects. Read by Stephen Murray.',NULL,'GBR','HG Wells: The Invisible Man','https://s3.amazonaws.com/schedulesdirect/assets/p17974470_st_h3_aa.jpg',4,NULL),('SH034164950000','Der Moderator stellt neue, teilweise noch unbekannte Erfindungen vor und spricht mit den klugen Köpfen hinter den Innovationen. Manche der Erfindungen sind kurios, andere zukunftsweisend und bahnbrechend; innovative Geschichten haben sie alle.',NULL,'DEU','Big Brains - Geniale Erfindungen','https://s3.amazonaws.com/schedulesdirect/assets/p17819629_st_h3_aa.jpg',4,NULL),('SH029099400000','Die Kandidaten der Spielshow nehmen an einer großen WG-Party in Prag teil und müssen dort gegeneinander antreten. Aufgeteilt in drei Teams müssen sie verrückte und aufregende Aufgaben lösen, um hohe Preisgelder zu gewinnen.',NULL,'DEU','The Challenge','https://json.schedulesdirect.org/20141201/image/assets/p13755455_i_h3_aa.jpg',4,NULL),('SH019734590000','Patrick Jane ist ein TV-Star und vermeintlicher Zauberer. Er gibt vor, mit Geistern kommunizieren zu können. Doch nachdem der Verbrecher Red John seine Frau und seine Tochter ermordert, hängt er die Karriere als Mentalist an den Nagel. Nach einigen Jahren in der geschlossenen Anstalt beschließt Jane, den Mörder seiner Familie zur Strecke zu bringen. Dafür arbeitet er als Berater des California Bureau of Investigation. Mit seiner bemerkenswerten Menschenkenntnis und Auffassungsgabe schafft er es, knifflige Fälle spielerisch zu lösen. Dabei helfen ihm Teresa Lisbon, Kimball Cho, Wayne Rigsby und Grace Van Pelt. Sein wahres Ziel, Red John zu finden, verliert er nie aus den Augen.',NULL,'DEU','The Mentalist','https://s3.amazonaws.com/schedulesdirect/assets/p186597_l_h3_aa.jpg',4,NULL),('SH013046860000','Recorded coverage of the First Ministers questions in the Scottish Parliament.',NULL,'GBR','Scottish First Minister\'s Questions','https://s3.amazonaws.com/schedulesdirect/assets/p284854_b_h3_ab.jpg',4,NULL),('SH019374330000','Unterhaltsam und informativ geht das Magazin aktuellen, skurrilen und alltäglichen Phänomenen auf den Grund. Menschen mit besonderen Fähigkeiten, Orte mit besonderen beziehungsweise mysteriösen Bedeutungen werden vorgestellt. Die Sendung erklärt außerdem in kurzen Filmbeiträgen nützliche Erfindungen, interessante Redewendungen, stellt neue Trends aus dem Internet vor und prüft den Wahrheitsgehalt allgemein bekannter Tatsachen. Weitere Elemente sind unter anderem waghalsigen Elemente, das `Wort der Woche\', die `Zahl des Tages\' sowie viele praktische Tipps und Anleitungen zum Nachmachen, Nacherleben und Nachbauen.',NULL,'DEU','Galileo','https://s3.amazonaws.com/schedulesdirect/assets/p10838152_b_h3_aa.jpg',4,NULL),('SH020570670000','Series aimed at helping children appreciate what it really means to have a pet, highlighting the responsibility of caring for its needs whilst also showing what fun you can have.',NULL,'GBR','My Pet and Me','https://s3.amazonaws.com/schedulesdirect/assets/p11268798_b_h3_aa.jpg',4,NULL),('SH012588500000','The misadventures of a less-than-honest businessman and his bodyguard, former boxer Terry McCann.',NULL,'GBR','Minder','https://s3.amazonaws.com/schedulesdirect/assets/p442563_b_h3_aa.jpg',4,NULL),('SH015933460000','Die Kommissare, ein alteingesessener oberbayerischer Ermittler und sein Kollege aus der Großstadt, könnten unterschiedlicher nicht sein. Dennoch ergänzen sie sich, wenn es darum geht, besonders knifflige Fälle in der Umgebung von Rosenheim zu lösen.',NULL,'DEU','Die Rosenheim-Cops','https://s3.amazonaws.com/schedulesdirect/assets/p9370385_b_h3_aa.jpg',4,NULL),('SH022554840000','Das Küstenmotorschiff `Henriette\' ist der zweite Wohnsitz der Familie Petermann, die die damit Fracht transportiert. Zur Besatzung gehören Kapitän Hinrich Petermann, seine Frau Margot, Oma, Opa sowie Schiffsjunge Harald.',NULL,'DEU','Kümo Henriette','https://s3.amazonaws.com/schedulesdirect/assets/p12076393_b_h3_aa.jpg',4,NULL),('SH012587610000','Members of the local constabulary patrol the town of Ashfordly and the nearby village of Aidensfield in the North Riding of Yorkshire, keeping the peace whilst also dealing with local loveable rogues and their own love lives. The programme is based upon the \"Constable\" books by Nicholas Rhea.',NULL,'GBR','Heartbeat','https://s3.amazonaws.com/schedulesdirect/assets/p243248_i_h3_ab.jpg',4,NULL),('SH029307670000','Energetic chef Shane and his young daughter Izzy run a restaurant in the town of Munchington. Every day is a recipe for adventure, whether they are trying to break world records or finding wild herbs in the woods.',NULL,'GBR','Shane the Chef','https://s3.amazonaws.com/schedulesdirect/assets/p15317893_b_h3_aa.jpg',4,NULL),('SH023584390000','A three part documentary series examining the rise of Hitler from obscurity to stand on the brink of complete power over Germany.',NULL,'GBR','The Life Of Adolf Hitler','https://s3.amazonaws.com/schedulesdirect/assets/p12560835_st_h3_aa.jpg',4,NULL),('SH034457130000','Following the heroes of Britain\'s Noise Enforcement Teams bringing peace back to British homes driven mad by noise.',NULL,'GBR','At War With The Noise Next Door','https://s3.amazonaws.com/schedulesdirect/assets/p17989061_st_h3_aa.jpg',4,NULL),('SH012698980000','Take a look behind the scenes of the Federal Bureau of Investigation\'s crime laboratory.',NULL,'GBR','The FBI Files','https://s3.amazonaws.com/schedulesdirect/assets/p505353_b_h3_ac.jpg',4,NULL),('SH013031380000','From the feverish and fertile imagination of \"Family Guy\" creator Seth MacFarlane comes this offbeat animated sitcom about Cleveland Brown, a nice guy who leaves Quahog, R.I., for Stoolbend, Va., to rekindle his previously unrequited love for high-school crush Donna. Cleveland\'s new life includes a disconcertingly flirtatious stepdaughter, a 5-year-old stepson who loves the ladies, some loudmouthed redneck neighbours, a British family that seems stuck in the Victorian era, plus a clan of bears living down at the end of the block. In other words, just another Sunday in MacFarlaneLand.',NULL,'GBR','The Cleveland Show','https://s3.amazonaws.com/schedulesdirect/assets/p186605_i_h3_ab.jpg',4,NULL),('SH034078630000','In dieser Sendung geht es um Haarpflege- und Stylingprodukte aus `Margot Schmitt Frisiersalon\'.',NULL,'DEU','MARGOT SCHMITT Frisiersalon','https://s3.amazonaws.com/schedulesdirect/assets/p17783670_st_h3_aa.jpg',4,NULL),('SH033574100000','Die Moderatorin lädt jede Woche eine Reihe von Gästen aus Politik, Wirtschaft und Journalismus ein. Gemeinsam mit ihnen diskutiert sie die aktuellesten und gesellschaftlich relevantesten Themen; von Schönheitswahn bis Rassismus.',NULL,'DEU','maischberger. die woche','https://s3.amazonaws.com/schedulesdirect/assets/p17584006_st_h3_aa.jpg',4,NULL),('SH028704500000','Der Meteorologe Sven Plöger reist zu den Orten, die das Wettergeschehen bestimmen. Zunächst besucht Plöger die Geburtsstätten der wetterbestimmenden Hoch- und Tiefdrucklagen. Teil seiner Entdeckungsreise ist eine Exkursion in die Meteorologie.',NULL,'DEU','Unser Wetter','https://json.schedulesdirect.org/20141201/image/assets/p12317022_i_h3_aa.jpg',4,NULL),('SH030990790000','From fly-tippers to unlicensed minicabs, unhygienic restaurants to unscrupulous stores selling dangerous counterfeit goods, Britons are under threat from crooks and conmen who profit while endangering health, safety, and the environment. Fortunately, there is a tireless team of unsung heroes who are hard at work every day protecting the public. Follow the daily lives of these enforcement officers as they go above and beyond the call of duty to investigate and bring justice, stamping out illegal activities.',NULL,'GBR','Defenders UK','https://s3.amazonaws.com/schedulesdirect/assets/p16255408_i_h3_aa.jpg',4,NULL),('SH012975650000','Geoffrey Wheeler visits variety theatres across the country.',NULL,'GBR','The Palace of Laughter','https://s3.amazonaws.com/schedulesdirect/assets/p301866_st_h3_aa.jpg',4,NULL),('SH022441490000','Varg Veum ist ein Privatdetektiv, der in der norwegischen Hafenstadt Bergen Kriminalfälle ermittelt. Von der Schlechtigkeit der Welt überzeugt, überschreitet er bei der Lösung der oft gewalttätigen Fälle mitunter die Grenzen der Legalität.',NULL,'DEU','Der Wolf','https://json.schedulesdirect.org/20141201/image/assets/p10432401_i_h3_aa.jpg',4,NULL),('SH034269800000','Universal Credit is the biggest change to the benefits system in a generation. By 2023 nearly 7 million people will be claiming it. But it\'s been controversial, with critics arguing the new system of advances and monthly payments is causing hardship and pushing people into poverty.',NULL,'GBR','Universal Credit: Inside the Welfare State','https://s3.amazonaws.com/schedulesdirect/assets/p17869407_st_h3_aa.jpg',4,NULL),('SH019585320000','Regionales Infotainmentmagazin mit den aktuellsten Neuigkeiten aus Nordrhein-Westfalen, Deutschland und der Welt. Die Aktuelle Stunde bringt Themen und Geschichten, die die Menschen zwischen Rhein und Weser interessieren, bewegen und berühren.',NULL,'DEU','Aktuelle Stunde','https://s3.amazonaws.com/schedulesdirect/assets/p10914188_b_h3_aa.jpg',4,NULL),('SH019962300000','Ob es sich um ein U-Boot handelt, um einen Helikopter oder einen Geländewagen - Michael Manousakis und die Jungs von `Morlock Motors\' können bei allem aushelfen und alles beschaffen. Die Experten werden bei ihrer Arbeit begleitet.',NULL,'DEU','Steel Buddies - Stahlharte Geschäfte','https://s3.amazonaws.com/schedulesdirect/assets/p11063739_b_h3_aa.jpg',4,NULL),('SH034392320000','Former football manager welcomes celebrity friends to his house in the luxury south coast town.',NULL,'GBR','Harry Redknapp\'s Sandbanks Summer','https://s3.amazonaws.com/schedulesdirect/assets/p17949885_st_h3_aa.jpg',4,NULL),('SH023062940000','Die Puppenshow dreht sich um eine Familie inkompetenter Monster, die ein beinahe Weltklasse-Hotel besitzen und betreiben. Zu den Muppets gehören Funella Furchester, die Besitzerin, ihr Gatte Furgus Fuzz, sowie deren Tochter Phoebe Furchester-Fuzz.',NULL,'DEU','Das Furchester Hotel','https://s3.amazonaws.com/schedulesdirect/assets/p11077440_i_h3_aa.jpg',4,NULL),('SH019679880000','Die Dokumentation zeigt skurrile Verhaltensweisen und Fähigkeiten von wilden Tieren in der afrikanischen Savanne, zum Beispiel wie ein Elefant zur Welt kommt. Kommentiert werden die Szenen vom Direktor des Kölner Zoos, Theo Pagel.',NULL,'DEU','Safari-Paparazzi','https://s3.amazonaws.com/schedulesdirect/assets/p217899_i_h3_aa.jpg',4,NULL),('SH020903360000','\"Red Rock\" is an Irish crime-drama series with an all-star cast including Richard Flood, Andrea Irvine, Cathy Belton, Denise McCormack, Liam Carney, Paul Roe and Jane McGrath. Based in the fictional seaside town of Red Rock is a busy Dublin Garda station just outside of the city. Two prominent families in the neighbourhood are the Hennessys and the Kielys, who have an ongoing feud with each other. Working to keep the peace between the locals are the police, however when a dead body is found lying on a pier the two families reignite their war.',NULL,'GBR','Red Rock','https://s3.amazonaws.com/schedulesdirect/assets/p11366229_b_h3_aa.jpg',4,NULL),('SH022736230000','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps. Die Moderatoren berichten über alles, was in Sachsen, Sachsen-Anhalt und Thüringen für Schlagzeilen sorgt und informieren über Aktuelles.',NULL,'DEU','MDR um 4: Neues von hier & Leichter leben','https://s3.amazonaws.com/schedulesdirect/assets/p12155955_b_h3_aa.jpg',4,NULL),('SH019855890000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Bergischen Land.',NULL,'DEU','Lokalzeit Bergisches Land','https://s3.amazonaws.com/schedulesdirect/assets/p11024448_b_h3_aa.jpg',4,NULL),('SH018795040000','Der besondere Yak, Sherlock Yack, ist ein Zoomanager und Detektiv. Mit messerscharfem Verstand und unterstützt von seiner eifrigen und ihn bewundernden Assistentin Hermione, löst er im Zoo die kompliziertesten Fälle.',NULL,'DEU','Sherlock Yack - Der Zoodetektiv','https://s3.amazonaws.com/schedulesdirect/assets/p9152136_i_h3_aa.jpg',4,NULL),('SH030257660000','Growing up with a famous parent isn\'t easy, as the children often have to work hard to emerge from their parents\' shadows and gain independence - especially if they want entertainment careers of their own. \"Growing Up Hip Hop\' documents the lives of a tight-knit group of friends, most of whom have at least one parent who is famous. Angela Simmons, the daughter of Run-D.M.C.\'s Rev Run, is a model and fashion designer; Romeo Miller has followed in the footsteps of his father, Master P, in becoming a musician; entrepreneur Damon `Boogie\" Dash is the son of former record executive Damon Dash; singer Kristinia DeBarge, the daughter of James DeBarge, struggles to choose between family and fame; TJ Mizell, a DJ whose father was Run-D.M.C. member Jam Master Jay, views Angela as family since both of their dads were in Run-D.M.C.; and aspiring singer Egypt Criss gets her talent from both mom and dad - Pepa from Salt-N-Pepa and Treach from Naughty by Nature.',NULL,'GBR','Growing Up Hip Hop','https://s3.amazonaws.com/schedulesdirect/assets/p12281824_l_h3_aa.jpg',4,NULL),('SH020041940000','Die Enten SwaySway und Buhdeuce leben auf dem größtenteils mit Wasser bedeckten Planeten Teichea und liefern Brot an ihre treuen Kunden aus. Dabei geraten sie immer wieder in federsträubende Situationen.',NULL,'DEU','Die Brotpiloten','https://json.schedulesdirect.org/20141201/image/assets/p10500437_i_h3_aa.jpg',4,NULL),('SH015443360000','Christian Ehring zeigt den Irrsinn der Woche in diesem politischen Satiremagazin mit ironischen Beiträgen und Reportagen.',NULL,'DEU','extra 3','https://s3.amazonaws.com/schedulesdirect/assets/p9145343_b_h3_aa.jpg',4,NULL),('SH021457990000','The U.S. military\'s ultimate flying war machines: the F-15 Eagle, the V-22 Osprey and the AH-64 Apache.',NULL,'GBR','Air Warriors','https://s3.amazonaws.com/schedulesdirect/assets/p11078228_i_h3_ab.jpg',4,NULL),('SH015445920000','Das Filmmagazin stellt die wichtigsten Neustarts und Themen aus der Filmwelt vor. Das Magazin zeigt Porträts und Interviews mit Schauspielern und Regisseuren. Es werden die Tops und Flops kritisiert und von den spannendsten Festivals berichtet.',NULL,'DEU','kinokino','https://s3.amazonaws.com/schedulesdirect/assets/p9146320_b_h3_aa.jpg',4,NULL),('SH028164200000','A celebration of communicating and encouraging children to talk with a focus on one word, showing various visualisations of a word in a rhythmical, bouncy, humorous way!',NULL,'GBR','Yakka Dee','https://s3.amazonaws.com/schedulesdirect/assets/p14783917_st_h3_aa.jpg',4,NULL),('SH019375120000','Die Moderatoren präsentieren die aktuellsten Nachrichten und Themen, die die Welt bewegen.',NULL,'DEU','Prosieben Spätnachrichten','https://s3.amazonaws.com/schedulesdirect/assets/p10838387_b_h3_aa.jpg',4,NULL),('SH033956960000','Eine neue Generation Shinobis betritt die Bühne - angeführt von Narutos und Hinatas Sohn, Boruto.',NULL,'DEU','Boruto','https://s3.amazonaws.com/schedulesdirect/assets/p14008893_i_h3_aa.jpg',4,NULL),('SH019177590000','Surprise! You\'re a father! Bartender Ben comes home one day and finds that an ex-girlfriend has left a baby girl on his doorstep. The addition to Ben\'s family - or having a family - turns his life upside down. As a New York bachelor in his 20s, being a single dad doesn\'t fit his lifestyle. After much deliberation, Ben decides to raise the baby with help from his buddy Tucker, brother Danny, and hovering mom Bonnie. Also law student Riley - once chubby, now slim - wants Ben to take notice of her, but it\'s Danny who does.',NULL,'GBR','Baby Daddy','https://s3.amazonaws.com/schedulesdirect/assets/p9157731_l_h3_aa.jpg',4,NULL),('SH026861390000','Seit 1955 informiert das österreichische Nachrichtenjournal am Vorabend über die aktuellen Geschehnisse und Ereignisse auf der ganzen Welt. Außerdem werden Expertenanalysen und Entwicklungen auf den Finanzmärkten vorgestellt.',NULL,'DEU','ZIB','https://s3.amazonaws.com/schedulesdirect/assets/p14109433_st_h3_aa.jpg',4,NULL),('SH034391700000','Documentary series in which Lucy Worsley dispels the myths behind some of the key moments in British royal history.',NULL,'GBR','Royal History\'s Biggest Fibs with Lucy Worsley','https://s3.amazonaws.com/schedulesdirect/assets/p17949554_st_h3_aa.jpg',4,NULL),('SH024229090000','Die Sendung zeigt aktuelle Berichte aus Bayern, Hintergründe zu brisanten Themen und Geschichten, die unter die Haut gehen. Außerdem werden aktuelle Ratgeber zu Kultur- und Musikveranstaltungen gezeigt sowie Gäste in das Studio eingeladen.',NULL,'DEU','Abendschau','https://s3.amazonaws.com/schedulesdirect/assets/p12853352_b_h3_aa.jpg',4,NULL),('SH019571620000','Micky Maus und seine Freunde helfen Kindern, Rechnen und Kombinieren zu verstehen. Im `Micky Maus Wunderhaus\' steht ein Computer, der für Micky und seine Freunde eine Aufgabe stellt, die es zu lösen gilt.',NULL,'DEU','Disneys Micky Maus Wunderhaus','https://s3.amazonaws.com/schedulesdirect/assets/p186176_i_h3_aa.jpg',4,NULL),('SH019586670000','Die Nachrichtensendung mit den aktuellsten Neuigkeiten aus Politik, Gesellschaft und Kultur aus und für Brandenburg. Moderiert wird die Sendung von Tatjana Jury.',NULL,'DEU','Brandenburg aktuell','https://s3.amazonaws.com/schedulesdirect/assets/p10914762_i_h3_aa.jpg',4,NULL),('SH022417610000','London Real is the talk show that introduces you to the most fascinating people on the planet, including Hollywood actors, sports personalities and members of Parliament.',NULL,'GBR','London Real','https://s3.amazonaws.com/schedulesdirect/assets/p12010279_st_h3_aa.jpg',4,NULL),('SH014251220000','Essential business news as it breaks and a look ahead to the news that will shape the business day.',NULL,'GBR','Asia Business Report','https://s3.amazonaws.com/schedulesdirect/assets/p576711_b_h3_aa.jpg',4,NULL),('SH022416050000','Sammy und Ray sind zwei Wasserschildkröten, die glücklich mit ihren Freunden und Verwandten unter Wasser leben. Um stets vor Feinden geschützt zu sein, bewohnen sie ein Korallenriff. Als Leittier und Mentor der Gemeinschaft gibt Sammy sein Wissen an seine Enkelin Ella weiter. Ella ist aber viel zu abenteuerlustig, um auf den Rat ihres Opas zu hören und sich nur im sicheren Riff aufzuhalten. Gemeinsam mit ihrem besten Freund Ricky, dem quirligen Krakenmädchen Annabel, dem stets miesgelaunten Pipo und dem redseligen Teufelsfisch Harald erkunden die jungen Meeresbewohner den Ozean und erleben dabei jede Menge Abenteuer.',NULL,'DEU','Sammy: Kleine Flossen, große Abenteuer','https://s3.amazonaws.com/schedulesdirect/assets/p11005558_b_h3_ad.jpg',4,NULL),('SH028827860000','Maybe it\'s the jealous ex, the co-worker seeking revenge, or perhaps a predator with an appetite for blood? Whatever the motives, crimes are most often solved by relentless investigators searching for the truth and following clues wherever they may lead. This series explores the emotional stories of those attempting to find closure in homicide investigations, from the victims\' families to the dedicated police officers. Hour-long episodes present compelling versions of what may have happened and stylized re-enactments of events from different perspectives as new evidence emerges.',NULL,'GBR','Cold Blood','https://s3.amazonaws.com/schedulesdirect/assets/p10242479_i_h3_aa.jpg',4,NULL),('SH015403810000','Das Magazin beobachtet, hinterfragt, erklärt und bewertet die aktuelle Medienberichterstattung.',NULL,'DEU','Zapp','https://s3.amazonaws.com/schedulesdirect/assets/p9126507_i_h3_aa.jpg',4,NULL),('SH033425940000','Prominente Rategäste treten gegen die drei besten deutschen `Quizduell\'-Spieler an.',NULL,'DEU','Quizduell - Olymp','https://s3.amazonaws.com/schedulesdirect/assets/p13014615_i_h3_aa.jpg',4,NULL),('SH022362340000','Bettany Hughes investigates three giants of ancient philosophy - Buddha, Socrates and Confucius.',NULL,'GBR','Genius of the Ancient World','https://s3.amazonaws.com/schedulesdirect/assets/p11984611_i_h3_aa.jpg',4,NULL),('SH013066540000','Former food store owner, business woman, cookbook writer and TV food presenter Ina Garten.',NULL,'GBR','Barefoot Contessa','https://s3.amazonaws.com/schedulesdirect/assets/p186296_i_h3_aa.jpg',4,NULL),('SH032951670000','Typische Mädchendinge wie Regenbögen und insbesondere Einhörner haben Alice noch nie interessiert. Doch dann wird ein echtes Einhorn zu ihrem allerbesten Freund. Dieses stellt sicher, dass Alice ein bisschen Spaß in ihrem Leben hat.',NULL,'DEU','Immer dieses Einhorn','https://s3.amazonaws.com/schedulesdirect/assets/p15842701_i_h3_ab.jpg',4,NULL),('SH019799660000','Das Tiermagazin des MDR stellt jede Woche ein Tierheim mit einigen seiner Bewohner vor, die eine neue Bleibe suchen.',NULL,'DEU','Tierisch tierisch','https://s3.amazonaws.com/schedulesdirect/assets/p11002087_i_h3_aa.jpg',4,NULL),('SH012737260000','Best-selling author Nigella Lawson is the host of this show that is described as \"part guide and part food confessional\". She teaches viewers how to prepare for the simple-but-appetizing food that she cooks for herself, her family and her friends. For Nigella, cooking is all about entertaining and being with friends, instead of being alone in the kitchen, and how the taste of the food is more important than worrying about the presentation of the meal. With that philosophy and other hassle-free principles, she hopes to make cooking an enjoyable part of people\'s lives.',NULL,'GBR','Nigella Bites','https://s3.amazonaws.com/schedulesdirect/assets/p452354_i_h3_ab.jpg',4,NULL),('SH030752620000','Bringing all the juicy behind-the-scenes celebrity gossip, fashion fails, and health fads.',NULL,'GBR','Totally Unbelievable','https://s3.amazonaws.com/schedulesdirect/assets/p16128454_b_h3_aq.jpg',4,NULL),('SH018486920000','Detective Jake Peralta, a talented and carefree cop with the best arrest record, has never had to follow the rules too closely or work very hard. That changes when Ray Holt, a man with a lot to prove, becomes the new commanding officer of Brooklyn\'s 99th precinct. As Holt reminds Peralta to respect the badge, an extremely competitive colleague - Detective Amy Santiago - starts to close in on the hotshot cop\'s arrest record. Other members of the precinct include Sgt Terry Jeffords, a devoted family man, Detective Charles Boyle, a hard worker who idolizes Jake, and Rosa Diaz, a sexy-yet-intimidating detective. Civilian office manager Gina Linetti is tasked with cleaning up everyone\'s mess, while somehow getting involved in everyone\'s business.',NULL,'GBR','Brooklyn Nine-Nine','https://s3.amazonaws.com/schedulesdirect/assets/p9974290_l_h3_ab.jpg',4,NULL),('SH012812400000','The aristocratic Inspector Thomas Lynley and the down-to-earth Detective Sergeant Barbara Havers join forces to investigate a series of murders. Their working relationship is challenged by their respective lots in life - Lynley is an earl, while Havers comes from a working-class background. The characters and some of the storylines are based on the novels by Elizabeth George.',NULL,'GBR','The Inspector Lynley Mysteries','https://json.schedulesdirect.org/20141201/image/assets/p408510_i_h3_aa.jpg',4,NULL),('SH013026900000','Some people buy antiques to collect them, while others purchase old items that they think will make them a profit when selling them on. The antique experts in this series fall into the latter category as they head out on a trip across Britain in search of hidden treasures at bargain prices. They then head to auctions, where they put the collectibles up for bid and hope to make a tidy profit. The antiques featured range from typical items like household goods to one-of-a-kind finds that include historical artefacts.',NULL,'GBR','Antiques Road Trip','https://s3.amazonaws.com/schedulesdirect/assets/p8198320_i_h3_ab.jpg',4,NULL),('SH013827270000','Five young, ambitious cops try to succeed in their high-stakes careers in which the smallest mistake can have life-or-death consequences. At the core of the close-knit group is perfectionist Andy McNally, whose father was a cop. The series follows Andy and her four colleagues as they experience the trials, triumphs and tribulations of police work.',NULL,'GBR','Rookie Blue','https://s3.amazonaws.com/schedulesdirect/assets/p8085120_l_h3_aa.jpg',4,NULL),('SH012840010000','Before complaining about the market price of Alaska king crab, check out this gripping documentary series, revealing the mortal perils and intense discomfort that fishing crews face to catch the delicacy; those perils include 40-foot waves, 700-pound crab pots that can easily crush a careless crewman, and freezing temperatures around the clock.',NULL,'GBR','Deadliest Catch','https://s3.amazonaws.com/schedulesdirect/assets/p185354_l_h3_aa.jpg',4,NULL),('SH016282040000','Coverage of the Kontinental Hockey League, featuring 25 professional clubs from Belarus, China, Finland, Kazakhstan, Latvia, Russia, and Slovakia.',NULL,'GBR','Kontinental Hockey League','https://s3.amazonaws.com/schedulesdirect/assets/p9515979_b_h3_aa.jpg',4,NULL),('SH030986500000','A group of young men re-live the experiences of the Lancaster Bomber \"Lucky H\" aircrew.',NULL,'GBR','Bomber Boys: The Fighting Lancaster','https://s3.amazonaws.com/schedulesdirect/assets/p343179_b_h3_aa.jpg',4,NULL),('SH020140110000','Zusammenfassungen, Highlights und Rückblicke aus der Welt des Darts.',NULL,'DEU','Darts','https://json.schedulesdirect.org/20141201/image/assets/p3509440_i_h3_aa.jpg',4,NULL),('SH023618620000','Masha retells fairy tales her way.',NULL,'GBR','Masha\'s Tales','https://s3.amazonaws.com/schedulesdirect/assets/p12575882_b_h3_aa.jpg',4,NULL),('SH012975000000','Melvyn Bragg and guests discuss the history of ideas.',NULL,'GBR','In Our Time','https://s3.amazonaws.com/schedulesdirect/assets/p8183258_b_h3_aa.jpg',4,NULL),('SH019961850000','Ein mysteriöser Außerirdischer in menschlicher Gestalt namens `Doktor\' reist in seinem Raumschiff durch Zeit und Raum. Dabei erforscht er unterschiedliche Lebensformen, kann Ereignisse in der Vergangenheit beeinflussen und trifft auf kuriose Gestalten. Damit er sich im Universum nicht zu einsam fühlt, lädt er regelmäßig verschiedene Begleiter auf sein Raumschiff ein, die mit ihm weiterreisen. Doch er hat auch Feinde, die gelegentlich seinen Weg kreuzen, ihm jedoch nichts anhaben können. Denn der `Doktor\' besitzt die Fähigkeit, sich komplett zu regenerieren.',NULL,'DEU','Doctor Who','https://s3.amazonaws.com/schedulesdirect/assets/p185271_b_h3_ai.jpg',4,NULL),('SH015402960000','Zoogeschichten aus München: Alltag, Sorgen und Erfolge der Zoobewohner und ihrer Pfleger. Die Zuschauer bekommen einen Einblick in den Alltag der Tierpfleger, ihre Beziehung zu ihren Schützlingen und erfahren mehr über die verschiedenen Tierarten.',NULL,'DEU','Nashorn, Zebra & Co.','https://s3.amazonaws.com/schedulesdirect/assets/p9126166_b_h3_aa.jpg',4,NULL),('SH019646300000','Die Doku-Serie zeigt authentische Bilder von verheerenden Unglücken und Naturkatastrophen, meist von Augenzeugen zufällig aufgenommen. Ex-Football-Profi Ron Pitts dokumentiert die Zerstörungen und die dramatischen Folgen für die Betroffenen.',NULL,'DEU','Zerstört in Sekunden','https://json.schedulesdirect.org/20141201/image/assets/p195575_i_h3_aa.jpg',4,NULL),('SH032083890000','Experts analyse footage from paranormal videos, specialists provide insights, while eyewitnesses give firsthand accounts of strange phenomena.',NULL,'GBR','Paranormal Caught on Camera','https://s3.amazonaws.com/schedulesdirect/assets/p16350735_b_h3_ac.jpg',4,NULL),('SH029497560000','Mai 1981: Frankreich steht kurz vor der Präsidentschaftswahl. Der 17-jährige Victor trifft auf der Baustelle seines Vaters Charles den jungen Sélim. Die beiden fühlen sich auf Anhieb zueinander hingezogen. Charles entdeckt die sexuelle Beziehung der beiden. Obwohl sich Charles offen zur politischen Linken, die sich für Toleranz einsetzt, bekennt, kann er die Homosexualität seines Sohnes nicht akzeptieren.',NULL,'DEU','Mut zur Liebe','https://s3.amazonaws.com/schedulesdirect/assets/p15407180_st_h3_aa.jpg',4,NULL),('SH030038130000','Mit Odysso kann die Wissenschaftsredaktion des SWR aktueller auf das Zeitgeschehen eingehen. Das Wissensmagazin gibt die Antworten, zu denen die Zuschauer Fragen haben.',NULL,'DEU','Odysso','https://s3.amazonaws.com/schedulesdirect/assets/p9987880_i_h3_aa.jpg',4,NULL),('SH034417720000','Tim träumt davon, zu den Sternen zu fliegen. Also hat er sich eine Rakete gebastelt.',NULL,'DEU','Timmis Raketenflieger Lieder','https://s3.amazonaws.com/schedulesdirect/assets/p11423125_st_h3_ab.jpg',4,NULL),('SH021796150000','In Gefahrensituationen kann jede Aktion über Leben und Tod entscheiden. Die Dokumentation präsentiert gefährliche Naturkatastrophen und Begegnungen mit wilden Tieren. Wie verhält man sich in so einer bedrohlichen Situation richtig?',NULL,'DEU','Überleben!','https://json.schedulesdirect.org/20141201/image/assets/p10929268_i_h3_aa.jpg',4,NULL),('SH030968590000','Cookie Monster and Gonger work in their own food truck fielding orders from live children via video message. To complete their recipe, the monsters drive the truck to a specific location and learn about where certain foods originally come from.',NULL,'GBR','Cookie Monster\'s Foodie Truck','https://s3.amazonaws.com/schedulesdirect/assets/p16235765_b_h3_aa.jpg',4,NULL),('SH032878430000','The adventures of a family run crew of heavy-haulage specialists as they race to transport the heaviest, longest and most precious locomotives around the world by road, rail and sea. Plus, footage reveals the history behind the featured locomotives.',NULL,'GBR','Train Truckers','https://s3.amazonaws.com/schedulesdirect/assets/p17226540_b_h3_ab.jpg',4,NULL),('SH019704300000','Das Magazin berichtet über aktuelle Ereignisse in der Stadt Berlin und im Land Brandenburg. Außerdem stellt es informative Themen vor, präsentiert Trends, Tipps und lädt Prominente ein.',NULL,'DEU','zibb','https://s3.amazonaws.com/schedulesdirect/assets/p10962621_b_h3_ab.jpg',4,NULL),('SH016236130000','Helping people find property in the summer sun.',NULL,'GBR','A Place in the Sun: Summer Sun','https://json.schedulesdirect.org/20141201/image/assets/p9498352_i_h3_aa.jpg',4,NULL),('SH022376780000','Oft können Verbrechen nur durch Untersuchung der Tatorte und mit Hilfe von hochmodernen Technologien aufgeklärt werden. Die Serie zeigt spektakuläre und bizarre Fälle, bei denen die forensische Untersuchung den entscheidenden Durchbruch ermöglichte.',NULL,'DEU','Die Forensiker: Profis am Tatort','https://s3.amazonaws.com/schedulesdirect/assets/p233203_i_h3_aa.jpg',4,NULL),('SH013016790000','Investigators circle the globe in search of evidence in their quest to determine whether life on Earth began in outer space and if aliens influenced mankind in ancient times. Did extraterrestrial beings visit Earth and share information about technology and influence human religions? And more importantly, if aliens visited the planet before, will they return? Alien theorists believe that the answer to both questions is a resounding yes.',NULL,'GBR','Ancient Aliens','https://s3.amazonaws.com/schedulesdirect/assets/p8039273_i_h3_aa.jpg',4,NULL),('SH013075980000','Sabrina Spellman is a teenager with magical powers who comes from a long line of witches. Until going away to college, she lived with her wacky aunts, who would teach her to use her witchcraft wisely, and Salem, the talking black cat, who always has a scheme up his paw. As a high-school student, Sabrina is less judicious about using her powers than when she enters adulthood. The series is based on a 1960s comic-book series of the same name and an animated TV series that originally aired in the 1970s.',NULL,'GBR','Sabrina, the Teenage Witch','https://s3.amazonaws.com/schedulesdirect/assets/p184218_l_h3_aa.jpg',4,NULL),('SH034366440000','Der Rettungsdienst in Deutschland stößt an seine Grenzen. Die Notrufnummer 112 wird immer häufiger gewählt. Die Sendung begleitet in jeder Folge vier Rettungsteams, die meist in Zwölf-Stunden-Schichten ihrem unvorhersehbaren Job nachgehen.',NULL,'DEU','112 - Retter im Einsatz','https://json.schedulesdirect.org/20141201/image/assets/p17934623_st_h3_aa.jpg',4,NULL),('SH009541760000','Anne Will diskutiert mit ihren Gästen über politische Prozesse, wirtschaftliche Zusammenhänge und gesellschaftliche Trends. Sie bietet ihnen und den Zuschauern die Plattform für eine gesellschaftspolitische Meinungsbildung.',NULL,'DEU','Anne Will','https://s3.amazonaws.com/schedulesdirect/assets/p571700_b_h3_aa.jpg',4,NULL),('SH027255020000','Exploring what it\'s like to live and work in England\'s biggest expanse of protected countryside - in the national parks of the Lake District and Yorkshire Dales.',NULL,'GBR','The Yorkshire Dales and the Lakes','https://s3.amazonaws.com/schedulesdirect/assets/p14289698_st_h3_aa.jpg',4,NULL),('SH015443450000','Das Kulturmagazin im Ersten, im wöchentlichen Wechsel von sechs Redaktionen der ARD Funkanstalten.',NULL,'DEU','ttt - titel thesen temperamente','https://s3.amazonaws.com/schedulesdirect/assets/p9145375_b_h3_aa.jpg',4,NULL),('SH030624760000','Filmed in a gig-environment and hosted by Jordan Stephens, two teams made up of comedians, Hip Hop legends and celebrity Hip Hop lovers will battle it out in front of a live audience (the audience decide who wins and loses each round) for the ultimate prize: bragging rights.',NULL,'GBR','Don\'t Hate the Playaz','https://s3.amazonaws.com/schedulesdirect/assets/p16053983_b_h3_aa.jpg',4,NULL),('SH030162510000','Die Moderatoren präsentieren die schönen Bilder und Basteleien, die die Zuschauer geschickt haben.',NULL,'DEU','Baumhaus','https://s3.amazonaws.com/schedulesdirect/assets/p15762448_b_h3_aa.jpg',4,NULL),('SH019227910000','Shaun das Schaf lebt gemeinsam mit seiner Herde auf der Weide eines idyllischen Bauernhofs. Er ist jung, unerfahren und noch etwas naiv - aber sehr neugierig und verschmitzt. Er verfügt über einen ganz besonderen `Schaf-Sinn\' und findet auch für die vertracktesten Situationen eine Lösung. Auf dem Hof leben außerdem noch der Hütehund Bitzer, der Bauer und die drei fiesen Schweine, sowie einige andere Tiere. Der Bauer bekommt von dem turbulenten Leben seiner Tiere nichts mit, die sich zwar manchmal in die Wolle kriegen, aber im Großen und Ganzen wie eine glückliche Familie zusammenleben und zusammenhalten.',NULL,'DEU','Shaun, das Schaf','https://s3.amazonaws.com/schedulesdirect/assets/p186454_i_h3_aa.jpg',4,NULL),('SH012641900000','Inspector Morse embodies cultured, upper-middle-class Britishness, and enjoys the finer things in life - good beer, vintage cars, fine opera. He and his trusty companion, Detective Sergeant Lewis, solve the crimes that plague the environs of University of Oxford. Although he\'s a brilliant detective, Morse is not infallible - and he\'s often pretty grumpy to boot. But he and Lewis tend to make sure the bad guys pay for their crimes.',NULL,'GBR','Inspector Morse','https://s3.amazonaws.com/schedulesdirect/assets/p184270_i_h3_aa.jpg',4,NULL),('SH019577860000','30 Minuten regionale Information und Unterhaltung aus dem Land.',NULL,'DEU','Nordmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p10910686_i_h3_aa.jpg',4,NULL),('SH012702080000','The detectives that are part of the NYPD\'s Special Victims Unit investigate crimes of sexual nature. While the focus of the other shows in the \"Law & Order\' franchise largely deal with murder cases, the SVU detectives frequently deal with crimes, such as rapes, in which the victim survives and assists authorities in the investigation. The series features a cast of veteran actors, including Mariska Hargitay, Richard Belzer, Dann Florek and, after the first season, rapper Ice-T. Occasional crossover episodes feature detectives from other series in the `Law & Order\" franchise.',NULL,'GBR','Law & Order: Special Victims Unit','https://s3.amazonaws.com/schedulesdirect/assets/p184536_l_h3_aa.jpg',4,NULL),('SH019559640000','Die Schwestern Prue, Piper und Phoebe entfesseln, ohne es zu ahnen, Zauberkräfte, die sie zu den mächtigsten Hexen aller Zeiten machen. Mit den neuerrungenen Kräften bekämpfen sie das Böse und beschützen Unschuldige.',NULL,'DEU','Charmed - Zauberhafte Hexen','https://s3.amazonaws.com/schedulesdirect/assets/p184399_i_h3_aa.jpg',4,NULL),('SH017808340000','Discovery Channel takes the ubiquitous survival show theme to the next level by stripping it to its bare essentials. In \"Naked and Afraid\', two complete strangers - a man and a woman - meet in a very unique way: They\'re stranded in a dangerous, desolate location, without food and water, and they\"re completely naked. Each episode follows the two as they attempt to survive on their own, with nothing but one personal item each and the knowledge that the only prize is their pride and sense of accomplishment. Because there is no other choice, the couple quickly get to know each other - and their surroundings - and hope that their instincts, survival skills and intestinal fortitude serve them well.',NULL,'GBR','Naked and Afraid','https://s3.amazonaws.com/schedulesdirect/assets/p9974211_l_h3_aa.jpg',4,NULL),('SH019577940000','Hallo Niedersachsen ist das Regionalmagazin des Norddeutschen Rundfunks für das Land Niedersachsen. Die Fernsehsendung informiert über das politische und kulturelle Leben sowie besondere Ereignisse in Niedersachsen.',NULL,'DEU','Hallo Niedersachsen','https://s3.amazonaws.com/schedulesdirect/assets/p10910723_b_h3_aa.jpg',4,NULL),('SH025247490000','Die Sendung informiert über Baufinanzierung, Immobilien und außergewöhnliche Architektur. Aktuelle Entwicklungen sowie nützliche Hinweise werden zu den verschiedenen Themen rund um das Eigenheim vorgestellt.',NULL,'DEU','Ratgeber - Bauen und Wohnen','https://s3.amazonaws.com/schedulesdirect/assets/p13349318_st_h3_aa.jpg',4,NULL),('SH019907940000','Robert Kulp and Mike Whiteside are professional beholders of beauty. Where others see landfill-destined trash, Kulp and Whiteside see cash, and they\'ve turned their passion for well-worn objects into a beautiful business. They co-own one of the country\'s premier architectural salvage operations, the Roanoke, Virginia-based Black Dog Salvage, and they operate it with a very simple motto in mind: There is nothing too weird to salvage. This series chronicles the adventures of Kulp, Whiteside and their crew as they reclaim and resell vintage elements from historic structures that are scheduled to be demolished or renovated. Their clients include contractors, high-end interior designers, restaurant and resort owners, and do-it-yourself renovators looking to restore historical buildings or add character to newer ones.',NULL,'GBR','Salvage Dawgs','https://s3.amazonaws.com/schedulesdirect/assets/p9501991_l_h3_aa.jpg',4,NULL),('SH025596200000','A contractor takes a more active role in his kids\' lives when his wife goes back to work.',NULL,'GBR','Man With a Plan','https://s3.amazonaws.com/schedulesdirect/assets/p12909853_i_h3_aa.jpg',4,NULL),('SH012812790000','Run by a young family and 23 staff, Warborne Farm in Hampshire, England, is full of life.',NULL,'GBR','A Farm Life','https://s3.amazonaws.com/schedulesdirect/assets/p8134189_b_h3_aa.jpg',4,NULL),('SH012974770000','Readings from modern classics, new works by leading writers and literature from around the world.',NULL,'GBR','Book at Bedtime','https://s3.amazonaws.com/schedulesdirect/assets/p213856_b_h3_aa.jpg',4,NULL),('SH013026930000','Why do Zebra have stripes and Leopard spots, Rhinos horns and Camels humps?',NULL,'GBR','Tinga Tinga Tales','https://s3.amazonaws.com/schedulesdirect/assets/p8198327_i_h3_ac.jpg',4,NULL),('SH012568680000','Originally titled \"Emmerdale Farm\", this long-running soap focuses on a group of families in the Yorkshire Dales. The Tate, Sugden, Dingle and King families rely on the farm and its nearby village for their livelihoods, but the locale also provides plenty of danger and drama as well. Car crashes, shootings, fires, a Home Farm raid and even a plane crash have rocked the region, but its inhabitants carry on and even thrive in the bustling village they call home.',NULL,'GBR','Emmerdale','https://s3.amazonaws.com/schedulesdirect/assets/p377299_i_h3_aa.jpg',4,NULL),('SH024553550000','Ein Agumon flieht aus der Digi-Welt und begegnet Marcus, mit dem es sich anfreundet. Die Polizei sucht nach Agumon und will es zurück in die Digi-Welt bringen. Marcus verteidigt seinen neuen Freund und bekommt das Angebot, für die `DATS\' zu arbeiten.',NULL,'DEU','Digimon: Data Squad','https://s3.amazonaws.com/schedulesdirect/assets/p8576791_st_h3_aa.jpg',4,NULL),('SH014434780000','Comedy and chat.',NULL,'GBR','The Comedy Club Interview','https://s3.amazonaws.com/schedulesdirect/assets/p8780149_st_h3_aa.jpg',4,NULL),('SH031676090000','In der folgenden Sendung erzählen, parodieren und kommentieren die besten Kolumnisten, Komiker sowie Kabarettisten. Außerdem wird die Show von der neuen Hausband `hr1-Loungers\' mit einigen der energetischsten Musiker der `hr-Bigband\' unterstützt.',NULL,'DEU','Die Florian Schroeder Satire Show','https://s3.amazonaws.com/schedulesdirect/assets/p15099263_i_h3_aa.jpg',4,NULL),('SH019576450000','Die schüchterne Anna arbeitet als Werbetexterin in einer Werbeagentur und verliebt sich in den Juniorchef der Agentur, Jonas. Doch dieser ist bereits mit ihrer verfeindeten Halbschwester verlobt, die ihr das Leben zur Hölle macht.',NULL,'DEU','Anna und die Liebe','https://s3.amazonaws.com/schedulesdirect/assets/p7910953_st_h3_aa.jpg',4,NULL),('SH020075070000','Englisch ist eine Weltsprache. Du brauchst sie im Urlaub, im Unterricht und immer mehr auch im Alltag. Wir helfen dir dabei, die englische Sprachwelt zu erschließen.',NULL,'DEU','GRIPS Englisch','https://s3.amazonaws.com/schedulesdirect/assets/p11094534_st_h3_aa.jpg',4,NULL),('SH014788440000','Alle Produkte rund ums Schlafzimmer werden aus dem aktuellen Sortiment präsentiert.',NULL,'DEU','Das gemütliche Schlafzimmer - Himmlisch schlafen','https://s3.amazonaws.com/schedulesdirect/assets/p8858274_st_h3_aa.jpg',4,NULL),('SH013574150000','Host Mike Rowe meets the men and women who do the most unthinkable jobs.',NULL,'GBR','Dirty Jobs','https://s3.amazonaws.com/schedulesdirect/assets/p185351_l_h3_aa.jpg',4,NULL),('SH030803630000','Pingu and his family move to the big city from their little fishing village, and Pingu decides to try all the jobs that his new home offers.',NULL,'GBR','Pingu in the City','https://s3.amazonaws.com/schedulesdirect/assets/p15569815_i_h3_aa.jpg',4,NULL),('SH018541200000','Das politische Hintergrundmagazin vom Rundfunk Berlin-Brandenburg.',NULL,'DEU','Kontraste','https://s3.amazonaws.com/schedulesdirect/assets/p10452528_b_h3_aa.jpg',4,NULL),('SH029282470000','Following Brits running chateaux in France, with help from Dick Strawbridge and his wife Angel.',NULL,'GBR','Escape to the Chateau: DIY','https://s3.amazonaws.com/schedulesdirect/assets/p15307415_b_h3_aa.jpg',4,NULL),('SH033320290000','British kids see if they can beat kids from other countries at their own national sports.',NULL,'GBR','A Week to Beat the World','https://s3.amazonaws.com/schedulesdirect/assets/p17459008_st_h3_aa.jpg',4,NULL),('SH018556470000','Der `Bachelor\' ist auf der Suche nach seiner Traumfrau, die er aus 22 Bewerberinnen auswählen darf.',NULL,'DEU','Der Bachelor','https://s3.amazonaws.com/schedulesdirect/assets/p10457956_st_h3_aa.jpg',4,NULL),('SH024501630000','Teenagers transported from Earth become pilots for robotic lions to fight in an intergalactic war. The Paladins of Voltron must learn to work as a team to assemble the robot Voltron and use its power to conquer the Galra Empire.',NULL,'GBR','Voltron: Legendary Defender','https://s3.amazonaws.com/schedulesdirect/assets/p12753146_b_h3_aa.jpg',4,NULL),('SH025766720000','Looking at the phenomenon of high-profile criminal cases where people publically claim they are innocent about a crime they have committed.',NULL,'GBR','Faking It: Tears of a Crime','https://s3.amazonaws.com/schedulesdirect/assets/p13594224_b_h3_aa.jpg',4,NULL),('SH021209980000','Geopolitisches Magazin von Jean-Christophe Victor, das versucht, anhand von Karten komplexe historische, geopolitische oder wirtschaftliche Sachverhalte allgemein verständlich darzustellen.',NULL,'DEU','Mit offenen Karten','https://s3.amazonaws.com/schedulesdirect/assets/p772346_i_h3_aa.jpg',4,NULL),('SH021672340000','Die kraftvollen Sauger der britischen Top-Marke `Dyson\' mit patentierter Zyklon-Technologie. Sie haben keine Folgekosten, da keine Ersatzbeutel oder neue Filter benötigt werden. Das spart Geld und schont die Umwelt.',NULL,'DEU','Dyson - Technologie Erleben','https://s3.amazonaws.com/schedulesdirect/assets/p11695222_st_h3_aa.jpg',4,NULL),('SH009160030000','Die Talksendung beleuchtet aktuelle politische Themen, wobei es die Moderatorin schafft, komplexe politische Sachverhalte für das Wahlvolk verständlich zu machen. Die Gäste der Sendung sind meist Politiker aus Deutschland und der Welt.',NULL,'DEU','maybrit illner','https://json.schedulesdirect.org/20141201/image/assets/p796173_i_h3_aa.jpg',4,NULL),('SH025466040000','Following the work of the North Yorkshire Police on the frontline of Britain\'s roads, where the fight against crime is fast and furious.',NULL,'GBR','Traffic Cops','https://s3.amazonaws.com/schedulesdirect/assets/p13460115_b_h3_aa.jpg',4,NULL),('SH020569270000','Inseln sind Schauplätze der Evolution. Seit Jahrtausenden isoliert, haben sich Lebewesen auf diesem begrenzten Raum an Nischen angepasst und neue Arten gebildet. Die Reihe ist eine Liebeserklärung an die spektakulärsten Inseln der Erde.',NULL,'DEU','Wilde Inseln','https://json.schedulesdirect.org/20141201/image/assets/p9524586_i_h3_aa.jpg',4,NULL),('SH012600990000','In this game show, two contestants compete against each other and the clock in a battle of wits that tests both their lexical dexterity and numerical knowledge. In the letters round, the contestants must find as many words as they can from nine letter tiles on the board, with longer words being worth more points. In the numbers round, contestants must use addition, subtraction, multiplication and division to come as close to a randomly generated, unknown target as possible using any of six numbered tiles. It\'s back to letters for the final round, the conundrum, during which the contestants must figure out what nine-letter word is represented by a nine-letter anagram shown on the board. The contestant who has the most points at the end of the conundrum round is declared the winner.',NULL,'GBR','Countdown','https://s3.amazonaws.com/schedulesdirect/assets/p359700_i_h3_aa.jpg',4,NULL),('SH032915190000','Oscar, a little boy, and Hoo, his friend cloud, together go and discover the world. Accompanied by their neighbour Ella, they explore and go on fun adventures.',NULL,'GBR','Ella, Oscar & Hoo','https://s3.amazonaws.com/schedulesdirect/assets/p15277443_b_h3_aa.jpg',4,NULL),('SH034010480000','Depicting the processes law enforcement use to apprehend the suspects.',NULL,'GBR','Murder Wall','https://s3.amazonaws.com/schedulesdirect/assets/p17743866_st_h3_aa.jpg',4,NULL),('SH027710960000','Taking a look at the behind-the-scenes action at one of the UK\'s busiest transport hubs, this series chronicles the typical and not-so-typical issues that face station staff, transport workers, emergency services, commuters, tourists and everyone in between. As each day unfolds, workers are met with a fresh set of problems, and must learn how best to handle it all - whether it be signal issues, line delays, major events, intense summer heatwaves (and buckling train lines as a consequence), and even those trying to ride without a valid ticket.',NULL,'GBR','Paddington Station 24/7','https://s3.amazonaws.com/schedulesdirect/assets/p14512221_st_h3_aa.jpg',4,NULL),('SH019560070000','Das Team der FBI um Chef Jack Malone ist darauf spezialisiert, vermisste Personen ausfindig zu machen. Dabei setzten sie nicht nur die modernste Technik ein, sondern erstellen auch psychologische Profile, um die Situation zu rekonstruieren.',NULL,'DEU','Without a Trace - Spurlos verschwunden','https://json.schedulesdirect.org/20141201/image/assets/p184825_i_h3_aa.jpg',4,NULL),('SH030515820000','Während der Abwesenheit ihres Vaters Dracula möchte die jugendliche Mavis beweisen, dass sie alle Fähigkeiten besitzt, das Hotel zu leiten. Die drei Freunde Hank N Stein, Pedro und Wendy Blob stehen ihr dabei stets zur Seite. Während Mavis die Hotelführung eher liberal angeht und der Spaß im Vordergrund steht, ist ihre Tante Lydia deutlich strenger...',NULL,'DEU','Hotel Transsilvanien - Die Serie','https://s3.amazonaws.com/schedulesdirect/assets/p14199341_i_h3_aa.jpg',4,NULL),('SH019585950000','Magazinsendung, die sich mit Themen aus den Bereichen Gesundheit, Geld und Ernährung beschäftigt.',NULL,'DEU','Servicezeit','https://s3.amazonaws.com/schedulesdirect/assets/p10914446_b_h3_aa.jpg',4,NULL),('SH020098650000','Der ehemalige American Idol-Sänger Matt Rogers präsentiert die größten und beeindruckendsten Maschinen, Bauwerke und Objekte der Welt. Riesige Aquarien, Baukräne, Bohrinseln, aber auch Bau- und Technikprojekte werden vorgestellt und erläutert.',NULL,'DEU','Mega-Konstruktionen','https://s3.amazonaws.com/schedulesdirect/assets/p185942_i_h3_aa.jpg',4,NULL),('SH012693990000','Protecting the citizens of the Welsh town of Pontypandy. Whenever the alarm sounds, brave Sam and his co-workers can be counted on to jump into a fire engine, hop onto a helicopter, and more, to help those in need.',NULL,'GBR','Fireman Sam','https://s3.amazonaws.com/schedulesdirect/assets/p386604_i_h3_aa.jpg',4,NULL),('SH028119100000','Adventures of Dennis, Gnasher and their friends.',NULL,'GBR','Dennis & Gnasher Unleashed!','https://s3.amazonaws.com/schedulesdirect/assets/p14754161_st_h3_aa.jpg',4,NULL),('SH019658750000','The critically acclaimed Web series \"Broad City\' moves to Comedy Central as a half-hour scripted series. It\'s created by and stars Abbi Jacobson and Ilana Glazer as 20-something best friends who are trying to navigate life in New York, despite that their adventures always seem to lead down unexpected and bizarre paths. They have very little money, but they are survivors who aren\'t afraid to throw themselves into sticky situations, no matter how messy the end results may be. Jacobson and Glazer both honed their comedy chops at New York\"s Upright Citizens Brigade Theater. UCB co-founder Amy Poehler is an executive producer on the series and joins Fred Armisen, Rachel Dratch, Janeane Garofalo, Michelle Hurst, Jason Mantzoukas and Amy Sedaris, among others, as guest stars.',NULL,'GBR','Broad City','https://s3.amazonaws.com/schedulesdirect/assets/p9843746_l_h3_ab.jpg',4,NULL),('SH033331500000','Wissenschaftler auf der ganzen Welt sind sich einig: Die globale Erwärmung ist menschengemacht.',NULL,'DEU','Klima außer Kontrolle','https://s3.amazonaws.com/schedulesdirect/assets/p17464899_b_h3_aa.jpg',4,NULL),('SH013478230000','Leonard Rossiter reads Barry Pilton\'s mercurial musings.',NULL,'GBR','In a Nutshell','https://s3.amazonaws.com/schedulesdirect/assets/p8381617_st_h3_aa.jpg',4,NULL),('SH013709260000','Paranormal investigator Zak Bagans leads his team of co-investigators Nick Groff and Aaron Goodwin at haunted locations both in America and abroad, interviewing locals about alleged hauntings before going face to face with supernatural entities. Each hour-long episode follows Bagans, Groff and Goodwin as they work to uncover the paranormal mysteries, and after piecing together the haunted history of each site, the team holds a dusk-to-dawn \"lockdown\" in an effort to obtain physical evidence of the paranormal and discover the truth.',NULL,'GBR','Ghost Adventures','https://s3.amazonaws.com/schedulesdirect/assets/p192798_l_h3_aa.jpg',4,NULL),('SH026405550000','Architectural designer Charlie Luxton embarks on a journey to find the most spectacular and unusual homes on Europe\'s Mediterranean Sea coastline. By visiting countries such as Croatia, Malta and Italy, Luxton attempts to find out what makes the perfect seaside home, what challenges come with living near the water, and what inspires people to live there. Finding out about the structures isn\'t all Luxton is interested in, as he also gets to know the people who live and work on the coast, including those who left city life behind, and others who know of nothing but the breathtaking scenery and the azure seas of this sun-kissed area.',NULL,'GBR','Homes by The Med','https://s3.amazonaws.com/schedulesdirect/assets/p13311528_st_h3_aa.jpg',4,NULL),('SH022470100000','A team of marine enthusiasts follow the animals arriving and thriving in UK waters.',NULL,'GBR','Big Blue UK','https://s3.amazonaws.com/schedulesdirect/assets/p12034715_b_h3_aa.jpg',4,NULL),('SH034320310000','Diese Sendung berichtet von der Berlinale 2020.',NULL,'DEU','Berlinale 2020','https://s3.amazonaws.com/schedulesdirect/assets/p17902644_st_h3_aa.jpg',4,NULL),('SH016391980000','Das tägliche Frühstücksfernsehen informiert über aktuelle Ereignisse aus Politik, Gesellschaft und Kultur. Darüber hinaus informiert ein Sportblock über die tagesaktuellen Geschehnisse aus der Sportwelt. Abgerundet wird die Sendung mit Interviews.',NULL,'DEU','ZDF-Morgenmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p9561785_b_h3_aa.jpg',4,NULL),('SH027670990000','Paul Murton takes a tour of Scotland\'s lochs.',NULL,'GBR','Grand Tours of Scotland\'s Lochs','https://s3.amazonaws.com/schedulesdirect/assets/p14492419_st_h3_aa.jpg',4,NULL),('SH016398620000','Das Boulevardmagazin berichtet von nationalen und internationalen Prominenten. Mit allen Nachrichten aus der bunten Welt der Stars und Sternchen.',NULL,'DEU','Leute heute','https://s3.amazonaws.com/schedulesdirect/assets/p9563746_b_h3_ac.jpg',4,NULL),('SH012671510000','Cameras capture the action as members of three elite units of Thames Valley Police fight car crime. And as the officers provide a fascinating insight into car crime and its prevention, video footage captures dangerous drivers in action.',NULL,'GBR','Road Wars','https://s3.amazonaws.com/schedulesdirect/assets/p477800_i_h3_aa.jpg',4,NULL),('SH014101610000','All the action from the J1 League, the top division in the Japanese Football League.',NULL,'GBR','J1 League Football','https://s3.amazonaws.com/schedulesdirect/assets/p8639584_st_h3_aa.jpg',4,NULL),('SH030474620000','Windblade helps Bumblebee repair his damaged memory chips so he can remember his mission on Earth.',NULL,'GBR','Transformers: Cyberverse','https://s3.amazonaws.com/schedulesdirect/assets/p15851885_b_h3_aa.jpg',4,NULL),('SH021528680000','Im Zentrum der Sendung stehen pro Folge jeweils zwei Elternteile und ihre gleichaltrigen Kinder. Sie besuchen sich gegenseitig für einen Tag, und vergleichen ihre Erziehungsmethoden.',NULL,'DEU','Mein Kind, dein Kind - Wie erziehst du denn?','https://s3.amazonaws.com/schedulesdirect/assets/p11626870_st_h3_aa.jpg',4,NULL),('SH021402410000','The continuing adventures of Sonic the Hedgehog and his friends against evil Dr Eggman.',NULL,'GBR','Sonic Boom','https://s3.amazonaws.com/schedulesdirect/assets/p11213272_i_h3_aa.jpg',4,NULL),('SH012608380000','Chris O\'Donnell and LL Cool J star in this second show in the \"NCIS\' franchise, which focuses on the high-stakes world of the Office of Special Projects (OSP) in Los Angeles. Highly trained agents go under cover and work with the most advanced technologies available to apprehend criminals deemed a threat to national security. Special Agent `G\" Callum is able to transform himself into whomever he needs to be in order to infiltrate the criminal underworld. His partner, former Navy SEAL Sam Hanna, is a surveillance expert who uses state-of-the-art equipment to monitor field agents and feed them crucial information.',NULL,'GBR','NCIS: Los Angeles','https://s3.amazonaws.com/schedulesdirect/assets/p3561420_l_h3_aa.jpg',4,NULL),('SH033932220000','Tom Kerridge and a team of volunteers are spending two months together eating lower calorie meals and doing regular exercise. Like Tom, the volunteers have personal reasons why they want to get in shape and goals they want to work towards.',NULL,'GBR','Lose Weight and get Fit with Tom Kerridge','https://s3.amazonaws.com/schedulesdirect/assets/p17724598_st_h3_aa.jpg',4,NULL),('SH013266310000','Top Yorkshire-born chef travels around the country in his customised Range Rover.',NULL,'GBR','James Martin: Yorkshire\'s Finest','https://s3.amazonaws.com/schedulesdirect/assets/p250175_b_h3_aa.jpg',4,NULL),('SH018439950000','Die Freunde Jana, Natascha, Fiete und Cem besuchen die fünfte Klasse eines Hamburger Gymnasiums. Nach der Schule treffen sie sich auf dem Boden des Gewürzhandels von Fietes Vater in der Hamburger Speicherstadt und lösen Kriminalfälle.',NULL,'DEU','Die Pfefferkörner','https://s3.amazonaws.com/schedulesdirect/assets/p10416281_i_h3_ac.jpg',4,NULL),('SH017951870000','Dan Short fell in love with cars when he first laid eyes on a 1967 Camaro. He bought a used model as a teenager, but because he couldn\'t pay someone else to restore it, he learned how to do the work himself. After a stint in the Army, Short decided to make his passion for classic cars his life\'s work, and FantomWorks was born. Today the Norfolk, Va, company is the largest auto restoration shop in the US, and this reality series shows how Short and his team meticulously refurbish some of America\'s favourite rides. Drama ensues in the form of personality clashes, cost overruns, irate customers and other issues, which are compounded by Short\'s reputation as a straight shooter who won\'t accept substandard results.',NULL,'GBR','FantomWorks','https://s3.amazonaws.com/schedulesdirect/assets/p9944361_l_h3_aa.jpg',4,NULL),('SH032348020000','Some of the original \"Total Drama\" characters enter into an alternate universe where they are aged down from teenagers to toddlers.',NULL,'GBR','Total DramaRama','https://s3.amazonaws.com/schedulesdirect/assets/p15787042_b_h3_aa.jpg',4,NULL),('SH018818710000','Helen Dorn, Kommissarin des Landeskriminalamts, ermittelt in Kriminalfällen, die auf die eine oder andere Art von besonderer Wichtigkeit sind. Auf der Suche nach den Tätern agiert sie geradlinig, hartnäckig und intuitiv.',NULL,'DEU','Helen Dorn','https://s3.amazonaws.com/schedulesdirect/assets/p10573728_b_h3_aa.jpg',4,NULL),('SH021336340000','Action from the Swedish Hockey League, the highest division in the Swedish ice hockey system.',NULL,'GBR','Swedish Hockey League','https://s3.amazonaws.com/schedulesdirect/assets/p11538792_b_h3_aa.jpg',4,NULL),('SH014190010000','\"The working man\'s bank\' is always willing to make a deal. That\'s why for the people of Detroit, the go-to pawn shop for more than four decades has been American Jewelry and Loan. This series follows its day-to-day operations, focusing on third-generation pawnbroker and company patriarch Les Gold, a street-smart old-schooler known for driving a hard bargain but having a soft heart. The family business also includes Seth, Les\' only son and business partner; daughter Ashley, the shop\'s general manager; and Les\' wife, Lili. But there\'s no question who the boss is, and he\'s often heard reminding his team of more than 45 employees, `The customer always lies\".',NULL,'GBR','Hardcore Pawn','https://s3.amazonaws.com/schedulesdirect/assets/p7959226_i_h3_aa.jpg',4,NULL),('SH022546860000','Bad Cannstatt, bevölkerungsreichster Stadtteil Stuttgarts, Industriestandort und Heimat des Privatdetektives Huck. Der ehemalige Polizist hat eindeutig ein Problem mit Autorität. Zusammen mit seinem Kumpel Cem löst er Kriminalfälle in der Provinz.',NULL,'DEU','Huck','https://json.schedulesdirect.org/20141201/image/assets/p12071855_i_h3_aa.jpg',4,NULL),('SH012981780000','Legal magazine programme.',NULL,'GBR','Law in Action','https://s3.amazonaws.com/schedulesdirect/assets/p256231_st_h3_aa.jpg',4,NULL),('SH012675810000','Set in the fictional Australian town of Summer Bay, a small coastal hamlet just north of Sydney, is this long-running soap - it debuted in 1988 - that depicts the sun-drenched residents of a beach-side resort. The programme has served as an acting apprenticeship of sorts for a number of notable former cast members, including Heath Ledger, Isla Fisher, Julian McMahon, Dannii Minogue, Simon Baker, Guy Pearce and Naomi Watts.',NULL,'GBR','Home and Away','https://s3.amazonaws.com/schedulesdirect/assets/p245120_i_h3_ae.jpg',4,NULL),('SH025245330000','Die Dokumentarreihe begleitet Flussschifffahrten mit der Kamera. Geschichten rund um die Passagiere und deren Erlebnisse auf dem Schiff werden erzählt und Einblicke in die Arbeit der Crew gegeben.',NULL,'DEU','Verrückt nach Fluss','https://s3.amazonaws.com/schedulesdirect/assets/p13348059_b_h3_aa.jpg',4,NULL),('SH019668290000','Mit Samson, Finchen und ihren Freunden lässt sich spielerisch die Welt erkunden. Mit viel Witz statt erhobenem Zeigefinger vermitteln die Bewohner der Sesamstraße, worauf es im Leben ankommt: Freundschaft, Spaß und friedliches Zusammenleben.',NULL,'DEU','Sesamstraße','https://s3.amazonaws.com/schedulesdirect/assets/p10949089_b_h3_aa.jpg',4,NULL),('SH021063630000','Die dreiteilige Dokumentation ergründet die Anfänge verschiedener Geheimbünde, spürt Verfolgten und Gejagten nach, sucht nach Symbolen und versteckten Hinweisen - und räumt mit Mythen und Vorurteilen auf.',NULL,'DEU','Geheimbünde','https://s3.amazonaws.com/schedulesdirect/assets/p11417030_i_h3_aa.jpg',4,NULL),('SH012613440000','The entertaining amateur cookery contest, where chefs attempt to create the most delicious dishes.',NULL,'GBR','MasterChef','https://s3.amazonaws.com/schedulesdirect/assets/p9025693_i_h3_aa.jpg',4,NULL),('SH026189850000','Four modern-day pioneers head into the Alaskan wilderness to build homesteads.',NULL,'GBR','Land Rush','https://s3.amazonaws.com/schedulesdirect/assets/p11845529_b_h3_aa.jpg',4,NULL),('SH013085210000','Kids learning to read should have fun with \"Alphablocks\", 26 living letters who emerge from the sky onto an empty, white world and discover that if they hold hands and make a word, it comes to life. There are also songs, stories and games to entertain and educate the young ones.',NULL,'GBR','Alphablocks','https://s3.amazonaws.com/schedulesdirect/assets/p8219176_i_h3_aa.jpg',4,NULL),('SH012658650000','Shopkeeper Albert Arkwright has one main focus - to make as much money as he can while spending as little as possible. He packs his small corner grocery with as much merchandise as it will hold. His nephew, Granville, serves as Arkwright\'s glorified errand boy, rising early to open the shop and staying late to close it. When not focused on his shop, Arkwright woos the nurse across the street. Each programme ends with Arkwright closing his shop and reflecting upon his day.',NULL,'GBR','Open All Hours','https://s3.amazonaws.com/schedulesdirect/assets/p457285_b_h3_ab.jpg',4,NULL),('SH019560330000','Aktuelle Informationen werden live aus Berlin-Mitte übertragen. Das Nachrichtenmagazin berichtet über die wichtigsten und interessantesten Geschehnisse des Tages.',NULL,'DEU','SAT.1 Nachrichten','https://s3.amazonaws.com/schedulesdirect/assets/p10904035_st_h3_aa.jpg',4,NULL),('SH013027580000','Coverage of House of Lords proceedings and business.',NULL,'GBR','House of Lords','https://s3.amazonaws.com/schedulesdirect/assets/p404034_b_h3_aa.jpg',4,NULL),('SH019851360000','Die Hecks, bestehend aus Mutter Frankie, Vater Mike und ihren drei Kindern, sind eine typische amerikanische Durchschnittsfamilie. Ihr oft chaotischer Alltag wird größtenteils von den Sorgen und Nöten der Kinder Axl, Sue und Brick bestimmt.',NULL,'DEU','The Middle','https://s3.amazonaws.com/schedulesdirect/assets/p3560344_l_h3_aa.jpg',4,NULL),('SH028431630000','Two-part documentary that tells the story of Simon Wiesenthal - a survivor of the Nazi death camps - and his relentless pursuit of his torturers who had been in hiding since World War II.',NULL,'GBR','Hunting Down the Nazis','https://s3.amazonaws.com/schedulesdirect/assets/p14937802_st_h3_aa.jpg',4,NULL),('SH015795760000','CEOs from some of Canada\'s largest corporations disguise themselves as average people and join their own workforces in order to better understand how their companies work at the most basic levels. Each episode of \"Undercover Boss Canada\" features one CEO as he or she tries to perform jobs that are often dirty and demanding, working alongside real employees who do these jobs every day. As they progress in their missions, the executives learn firsthand how their own decisions directly impact the lives of their employees, and later the CEOs use their new knowledge and experience to make improvements to their companies.',NULL,'GBR','Undercover Boss Canada','https://s3.amazonaws.com/schedulesdirect/assets/p9042057_l_h3_aa.jpg',4,NULL),('SH015248490000','Live radio commentary from the top-level professional rugby league club competition in Europe.',NULL,'GBR','Live: Super League Rugby','https://s3.amazonaws.com/schedulesdirect/assets/p9051718_i_h3_aa.jpg',4,NULL),('SH019576370000','Doktor Mark Sloan hilft seinem Sohn Detective Steve Sloan bei der Aufklärung von Mordfällen. Dabei greifen den beiden die Pathologin Amanda Bentley und Notfallchirurg Doktor Jesse Travis unter die Arme.',NULL,'DEU','Diagnose: Mord','https://s3.amazonaws.com/schedulesdirect/assets/p184251_i_h3_aa.jpg',4,NULL),('SH016608970000','Follows the exploits of several children living in a care home.',NULL,'GBR','The Dumping Ground','https://s3.amazonaws.com/schedulesdirect/assets/p9641622_i_h3_aa.jpg',4,NULL),('SH030143840000','There is a war going on in Britain. Across the country, motorists, councils and private parking companies are fighting each other over one issue-parking. Every day, 38 million cars are in a battle for just eight million parking spaces.',NULL,'GBR','Britain\'s Parking Hell','https://s3.amazonaws.com/schedulesdirect/assets/p15752662_b_h3_aa.jpg',4,NULL),('SH013048460000','This newsmagazine takes a 48-hour slice of a single topic and breaks it down into a single broadcast hour. A revolving team of CBS News correspondents offers an in-depth look into a topic or a criminal case, with the emphasis on solving the mystery at its heart.',NULL,'GBR','48 Hours','https://s3.amazonaws.com/schedulesdirect/assets/p200944_l_h3_aa.jpg',4,NULL),('SH019855870000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Ruhrgebiet.',NULL,'DEU','Lokalzeit Ruhr','https://s3.amazonaws.com/schedulesdirect/assets/p11024446_b_h3_aa.jpg',4,NULL),('SH014129450000','Each episode of this programme documents what happens during a 24-hour period in the Accident & Emergency (A&E) department at one of Britain\'s busiest A&E departments, beginning at King\'s College Hospital in Denmark Hill, London, before moving to St George\'s Hospital, Tooting in the seventh series. The programme captures both the joy and heartache experienced by the patients and their families, as well as the staff\'s hard work and professionalism. \"24 Hours in A&E\" also documents all the kinds of injuries the doctors treat, from life-threatening traumas to embarrassing mishaps. The series provides an intimate, powerful, and at times comic look at life and death on the front line of the A&E department.',NULL,'GBR','24 Hours in A&E','https://s3.amazonaws.com/schedulesdirect/assets/p8651529_i_h3_ad.jpg',4,NULL),('SH014220620000','After a series of grisly livestock killings in the mid-90s, reports arose of a mysterious fanged dog-like creature. Could it be the chupacabra?',NULL,'GBR','Paranatural','https://s3.amazonaws.com/schedulesdirect/assets/p7979724_i_h3_aa.jpg',4,NULL),('SH022222000000','Chip and Joanna Gaines own and operate Magnolia Homes, a remodelling and design business in Waco, Texas, and \"Fixer Upper\" shows the process by which the couple turn dilapidated but potential-rich houses into showplaces.',NULL,'GBR','Fixer Upper','https://s3.amazonaws.com/schedulesdirect/assets/p9928145_l_h3_aa.jpg',4,NULL),('SH032537830000','Die Dokumentation erzählt die Geschichte dieser majestätischen Schiffe, berichtet vom Wettlauf um Prestige und Geschwindigkeit, von den reichen Leuten in der ersten Klasse und den armen Schluckern im Zwischendeck, von Rekorden und K.',NULL,'DEU','Ozeanriesen','https://s3.amazonaws.com/schedulesdirect/assets/p17058322_st_h3_aa.jpg',4,NULL),('SH013033150000','One of the U.K.\'s longest-running series, \"Taggart\" is a gritty detective show based in Glasgow, Scotland. The show follows detectives in the Maryhill CID of Strathclyde Police as they investigate crimes, often murders. The personal relationships of the officers and their families is also explored in the series.',NULL,'GBR','Taggart','https://s3.amazonaws.com/schedulesdirect/assets/p498680_b_h3_ab.jpg',4,NULL),('SH012949680000','Cartographer George Bradshaw produced the first comprehensive timetable and travel guide of Great Britain\'s railway system in 1840. But a lot has changed in the world since then. Which is why presenter Michael Portillo, a British journalist, travels the railways throughout England using Bradshaw\'s maps to compare 1840s-era Britain to modern-day Britain.',NULL,'GBR','Great British Railway Journeys','https://s3.amazonaws.com/schedulesdirect/assets/p8175671_b_h3_ab.jpg',4,NULL),('SH020045500000','\"Million Dollar Listing\' has showcased some of the most luxurious homes in Los Angeles. The franchise now heads east with `Million Dollar Listing New York\', featuring relentless real estate agents in Manhattan and their intertwining lives as each agent fights for his share of the market. The agents must deal with demanding clients as they earn a living selling some of New York\"s hottest real estate. The featured agents, some of the best in the city, include \"listings machine\" Fredrik Eklund and Ryan Serhant, who was an actor and hand model before pursuing his real estate passion.',NULL,'GBR','Million Dollar Listing New York','https://s3.amazonaws.com/schedulesdirect/assets/p9035676_l_h3_aa.jpg',4,NULL),('SH016391760000','Kriminalhauptkommissar und SOKO-Leiter Jan Reuter, die beiden Kriminaloberkommissare Nils und Katrin sowie Polizeihauptmeister Lars werden bei ihrer Ganovenjagd unterstützt von Leena Virtanen, Konstabler der finnischen Staatspolizei.',NULL,'DEU','SOKO Wismar','https://s3.amazonaws.com/schedulesdirect/assets/p9561690_b_h3_ac.jpg',4,NULL),('SH024862180000','Entertainment programme.',NULL,'GBR','Glimpses','https://s3.amazonaws.com/schedulesdirect/assets/p13154096_st_h3_ab.jpg',4,NULL),('SH032572390000','Two young cats, Ollie and Moon, travel the world in search of new friendships and adventures.',NULL,'GBR','The Ollie & Moon Show','https://s3.amazonaws.com/schedulesdirect/assets/p14152728_l_h3_aa.jpg',4,NULL),('SH016157680000','The guardians of NZ\'s highways, they patrol our country\'s busiest roads. From honeymooners to hooligans, either way the Highway Cops will set them straight.',NULL,'GBR','Highway Cops','https://s3.amazonaws.com/schedulesdirect/assets/p9468037_i_h3_aa.jpg',4,NULL),('SH012699850000','Coverage of debates and questions in the House of Commons.',NULL,'GBR','House of Commons','https://s3.amazonaws.com/schedulesdirect/assets/p404024_b_h3_aa.jpg',4,NULL),('SH015406260000','Matt Edmondson writes and narrates entertaining Guinness World Records and characters who set them.',NULL,'GBR','Totally Bonkers Guinness World Records','https://s3.amazonaws.com/schedulesdirect/assets/p9127517_b_h3_aa.jpg',4,NULL),('SH016460840000','Die Dokumentationsreihe zeigt ein breites Spektrum an Themen, dazu zählen unter anderem Geschichtsdokumentationen, Natur- und Tier-Dokumentationen, Archäologie-Dokumentationen, Wissenschaftsdokumentationen und auch fiktionale Dokumentationen.',NULL,'DEU','Terra X','https://s3.amazonaws.com/schedulesdirect/assets/p9587122_b_h3_ad.jpg',4,NULL),('SH017073230000','Eine Gruppe von jungen Teenagern entdeckt die Wildnis. Doch vorher kommen sie in ein Vorbereitungscamp in der hessischen Wildnis, wo sie für ihr Abenteuer fit gemacht werden sollen. Anschließend geht es in die raue Wildnis.',NULL,'DEU','Durch die Wildnis','https://s3.amazonaws.com/schedulesdirect/assets/p9825204_b_h3_aa.jpg',4,NULL),('SH024752950000','\"Inside the Factory\' follows presenters Gregg Wallace and Cherry Healey as they explore the secrets behind large-scale food production. With exclusive access to some of Britain\"s biggest food factories, the pair investigate the journey of everyday items, how they are created, packaged and transported to the supermarket shelves. In the first series Wallace travels to a British bakery that produces one and a half million loaves of bread per week, while Healey visits a flour mill to uncover the science behind preserving bread for longer.',NULL,'GBR','Inside the Factory','https://s3.amazonaws.com/schedulesdirect/assets/p11719910_i_h3_ab.jpg',4,NULL),('SH032423110000','Wer in dieser Show als Sieger hervorgehen will, muss auf ganzer Linie im großen Duell überzeugen.',NULL,'DEU','Schlag den Besten','https://s3.amazonaws.com/schedulesdirect/assets/p17005229_st_h3_aa.jpg',4,NULL),('SH027640520000','Die Sendung berichtet über die sexuellen Vorlieben der Deutschen und wie sie mit ihren Sehnsüchten umgehen anhand dreier persönlicher Geschichten. Manche sprechen offen über ihre Wünsche, für andere wiederum ist das Thema tabu.',NULL,'DEU','Sex Secrets - Das macht Deutschland an!','https://s3.amazonaws.com/schedulesdirect/assets/p14481572_st_h3_aa.jpg',4,NULL),('SH013027640000','Recorded coverage of the First Minister\'s Questions in the Welsh Assembly.',NULL,'GBR','Welsh First Minister\'s Questions','https://s3.amazonaws.com/schedulesdirect/assets/p313262_b_h3_ab.jpg',4,NULL),('SH019577930000','Das Regionalmagazin greift das auf, worüber die Menschen in der Region sprechen. Es gibt politische Diskussionen, Berichte über gesellschaftliche Ereignisse, Reportagen aus dem Leben, kritische Interviews, Kultur und Musik.',NULL,'DEU','buten un binnen','https://s3.amazonaws.com/schedulesdirect/assets/p10910715_i_h3_aa.jpg',4,NULL),('SH015514470000','Chris Hawkins takes you through early hours playing back to back music without the interruptions.',NULL,'GBR','6 Music\'s Jukebox','https://s3.amazonaws.com/schedulesdirect/assets/p9179077_i_h3_aa.jpg',4,NULL),('SH015401890000','Die Reporter der Dokumentations- und Feature-Reihe sorgen mit ihren Filmen regelmäßig für Schlagzeilen. Sie decken Skandale auf, kümmern sich aber auch um all die Fragen des Alltags, die die Zuschauerinnen und Zuschauer beschäftigen und berühren.',NULL,'DEU','betrifft','https://s3.amazonaws.com/schedulesdirect/assets/p9125718_b_h3_aa.jpg',4,NULL),('SH018618750000','Eine breite Auswahl an unterschiedlichen Trinkwassersprudlern vom Marktführer zu entdecken. Wasser selbst sprudeln ist sehr praktisch: das Getränkekästen schleppen entfällt, individuelle Geschmacksrichtungen lassen sich einfach herstellen.',NULL,'DEU','Sodastream - Wassersprudler','https://s3.amazonaws.com/schedulesdirect/assets/p10486078_st_h3_aa.jpg',4,NULL),('SH019658760000','Die Sendung bietet Service im Plauderton, kombiniert mit etwas Klatsch und Tratsch. Bei einer Tasse Kaffee oder Tee plaudern wir mit interessanten Menschen aus Hessen, die etwas Besonderes können, tun oder haben.',NULL,'DEU','hallo hessen','https://s3.amazonaws.com/schedulesdirect/assets/p10944904_b_h3_aa.jpg',4,NULL),('SH013349570000','Scooby-Doo and the gang try to solve mysteries in the creepy coastal town of Crystal Cove, a place with a history for eerie supernatural events.',NULL,'GBR','Scooby-Doo! Mystery Incorporated','https://s3.amazonaws.com/schedulesdirect/assets/p8175225_i_h3_aa.jpg',4,NULL),('SH032270130000','Victorian Sensations transports us to the thrilling era of the 1890s. Dr Hannah Fry, Paul McGann, and Philippa Perry explore a decade of rapid change that still resonates today.',NULL,'GBR','Victorian Sensations with Hannah Fry','https://s3.amazonaws.com/schedulesdirect/assets/p16929029_b_h3_aa.jpg',4,NULL),('SH020132550000','Mascha lebt mitten im Wald. Ihr einziger Nachbar ist ein Bär, der unweit in einer Hütte mitten im Wald lebt und eigentlich gerne seine Ruhe hätte. Zu seinem großen Unglück kommt ihn die kleine, süße aber nervtötende Mascha jeden Tag besuchen.',NULL,'DEU','Mascha und der Bär','https://s3.amazonaws.com/schedulesdirect/assets/p11115187_b_h3_aa.jpg',4,NULL),('SH025154630000','Colonel Hogan und seine Truppe sind in einem Lager der Deutschen während des Zweiten Weltkriegs inhaftiert. Dabei schaffen sie es, eine erfolgreiche Spionagegruppe für die Alliierten zu sein und die Lagerleitung an der Nase herumzuführen.',NULL,'DEU','Ein Käfig voller Helden','https://s3.amazonaws.com/schedulesdirect/assets/p184204_i_h3_aa.jpg',4,NULL),('SH018077060000','From petty street crime to gangland murder, \"Criminals: Caught on Camera\" reveals shocking footage of actual crimes in the UK that are recorded on closed-circuit TV. Journalist Nick Wallis teams with over twenty different police forces in Britain to show how CCTV and technological advances are filming a wide range of criminal activity and leading to the apprehension of those responsible. The programme also explores the devious tactics of pickpockets, shoplifters and con artists, and looks at how camera technology has replaced some traditional policing methods.',NULL,'GBR','Criminals: Caught on Camera','https://s3.amazonaws.com/schedulesdirect/assets/p10260107_i_h3_aa.jpg',4,NULL),('SH012593140000','A team of ex-special forces soldiers on the lam from the military police (even though they didn\'t really commit the crime for which they\'d been imprisoned) leaves a trail of explosions in its wake. But Hannibal, Faceman, B.A. and Murdock always stop to help the little guy against some corrupt local bigwig before escaping the MPs once again.',NULL,'GBR','The A-Team','https://s3.amazonaws.com/schedulesdirect/assets/p183930_l_h3_aa.jpg',4,NULL),('SH012598220000','Presenters cast their expert eyes over a number of properties before they go to auction, giving their opinion on the respective buildings and their potential. Once the properties are sold, the show\'s hosts check in with the buyers to find out their plans for any renovations or structural improvements. After a couple of months, each project is re-visited to see how far things have progressed, and to see if everything went to plan financially. Estate agents are also invited along to study the work done and to provide a valuation.',NULL,'GBR','Homes Under the Hammer','https://s3.amazonaws.com/schedulesdirect/assets/p402752_i_h3_aa.jpg',4,NULL),('SH021219770000','Dr Janina Ramirez discovers how monasteries shaped every aspect of medieval Britain and created a dazzling array of art, architecture and literature. It is an extraordinary story of faith and sacrifice, as well as violence and corruption.',NULL,'GBR','Saints and Sinners: Britain\'s Millennium of Monasteries','https://s3.amazonaws.com/schedulesdirect/assets/p11482099_b_h3_aa.jpg',4,NULL),('SH016397840000','Markus Lanz lädt prominente Gäste und Experten aus allen Bereichen des öffentlichen Lebens zu seiner bunten Talkrunde ein. In der Regel sind es vier Gäste, die einzeln vorgestellt werden und ihre persönlichen Erfahrungen zu den Themen einbringen.',NULL,'DEU','Markus Lanz','https://s3.amazonaws.com/schedulesdirect/assets/p793628_b_h3_aa.jpg',4,NULL),('SH022444510000','`Crime Town USA\' zeigt schockierende Verbrechen, die jemals in US-amerikanischen Kleinstädten von Kriminellen begangen wurden. Die zuständigen Gesetzeshüter geben einen Einblick in das Vorgehen der Polizeiarbeit.',NULL,'DEU','Crime Town USA - Verbrechen im Hinterland','https://s3.amazonaws.com/schedulesdirect/assets/p7980386_st_h3_aa.jpg',4,NULL),('SH027778050000','Potluck takes on a whole different meaning at dinner parties organized by celebrated marijuana aficionado Snoop Dogg. And when his co-host is none other than trusted lifestyle expert Martha Stewart, these gatherings might have to be seen to be believed. That\'s what VH1 hopes is the case for this weekly series, which features polar opposites Snoop and Martha at the head of the table, each putting personal spins on dishes for themed meals. The half-baked evenings of cocktails, cooking, conversation, and fun include Seth Rogen, Wiz Khalifa, Rick Ross, Naya Rivera, Ashley Graham, Jason Derulo, 50 Cent, Fat Joe, Kathy Griffin and Robin Thicke among the invitees. Musical guests join the fun, too. Pass the pot... uh, I mean, pepper.',NULL,'GBR','Martha & Snoop\'s Potluck Dinner Party','https://s3.amazonaws.com/schedulesdirect/assets/p13385594_i_h3_aa.jpg',4,NULL),('SH022744040000','Die Beamten werden zu verschiedenen Verbrechensorten gerufen.',NULL,'DEU','Der Blaulicht Report','https://s3.amazonaws.com/schedulesdirect/assets/p12159916_b_h3_aa.jpg',4,NULL),('SH032039540000','Die vier kleinen Kätzchen Lampo, Milday, Pilou und Poppetta leben in der Garage der fürsorglichen Nonna Pina. Als `The Buffycats\' machen sie Musik und begeben sich auf verschiedene aufregende Abenteuer. Dabei stoßen sie auch auf weitere Artgenossen.',NULL,'DEU','44 Cats','https://s3.amazonaws.com/schedulesdirect/assets/p16208083_i_h3_aa.jpg',4,NULL),('SH013005240000','Who loves ya, baby? That would be Theo Kojak, the bald, lollipop-sucking New York detective who isn\'t afraid to bend the rules to bust the bad guys. Cynical but upbeat, Kojak not only has a talent for detecting, he also is blessed with perfect parking karma - he is always able to find a parking space right at the crime scene, even in Manhattan. Now that\'s power.',NULL,'GBR','Kojak','https://s3.amazonaws.com/schedulesdirect/assets/p184158_l_h3_aa.jpg',4,NULL),('SH016397720000','Die aktuellsten und brisantesten Themen des Tages werden ausführlich dargestellt und mit sorgfältig recherchierten Hintergrundberichten abgerundet. Hinzu kommen Interviews mit Politikern und anderen maßgeblichen Persönlichkeiten.',NULL,'DEU','heute-journal','https://s3.amazonaws.com/schedulesdirect/assets/p400450_i_h3_aa.jpg',4,NULL),('SH018580670000','Oggy ist ein ruhiger Kater, der keiner Fliege etwas zuleide tut. Die drei Kakerlaken Joey, Deedee und Marky dagegen haben Spaß, wenn sie Oggy die Hölle auf Erde bereiten. Ständig fallen ihnen neue Streiche und Gemeinheiten ein.',NULL,'DEU','Oggy und die Kakerlaken','https://s3.amazonaws.com/schedulesdirect/assets/p271385_i_h3_ab.jpg',4,NULL),('SH016113510000','What really goes into the food that you eat? That\'s an important question that not everyone thinks about when doing the grocery shopping. \"Food Unwrapped\" sets out to answer this question, as its team of hosts travel across the world to discover how popular food is mass produced. The programme tries to get answers from supermarkets and food producers, but when those attempts fall short, the team do whatever is necessary to find out. Heading inside factories, the inquisitive foodies meet scientists, factory owners, growers and producers to reveal information about food that is largely unknown to most people.',NULL,'GBR','Food Unwrapped','https://s3.amazonaws.com/schedulesdirect/assets/p9448554_i_h3_ab.jpg',4,NULL),('SH016999660000','Diana liebt Eiskunstlaufen, aber sie hat noch nie versucht, eine professionelle Laufbahn als Eiskunstläuferin einzuschlagen. Eines Abends trainiert sie heimlich auf einer Eisbahn und wird vom Marketing Manager der Steinkamp-Gruppe entdeckt.',NULL,'DEU','Alles was zählt','https://s3.amazonaws.com/schedulesdirect/assets/p9790472_b_h3_ae.jpg',4,NULL),('SH012834430000','Coverage from the league competition for clubs at the top of the Italian football system.',NULL,'GBR','Serie A Football','https://s3.amazonaws.com/schedulesdirect/assets/p8035007_b_h3_ag.jpg',4,NULL),('SH032912820000','A look into the wonderful world of crafting.',NULL,'GBR','Craft Party','https://s3.amazonaws.com/schedulesdirect/assets/p17244056_st_h3_aa.jpg',4,NULL),('SH030249790000','Featuring footage of terrifying moments taken by passengers and hearing from those who survived catastrophic events onboard an aircraft. From landing, to explosions and so much more.',NULL,'GBR','Flights from Hell: Caught on Camera',NULL,4,NULL),('SH030689690000','Olive, Andrea, Emma, Mia, and Stephanie are five best friends on a mission, embarking on a series of challenges and adventures in their beautiful Heartlake City.',NULL,'GBR','Lego Friends: Girls on a Mission','https://s3.amazonaws.com/schedulesdirect/assets/p15596354_b_h3_ad.jpg',4,NULL),('SH017598500000','A probationary angel wanders Earth helping people.',NULL,'GBR','Highway to Heaven','https://s3.amazonaws.com/schedulesdirect/assets/p400821_i_h3_ab.jpg',4,NULL),('SH019585610000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Duisburg. Die regionalen Nachricht rund um Duisburg sprechen Themen in Bereichen Gesellschaft, Politik, Wirtschaft und Kultur an.',NULL,'DEU','Lokalzeit aus Duisburg','https://s3.amazonaws.com/schedulesdirect/assets/p10914347_b_h3_aa.jpg',4,NULL),('SH012860620000','This talk-variety show features comic Ellen DeGeneres in the studio performing an opening monologue and interviewing guests who include celebrities, newsmakers and ordinary people with extraordinary talents. Additionally, segments include performances from top music acts, audience participation and man-on-the-street interviews. Music is a key part of the show, with an in-studio DJ - including occasional celebrity guest DJs - spinning tunes and DeGeneres often breaking out into dance moves during the show.',NULL,'GBR','The Ellen DeGeneres Show','https://s3.amazonaws.com/schedulesdirect/assets/p185048_l_h3_aa.jpg',4,NULL),('SH034289380000','A group of couples who don\'t know each other take turns hosting their own dinner parties and grading each other, as they battle for the title of best host couple, and the chance to win a grand cash prize.',NULL,'GBR','Couples Come Dine with Me','https://s3.amazonaws.com/schedulesdirect/assets/p17879448_b_h3_aa.jpg',4,NULL),('SH018676910000','James Martin and guests share recipes and tips for creating delicious food at home.',NULL,'GBR','James Martin: Home Comforts','https://json.schedulesdirect.org/20141201/image/assets/p10507448_i_h3_ac.jpg',4,NULL),('SH032438630000','Zwei Jahre nach dem God Blader\'s Cup macht sich das wilde Kind Aiga Akaba, das in der Natur aufgewachsen ist, auf den Weg, um Gegner zu bekämpfen, um stärker zu werden und Valt Aoi zu besiegen.',NULL,'DEU','Beyblade Burst','https://s3.amazonaws.com/schedulesdirect/assets/p15992095_i_h3_aa.jpg',4,NULL),('SH017835640000','\"The Railway: First Great Western\' is a workplace documentary series that shows what life is like for the employees of First Great Western, one of Britain\"s largest train operating companies. A team of drivers, managers, ticket inspectors and technicians work daily to connect the capital to the southwest and to keep an enormous network on track, as the company moves millions of passengers a year along the spectacular Great Western route.',NULL,'GBR','The Railway: First Great Western','https://s3.amazonaws.com/schedulesdirect/assets/p10154232_i_h3_aa.jpg',4,NULL),('SH021893360000','Doozers sind kleine grüne Männchen, die in kleinen Gemeinden auf der ganzen Welt leben.',NULL,'DEU','Jim Hensons: Doozers','https://s3.amazonaws.com/schedulesdirect/assets/p10239013_i_h3_aa.jpg',4,NULL),('SH017028330000','Als Dr. Martin Gruber erfährt, dass seine Nichte Lilli in Wahrheit seine Tochter ist, nimmt er das Angebot an, eine Arztpraxis in den Tiroler Bergen zu übernehmen. Schnell wird er Teil der Dorfgemeinschaft und ihrer Nöten und Freuden.',NULL,'DEU','Der Bergdoktor','https://s3.amazonaws.com/schedulesdirect/assets/p648464_i_h3_aa.jpg',4,NULL),('SH030875280000','Molly spends her summer with her big brother Mack on his toy stall. They share adventures together in the market with the warm, funny, loving community who work there.',NULL,'GBR','Molly and Mack','https://s3.amazonaws.com/schedulesdirect/assets/p16201156_b_h3_aa.jpg',4,NULL),('SH030370410000','Eve\'s life as a spy is not adding up to what she had hoped it would be when she started. She is a bored, smart, MI5 security officer who is very desk-bound. Villanelle is a talented killer, mercurial in mood, who clings to the luxuries of her job. Eve and Villanelle go head to head in a fierce game of cat and mouse, each woman equally obsessed with the other as Eve is tasked with hunting down the psychopathic assassin. Sarah Barnett, BBCA president, says, \" \"Killing Eve\" stands out in a sea of scripted stories as refreshingly entertaining and great fun.\"',NULL,'GBR','Killing Eve','https://s3.amazonaws.com/schedulesdirect/assets/p15086357_b_h3_aa.jpg',4,NULL),('SH030556050000','Unweit der Golden Gate Brücke steht das San Francisco Memorial Hospital. Chefarzt dort ist Dr. John McIntyre, von Kollegen und Freunden `Trapper John\' genannt. Täglich kämpfen er und seine Kollegen gegen Krankheiten und den Tod.',NULL,'DEU','Trapper John, M.D.','https://s3.amazonaws.com/schedulesdirect/assets/p517094_i_h3_aa.jpg',4,NULL),('SH034356790000','Privatdetektivin Doro Becker nimmt allerlei kuriose Fälle an, bei denen sie Menschen selbst die kleinsten Geheimnisse entlockt. Begleitet wird sie von Paradiesvogel Adnan und vom attraktiven Kommissar Chris, derihr schon länger schöne Augen macht.',NULL,'DEU','Dunkelstadt','https://s3.amazonaws.com/schedulesdirect/assets/p17929996_st_h3_aa.jpg',4,NULL),('SH020217450000','Highlights und Zusammenfassungen der UEFA Europa League.',NULL,'DEU','UEFA Europa League','https://s3.amazonaws.com/schedulesdirect/assets/p8413210_b_h3_ac.jpg',4,NULL),('SH013122120000','Tales of a smart princess and her six scaly friends.',NULL,'GBR','Florrie\'s Dragons','https://s3.amazonaws.com/schedulesdirect/assets/p8233951_b_h3_aa.jpg',4,NULL),('SH022074980000','Young government agents Olive and Otto use math to investigate strange occurrences in their town.',NULL,'GBR','Odd Squad','https://s3.amazonaws.com/schedulesdirect/assets/p11086138_l_h3_aa.jpg',4,NULL),('SH022086540000','Die vier Elemente der Natur bestimmen das Leben auf der Erde und richten zugleich unfassbare Zerstörungen an. Die Dokumentation zeigt, in welcher Weise die Kräfte der Umwelt wirken können und welche Konsequenzen für die Menschheit dadurch entstehen.',NULL,'DEU','Naturgewalten','https://s3.amazonaws.com/schedulesdirect/assets/p9222856_b_h3_ah.jpg',4,NULL),('SH034460040000','Cherry Healey enlists the help of leading experts to use clever tricks and cutting-edge treatments to turn back the clock to try to take 10 years off in 10 days. The public decides whether the treatments have worked.',NULL,'GBR','10 Years Younger In 10 Days','https://json.schedulesdirect.org/20141201/image/assets/p17991037_i_h3_aa.jpg',4,NULL),('SH012972550000','A lively mix of chat, arts news and live performance.',NULL,'GBR','In Tune','https://s3.amazonaws.com/schedulesdirect/assets/p247767_i_h3_aa.jpg',4,NULL),('SH030059230000','Todd Hoffmann und seine sechs Mann starke Crew wollen in der Wildnis Alaskas, nahe der kanadischen Grenze, nach Gold schürfen. Sie hoffen auf Reichtümer. Der Alltag der Goldsucher in der verlassenen Gegend ist jedoch alles andere als leicht.',NULL,'DEU','Goldrausch: Parkers Dschungel-Abenteuer','https://s3.amazonaws.com/schedulesdirect/assets/p8825082_i_h3_ac.jpg',4,NULL),('SH019563160000','Die Kriminalroman-Autorin Jessica Fletcher feiert ihren Erfolg auf einer Kostümparty, als es zu einem echten Mordfall kommt. Sie nimmt die Ermittlungen auf und stößt auf weitere Fälle, bei der sie ihre Kombinationsgabe zum Einsatz bringen kann.',NULL,'DEU','Mord ist ihr Hobby','https://s3.amazonaws.com/schedulesdirect/assets/p184149_i_h3_aa.jpg',4,NULL),('SH029053770000','Claude is an extraordinary dog who loves to have interesting adventures with his friend, Sir Bobblysock, when Mr and Mrs Shinyshoes are away at work.',NULL,'GBR','Claude','https://s3.amazonaws.com/schedulesdirect/assets/p15189073_b_h3_aa.jpg',4,NULL),('SH013065590000','Car enthusiast Mike Brewer and internationally renowned car designer Ant Anstead work together to give new life to rundown, classic automobiles in order to resell at a profit. Working with a limited budget, Mike\'s job is to find and purchase a vehicle before presenting it to Ant, who makes the necessary repairs - and usually there are plenty of them - giving tips along the way about electrics, structural issues, mechanics, cosmetic touches and finishing work. Once complete, the restored car is taken for a test drive, and then Mike negotiates the purchase price with a new owner. The first 13 seasons of \"Wheeler Dealers\' featured master mechanic Edd China as Brewer\"s sidekick.',NULL,'GBR','Wheeler Dealers','https://s3.amazonaws.com/schedulesdirect/assets/p529146_i_h3_ab.jpg',4,NULL),('SH027663140000','Dana, a girl who loves dinosaurs, spends all of her time learning about them.',NULL,'GBR','Dino Dana','https://s3.amazonaws.com/schedulesdirect/assets/p14060347_b_h3_aa.jpg',4,NULL),('SH028455200000','An oddball family of employees at supersized megastore Cloud 9 tackles the day-to-day grind of rabid bargain hunters, riot-causing sales and nap-worthy training sessions. Stalwart employee Amy is just trying to hold it all together despite the best efforts of her daftly clueless manager Glen and his iron-fisted assistant Dina. Rounding out the crew is new hire Jonah, a dreamy dreamer, sardonic Garrett, ambitious Mateo and sweet young mother-to-be Cheyenne. From bright-eyed newbies to seen-it-all veterans, bumbling seasonal hires and in-it-for-life managers, they\'re all going to get through another day -- together.',NULL,'GBR','Superstore','https://s3.amazonaws.com/schedulesdirect/assets/p11769880_l_h3_aa.jpg',4,NULL),('SH029782290000','Cricket und seine Familie ziehen vom Land in die Großstadt, was zu erst einen großen Kulturschock auslöst. Doch Cricket ist optimistisch und naiv, was ihn schnell neue Freunde finden lässt. Zusammen erleben sie viele Abenteuer in der großen Stadt.',NULL,'DEU','Big City Greens','https://s3.amazonaws.com/schedulesdirect/assets/p14788469_b_h3_aa.jpg',4,NULL),('SH028840320000','Acht Prominente treten gegeneinander an, um Deutschlands bester Promi-Bäcker zu werden. In insgesamt zwölf Prüfungen müssen die Teilnehmer ihr Können unter Beweis stellen, der Sieger gewinnt 10.000 Euro für einen guten Zweck.',NULL,'DEU','Das große Promibacken','https://s3.amazonaws.com/schedulesdirect/assets/p15089415_st_h3_aa.jpg',4,NULL),('SH012692510000','LA County\'s sleuthing chief coroner stakes his reputation on another case.',NULL,'GBR','Quincy, M.E.','https://s3.amazonaws.com/schedulesdirect/assets/p472160_i_h3_ab.jpg',4,NULL),('SH032012090000','Die Nachrichtensendung berichtet von den aktuellsten regionalen und internationalen Ereignissen. Andreas Brückner stellt eine engagierte Redaktion vor, die tagtäglich Themen recherchiert und für informativen Inhalt sorgt.',NULL,'DEU','MDR aktuell','https://s3.amazonaws.com/schedulesdirect/assets/p12219300_b_h3_aa.jpg',4,NULL),('SH019855860000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus dem Münsterland.',NULL,'DEU','Lokalzeit Münsterland','https://s3.amazonaws.com/schedulesdirect/assets/p11024439_b_h3_aa.jpg',4,NULL),('SH022280060000','In der Welt der Savanne Kenias bringt jeder Tag wichtige Erfahrungen für Lolulu und Malalua. Die Serie erzählt die Erlebnisse der beiden Massai-Kinder, zeigt ihre Herausforderungen und wie sie und ihre Familien in der Savanna überleben können.',NULL,'DEU','Die Abenteuer von Lolulu und Malalua','https://s3.amazonaws.com/schedulesdirect/assets/p11950084_b_h3_aa.jpg',4,NULL),('SH012588940000','This magazine-style show tackles current affairs and other issues in the UK using a mix of interviews, topical stories and features. Regular contributors offer reports relating to such subjects as history, wildlife, consumer affairs, and health and medicine.',NULL,'GBR','The One Show','https://s3.amazonaws.com/schedulesdirect/assets/p8096947_b_h3_aa.jpg',4,NULL),('SH013033590000','An updated look at families previously featured on \"Wanted Down Under\".',NULL,'GBR','Wanted Down Under Revisited','https://s3.amazonaws.com/schedulesdirect/assets/p8201037_b_h3_ab.jpg',4,NULL),('SH015406530000','Die Reihe präsentiert regionale Naturporträts und international produzierte Tier- und Naturfilme.',NULL,'DEU','Expeditionen ins Tierreich','https://json.schedulesdirect.org/20141201/image/assets/p9127609_i_h3_aa.jpg',4,NULL),('SH025488890000','\"Tenable\' is a game show hosted by Warwick Davis where players have the opportunity of winning a jackpot of 125,000 pounds. Teams are made up of five contestants; they can be friends, family members or colleagues. Each round sees one player attempt to complete a top ten list of answers based on various general knowledge topics. Five correct answers adds money to their team\"s prize fund and each correct answer thereafter further increases the amount they bank. In the final round, the remaining team members still in the game must find all ten answers in the list in order to walk away with the cash prize.',NULL,'GBR','Tenable','https://s3.amazonaws.com/schedulesdirect/assets/p13470994_b_h3_aa.jpg',4,NULL),('SH034267490000','From the Ancient Greeks to the taboo-busting painters and sculptors of today, Mary gives a deeply personal take on naked bodies in art. She explores why artists are so interested in nudity, and what art can reveal about people\'s attitudes to their bodies.',NULL,'GBR','Mary Beard\'s Shock of the Nude','https://json.schedulesdirect.org/20141201/image/assets/p17868296_i_h3_aa.jpg',4,NULL),('SH019647040000','Diese Top-Piloten sind mit verschiedensten Flugzeugtypen vertraut. Ihr Job ist es, Flugzeuge sicherzustellen, wenn ein Käufer nicht bezahlt. In Detektivarbeit machen sie die Flugzeuge ausfindig und bringen sie ihrem Eigentümer zurück.',NULL,'DEU','Airplane Repo - Die Inkasso-Piloten','https://s3.amazonaws.com/schedulesdirect/assets/p8399068_i_h3_ah.jpg',4,NULL),('SH034276860000','Weekly political chat and analysis with the Brexitcast team.',NULL,'GBR','Newscast','https://s3.amazonaws.com/schedulesdirect/assets/p17872906_st_h3_aa.jpg',4,NULL),('SH030689530000','Barbie embarks on adventures with friends and family, including next-door neighbour Ken, in this animated vlog of adventures filmed inside her family\'s new dream house.',NULL,'GBR','Barbie Dreamhouse Adventures','https://s3.amazonaws.com/schedulesdirect/assets/p15426624_b_h3_aa.jpg',4,NULL),('SH029229240000','Flying officer Hugh Fleming is shot down and badly burned during the battle of Britain in September 1940.',NULL,'GBR','A Perfect Hero',NULL,4,NULL),('SH012861820000','Doug Heffernan puts in a long day\'s work delivering parcels and comes home each night to his loving wife, Carrie; unfortunately, he also comes home to his wacko father-in-law, Arthur. Doug\'s only refuges are the little time he spends alone with Carrie and the company of his buddy Spence, co-worker Deacon and cousin Danny, whom he turns to for advice that just might make his life better, if he only bothered to follow it.',NULL,'GBR','The King of Queens','https://s3.amazonaws.com/schedulesdirect/assets/p184408_b_h3_aa.jpg',4,NULL),('SH018641230000','The life of 12-year-old Hank Zipzer, a young man with a unique perspective on the world.',NULL,'GBR','Hank Zipzer','https://json.schedulesdirect.org/20141201/image/assets/p10494450_i_h3_aa.jpg',4,NULL),('SH012695100000','Xena is a reformed warrior princess who travels around fighting evil. Gabrielle - bard and friend - keeps her company and helps her stay on the path of good.',NULL,'GBR','Xena: Warrior Princess','https://s3.amazonaws.com/schedulesdirect/assets/p184132_l_h3_aa.jpg',4,NULL),('SH017740050000','The very best in stripped-back live music performances from the world famous Live Lounge.',NULL,'GBR','Radio 1 Live Lounge','https://s3.amazonaws.com/schedulesdirect/assets/p10114741_st_h3_aa.jpg',4,NULL),('SH015942140000','The gold rush in Alaska isn\'t confined to the state\'s precious ground. It\'s taking place on the sea ... or more accurately, on the bottom of the frigid Bering Sea. This series, from the creators of the Emmy-winning \"Deadliest Catch,\" follows four gold dredges and their eccentric and driven crews who risk their lives to find as much gold as possible before winter sets in and it\'s too dangerous to dive. The custom-built rigs, some barely seaworthy, include an 80-foot barge run by the most successful gold dredger in Nome, Alaska, and a modified skiff that seats only two people.',NULL,'GBR','Gold Divers','https://s3.amazonaws.com/schedulesdirect/assets/p8963906_b_h3_aa.jpg',4,NULL),('SH023540150000','Series in which the groom must organise and choose every detail of his wedding.',NULL,'GBR','Don\'t Tell the Bride Ireland','https://s3.amazonaws.com/schedulesdirect/assets/p9087150_st_h3_aa.jpg',4,NULL),('SH027291760000','Mit exakt abgestimmtem Bastelequipment will `Crafter\'s Companion\' die Freude am Basteln steigern.',NULL,'DEU','Crafter\'s Companion - einfach kreativ','https://s3.amazonaws.com/schedulesdirect/assets/p14307411_st_h3_aa.jpg',4,NULL),('SH020072230000','Die BR-alpha-Reihe von Peider A. Defilla, schaut in jeder Folge für 15 Minuten hinter die Kulissen - besucht Musikanten und Ensembles in ihren Probenräumen, stellt Fragen nach deren Verständnis von Volksmusik, nach Tradition und Fortschritt.',NULL,'DEU','bäckstage Volksmusik','https://json.schedulesdirect.org/20141201/image/assets/p11093969_i_h3_aa.jpg',4,NULL),('SH019743700000','Nachmittägliches Service- und Ratgebermagazin mit Themen aus den Bereichen Haushalt, Finanzen, Handwerk, Computer, Ernährung, Recht und Gesundheit. Zahlreiche Experten diskutieren diese Themen im Studio.',NULL,'DEU','Kaffee oder Tee?','https://s3.amazonaws.com/schedulesdirect/assets/p10978247_b_h3_aa.jpg',4,NULL),('SH032163690000','Filmmaker Christian Baumeister and his team brave volcanic peaks, caustic lagoons, dense tropical forests, and lightning-strewn salt flats to capture the remarkable diversity of life and landscape found in the Andes Mountains.',NULL,'GBR','The Wild Andes','https://s3.amazonaws.com/schedulesdirect/assets/p16096535_b_h3_aa.jpg',4,NULL),('SH032590580000','Die Dokumentation stellt Landschaften der Superlative vor und zeigt spannende Naturphänomene.',NULL,'DEU','Faszinierende Erde','https://s3.amazonaws.com/schedulesdirect/assets/p17084105_b_h3_aa.jpg',4,NULL),('SH022240140000','Die Macher von `Drachenzähmen leicht gemacht\' präsentieren eine Serie, in der sich Hicks und Ohnezahn in riesige neue Abenteuer stürzen.',NULL,'DEU','Dragons: Auf zu neuen Ufern','https://s3.amazonaws.com/schedulesdirect/assets/p11845187_i_h3_aa.jpg',4,NULL),('SH024596390000','If a record has soul, it\'s got a new home.',NULL,'GBR','Trevor Nelson\'s Rhythm Nation','https://s3.amazonaws.com/schedulesdirect/assets/p13030394_st_h3_aa.jpg',4,NULL),('SH020273460000','This British adaptation of American programme \"Storage Hunters\' brings auctioneer Sean Kelly across the Atlantic to sell abandoned storage units throughout the UK to the highest bidders. He searches the country in hopes of landing hidden treasures in storage units that people have stopped paying for. As with its US counterpart, the show focuses not only on Kelly but also the regular bidders who show up at his auctions with the goal of buying something for a low price that they can turn around and sell for a profit - after all, that\'s what storage hunters do (or, at least, try to do). Of course, they have to bid without knowing what\"s inside the crates and units. Like in any competition, strategy, intimidation and trash-talking are all par for the course among the bidders.',NULL,'GBR','Storage Hunters UK','https://s3.amazonaws.com/schedulesdirect/assets/p11163585_i_h3_ab.jpg',4,NULL),('SH034077640000','Gezeigt werden die aktuellen Wettkämpfe der International Biathlon Union (IBU).',NULL,'DEU','Biathlon','https://s3.amazonaws.com/schedulesdirect/assets/p17775811_i_h3_aa.jpg',4,NULL),('SH029358700000','Following some of Britain\'s busiest and best air ambulance teams as they carry out lifesaving services and hospital-level treatment wherever and whenever required, this inspiring and moving series offers a rare, behind-the-scenes insight into some of the situations the UK\'s air emergency workers must face daily. With the cameras shadowing the skilled paramedics responsible for servicing a range of incidents in the field across Oxfordshire, Berkshire and Buckinghamshire, each episode presents a unique opportunity for viewers at home to see what a day for these heroes can really be like.',NULL,'GBR','Emergency Helicopter Medics','https://s3.amazonaws.com/schedulesdirect/assets/p15351389_b_h3_aa.jpg',4,NULL),('SH012610100000','Unencumbered by wives, jobs or any other responsibilities, three senior citizens who\'ve never really grown up explore their world in the Yorkshire Dales. They spend their days speculating about their fellow townsfolk and thinking up adventures not usually favoured by the elderly.',NULL,'GBR','Last of the Summer Wine','https://s3.amazonaws.com/schedulesdirect/assets/p424501_b_h3_aa.jpg',4,NULL),('SH022804880000','Yann und seine Schwester Marina leben auf einer Insel im pazifischen Ozean. Sie wohnen bei ihrem Onkel Patrick, einem Ozeanforscher. Yanns bester Freund ist Zoom, ein weißer Delfin. Die beiden sind immer auf der Suche nach Abenteuern.',NULL,'DEU','Zoom: Der weiße Delfin','https://s3.amazonaws.com/schedulesdirect/assets/p11011690_i_h3_aa.jpg',4,NULL),('SH020868050000','`Jetzt mal ehrlich\' - in seinem wohl persönlichsten Bühnenprogramm deckt Helmut Schleich so manche Ungerechtigkeit auf und begegnet satirisch den Machenschaften unserer Zeit.',NULL,'DEU','Helmut Schleich live auf der Bühne!','https://json.schedulesdirect.org/20141201/image/assets/p11357898_b_h3_aa.jpg',4,NULL),('SH022965700000','This adrenaline-fuelled series follows former athletes Tim Warwood and Adam Gendle taking on some unique challenges. The broadcasting duo are given one week to create extraordinary stunts using the props given to them, a £1,000 budget and inspiration from their location. As they are dropped off somewhere around the UK, the pair must get familiar with their new surroundings to come up with a creative and epic feat. Using their imaginations and their previous athletic knowledge, they build and test a stunt, in preparation for a daring world-class athlete to take it on.',NULL,'GBR','The Indestructibles','https://s3.amazonaws.com/schedulesdirect/assets/p12276135_i_h3_aa.jpg',4,NULL),('SH032450610000','Zwei Jahre nach dem God Blader\'s Cup macht sich das wilde Kind Aiga Akaba, das in der Natur aufgewachsen ist, auf den Weg, um Gegner zu bekämpfen, um stärker zu werden und Valt Aoi zu besiegen.',NULL,'DEU','Beyblade: Burst Turbo','https://s3.amazonaws.com/schedulesdirect/assets/p15992095_b_h3_aa.jpg',4,NULL),('SH022063600000','This observational documentary follows the people who have been affected by the UK\'s housing crisis. As house prices spiral upwards, more and more people have to rent, adding onto the already 8 million tally of tenants. On the other hand there are 2 million private landlords who buy-to-let, and this number is growing where there is the opportunity to make profit. The relationship between tenants and landlords has always been known to sometimes conflict, but with the divide becoming wider, there have been even more dramatic issues coming to the surface. The show follows eviction specialists as they attempt to remove nightmare tenants from buildings and the elite council teams as they seek out rogue landlords who are providing unsuitable living environments.',NULL,'GBR','Nightmare Tenants, Slum Landlords','https://s3.amazonaws.com/schedulesdirect/assets/p11864460_b_h3_aa.jpg',4,NULL),('SH018547050000','Das in Mainz ansässige politische Informationsmagazin widmet sich nationalen Themen aus Deutschland. Gezeigt werden unter anderem allgemeine Diskussionen über aktuelle Krisen sowie Themen aus Politik, Wirtschaft und Gesellschaft.',NULL,'DEU','Report Mainz','https://s3.amazonaws.com/schedulesdirect/assets/p10454876_b_h3_aa.jpg',4,NULL),('SH019578260000','Die Thundermans scheinen auf den ersten Blick eine normale Familie zu sein. Doch der Schein trügt, denn jeder der Thundermans hat eine oder mehrere Superkräfte. Phoebe besitzt die selben Superkräfte wie Max. Sie wird zum Superheld, er zum Bösewicht.',NULL,'DEU','Die Thundermans','https://s3.amazonaws.com/schedulesdirect/assets/p10259786_i_h3_aa.jpg',4,NULL),('SH029284430000','Rae ist 16 Jahre alt, wiegt 105 Kilo und interessiert sich für Musik, Rumhängen und Jungs. Das wäre nichts Außergewöhnliches, hätte sie nicht gerade einen Selbstmordversuch und vier Monate Therapie in einer psychiatrischen Klinik hinter sich.',NULL,'DEU','My Mad Fat Diary','https://json.schedulesdirect.org/20141201/image/assets/p9666347_i_h3_aa.jpg',4,NULL),('SH030587780000','Ninjago war ein friedliches Land - bis Lord Garmadon beabsichtigt dort Herrscher zu werden. Zusammen mit seiner Skelett-Armee überfällt er das Land, raubt, mordet und brandschatzt, was sich ihm in den Weg stellt. Nur Garmadons weiser Bruder Sensei Wu kann Ninjago nun noch retten. Der allerdings hat nur vier Ninja-Lehrlinge an seiner Seite.',NULL,'DEU','Ninjago - Im Land der Drachen','https://s3.amazonaws.com/schedulesdirect/assets/p15794004_i_h3_aa.jpg',4,NULL),('SH024540650000','Two friends, Gluko and Lennon, are in for a wonderfully strange adventure: they must get a little bubble back home to Bubble Land, but they must also make it back in time to prevent some naughty, cute kittens from messing up Grandma\'s house.',NULL,'GBR','Little Big Awesome','https://json.schedulesdirect.org/20141201/image/assets/p12936418_i_h3_aa.jpg',4,NULL),('SH030382920000','The adventures of Rosie, Krashy, ChiChi, Pandy and Wally, toys who come to life in a children\'s bedroom. They explore and discover their world, making friends and learning new things along the way.',NULL,'GBR','Baby Riki','https://s3.amazonaws.com/schedulesdirect/assets/p15871098_b_h3_aa.jpg',4,NULL),('SH012615250000','This police drama series follows the activities in and around Sun Hill, a police station located in the fictional East London borough of Canley. The focus is not just the gritty reality of police work, however; the lives and loves of the officers who staff the precinct get equal play.',NULL,'GBR','The Bill','https://s3.amazonaws.com/schedulesdirect/assets/p184126_i_h3_aa.jpg',4,NULL),('SH031547100000','Proud homeowners open their doors to five property-obsessed nosy neighbours, in the hope of being judged to have the best house in town.',NULL,'GBR','Best House in Town','https://s3.amazonaws.com/schedulesdirect/assets/p16533242_b_h3_aa.jpg',4,NULL),('SH012822630000','Celebrities reveal unusual facts and tell embarrassing stories (some of which are true) on this comedy panel game. What could be better in the current celebrity-obsessed culture? Two teams of four celebrities compete against each other in each episode. The teammates reveal unusual facts and embarrassing stories about themselves, some true, some not. The opposing team must determine what is true and what is made up. A team gains a point for correctly guessing the validity of the opposing team\'s story. If a team guesses incorrectly, the team that told the story gets the point.',NULL,'GBR','Would I Lie to You?','https://s3.amazonaws.com/schedulesdirect/assets/p532422_i_h3_aa.jpg',4,NULL),('SH018438190000','Das Boulevardmagazin berichtet über die Highlights der aktuelle Nachrichten und Promi Ereignisse. Kamila Senjo oder Mareile Höppner moderieren die wichtigsten Themen von Heute.',NULL,'DEU','Brisant','https://s3.amazonaws.com/schedulesdirect/assets/p10415610_b_h3_aa.jpg',4,NULL),('SH013668910000','Ash, Dawn and Brock prepare for the last challenges of the Sinnoh region, relying on their newly evolved and newly captured monsters to help them in their battles.',NULL,'GBR','Pokémon the Series: DP Sinnoh League Victors','https://s3.amazonaws.com/schedulesdirect/assets/p8111344_l_h3_aa.jpg',4,NULL),('SH012600720000','House Doctor Ann Maurice divulges some of her sprucing secrets.',NULL,'GBR','House Doctor','https://s3.amazonaws.com/schedulesdirect/assets/p728446_b_h3_aa.jpg',4,NULL),('SH017729740000','Offering rare looks at some of the United States\' best-loved landmarks from high in the sky. Cameras capture the history and pageantry of America as they zoom over busy cityscapes and quiet, rural lands, focusing on many of the nation\'s states.',NULL,'GBR','Aerial America','https://s3.amazonaws.com/schedulesdirect/assets/p8811095_b_h3_ae.jpg',4,NULL),('SH026062290000','Starting the school year, Archie Andrews wants to pursue a future in the music business, but is without a mentor. Amidst all the small-town banality lurks a mystery: the recent tragic death of Jason Blossom.',NULL,'GBR','Riverdale','https://s3.amazonaws.com/schedulesdirect/assets/p12914589_i_h3_ab.jpg',4,NULL),('SH019568620000','In informativen Beiträgen werden in diesem Wissensmagazin Antworten auf Fragen geboten, die sich jeder schon einmal gestellt hat. Die Themen rangieren von Nützlichem und Spektakulärem bis hin zu Amüsantem und Alltäglichem.',NULL,'DEU','n-tv Wissen','https://s3.amazonaws.com/schedulesdirect/assets/p10907375_b_h3_aa.jpg',4,NULL),('SH023105260000','Susan Calman hosts a show exploring the world of lists.',NULL,'GBR','Listomania','https://s3.amazonaws.com/schedulesdirect/assets/p12347066_st_h3_aa.jpg',4,NULL),('SH030833490000','Die sechs heldenhaften Hunde Chase, Marshall, Rocky, Zuma, Rubble und Skye führen mit Hilfe ihres Trainers Ryder verschiedene Missionen in ihrem Wohnort durch. Von Katzen auf Bäumen bis zu Zügen, die feststecken, ist alles dabei.',NULL,'DEU','Paw Patrol - Helfer auf vier Pfoten','https://s3.amazonaws.com/schedulesdirect/assets/p12113918_i_h3_aa.jpg',4,NULL),('SH018297470000','Melody is a partially-sighted girl with an incredible imagination who visualises stories and characters conjured up by classical music.',NULL,'GBR','Melody','https://s3.amazonaws.com/schedulesdirect/assets/p10358990_i_h3_aa.jpg',4,NULL),('SH025012910000','Dick Powell serves as host to this hugely popular 60s series with a glittering cast of guest stars.',NULL,'GBR','Dick Powell Theatre','https://s3.amazonaws.com/schedulesdirect/assets/p367398_st_h3_aa.jpg',4,NULL),('SH026888200000','Der Traum vom Haus mit Blick auf einen See bleibt für viele leider aus finanziellen Gründen unerfüllt. Die Sendung begleitet Familien auf der Suche nach ihrem Traumhaus am Wasser und zeigt, dass man auch mit einem kleinen Budget fündig werden kann.',NULL,'DEU','Lakefront - Haus am See gesucht','https://s3.amazonaws.com/schedulesdirect/assets/p10975488_i_h3_ab.jpg',4,NULL),('SH015403480000','Das Wissensmagazin beschäftigt sich mit den aktuellen Nachrichten der Woche und erläutert die jeweiligen Hintergründe. Daneben gibt es in jeder Sendung auch Reisen ins Unbekannte und werden Mythen des Alltags aufgeklärt.',NULL,'DEU','W wie Wissen','https://s3.amazonaws.com/schedulesdirect/assets/p9126340_b_h3_aa.jpg',4,NULL),('SH023174020000','A defence attorney solves murder mysteries in the courtroom.',NULL,'GBR','Perry Mason','https://s3.amazonaws.com/schedulesdirect/assets/p184141_i_h3_aa.jpg',4,NULL),('SH014051470000','Inside Kleinfeld Bridal, the Manhattan-based bridal salon that is arguably the world\'s finest, more than 250 professionals, most of them veterans from the shop\'s early days in Brooklyn, bend over backward to make each bride\'s experience unforgettable. Part bridal story, part fashion makeover and part family therapy session, each episode looks at the personalities and craftsmanship that come into play as the Kleinfeld staff go to sometimes extreme lengths to realize each bride\'s dreams.',NULL,'GBR','Say Yes to the Dress','https://s3.amazonaws.com/schedulesdirect/assets/p185733_l_h3_ab.jpg',4,NULL),('SH027786700000','Rechtsanwältin Karen E. Laine und ihre Tochter, die Immobilienexpertin Mina Starsiak sind ein unschlagbares Team. In ihrer Heimatstadt Indianapolis verwandeln sie heruntergekommene Häuser mit kleinem Budget in Traumhäuser.',NULL,'DEU','Good Bones - Mutter, Tochter, Home-Makeover','https://s3.amazonaws.com/schedulesdirect/assets/p12588321_i_h3_ac.jpg',4,NULL),('SH019808820000','Christy Plunkett bekam ihre Tochter Violet mit 16 Jahren und hat einen Sohn namens Roscoe gemeinsam mit ihrem Ex-Mann. Seit einem Jahr ist Christy nun trocken und hat immer noch schwer mit ihrer Sucht zu kämpfen. Sie arbeitet als Kellnerin in einem Restaurant und hat eine Affäre mit ihrem verheirateten Chef. Eines Tages fasst sie den Entschluss, ihr Leben umzukrempeln und besucht sogar Treffen der Anonymen Alkoholiker. Hilfe bekommt sie ausgerechnet von ihrer Mutter Bonnie. Sie war selbst alkoholsüchtig und drogenabhängig und konnte sich daher nur wenig um Tochter Christy kümmern, als die ein Kind war. Nun will sie das wiedergutmachen und versucht, das Vertrauen ihrer Tochter wiederzugewinnen. Bonnie will endlich damit anfangen, eine gute Mutter für Christy zu sein, Chaos inklusive.',NULL,'DEU','Mom','https://s3.amazonaws.com/schedulesdirect/assets/p9978206_l_h3_aa.jpg',4,NULL),('SH017428710000','Die Serie bietet ihren Zuschauern Eindrücke vom Leben und den Arbeitsabläufen der Crew an Bord eines Kreuzfahrtschiffes, das die schönsten Urlaubsziele der Welt ansteuert. Kapitän Morten Hansen verbreitet dabei stets gute Laune.',NULL,'DEU','Verrückt nach Meer','https://s3.amazonaws.com/schedulesdirect/assets/p9987914_b_h3_aa.jpg',4,NULL),('SH013069470000','Turning high-end establishments into more profitable ventures is the task of award-winning hotelier Alex Polizzi. Her work is not easy, considering the impeccable decor with low bookings, fabulous functions but dwindling profits and hoteliers who want to launch their brand but don\'t quite know what their brand is yet. With her no-nonsense suggestions and the challenges she gives to the establishment owners, Alex spurs the hoteliers into action to ensure the highest standard of guest experience.',NULL,'GBR','The Hotel Inspector','https://s3.amazonaws.com/schedulesdirect/assets/p245969_i_h3_ab.jpg',4,NULL),('SH023537470000','Chester Zoo is one of the most popular wildlife parks in Great Britain, attracting more than 1.8 million visitors annually. Through the use of cameras equipped with the latest technology, this BAFTA-nominated programme takes viewers behind the scenes of the zoo, capturing animal behaviour close up, as well as the relationships the animals share with their keepers. Highlights this season include an elephant who is pregnant with her ninth baby, the arrival of a giant anteater and a giraffe who is causing trouble.',NULL,'GBR','The Secret Life of the Zoo','https://s3.amazonaws.com/schedulesdirect/assets/p12538393_b_h3_aa.jpg',4,NULL),('SH023829450000','Based on Tom Taylor\'s Aurealis Award-winning graphic novel series, follow the incredible adventures of a brilliant team of underwater explorers, the Nektons, as they explore the mysterious depths of the ocean.',NULL,'GBR','The Deep','https://s3.amazonaws.com/schedulesdirect/assets/p12413800_i_h3_ab.jpg',4,NULL),('SH014205450000','Rachel Bailey and Janet Scott are two detective constables working for DCI Gill Murray on the Manchester Metropolitan Police\'s Major Incident Team, tasked with tracking down killers. Bailey is intuitive, funny and passionate about her job. But her impulsiveness occasionally leads Murray to consider her to be a liability. Scott is reliable and a thinker. The mother of two is a very private person who is in a marriage that has become little more than a convenient arrangement for her and her husband, Adrian. As a result of her marital problems, Scott has become sexually involved with her immediate boss, DS Andy Roper. Bailey and Scott draw on each other\'s strengths to deal with extreme and horrific crimes. One of the show\'s co-creators, Diane Taylor, is a retired detective inspector from the Major Incident Team of the Greater Manchester Police Force.',NULL,'GBR','Scott & Bailey','https://s3.amazonaws.com/schedulesdirect/assets/p8683464_b_h3_ae.jpg',4,NULL),('SH018107080000','A family discovers that its new home is haunted.',NULL,'GBR','The Haunted Hathaways','https://s3.amazonaws.com/schedulesdirect/assets/p10067642_i_h3_aa.jpg',4,NULL),('SH022690770000','Die viereinhalb Freunde: Das sind Kalle, Fred, Steffi, Radieschen und der eigenwillige Hund Dandy. Zusammen bilden sie das Detektivbüro `Kalle & Co\'. Und weil Kalle die Detektei gegründet hat, ist er auch der Chef. Er will immer wieder Fälle lösen.',NULL,'DEU','4 1/2 Freunde','https://s3.amazonaws.com/schedulesdirect/assets/p12135082_b_h3_aa.jpg',4,NULL),('SH012735490000','The syndicated ensemble action drama chronicles the adventures of a group of human mutants - led by the mysterious Adam Kane - possessing extraordinary powers as a result of genetic experimentation gone awry.',NULL,'GBR','Mutant X','https://s3.amazonaws.com/schedulesdirect/assets/p184771_b_h3_ab.jpg',4,NULL),('SH026348160000','Sir Tony Robinson explores northern England\'s iconic Coast to Coast route, stepping off the beaten track to reveal the fascinating religious and industrial heritage that underscores this near-200-mile stretch of lush and diverse countryside.',NULL,'GBR','Tony Robinson\'s: Coast To Coast','https://s3.amazonaws.com/schedulesdirect/assets/p13885643_b_h3_aa.jpg',4,NULL),('SH019774950000','Servicemagazin des NDR, mit Tipps und Tricks zu alltäglichen Themen.',NULL,'DEU','Mein Nachmittag','https://s3.amazonaws.com/schedulesdirect/assets/p10990972_i_h3_ab.jpg',4,NULL),('SH031547630000','Although Britain is in the midst of a housing crisis, there are also over 200,000 empty properties. Matt Allwright goes on a mission to seek out the UK\'s empty homes and help pair them with people who desperately need somewhere to live.',NULL,'GBR','The Empty Housing Scandal','https://s3.amazonaws.com/schedulesdirect/assets/p16533510_b_h3_aa.jpg',4,NULL),('SH013373850000','Taking inspiration from real life situations this part reality show, part soap opera showcases the lives of a glamorous group of young people, putting the home county of Essex on the map. The show\'s main cast, who have jobs in various lines of work, enjoy the local nightlife and bars as well as travelling abroad to summer destination favourites like Tenerife, Marbella and Barcelona to soak up the sun. The trials and tribulations of the lives, loves and scandals of this real-life group of Essex guys and gals are captured as the drama unfolds.',NULL,'GBR','The Only Way Is Essex','https://s3.amazonaws.com/schedulesdirect/assets/p8338096_i_h3_ag.jpg',4,NULL),('SH013110090000','Biographical discussions.',NULL,'GBR','Great Lives','https://s3.amazonaws.com/schedulesdirect/assets/p241403_b_h3_aa.jpg',4,NULL),('SH030180330000','Die Dokusoap porträtiert sechs Kioske in verschiedenen Städten Deutschlands, wie zum Beispiel in Köln und Kaiserslautern. Die Kamera fängt den Alltag von Kioskbesitzern und Stammkunden ein, zu dem Probleme, aber auch glückliche Momente gehören.',NULL,'DEU','Unser Kiosk - Trost und Prost im Viertel','https://s3.amazonaws.com/schedulesdirect/assets/p15772079_st_h3_aa.jpg',4,NULL),('SH034111460000','WWE\'s top male and female competitors from the UK battle to make an impact on their rise to fame.',NULL,'GBR','WWE NXT UK','https://s3.amazonaws.com/schedulesdirect/assets/p16108793_b_h3_ab.jpg',4,NULL),('SH034409410000','Stanley Tucci imagines the story of modern California as a movie screenplay, tracing the dramatic history of the state from Hollywood to Silicon Valley.',NULL,'GBR','The Californian Century','https://s3.amazonaws.com/schedulesdirect/assets/p17964263_st_h3_aa.jpg',4,NULL),('SH014721010000','Listen to the music from concerts around the world.',NULL,'GBR','Radio 3 in Concert','https://s3.amazonaws.com/schedulesdirect/assets/p8830314_st_h3_aa.jpg',4,NULL),('SH034424150000','Live ball-by-ball commentary of the ICC Women\'s T20 World Cup.',NULL,'GBR','Live: ICC Women\'s T20 World Cup Cricket','https://s3.amazonaws.com/schedulesdirect/assets/p17971966_st_h3_aa.jpg',4,NULL),('SH034331450000','The history of royal state visits, offering a glimpse into the lives of the British royal family, starting with the overseas tours of the 1940s and 50s.',NULL,'GBR','The Windsors: Secrets of the Royal Tours',NULL,4,NULL),('SH020904420000','`Conny\' Niedrig und `Bernie\' Kuhnt sind zwei Kriminalkommissare von der Kriminalpolizei Recklinghausen. Bei den authentisch nachgespielten Ermittlungen arbeiten die beiden im Team, um die Verbrechen rund um Duisburg zu bekämpfen.',NULL,'DEU','Niedrig und Kuhnt - Kommissare ermitteln','https://s3.amazonaws.com/schedulesdirect/assets/p452307_st_h3_aa.jpg',4,NULL),('SH025075440000','Taking up the mantle of the upcycling trend, presenters Henry Cole and Simon O\'Brien scour the country for old junk to refurbish into bespoke products. Old farm buildings and sheds can be chock-full of abandoned treasures that are worthy of reworking into sellable goods, usually without the owners even knowing. With a bit of elbow grease and some DIY magic, odd bits and bobs like a church pew, a petrol tank, an egg incubator or a clay pigeon trap can be touched up and sold for a tidy profit.',NULL,'GBR','Find It, Fix It, Flog It','https://s3.amazonaws.com/schedulesdirect/assets/p13263930_i_h3_aa.jpg',4,NULL),('SH019170130000','Located on the outskirts of Las Vegas, Steve Darnell and his band of oddballs and misfits create one-of-a-kind, Mad Max-style rat rods. With the demands of their quirky customers, the team at Welder Up strips and rebuilds vehicles from hidden treasure. In each episode, the automotive fabricators use their imaginations and creativity to create a unique vehicle for each unique owner. With details ranging from a shotgun gearshift to horseshoe gas pedals, the crew transforms discarded treasure and performance parts into bizarre, eccentric and truly one-of-a-kind rolling works of art.',NULL,'GBR','Sin City Motors','https://s3.amazonaws.com/schedulesdirect/assets/p10611121_st_h3_aa.jpg',4,NULL),('SH028309320000','Tick, Trick und Track werden von ihrem Onkel Donald bei ihrem Onkel Dagobert abgegeben, damit dieser zu einem Vorstellungsgespräch gehen kann. Die drei erleben mit ihrem Onkel Dagobert viele verschiedene und spannende Abenteuer.',NULL,'DEU','DuckTales','https://s3.amazonaws.com/schedulesdirect/assets/p14263798_b_h3_aa.jpg',4,NULL),('SH033080150000','For Owen Grady it was an easy job, deliver the dinosaurs and get paid. Nothing could possibly go wrong or that is what they thought.',NULL,'GBR','Jurassic World: The Secret Exhibit','https://s3.amazonaws.com/schedulesdirect/assets/p16123638_i_h3_aa.jpg',4,NULL),('SH019374110000','Die Moderatoren berichten über aktuelle Nachrichten und interessante Ereignisse.',NULL,'DEU','Newstime','https://s3.amazonaws.com/schedulesdirect/assets/p10838099_i_h3_ab.jpg',4,NULL),('SH012597200000','Dr Frasier Crane, a successful Boston therapist, moves to Seattle to get a new start on life; he has a radio talk show, which he uses to relay his wit and wisdom to others, but at times he struggles with his own problems with his salt-of-the-earth father, his pretentious brother and his friends and co-workers.',NULL,'GBR','Frasier','https://s3.amazonaws.com/schedulesdirect/assets/p183920_l_h3_aa.jpg',4,NULL),('SH019576250000','Der rothaarige Bombenexperte und ehemalige NYPD Agent Horatio Caine ist der Leiter der CSI-Abteilung in Miami. Dort ist er gemeinsam mit seinem Team für die Sicherheit der Stadt verantwortlich. Mittels Forensik, Gentechnik und Gerichtsmedizin lösen die Beamten des CSI knifflige Fälle. Horatio ist für sein fotografisches Gedächtnis und seinen trockenen Charme bekannt. An seiner Seite ermitteln die Ballistikerin Calleigh Duquesne, der belesene Tim Speedle, DNA-Spezialistin Alexx Woods und Eric Delko, Spezialist für die Auswertung von Fingerabdrücken sowie Experte im Drogenmillieu.',NULL,'DEU','CSI: Miami','https://s3.amazonaws.com/schedulesdirect/assets/p184820_i_h3_aa.jpg',4,NULL),('SH012606190000','Eagle-eyed technical experts prove there is no such thing as a perfect crime as they assemble the pieces every criminal leaves behind. Dramatic crime re-creations and, sometimes, part of the investigations are a staple of the series. Some of the re-creations include alternate versions of the crimes, which are disproved by science. The show\'s episodes follow each case from the initial investigation until it reaches its legal resolution.',NULL,'GBR','Medical Detectives','https://s3.amazonaws.com/schedulesdirect/assets/p439881_b_h3_ai.jpg',4,NULL),('SH034398560000','Quiz show with Jon Snow. Britain\'s best quiz teams face TV\'s toughest questions, on any topic, from science to sport. Intelli-Gents take on Assassins\' Guild.',NULL,'GBR','Jon Snow\'s Very Hard Questions','https://s3.amazonaws.com/schedulesdirect/assets/p17955814_st_h3_aa.jpg',4,NULL),('SH017036890000','Game show in which three contestants attempt to solve word puzzles to win prizes.',NULL,'GBR','Wheel of Fortune','https://s3.amazonaws.com/schedulesdirect/assets/p9809013_i_h3_aa.jpg',4,NULL),('SH027080810000','A billboard is zapped, bringing life to ToonMart Marty.',NULL,'GBR','ToonMarty','https://s3.amazonaws.com/schedulesdirect/assets/p14034935_b_h3_aa.jpg',4,NULL),('SH019979900000','Jimmie DeRamus betreibt mit seiner Familie seit über 25 Jahren das Pfandleihhaus `Silver Dollar Pawn & Jewelry Center\' in Louisiana. Sie finden ständig neue Kostbarkeiten und seltene Gegenstände. Es werden sogar Bustouren mit Führung angeboten.',NULL,'DEU','Cajun Pawn Stars','https://s3.amazonaws.com/schedulesdirect/assets/p8984592_i_h3_aa.jpg',4,NULL),('SH017703990000','Rachael Ray shares recipes that take a half hour or less.',NULL,'GBR','30-Minute Meals','https://s3.amazonaws.com/schedulesdirect/assets/p16656736_b_h3_ab.jpg',4,NULL),('SH024960890000','This observational documentary follows a police force in Essex, as they work towards protecting the people who live in the area. The episodes capture the footage as team members are called out to address criminal activity, which can include thefts, getaway drivers, domestic abuse cases and drug dealing. The officers are followed throughout the day, documenting every part of their role and revealing all aspects of modern policing.',NULL,'GBR','The Force: Essex','https://s3.amazonaws.com/schedulesdirect/assets/p13206256_b_h3_aa.jpg',4,NULL),('SH032912880000','Unterschiedliche Jahreszeiten prägen das Leben auf unserem Planeten. Ihr immerwährender Zyklus bestimmt das Leben von Pflanzen und Tieren, bringt neue Chancen und Gefahren.Der Frühling ist die Zeit des Neubeginns, des Werdens und Wachsens.',NULL,'DEU','Magie der Jahreszeiten','https://s3.amazonaws.com/schedulesdirect/assets/p17244064_st_h3_aa.jpg',4,NULL),('SH013319050000','Mike Biggs is a good-hearted Chicago police officer looking to lose weight. Molly Flynn is an instantly likeable fourth-grade teacher with a sense of humour about her size. The two meet one day when Mike speaks at an Overeaters Anonymous meeting and they fall in love, thanks in part to their mutual love of pie and the desire to resist it. Both face challenges in their quest to lose weight - Molly from her slender sister and mother and Mike at the diner where he frequently eats. But having found each other, they will try to help each other drop the pounds.',NULL,'GBR','Mike & Molly','https://s3.amazonaws.com/schedulesdirect/assets/p8130329_l_h3_aa.jpg',4,NULL),('SH012682880000','In a magical picture-book place, colourful characters have adventures and are read bedtime stories. Igglepiggle, Upsy Daisy and Makka Pakka care for each other unconditionally and do their best to keep everyone relaxed.',NULL,'GBR','In the Night Garden','https://s3.amazonaws.com/schedulesdirect/assets/p736166_i_h3_aa.jpg',4,NULL),('SH019769290000','Übertragungen von aktuellen Wettbewerben aus der Welt des Radsports.',NULL,'DEU','Radsport','https://s3.amazonaws.com/schedulesdirect/assets/p361948_i_h3_aa.jpg',4,NULL),('SH017976420000','Charlie and his family have recently moved from London to run a Bed and Breakfast by the sea.',NULL,'GBR','All At Sea','https://json.schedulesdirect.org/20141201/image/assets/p10216428_i_h3_aa.jpg',4,NULL),('SH029820540000','Gezeigt werden Dokumentationen zu verschiedenen Themen.',NULL,'DEU','phoenix plus','https://s3.amazonaws.com/schedulesdirect/assets/p15586965_st_h3_aa.jpg',4,NULL),('SH029035350000','TV-Koch Roland Trettl heißt Singles aus ganz Deutschland in seinem Restaurant willkommen. Die Kandidaten werden je nach Vorlieben und Abneigungen gepaart und lernen sich zum ersten Mal bei einem Dinner im Restaurant kennen.',NULL,'DEU','First Dates - Ein Tisch für zwei','https://s3.amazonaws.com/schedulesdirect/assets/p15179177_st_h3_aa.jpg',4,NULL),('SH029097970000','The leaders of the Nazis began as ordinary, charming, intelligent men. They were not insane. An exploration of the incredible transformation of ordinary men into Nazi criminals to discover what turned these men into monsters.',NULL,'GBR','True Evil: Making of a Nazi','https://s3.amazonaws.com/schedulesdirect/assets/p15212148_b_h3_aa.jpg',4,NULL),('SH016344000000','The ups and downs of a second-class writer.',NULL,'GBR','Such Rotten Luck','https://s3.amazonaws.com/schedulesdirect/assets/p9542517_st_h3_aa.jpg',4,NULL),('SH019855850000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Ostwestfalen-Lippe.',NULL,'DEU','Lokalzeit OWL','https://s3.amazonaws.com/schedulesdirect/assets/p11024436_b_h3_ab.jpg',4,NULL),('SH018977950000','The world\'s most famous cat and mouse duo carries out more non-stop slapstick battling.',NULL,'GBR','The Tom and Jerry Show','https://s3.amazonaws.com/schedulesdirect/assets/p10478306_i_h3_aa.jpg',4,NULL),('SH020848860000','Tradition collides with transformation in McCarthy, Alaska. The isolated town - once considered to be the state\'s version of \"Sin City\' flourished during the Gold Rush but is now home to roughly 40 people, a mix of mavericks, risk takers and rabble rousers willing to brave extreme conditions to live free. While some believe in continuing the town\'s frontier way of life, others feel the future of McCarthy depends on dragging it into the modern age. Long-standing resident Jeremy Keller fights to protect its roots, while Neil Darish has purchased multiple properties in town and plans to restore its vibrancy. `Edge of Alaska\" tells the story of a hinterland at a crossroads.',NULL,'GBR','Edge of Alaska','https://s3.amazonaws.com/schedulesdirect/assets/p10783330_l_h3_aa.jpg',4,NULL),('SH031944320000','Following the adventures and mishaps of the kindly but accident-prone Mr Magoo.',NULL,'GBR','Mr. Magoo','https://s3.amazonaws.com/schedulesdirect/assets/p16671396_i_h3_aa.jpg',4,NULL),('SH019468800000','Das Magazin informiert die Zuschauer etwa in Sachen Politik, Kultur und Alltagsleben.',NULL,'DEU','MDR Thüringen Journal','https://s3.amazonaws.com/schedulesdirect/assets/p10871952_b_h3_ab.jpg',4,NULL),('SH031948590000','Die Sendung zeigt Videos von lustigen Momenten aus dem Alltag verschiedener Familien.',NULL,'DEU','Einfach süß!','https://s3.amazonaws.com/schedulesdirect/assets/p16754959_st_h3_aa.jpg',4,NULL),('SH016566710000','The triumphs and tragedies of the Horton, Brady and DiMera families.',NULL,'GBR','Days of our Lives','https://s3.amazonaws.com/schedulesdirect/assets/p183909_l_h3_aa.jpg',4,NULL),('SH020082860000','In dieser Talkshow beantworten der Moderator und unterschiedlichen Experten die Fragen der Anrufer.',NULL,'DEU','Tagesgespräch','https://s3.amazonaws.com/schedulesdirect/assets/p11097051_b_h3_aa.jpg',4,NULL),('SH019783710000','Das perfekt eingespielte Team der Forensiker und Spurensucher um Mac Taylor aus New York deckt ungewöhnliche Mordfälle auf. Dabei entgeht den geschulten Augen der Ermittler nichts, und sie entlarven stets geschickt die wahren Täter.',NULL,'DEU','CSI: New York','https://s3.amazonaws.com/schedulesdirect/assets/p185030_i_h3_aa.jpg',4,NULL),('SH030640750000','Children\'s comedy series.',NULL,'GBR','Diddy Bits','https://s3.amazonaws.com/schedulesdirect/assets/p16064072_i_h3_aa.jpg',4,NULL),('SH012791830000','Stan Smith is a CIA agent painfully dedicated to homeland security. His home life includes doting wife Francine, a ditzy housewife, liberal daughter Hayley and socially awkward teenaged son Steve. Also living in the family\'s Langley Falls, Va., home are Klaus, a goldfish with the brain of an East German Olympic ski jumper, and Roger, an escaped alien from Area 51, who Stan houses in defiance of his employer due to owing Roger a \"life debt\". Sounds just like the typical American family, right? Maybe not.',NULL,'GBR','American Dad!','https://s3.amazonaws.com/schedulesdirect/assets/p185040_i_h3_ab.jpg',4,NULL),('SH012612570000','Featuring TV\'s worst DIY expert, a troupe of acrobats, and a weather presenter.',NULL,'GBR','Gigglebiz','https://s3.amazonaws.com/schedulesdirect/assets/p8104582_i_h3_aa.jpg',4,NULL),('SH020303920000','In den kältesten Regionen Nordamerikas gibt es eine der ungewöhnlichsten Transportbranchen der Welt. In diesen Gegenden können einige Orte und Firmen nur innerhalb weniger Monate mit Fahrzeugen erreicht werden - die Stunde der `Ice Road Truckers\'.',NULL,'DEU','Ice Road Truckers - Gefahr auf dem Eis','https://s3.amazonaws.com/schedulesdirect/assets/p185608_i_h3_ab.jpg',4,NULL),('SH018994710000','In the hope of winning a national title, the A-Troupe dancers are led by team captain Emily and head choreographer Chris. Day in and day out, the group trains for the regional competition at The Next Step Dance Studio. When a very talented girl, Michelle, joins the team, Emily feels threatened. With her arrival at the studio, secrets, emotions and cliques are exposed and challenged. The championships are just around the corner, so the team must come together and resolve its problems if the members are to have any chance of winning the national title.',NULL,'GBR','The Next Step','https://s3.amazonaws.com/schedulesdirect/assets/p9732253_b_h3_aa.jpg',4,NULL),('SH014480940000','Marshal Matt Dillon (then-newcomer James Arness) tries to prevent lawlessness from overtaking Dodge City, Kansas. Helping to keep him grounded are saloon proprietor Miss Kitty Russell and Doc Adams. The television series grew out of the long-running radio serial of the same name, although for a short time they were both on the airwaves.',NULL,'GBR','Gunsmoke','https://s3.amazonaws.com/schedulesdirect/assets/p184305_l_h3_aa.jpg',4,NULL),('SH019752360000','Die sechs heldenhaften Hunde Chase, Marshall, Rocky, Zuma, Rubble und Skye führen mit Hilfe ihres Trainers Ryder verschiedene Missionen in ihrem Wohnort durch. Von Katzen auf Bäumen bis zu Zügen, die feststecken, ist alles dabei.',NULL,'DEU','PAW Patrol','https://s3.amazonaws.com/schedulesdirect/assets/p10077400_b_h3_ab.jpg',4,NULL),('SH019568770000','In jeder Sendung sucht Jean Pierre Kraemer, der Auto-Profi, mit seinem Team einen passenden Gebrauchtwagen für einen Zuschauer. Sie geben wertvolle Tipps, verraten Tricks der Verkäufer und beweisen, dass man gute Gebrauchtwagen günstig kaufen kann.',NULL,'DEU','Die PS Profis - Mehr Power aus dem Pott','https://s3.amazonaws.com/schedulesdirect/assets/p10907391_st_h3_aa.jpg',4,NULL),('SH019022550000','Most pawn shops would never see a customer walk in to pawn a Lamborghini, but not this one. That is the type of item customers bring into Prestige Pawnbrokers, which specialises in high-end pawn transactions. Expensive and exclusive items are the norm for the staffers at the Surrey-based shop. Because they\'re dealing with high-priced items, the staff have to make sure the items they\'re buying are authentic rather than just cheap knock-offs. In addition to expensive cars, high-end jewellery, handbags and even a mini-submarine are items that are brought to Prestige.',NULL,'GBR','Posh Pawn','https://s3.amazonaws.com/schedulesdirect/assets/p10682829_b_h3_aa.jpg',4,NULL),('SH012667430000','Sam Malone, a former relief pitcher for the Boston Red Sox, owns and runs Cheers, a cosy bar in Boston. Somewhat snobby, beautiful and intelligent Diane Chambers - forced to become a waitress when her fiance jilts her - constantly bickers with Sam. Eventually, they fall in love. Several wacky characters make the bar their home-away-from-home, including sarcastic waitress Carla, beer-loving accountant Norm and know-it-all letter carrier Cliff. A few seasons later, after Diane leaves Boston, Sam sells the bar to buy a boat and sail around the world. But his boat sinks and he returns to bartending. Rebecca Howe, the new (more ambitious) manager, hires him back. They love to hate each other and eventually get together as well.',NULL,'GBR','Cheers','https://s3.amazonaws.com/schedulesdirect/assets/p183897_l_h3_aa.jpg',4,NULL),('SH014354640000','Rick Dale, first introduced as a restorer on \"Pawn Stars\', gets his own History show with `American Restoration\'. The owner of Rick\'s Restorations in Las Vegas, Dale and his team painstakingly restore pieces of America\"s past, from an old golf cart to a giant gas pump from the 1940s. Along the way, they learn bits and pieces of history about the objects they restore and come up with inventive ways to get the job done.',NULL,'GBR','American Restoration','https://s3.amazonaws.com/schedulesdirect/assets/p8300528_l_h3_aa.jpg',4,NULL),('SH023973730000','The Powerpuff Girls have to protect Townsville from villains who want to take over the metropolis. The sisters have to manage their homework with their superhero activities.',NULL,'GBR','The Powerpuff Girls','https://s3.amazonaws.com/schedulesdirect/assets/p12656123_b_h3_aa.jpg',4,NULL),('SH018661100000','Dr. Temperance `Bones\' Brennan ist eine grandiose forensische Anthropologin am staatlichen Jeffersonian Institute in Washington. Der Umgang mit ihren Mitmenschen fällt ihr allerdings recht schwer. Gemeinsam mit dem Ermittler und ehemaligen Scharfschützen Seeley Booth untersucht sie für das FBI Fälle, die einige Jahrzehnte oder noch weitaus länger zurückliegen. Aus diesem Grund sind die Beteiligten meist schon tot und Knochen sind oft die einzigen Zeugen.',NULL,'DEU','Bones - Die Knochenjägerin','https://s3.amazonaws.com/schedulesdirect/assets/p185129_i_h3_ae.jpg',4,NULL),('SH025063190000','Ärzte und Pflegepersonal eines Krankenhauses geben Einblick in ihren beruflichen Alltag. Doch neben den professionellen Höhen und Tiefen werden auch persönliche Schicksale dokumentiert. Gelegentlich muss die Polizei zur Unterstützung gerufen werden.',NULL,'DEU','Klinik am Südring','https://s3.amazonaws.com/schedulesdirect/assets/p13254823_st_h3_aa.jpg',4,NULL),('SH019694470000','Magazin für Vorschulkinder, das seine Zuschauer einlädt, zu den Themen einer Sendung zu malen und zu basteln. Für ausgewählte Einsendungen gibt es eine Online-Galerie, in der die Fans die Bilder von Kindern bestaunen können.',NULL,'DEU','ENE MENE BU - und dran bist du','https://s3.amazonaws.com/schedulesdirect/assets/p10958956_b_h3_aa.jpg',4,NULL),('SH012659190000','This popular British show follows the raucous adventures of the Larkin clan and the local tax collector. Ma and Pop Larkin have a large brood, living in 1950s rural England. They have six children -- eldest daughter Mariette is played by a young Catherine Zeta-Jones. Mariette entrances tax collector Cedric, and the Larkins introduce Cedric - whom they call Charlie - to their way of life, which he finds much more compelling than work at the office.',NULL,'GBR','The Darling Buds of May','https://s3.amazonaws.com/schedulesdirect/assets/p363484_i_h3_aa.jpg',4,NULL),('SH012691630000','Members of the 4077th Mobile Army Surgical Hospital care for the injured during the Korean War use humor to escape the horror and depression of the situation. Among the 4077\'s people are Capts Benjamin \"Hawkeye\' Pierce and `Trapper John` McIntire, Majs Margaret `Hot Lips\' Houlihan and Frank Burns, and Cpl Walter `Radar\' O\"Reilly.',NULL,'GBR','M*A*S*H','https://s3.amazonaws.com/schedulesdirect/assets/p183880_l_h3_aa.jpg',4,NULL),('SH019855800000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Bonn.',NULL,'DEU','Lokalzeit aus Bonn','https://s3.amazonaws.com/schedulesdirect/assets/p11024418_b_h3_ab.jpg',4,NULL),('SH033047100000','Interviews, discussion and analysis from Westminster, including the latest on Brexit with Andrew and guests.',NULL,'GBR','The Andrew Neil Show','https://s3.amazonaws.com/schedulesdirect/assets/p17329488_i_h3_aa.jpg',4,NULL),('SH019559820000','Der erfolgreiche und angesehene Krimiautor und alleinerziehender Vater Richard Castle stellt schockiert fest, dass zwei Morde tatsächlich nach dem Vorbild seines Romans verübt wurden. Von da an will er nicht nur über erfundene Verbrechen schreiben, sondern der Polizei und insbesondere der Ermittlungsbeamtin Kate Beckett bei der Aufklärung verschiedener Fälle helfen. Die beiden bilden ein ausgesprochen effektives Ermittlerteam, auch wenn Castle eine Auge auf Kate geworfen hat, die gegen seinen Charme immun zu sein scheint.',NULL,'DEU','Castle','https://s3.amazonaws.com/schedulesdirect/assets/p188601_l_h3_aa.jpg',4,NULL),('SH019433120000','Die Doku-Soap begleitet Mädchen, die in jungen Jahren zu Müttern werden. Die jungen Frauen werden während der Schwangerschaft sowie nach der Geburt begleitet.',NULL,'DEU','Teenie-Mütter - Wenn Kinder Kinder kriegen','https://s3.amazonaws.com/schedulesdirect/assets/p10858728_st_h3_aa.jpg',4,NULL),('SH019360070000','Im Leben der Familie Simpson ist immer etwas los. Der liebenswerte, aber vom Pech verfolgte, schusselige und ziemlich faule Vater Homer Simpson arbeitet in einem Atomkraftwerk und versucht, seine Familie bestmöglich über Wasser zu halten. Seine Frau Marge ist als Mutter und Hausfrau die gute Seele im Hause Simpson und versucht stets, sowohl in der Familie als auch in der Gesellschaft die moralischen Grundwerte zu verbessern. Die Eltern haben alle Hände voll zu tun mit ihren drei Kindern. Bei dem zehnjährigen Bart weiß man nie, welchen Streich er als nächstes ausheckt. Die achtjährige hochintelligente und ehrgeizige Lisa ist eine Weltverbesserin, die in der Schule oft als Streber gehänselt wird. Vervollständigt werden die Simpsons von Baby Maggie. Das Leben der Familie und der anderen Bewohner der US-Kleinstadt Springfield ist geprägt vom alltäglichen Chaos und ganz normalen Wahnsinn der Gesellschaft.',NULL,'DEU','Die Simpsons','https://s3.amazonaws.com/schedulesdirect/assets/p183872_i_h3_ac.jpg',4,NULL),('SH032181420000','Clive Anderson and Mary-Ann Ochota\'s journey through Britain\'s strange and unusual past, exploring everything from the unsettling to the simply surprising, from zombies and mummification to witchcraft.',NULL,'GBR','Mystic Britain','https://s3.amazonaws.com/schedulesdirect/assets/p16866129_st_h3_aa.jpg',4,NULL),('SH027326810000','A woman in search of a new job winds up as the housekeeper for the son she gave up for adoption decades earlier.',NULL,'GBR','That\'s My Boy','https://s3.amazonaws.com/schedulesdirect/assets/p502309_b_h3_aa.jpg',4,NULL),('SH022752910000','In der Sketchcomedy sollen absurde und komische Geschichten hinter historischen Ereignissen gezeigt werden. Die Zuschauer werden auf eine Reise durch die Geschichte der Menschheit genommen, von den Urzeitmenschen bis zur Neuzeit.',NULL,'DEU','Sketch History','https://s3.amazonaws.com/schedulesdirect/assets/p12164715_b_h3_aa.jpg',4,NULL),('SH012692250000','Drama series following the adventures of a young man and his incredible talking car, KITT.',NULL,'GBR','Knight Rider','https://s3.amazonaws.com/schedulesdirect/assets/p183977_l_h3_aa.jpg',4,NULL),('SH021881570000','A tyrant is defined as a ruler who exercises absolute power oppressively or brutally. That definition fits Henry VIII, at least by the end of his reign as king of England. Henry\'s ascension to the throne was greeted with much rejoicing in 1509. The nation was filled with hope. But by the time he died nearly four decades after taking the throne, he had the reputation of being a tyrannical and ruthless monarch. In this documentary series, noted historian and leading Tudor authority Dr David Starkey examines the life of the monarch and how he went from providing hope to England to being considered a tyrant.',NULL,'GBR','Henry VIII: The Mind of a Tyrant','https://json.schedulesdirect.org/20141201/image/assets/p3633992_i_h3_aa.jpg',4,NULL),('SH012906520000','Three female police officers are recruited to work for Charles Townsend Agency as private investigators. Their boss, Charlie, who nicknames them \"Angels\", never meets them in person, but gives them their assignments via a speakerphone.',NULL,'GBR','Charlie\'s Angels','https://s3.amazonaws.com/schedulesdirect/assets/p184008_l_h3_aa.jpg',4,NULL),('SH019580070000','Tägliches Boulevard-Magazin im hr-Fernsehen.',NULL,'DEU','maintower','https://s3.amazonaws.com/schedulesdirect/assets/p10911548_b_h3_aa.jpg',4,NULL),('SH016397710000','Bissig, ironisch, respektlos und bisweilen albern nimmt die Satiresendung die Nachrichtenthemen der Woche aufs Korn. Im Stil eines Nachrichtensprechers kommentiert Moderator Oliver Welke die Neuigkeiten aus Politik und Gesellschaft.',NULL,'DEU','heute-show','https://s3.amazonaws.com/schedulesdirect/assets/p9563374_b_h3_aa.jpg',4,NULL),('SH013032490000','Simon and Dave get back on their bikes and visit a different county in each episode.',NULL,'GBR','The Hairy Bikers\' Food Tour of Britain','https://s3.amazonaws.com/schedulesdirect/assets/p8200524_i_h3_aa.jpg',4,NULL),('SH019855810000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Südwestfalen.',NULL,'DEU','Lokalzeit Südwestfalen','https://s3.amazonaws.com/schedulesdirect/assets/p11024424_b_h3_aa.jpg',4,NULL),('SH028765600000','Polizisten und andere Ermittler werfen einen Blick zurück auf Ereignisse in ihrem Berufsleben. Unter anderem erzählen sie von spektakulären Verfolgungsjagden, sprechen über unvorhergesehene Geständnisse und dreiste Betrugsfälle.',NULL,'DEU','Achtung Kontrolle! Wir kümmern uns drum','https://s3.amazonaws.com/schedulesdirect/assets/p3592113_i_h3_ab.jpg',4,NULL),('SH016391700000','Viele Ereignisse des 20. Jahrhunderts sind nicht bis ins letzte geklärt. Noch immer gibt es spannende Fragen vergangener Jahrzehnte. Das Magazin im ZDF, enthüllt Geheimnisse der Geschichte.',NULL,'DEU','ZDF-History','https://s3.amazonaws.com/schedulesdirect/assets/p9561670_b_h3_af.jpg',4,NULL),('SH018574310000','Dr. Gregory House ist ein eigenwilliger Spezialist für Diagnostik am fiktiven Princeton-Plainsboro Teaching Hospital. Sein Umgang sowohl mit seinen Kollegen als auch mit Patienten ist schroff und schonungslos direkt, was häufig zu Konflikten führt. Als Mediziner jedoch gilt der brilliante Diagnostiker und Spezialist für Infektionskrankheiten als einer der besten seiner Zunft. Gemeinsam mit seinem Team junger Ärzte stellt er sich jeder, oft scheinbar unlösbaren, medizinischen Herausforderung. In detektivischer Kleinarbeit und oft mit unkonventionellen Methoden kommt er den seltsamsten Krankheiten auf die Spur und rettet damit Leben.',NULL,'DEU','Dr House','https://s3.amazonaws.com/schedulesdirect/assets/p185044_i_h3_ab.jpg',4,NULL),('SH033199040000','Rav Wilding meets with officers from around the UK as they relive some of their most intense cases. These cases had an impact of entire communities and defined many careers. Plus, witnesses, victims and relatives share their experiences.',NULL,'GBR','British Police: Our Toughest Cases','https://s3.amazonaws.com/schedulesdirect/assets/p17394324_b_h3_aa.jpg',4,NULL),('SH029939730000','This is home to the Monchhichi, fun-loving and big-hearted little creatures that have built their houses in harmony with the Tree. The Monchhichi spend their time having fun, working hard and looking after the Tree.',NULL,'GBR','Monchhichi','https://s3.amazonaws.com/schedulesdirect/assets/p15262196_i_h3_ab.jpg',4,NULL),('SH027759710000','Comedy clip show hosted by Iain Lee. Footage of big tools used by even bigger tools, the hard knock life, and the annual Olymbricks. As always what goes up must come down!',NULL,'GBR','Caught in the Act: Dumb Builders','https://s3.amazonaws.com/schedulesdirect/assets/p14538293_st_h3_aa.jpg',4,NULL),('SH012863380000','Join the team on their foray into sports news, tournaments and competitions across the globe.',NULL,'GBR','TransWorld Sport','https://s3.amazonaws.com/schedulesdirect/assets/p516949_b_h3_aa.jpg',4,NULL),('SH032269450000','Action from the American professional wrestling promotion founded in 2019.',NULL,'GBR','All Elite Wrestling: Dynamite','https://s3.amazonaws.com/schedulesdirect/assets/p16928738_st_h3_aa.jpg',4,NULL),('SH013556670000','Coverage from the top tier of the National League System of non-league football.',NULL,'GBR','National League Football','https://s3.amazonaws.com/schedulesdirect/assets/p8409966_b_h3_ac.jpg',4,NULL),('SH019764290000','Dramatische Liebesgeschichten vor den schönen Kulissen der norwegischen Fjorden.',NULL,'DEU','Liebe am Fjord','https://s3.amazonaws.com/schedulesdirect/assets/p9477774_i_h3_aa.jpg',4,NULL),('SH012972530000','Chamber concert recordings from all over the UK and beyond.',NULL,'GBR','Radio 3 Lunchtime Concert','https://s3.amazonaws.com/schedulesdirect/assets/p302314_i_h3_aa.jpg',4,NULL),('SH019462120000','Die MDR-Wetterfrösche werfen einen Blick auf das aktuelle Wetter und die Aussichten.',NULL,'DEU','Wetter für 3','https://s3.amazonaws.com/schedulesdirect/assets/p10869451_b_h3_ac.jpg',4,NULL),('SH027913340000','Shining a light on the incredible true stories of people who have long sought out lost family members without success, and finally with the help of experts have the chance to reunite with their estranged loved ones.',NULL,'GBR','Long Lost Family','https://s3.amazonaws.com/schedulesdirect/assets/p12863232_i_h3_aa.jpg',4,NULL),('SH017030430000','Das Leben in einer Berliner WG bringt viel Drama mit sich. Liebe, Eifersucht, und Partys stehen für die Bewohner an erster Stelle. Die Charaktere, die zusammentreffen, können unterschiedlicher nicht sein und dennoch leben sie unter einer Decke.',NULL,'DEU','Berlin - Tag & Nacht','https://s3.amazonaws.com/schedulesdirect/assets/p9805853_st_h3_aa.jpg',4,NULL),('SH012911720000','Drunk drivers and car thieves, among other miscreants, are no match for the high-speed police interception units profiled in this documentary series. Officers from a number of law enforcement units dotted around the United Kingdom are shown patrolling their jurisdictions and keeping the streets as safe as possible. Cameras capture intense motorway chases and interactions with suspects, and also lighter moments that give viewers a sense of the officers\' personalities away from their pressure-filled jobs.',NULL,'GBR','Police Interceptors','https://s3.amazonaws.com/schedulesdirect/assets/p8162912_i_h3_aa.jpg',4,NULL),('SH019763560000','`Kunscht!\' ist das wöchentliche Kulturmagazin des SWR Fernsehens: Kabarettist Lars Reichow präsentiert jeden Donnerstag Aktuelles aus dem vielfältigen Kulturgeschehen im Südwesten.',NULL,'DEU','Kunscht!','https://json.schedulesdirect.org/20141201/image/assets/p10986379_i_h3_aa.jpg',4,NULL),('SH012615270000','Simon Templar is the Saint. He robs from the criminally rich and gives to the poor and deserving -- while keeping a nice percentage for himself. His strict moral code makes him target those who got their wealth through nefarious means -- corrupt politicians, warmongers and the like. His criminal activities put him at odds with the law, but his wit, charm and intelligence tend to keep him one step ahead of the police.',NULL,'GBR','The Saint','https://s3.amazonaws.com/schedulesdirect/assets/p184122_i_h3_aa.jpg',4,NULL),('SH017844120000','Der Astrophysiker Harald Lesch widmet sich komplexen wissenschaftlichen Fragen, um die Antworten möglichst verständlich und humorvoll wiederzugeben. Dabei geht er auch auf Bemerkungen seines Kameramannes ein, der manchmal nachhaken muss.',NULL,'DEU','Frag den Lesch','https://json.schedulesdirect.org/20141201/image/assets/p10158783_i_h3_aa.jpg',4,NULL),('SH016398190000','Die wöchentliche Nachrichtensendung wirft einem Blick auf das aktuelle Geschehen in Europa mit Meldungen von Politik, Wirtschaft, Sport und Kultur.',NULL,'DEU','heute - in Europa','https://s3.amazonaws.com/schedulesdirect/assets/p9563644_i_h3_aa.jpg',4,NULL),('SH030044550000','\"Trace of Evil\' explores and reconstructs some of the most interesting and startling criminal cases from the UK, Ireland, the United States and Canada of the past twenty years. Detectives and law enforcers used to rely on a tool-kit consisting of a magnifying glass, a fingerprint dusting kit, and instinct developed from years of experience, in order to crack a case. In contemporary times, the twenty-first century investigator has an arsenal of modern techniques at their disposal. When crime happens, it always leaves a trace, and `Trace of Evil\" takes a closer look without having to resort to the use of a magnifying glass.',NULL,'GBR','Evidence of Evil','https://s3.amazonaws.com/schedulesdirect/assets/p15401610_i_h3_aa.jpg',4,NULL),('SH013133670000','Music and celebrity chat with special guests, music and a host of other features.',NULL,'GBR','Steve Wright in the Afternoon','https://json.schedulesdirect.org/20141201/image/assets/p8238492_i_h3_aa.jpg',4,NULL),('SH028984620000','Dr Dylan Reinhart is a former CIA operative who\'s created a quieter life for himself as a professor and author of a best-selling book on abnormal behaviour. When tenacious and resourceful NYPD detective Lizzie Needham approaches him to help her solve a serial killer case, he taps into his old skill set and reaches out to a CIA friend who has access to invaluable top-secret intelligence. As Dylan gets lured back into the adrenaline-filled world of law enforcement, he and Lizzie realize that, together, they make the perfect team.',NULL,'GBR','Instinct','https://s3.amazonaws.com/schedulesdirect/assets/p14159105_b_h3_aa.jpg',4,NULL),('SH012608630000','\"New Tricks\" dramatises the work of the Unsolved Crime and Open Case Squad, led by Detective Superintendent Sandra Pullman and three previously retired police officers: Gerry Standing, Jack Halford and Brian Lane, whom Pullman recruited to reinvestigate unsolved crimes.',NULL,'GBR','New Tricks','https://s3.amazonaws.com/schedulesdirect/assets/p451597_i_h3_ac.jpg',4,NULL),('SH032380950000','In dieser Dokumentation werden die engagierten Hunderetter der englischen Tierschutzorganisation RSPCA begleitet, die tagtäglich ihr aller Bestes geben, um Hunde aus dramatischen Notsituationen zu befreien.',NULL,'DEU','Die Hunderetter','https://s3.amazonaws.com/schedulesdirect/assets/p10243572_i_h3_ax.jpg',4,NULL),('SH019560590000','Der Jurist Alexander Hold und seine Kollegen werden bei ihrem Arbeitsalltag begleitet. Auch im Privaten finden sie sich zwischen den Fronten wieder. Sie müssen alltägliche Streitigkeiten schlichten und für Gerechtigkeit sorgen.',NULL,'DEU','Im Namen der Gerechtigkeit - Wir kämpfen für Sie!','https://s3.amazonaws.com/schedulesdirect/assets/p10904193_st_h3_aa.jpg',4,NULL),('SH012857430000','A look behind the scenes at how everyday things are manufactured. Typically each episode includes three to four products featured, with a mix consisting of common items such as jeans, aluminium foil and cereal, and less predictable ones like wax figurines, braille typewriters and pinball machines.',NULL,'GBR','How It\'s Made','https://s3.amazonaws.com/schedulesdirect/assets/p12550197_b_h3_aa.jpg',4,NULL),('SH016394870000','Das News- und Boulevardmagazin präsentiert emotionale Geschichten über Menschen in Deutschland und Deutsche in aller Welt. Crime- und Blaulicht-Storys gehören ebenso dazu wie Alltagstests, Lifestyle und Geschichten zum Schmunzeln.',NULL,'DEU','hallo deutschland','https://s3.amazonaws.com/schedulesdirect/assets/p9562482_b_h3_ab.jpg',4,NULL),('SH012575570000','Seasoned adventurer and survivalist Bear Grylls deliberately \"strands\" himself in remote, inhospitable locales and makes his way back to civilisation to provide in-depth advice for travellers who may find themselves lost on what was expected to be a routine hike or other trip. Some of the things Grylls does include climbing cliffs, parachuting from helicopters and running through a forest fire. \"Creepy crawlies\" are also frequently part of Grylls; diet. In addition to showcasing his survival skills, Grylls shares with viewers tales of adventurers stranded or killed in the wilderness.',NULL,'GBR','Bear Grylls: Born Survivor','https://s3.amazonaws.com/schedulesdirect/assets/p185311_i_h3_aa.jpg',4,NULL),('SH022855020000','Der populäre Anwalt Ingo Lenßen berät in seiner Call-In-Show die Zuschauer in Rechtsbelangen. Die Hotline ist für die Anrufer kostenlos und der Jurist nimmt sich Zeit, um die Nöte und Sorgen möglichst schnell und effektiv aufzulösen.',NULL,'DEU','Lenßen Live','https://s3.amazonaws.com/schedulesdirect/assets/p12214895_st_h3_ab.jpg',4,NULL),('SH014875680000','The celebrity version of \"Antiques Road Trip\" sees two antiques experts paired up with celebrity guests as they scour for antiques on a road trip around the UK. Each episode features different expert and celebrity pairs who search for valuable items at bargain-basement prices. They then head to auction where the collectibles are put up for bid, with any profits made at auction donated to charity.',NULL,'GBR','Celebrity Antiques Road Trip','https://s3.amazonaws.com/schedulesdirect/assets/p8894140_i_h3_ac.jpg',4,NULL),('SH012839130000','London\'s Burning is centred on the members of the Blue Watch team at a London fire station. The team of dedicated professionals are united by common danger and shared camaraderie.',NULL,'GBR','London\'s Burning','https://s3.amazonaws.com/schedulesdirect/assets/p431882_b_h3_aa.jpg',4,NULL),('SH016204330000','Twins Dr Chris and Dr Xand van Tulleken explore their way through the world of medicine and biology.',NULL,'GBR','Operation Ouch!','https://s3.amazonaws.com/schedulesdirect/assets/p9487439_i_h3_aa.jpg',4,NULL),('SH012671360000','The adventures of a young aardvark and his friends.',NULL,'GBR','Arthur','https://s3.amazonaws.com/schedulesdirect/assets/p184303_i_h3_aa.jpg',4,NULL),('SH019684830000','Micky Maus und seine Freunde stellen ihre ersten Werke aus den 1930er bis 1950er Jahren vor.',NULL,'DEU','Micky Maus','https://json.schedulesdirect.org/20141201/image/assets/p9980369_i_h3_aa.jpg',4,NULL),('SH019561440000','In der Dokumentationsreihe jagen die Kommissare Alexandra Rietz, Michael Naseband und Gerrit Grass gemeinsam mit ihren Kollegen Kriminelle aller Art. Dabei sind die Fälle zwar frei erfunden, jedoch bleiben sie immer realitätsnah.',NULL,'DEU','K11 - Kommissare im Einsatz','https://s3.amazonaws.com/schedulesdirect/assets/p9658257_st_h3_aa.jpg',4,NULL),('SH022736210000','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps. Die Moderatoren berichten über alles, was in Sachsen, Sachsen-Anhalt und Thüringen für Schlagzeilen sorgt und informieren über Aktuelles.',NULL,'DEU','MDR um 4: Gäste zum Kaffee','https://s3.amazonaws.com/schedulesdirect/assets/p12155946_b_h3_aa.jpg',4,NULL),('SH019700620000','Übertragungen von aktuellen Wettbewerben aus der Welt des Darts.',NULL,'DEU','Darts','https://s3.amazonaws.com/schedulesdirect/assets/p644283_b_h3_aa.jpg',4,NULL),('SH013661630000','Dream adventures turn into hellish nightmares for the travellers featured in this series, which recounts through firsthand interviews and re-enactments terror-filled experiences of being arrested in a foreign country, usually for drug smuggling, and how they coped with the resulting lengthy prison terms. Viewers also hear from people directly involved with the arrests, whether it\'s the undercover agents gathering the evidence against the suspects, or the people making the drug dealing offers.',NULL,'GBR','Banged up Abroad','https://s3.amazonaws.com/schedulesdirect/assets/p209360_i_h3_ag.jpg',4,NULL),('SH019302540000','The adventures of a puppy named Pip and his best friend Alba, a kitten, who live in Salty Cove.',NULL,'GBR','Pip Ahoy!','https://s3.amazonaws.com/schedulesdirect/assets/p10810523_i_h3_aa.jpg',4,NULL),('SH029892580000','Oma kocht am besten zeigt nicht nur vergessene Rezepte, sondern erzählt auch von der Verbindung zwischen den Generationen. Wenn Omas und Enkel übers Essen reden, spürt man: Es sind oft die gemeinsamen Mahlzeiten, bei denen Familienbande gefestigt w.',NULL,'DEU','Oma kocht am besten','https://s3.amazonaws.com/schedulesdirect/assets/p15625071_b_h3_aa.jpg',4,NULL),('SH012606060000','What hasn\'t Britain\'s longest-running soap covered since its 1960 debut? Heck, even Prince Charles has appeared onscreen. The residents of Coronation Street are ordinary, working-class folk, and the show follows them through regular social and family interactions -- with the occasional soap-worthy murder plot thrown in for good measure.',NULL,'GBR','Coronation Street','https://s3.amazonaws.com/schedulesdirect/assets/p183997_l_h3_aa.jpg',4,NULL),('SH015217780000','Skiing action and highlights from the FIS Alpine Ski World Cup.',NULL,'GBR','FIS World Cup Alpine Skiing','https://s3.amazonaws.com/schedulesdirect/assets/p9034928_b_h3_aa.jpg',4,NULL),('SH013391170000','Join the police on their mission to solve baffling crimes. Investigates modern detective techniques.',NULL,'GBR','Crime Stories','https://s3.amazonaws.com/schedulesdirect/assets/p8344922_i_h3_aa.jpg',4,NULL),('SH019396740000','Die Nachrichtensendung bereitet täglich das aktuelle Tagesgeschehen auf.',NULL,'DEU','Arte Journal','https://s3.amazonaws.com/schedulesdirect/assets/p10839434_b_h3_aa.jpg',4,NULL),('SH012980450000','Classic chart rundowns from the past 40 years.',NULL,'GBR','Pick of the Pops','https://s3.amazonaws.com/schedulesdirect/assets/p275446_b_h3_ab.jpg',4,NULL),('SH025233080000','Engineer Rob Bell sets out on a journey to discover how six of Britain\'s most iconic bridges were designed, and reveals the sweat, sacrifice and scandals that went into their construction.',NULL,'GBR','Britain\'s Greatest Bridges','https://s3.amazonaws.com/schedulesdirect/assets/p13342393_b_h3_aa.jpg',4,NULL),('SH019711840000','Die Sendung zeigt schwimmende Meisterwerke, wie milliardenschwere Kreuzfahrtschiffe, geheime U-Boote, Schwimmbagger und schwimmende Krankenhäuser. Dabei werden die technischen Eigenschaften beleuchtet und die Besatzung gezeigt.',NULL,'DEU','Superschiffe','https://s3.amazonaws.com/schedulesdirect/assets/p264027_i_h3_aa.jpg',4,NULL),('SH033425310000','Join Janet for our Four Days of Freedom Event! Tune in for an inspirational hour of stamping as we bring you extra savings on this spectacular range of stamps bought to you by AALL and Create!',NULL,'GBR','AALL and Create','https://s3.amazonaws.com/schedulesdirect/assets/p17511050_st_h3_aa.jpg',4,NULL),('SH027149170000','A behind-the-scenes look into some of the best and most animal-friendly vets practices in the UK.',NULL,'GBR','The Pets Factor','https://s3.amazonaws.com/schedulesdirect/assets/p14240321_st_h3_aa.jpg',4,NULL),('SH023612070000','Science sleuths Hannah Fry and Adam Rutherford investigate everyday mysteries sent by listeners.',NULL,'GBR','The Curious Cases of Rutherford and Fry','https://s3.amazonaws.com/schedulesdirect/assets/p12575469_st_h3_aa.jpg',4,NULL),('SH018485470000','Zusammenfassung der wichtigsten Ereignisse des abgelaufenen Tages.',NULL,'DEU','Nachtmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p10432269_b_h3_ab.jpg',4,NULL),('SH017909440000','Many people think building their dream home is out of their budget. But it doesn\'t have to be. As far as architectural designer Charlie Luxton is concerned, it doesn\'t have to break the bank, and he wants to prove it. As presenter of \"Building the Dream\', Luxton works with potential homeowners looking to turn a plot of land into their dream home that suits their lifestyles but doesn\'t cost too much to build. He helps them get the best out of their designs and introduces them to others who have created their own dream homes. The first-time builders then must choose whether to take the advice under consideration in their designs or ignore it and stick to their original plans.',NULL,'GBR','Building the Dream','https://s3.amazonaws.com/schedulesdirect/assets/p10185710_i_h3_aa.jpg',4,NULL),('SH016076690000','Highlights of proceedings in Parliament.',NULL,'GBR','Tuesday in Parliament','https://s3.amazonaws.com/schedulesdirect/assets/p9433309_b_h3_aa.jpg',4,NULL),('SH019593000000','Im Mittelpunkt stehen Geschichten aus dem Leben der Schüler im Internat Schloss Einstein. Welche Freundschaften entwickeln sich? Wie gut oder schlecht lernt man in so einer Schule? Mit diesen und ähnlichen Fragen sehen sich die Schüler konfrontiert.',NULL,'DEU','Schloss Einstein','https://s3.amazonaws.com/schedulesdirect/assets/p10917224_i_h3_aa.jpg',4,NULL),('SH025182560000','In der Sendung geht es um sämtliche Themen rund ums Geld: die richtigen Anlagen, optimale Versicherungen und Tipps für den Kauf. Vor allem für Verbaucher gibt es viele wichtige Hinweise, auch in Bezug auf die Altersvorsorge.',NULL,'DEU','Ratgeber - Geld','https://s3.amazonaws.com/schedulesdirect/assets/p13319236_st_h3_aa.jpg',4,NULL),('SH020907320000','Joanna und ihre beiden Töchter Freya und Ingrid leben im verschlafenen Küstenstädtchen East Haven. Freya und Ingrid stellen die nächste Hexengeneration dar, wissen allerdings nichts von ihrem Glück, mit übersinnlichen Fähigkeiten gesegnet zu sein.',NULL,'DEU','Witches of East End','https://s3.amazonaws.com/schedulesdirect/assets/p10192317_l_h3_aa.jpg',4,NULL),('SH023277630000','This reality series follows Brits who have relocated to popular holiday destinations. In their search for sun, fun and low costs, the characters featured on the show reveal why they have chosen to move abroad. Focusing on Benidorm, the show speaks to British residents staying at camping site Villamar. On the first episode, Avon rep Val divulges the secrets to her success, drag queen Ms Levi G flaunts her cabaret bar, bargain lover Dean shows off his bachelor pad and ambitious Eddie tries his luck in the entertainment industry.',NULL,'GBR','Bargain Loving Brits in the Sun','https://json.schedulesdirect.org/20141201/image/assets/p12420269_i_h3_aa.jpg',4,NULL),('SH033333490000','Steven Raichlen presents techniques for grilling and smoking at home, from ember-roasting and salt slab grilling to fire-heated iron and high-tech rotisseries.',NULL,'GBR','Steven Raichlen\'s Project Fire','https://s3.amazonaws.com/schedulesdirect/assets/p15456504_i_h3_aa.jpg',4,NULL),('SH021085570000','Die Sendung präsentiert Tipps und Tricks, die dabei helfen, den Alltag zu meistern.',NULL,'DEU','Abenteuer Leben spezial','https://s3.amazonaws.com/schedulesdirect/assets/p11425920_st_h3_aa.jpg',4,NULL),('SH031689760000','Set in the 1990s at the same William Penn Academy formerly attended by \"The Goldbergs\', `Schooled\' follows Head of School John Glascott as he leads a faculty of teachers with wildly different views on how to mentor students - and his tough-as-nails sister, Lucy, who joined his staff to enrol her teenage daughters Felicia and Gigi as new students. Glascott\'s nurturing and communicative approach to caring for children is particularly at odds with coach Mellor\"s tough-guy belief that physical competition brings out the best in students.',NULL,'GBR','Schooled','https://s3.amazonaws.com/schedulesdirect/assets/p15523466_b_h3_ab.jpg',4,NULL),('SH032718060000','Die Dokumentation zeigt, wie Bauwerke und spektakuläre Gebäude erschaffen wurden. Die hohen Türme, gigantische Paläste und atemberaubende Tempel: der Mensch verspürt seit der Antike das Bedürfnis, beeindruckende Konstruktionen zu bauen.',NULL,'DEU','XXL-Konstruktionen - Leben im Großformat','https://s3.amazonaws.com/schedulesdirect/assets/p13662557_st_h3_ab.jpg',4,NULL),('SH024276870000','Die Reihe begibt sich auf die Spuren der spannendsten Reiseschriftsteller der Geschichte und lässt den Zuschauer die Länder durch die Augen der Dichter sehen. Eine literarische Zeitreise, die Vergangenheit und Gegenwart miteinander verbindet.',NULL,'DEU','Die große Literatour','https://json.schedulesdirect.org/20141201/image/assets/p12881227_i_h3_aa.jpg',4,NULL),('SH003332230000','Fran Fine trennt sich von ihrem Verlobten und verliert dadurch auch ihren Job als Verkäuferin in seinem Brautsalon. Durch ein Missverständnis wird sie die neue Nanny für die drei Kinder von Maxwell Sheffield, einem Broadwayproduzenten.',NULL,'DEU','Die Nanny','https://s3.amazonaws.com/schedulesdirect/assets/p183962_i_h3_aa.jpg',4,NULL),('SH031196540000','Dr. Max Goodwin is brilliant, charming -- and the new medical director at America\'s oldest public hospital, where he\'s set on tearing down the bureaucracy to provide exceptional care.',NULL,'GBR','New Amsterdam','https://s3.amazonaws.com/schedulesdirect/assets/p15516929_l_h3_aa.jpg',4,NULL),('SH019618100000','Die Dokumentarreihe zeigt Lebensgeschichten, Schicksale und Abenteuer verschiedener Menschen.',NULL,'DEU','Menschen hautnah','https://s3.amazonaws.com/schedulesdirect/assets/p10927639_b_h3_aa.jpg',4,NULL),('SH018050100000','Gary Davies spins classic 80s hits and forgotten gems.',NULL,'GBR','Sounds of the 80s','https://json.schedulesdirect.org/20141201/image/assets/p10246759_i_h3_aa.jpg',4,NULL),('SH025495960000','Björn Freitag kocht clevere Gerichte, die nicht viel Geld kosten und garantiert satt machen.',NULL,'DEU','Viel für wenig - Clever kochen mit Björn Freitag','https://json.schedulesdirect.org/20141201/image/assets/p13473480_i_h3_aa.jpg',4,NULL),('SH021707140000','Die Nachrichtensendung zeigt Berichte zu wichtigen aktuellen Ereignissen. Gezeigt werden aktuelle politische Ereignisse, außergewöhnliche Geschehnisse und Berichterstattungen.',NULL,'DEU','ZDF spezial','https://json.schedulesdirect.org/20141201/image/assets/p11713346_i_h3_aa.jpg',4,NULL),('SH034251810000','Zahlreiche Nationalparks auf der Welt beweisen, dass sich tierische Artenvielfalt und menschliche Urbanität selbst in einer Großstadt nicht ausschließen müssen. Die Sendung stellt mehrere solcher Orte vor und zeigt die unterschiedlichen Konzepte.',NULL,'DEU','Nationalparks der Zukunft','https://s3.amazonaws.com/schedulesdirect/assets/p17859284_st_h3_aa.jpg',4,NULL),('SH013758640000','The Atlanta housewives continue to live their fabulous lives in Georgia\'s capital city in this incarnation of the popular reality TV franchise. Relationships, a staple of the \"Real Housewives\' shows, take centre stage as usual as the ladies\' love lives experience ups and downs. The sassy women\"s entrepreneurial spirits are also in full bloom as they juggle their personal and professional lives, along with their busy personal calendars.',NULL,'GBR','The Real Housewives of Atlanta','https://s3.amazonaws.com/schedulesdirect/assets/p188610_l_h3_aa.jpg',4,NULL),('SH017428590000','Die Sendung zeigt tolle Bilder sowie spannende und berührende Geschichten aus dem Tierpark Hagenbeck in Hamburg. Denn dort schreibt das Zooleben seine eigenen Geschichten und man ist der Wildnis ganz besonders nah.',NULL,'DEU','Leopard, Seebär & Co.','https://s3.amazonaws.com/schedulesdirect/assets/p9987891_i_h3_aa.jpg',4,NULL),('SH025691790000','Am Flughafen von Melbourne kontrollieren die Beamten der `Border Security\' auf Verstöße gegen Quarantäne- und Einreisebstimmungen, Schmuggel von Geld oder Drogen oder illegale Einfuhr von Waren. Die Serie sieht ihnen dabei über die Schulter.',NULL,'DEU','Border Patrol Australia','https://s3.amazonaws.com/schedulesdirect/assets/p213949_i_h3_aa.jpg',4,NULL),('SH016841870000','\"Overhaulin\' \" fans can relate to the premise of \"Car S.O.S\". Both document the done-in-secret car restorations for needy or down-on-their-luck owners, with the main difference being the former show is based in the US and the latter in the UK. \"Car S.O.S\" is driven by hosts Tim Shaw and Fuzz Townshend, whose combined talents - Shaw is parts manager, and Townshend is master mechanic - rescue much-loved classics from rusty retirements. With some grease, graft, expertise and care, the SOS team creates jaw-dropping motor makeovers.',NULL,'GBR','Car S.O.S','https://s3.amazonaws.com/schedulesdirect/assets/p9724490_b_h3_ad.jpg',4,NULL),('SH012974940000','Consumer news and issues.',NULL,'GBR','You and Yours','https://json.schedulesdirect.org/20141201/image/assets/p316725_i_h3_aa.jpg',4,NULL),('SH019567600000','Tief in den Wäldern von Virginia üben einige alteingesessene Bewohner ein traditionsreiches, aber illegales Handwerk aus: `Moonshining\', das Schnapsbrennen ohne Lizenz. Diese Dokumentation folgt einer Gruppe von Schwarzbrennern bei ihren Tätigkeiten.',NULL,'DEU','Moonshiners - Die Schwarzbrenner von Virginia','https://s3.amazonaws.com/schedulesdirect/assets/p8938792_b_h3_ag.jpg',4,NULL),('SH022087220000','Jeweils von einem prominenten Gast unterstützt, stellen sich die Teamkapitäne Bernhard Hoëcker und Elton den Fragen von Moderator Kai Pflaume. Es gilt, Fragen aus Wissenschaft, Tierwelt und dem täglichen Leben zu beantworten, um Geld zu erspielen.',NULL,'DEU','Wer weiß denn sowas?','https://s3.amazonaws.com/schedulesdirect/assets/p11873328_b_h3_aa.jpg',4,NULL),('SH003331930000','In der Kölner Schillerallee 10, einem Wohn- und Geschäftshaus im Stadtteil Ehrenfeld, findet das ereignisreiche Alltagsleben mehrerer Generationen statt. Ausgehend von der Bäckerei und Konditorei der Familie Weigel nehmen die Geschichten um Freundschaft, Liebe, Intrigen und geplatzte Träume ihren Lauf. Dabei steht die Familie Weigel, die eine Konditorei im Erdgeschoss betreibt und mit drei Generationen im Haus lebt, im Mittelpunkt. Unterschiedliche Familien ziehen in das Haus in der Schillerallee ein und aus, vor allem die jungen Bewohner des Dachgeschosses wechseln oft.',NULL,'DEU','Unter uns','https://s3.amazonaws.com/schedulesdirect/assets/p522053_b_h3_ac.jpg',4,NULL),('SH015136730000','Dr Mark Porter presents the series that aims to demystify perplexing health issues.',NULL,'GBR','Inside Health','https://json.schedulesdirect.org/20141201/image/assets/p9003534_i_h3_aa.jpg',4,NULL),('SH012687730000','This fly-on-the-wall documentary series follows the men and women who defend Australia from drug runners, illegal immigrants, and terrorists. Featuring weapons busts, large scale police operations, cameras have unprecedented access to all areas of national security as members of the Australian Customs Service go about their daily routine.',NULL,'GBR','Nothing to Declare','https://s3.amazonaws.com/schedulesdirect/assets/p8125855_i_h3_ab.jpg',4,NULL),('SH021286690000','Stop-motion preschool programme about the adventures of four inquisitive Twirlywoos.',NULL,'GBR','Twirlywoos','https://s3.amazonaws.com/schedulesdirect/assets/p11514407_b_h3_aa.jpg',4,NULL),('SH013900590000','Wayne Carini chases cars for a living. Not literally, but if a vehicle were an iconic Mercedes Gullwing or a luxurious Maserati Ghibli, for instance, and Carini saw it in motion, it\'s a sure bet he would get himself in gear and run after it. That\'s how much this man loves classic cars, a passion that Velocity has captured for this series since 2008. Known as a \"collector car archaeologist\", Carini leads viewers into the business of locating high-end automobiles stashed in homes, garages and barns in the U.S. and abroad. When he finds a gem, Carini negotiates to buy it, then resells at auction or privately. Along the way he talks shop with respected collectors, restorers and artisans.',NULL,'GBR','Chasing Classic Cars','https://s3.amazonaws.com/schedulesdirect/assets/p218841_i_h3_ab.jpg',4,NULL),('SH032213590000','The impact of advertising on American culture from the 1950\'s-1980\'s.',NULL,'GBR','The Real Mad Men of Advertising','https://s3.amazonaws.com/schedulesdirect/assets/p13579097_b_h3_ab.jpg',4,NULL),('SH014054720000','Garage sales are an old-school waste of time, at least in the eyes of the treasure hunters featured in this real-life series. Each half-hour episode follows a group of bidders looking to strike it rich by buying repossessed storage units. They\'re at once detectives and gamblers, as they get only a quick flashlight-aided peek inside the units before they decide if they want to make a bid, and for how much. It\'s a high-stakes game that can pay off big time - one featured collector bought a unit for $800 and sold its contents for a $40,000 profit - or leave one sifting through the equivalent of trash.',NULL,'GBR','Storage Wars','https://s3.amazonaws.com/schedulesdirect/assets/p8354064_i_h3_ab.jpg',4,NULL),('SH019668380000','Eine Reise durch die Zeit zu Ereignissen, die den Norden bewegten.',NULL,'DEU','Unsere Geschichte','https://s3.amazonaws.com/schedulesdirect/assets/p10949116_b_h3_aa.jpg',4,NULL),('SH019885670000','In der Literatursendung stellen Autoren im Gespräch mit den Moderatoren ihre Bücher vor.',NULL,'DEU','lesenswert','https://s3.amazonaws.com/schedulesdirect/assets/p11035008_b_h3_aa.jpg',4,NULL),('SH030672130000','Die achtjährigen Freunde Mats und Malika kommen jeden Tag zu spät zur Schule. Dafür erleben sie auf ihrem Schulweg witzige Abenteuer. Fraglich ist, ob ihre Lehrer ihnen die Begegnungen mit Monstern, Geheimagenten und wilden Tieren abnehmen?',NULL,'DEU','Voll zu spät!','https://s3.amazonaws.com/schedulesdirect/assets/p15427924_i_h3_aa.jpg',4,NULL),('SH014881010000','The idyllic Caribbean locale of Saint-Marie is a paradise island on which most people would love to live and work. Irish widower Jack Mooney, played by \"Father Ted\' star Ardal O\"Hanlon, has returned to the island to be the new detective inspector after the resignation of his colleague Humphrey Goodman, who wished to remain back in London with his girlfriend. Each episode sees a different case for Mooney and his team, DS Florence Cassel, Dwayne Myers and JP Hooper, as he tries to find his feet and get used to a new way of life and different temperaments of both his colleagues and fellow islanders.',NULL,'GBR','Death in Paradise','https://s3.amazonaws.com/schedulesdirect/assets/p12417804_i_h3_aa.jpg',4,NULL),('SH031923850000','Documentary series that in each episode focuses on one individual with experience of an issue in the news.',NULL,'GBR','My Name Is..','https://s3.amazonaws.com/schedulesdirect/assets/p16740218_st_h3_aa.jpg',4,NULL),('SH019001930000','Zusammen mit Woozle, einem zotteligen Beuteltier, geht Benedikt Weber sämtlichen Alltagsfragen auf den Grund. Während er versucht, seine Antworten wissenschaftlich zu begründen, bevorzugt Woozle kreativere Lösungsansätze.',NULL,'DEU','Woozle Goozle','https://s3.amazonaws.com/schedulesdirect/assets/p10672039_st_h3_aa.jpg',4,NULL),('SH016928350000','Cycling action.',NULL,'GBR','Live: UCI World Championship Track Cycling','https://s3.amazonaws.com/schedulesdirect/assets/p9761307_st_h3_aa.jpg',4,NULL),('SH028289630000','Diese Sendung berichtet über die aktuellsten und wichtigsten Nachrichten der Bundesrepublik.',NULL,'DEU','Tagesschau','https://s3.amazonaws.com/schedulesdirect/assets/p10414016_b_h3_aa.jpg',4,NULL),('SH029022100000','The ten-part drama from BBC Studios, \"Shakespeare and Hathaway: Private Investigators\", stars Mark Benton as the hard-boiled Frank Hathaway and Jo Joyner as his rookie sidekick Lu Shakespeare, and is created by Paul Matthew Thompson and Jude Tindall. The unlikely pair forms a partnership as they investigate extramarital affairs, murderous magicians, abducted au pairs and more in Stratford-upon-Avon and Warwickshire. Despite their constant disagreements, the duo makes a good team in the action packed, fun-filled daytime drama.',NULL,'GBR','Shakespeare and Hathaway: Private Investigators','https://s3.amazonaws.com/schedulesdirect/assets/p15173123_i_h3_aa.jpg',4,NULL),('SH022815960000','Die Experten geben in der Sendung Tipps für ein gesundes und ausgewogenes Frühstück.',NULL,'DEU','Frühstück gesund und lecker','https://s3.amazonaws.com/schedulesdirect/assets/p12195967_st_h3_aa.jpg',4,NULL),('SH034333430000','Kevin McCloud is optimistic about tech and the future. Jon Richardson, Phil Wang and Alice Levine, who aren\'t so sure, travel the world to see what\'s coming next.',NULL,'GBR','Kevin McCloud\'s Rough Guide to the Future','https://s3.amazonaws.com/schedulesdirect/assets/p17909404_st_h3_aa.jpg',4,NULL),('SH015356880000','Radio dramas which delight and surprise.',NULL,'GBR','Afternoon Drama','https://s3.amazonaws.com/schedulesdirect/assets/p9102736_b_h3_aa.jpg',4,NULL),('SH012623900000','Another British couple decide to swap the grey skies of Britain for sun, sea and sand abroad.',NULL,'GBR','A Place in the Sun','https://s3.amazonaws.com/schedulesdirect/assets/p322275_i_h3_aa.jpg',4,NULL),('SH020861460000','Ein unfreiwilliges und unkonventionelles Duo geht in der Kleinstadt Aarau auf Verbrecherjagd. Der Beerdigungsunternehmer Luc Conrad überschreitet dabei immer wieder Kompetenzen.',NULL,'DEU','Der Bestatter','https://s3.amazonaws.com/schedulesdirect/assets/p11355215_b_h3_aa.jpg',4,NULL),('SH024457980000','Struggling homesteaders across the country are turning to expert homesteader Marty Raney and his family teach them the necessary skills to survive the wilderness.',NULL,'GBR','Homestead Rescue','https://s3.amazonaws.com/schedulesdirect/assets/p12887624_b_h3_aa.jpg',4,NULL),('SH026201320000','In a medieval, but futuristic, world, young knights Clay, Aaron, Lance, Princess Macy and Axl are tasked with protecting the kingdom of Knighton from Jesto and the army of Lava Monsters. The evildoers are searching for magic books; with each one they acquire, they become more powerful. Jestro uses the strength he gains from the books and his minions to capture knights to make it easier for him to attack the king\'s castle. It\'s all part of Jestro\'s ultimate plan of defeating the king and taking over Knighton as the land\'s new ruler.',NULL,'GBR','LEGO Nexo Knights','https://s3.amazonaws.com/schedulesdirect/assets/p12359893_i_h3_ac.jpg',4,NULL),('SH020070080000','Gibt es Außerirdische? Wie dünn war die Ursuppe? Und wie sieht eigentlich die Zukunft des Universums aus? Manchmal wissen nur Experten wie der Astrophysiker Harald Lesch weiter.',NULL,'DEU','alpha-Centauri','https://s3.amazonaws.com/schedulesdirect/assets/p11093581_i_h3_ac.jpg',4,NULL),('SH019733300000','In dieser bayerischen Familienserie ranken sich liebevolle Geschichten `wia ausm richtigen Lebn\' rund um das fiktive Dorf Lansing und seine Bewohner.',NULL,'DEU','Dahoam is Dahoam','https://s3.amazonaws.com/schedulesdirect/assets/p10974424_b_h3_ab.jpg',4,NULL),('SH025069640000','Fünf Teenager haben einen großen Traum: sie alle wollen Profis werden, manche als Tänzer, andere als Sänger, wieder andere als Schauspieler, Comedians oder Musiker. Doch auch sie sind normale Teenager, die die erste Liebe und Freundschaften erleben.',NULL,'DEU','Spotlight','https://s3.amazonaws.com/schedulesdirect/assets/p13260407_st_h3_aa.jpg',4,NULL),('SH020985130000','Dr. Niklas Ahrend lässt sein Leben in Leipzig hinter sich und wagt einen Neustart als Oberarzt in Erfurt - mit ungeahnten Herausforderungen, neuen Kollegen und alten Freunden, und jeder von ihnen hat seine ganz eigene Geschichte.',NULL,'DEU','In aller Freundschaft - Die jungen Ärzte','https://s3.amazonaws.com/schedulesdirect/assets/p11390058_i_h3_aa.jpg',4,NULL),('SH019370400000','Im Jahr 2030 entscheidet Ted Mosby sich, seinen Kindern Penny und Luke in allen Details zu erzählen, wie er ihre Mutter kennengelernt hat. Sein Rückblick beginnt im Jahr 2005, als er als 27-Jähriger gerade sein Architekturstudium abgeschlossen hat. Er lebt zusammen mit seinem besten Freund Marshall, der seit neun Jahren mit der Kindergärtnerin Lily liiert ist. Die Drei sind außerdem mit dem notorischen aber liebenswerten Frauenheld und Anzugträger Barney Stinson befreundet, der Ted dabei helfen soll, die Frau seines Lebens zu finden. Durch Barney lernen die Freunde Robin Scherbatsky kennenlernen, in die Ted sich sofort verliebt. Aber das Schicksal scheint es nicht gut mit ihm zu meinen, denn Robin will keine feste Beziehung.',NULL,'DEU','How I Met Your Mother','https://s3.amazonaws.com/schedulesdirect/assets/p185124_l_h3_aa.jpg',4,NULL),('SH024083840000','Elena Uhlig bereist die Regionen Deutschlands und sucht nach lokalen Küchenchefs, die sich ein Duell mit Johann Lafer oder Nelson Müller liefern. Dabei müssen die Promiköche Spezialitäten erschmecken und nachkochen.',NULL,'DEU','Stadt, Land, Lecker','https://s3.amazonaws.com/schedulesdirect/assets/p12794756_b_h3_aa.jpg',4,NULL),('SH019138540000','Der kleine Angelo ist gerne mit seinen Freunden unterwegs. Sie treffen sich und kreieren die besten Strategien, um gegen ihre Rivalen antreten zu können. Nicht immer klappt es, doch die Kids haben dennoch jede Menge Spaß.',NULL,'DEU','Angelo!','https://s3.amazonaws.com/schedulesdirect/assets/p8180581_i_h3_aa.jpg',4,NULL),('SH015933320000','Geschichten aus dem Arbeitsalltag des 21. Hamburger Polizeikommissariats unter der Leitung von Polizeioberrat Martin Berger und des mit diesem eng kooperierenden Elbkrankenhauses, in welchem Bergers Nichte Jasmin Jonas sich um die Patienten kümmert.',NULL,'DEU','Notruf Hafenkante','https://s3.amazonaws.com/schedulesdirect/assets/p9370356_i_h3_aa.jpg',4,NULL),('SH019383930000','Eric Miller erkrankt auf einmal und wird ins Krankenhaus eingeliefert, wo er kurz darauf stirbt. Die Ursache lautet Gift; Megan fährt nach einer Feier mit dem Auto nach Hause, als auf ihren Wagen geschossen wird. Seit dem fehlt von Megan jede Spur.',NULL,'DEU','Medical Detectives - Geheimnisse der Gerichtsmedizin','https://s3.amazonaws.com/schedulesdirect/assets/p439881_b_h3_ag.jpg',4,NULL),('SH016398180000','Nachrichten aus den Bundesländern mit Themen aus der Politik, Wirtschaft und Gesellschaft.',NULL,'DEU','heute - in deutschland','https://s3.amazonaws.com/schedulesdirect/assets/p9563640_b_h3_ab.jpg',4,NULL),('SH019646620000','Schatztaucher aus aller Welt begeben sich jedes Jahr auf Goldsuche in der Berginsee. Die Goldvorkommen wurden über Millionen Jahre vom Schmelzwasser der Gletscher angeschwemmt. Die Suche ist nur mit schwerem Gerät möglich, und nicht ungefährlich.',NULL,'DEU','Die Schatzsucher - Goldtaucher der Beringsee','https://json.schedulesdirect.org/20141201/image/assets/p8963906_i_h3_ab.jpg',4,NULL),('SH018310520000','An all-star cast of gardening experts present this programme in which they try to fight overdevelopment and return Britain back to a nation filled with people with green thumbs. Each episode features two presenters focusing on endangered aspects of gardening and offering advice on how viewers can improve the look of their gardens. With paved surfaces taking over greenspace, \"Great British Garden Revival\' wants to get people to re-engage with their gardens and Britain\"s strong horticultural heritage. The list of presenters includes Monty Don, Rachel de Thame, Charlie Dimmock, Christine Walkden and Matt James.',NULL,'GBR','Great British Garden Revival','https://s3.amazonaws.com/schedulesdirect/assets/p10364399_b_h3_aa.jpg',4,NULL),('SH019569760000','Jake und seine Freunde Izzy, Cubby und der Papagei Skully leben auf einer Insel nahe bei Nimmerland. Die Kinder sind dem berüchtigten Captain Hook ein Dorn im Auge und er versucht alles, um ihnen das Leben so schwer wie möglich zu machen, wie etwa ihre Sachen zu stehlen. Um ein Abenteuer abzuschließen, müssen Jake und seine Freunde stets drei Aufgaben lösen, nach deren Erfüllung sie Golddublonen bekommen, die sie am Ende in ihre Teamschatztruhe legen.',NULL,'DEU','Jake und die Nimmerland Piraten','https://s3.amazonaws.com/schedulesdirect/assets/p8492050_i_h3_ab.jpg',4,NULL),('SH017065120000','The men\'s strongman Champions League from Martinique.',NULL,'GBR','Champions League Strongest Man','https://s3.amazonaws.com/schedulesdirect/assets/p9821519_b_h3_aa.jpg',4,NULL),('SH030218130000','Die Therapeuten und Sozialarbeiter der Klinik am Südring unterstützen Patienten, die Verhaltensauffälligkeiten zeigen oder sonstige emotionale Herausforderungen zu bewältigen haben. Außerdem stehen sie den betroffenen Familien zur Seite.',NULL,'DEU','Klinik am Südring - Die Familienhelfer','https://s3.amazonaws.com/schedulesdirect/assets/p15791050_i_h3_ae.jpg',4,NULL),('SH016821990000','Kirstie Allsopp shows how easy it is to hand make things for the home and people in our lives.',NULL,'GBR','Kirstie\'s Vintage Gems','https://s3.amazonaws.com/schedulesdirect/assets/p9715686_b_h3_aa.jpg',4,NULL),('SH032099730000','Revisiting the British people who swapped the UK for new ventures in Spain and France.',NULL,'GBR','A New Life in the Sun: Where Are They Now?','https://s3.amazonaws.com/schedulesdirect/assets/p16829499_st_h3_aa.jpg',4,NULL),('SH034422980000','Der blinde ehemalige Chefinspektor Alexander Haller geht gemeinsam mit seinem Privatchauffeur und engstem Vertrauen Nikolai Falk auf die Spuren des Verbrechens. Unter anderem müssen sie sich mit Entführungen und Mord herumschlagen.',NULL,'DEU','Blind ermittelt','https://s3.amazonaws.com/schedulesdirect/assets/p17971571_st_h3_aa.jpg',4,NULL),('SH015402360000','Die Reportage- und Dokumentationsreihe zeigt unerforschte Gebiete, reist zu unentdeckten Traumzielen auf der ganzen Welt, und besucht fremde Völker, um über ihre Kultur und ihre Bräuche zu berichten.',NULL,'DEU','Länder - Menschen - Abenteuer','https://s3.amazonaws.com/schedulesdirect/assets/p9125881_i_h3_aa.jpg',4,NULL),('SH003332650000','Das Nachtjournal zeigt zu später Stunde noch umfassende Nachrichten des Tages aus Deutschland und der Welt. Mit den aktuellsten Ereignissen aus der Politik, Wirtschaft und Kultur können sich die Zuschauer nachts noch auf dem Laufenden halten. Das Markenzeichen des Magazins umfasst Fakten, Hintergrundberichterstattungen sowie Meinungen zu den aktuellen globalen sowie regionalen Themen. Mit der Rubrik `100 Tage danach\' greift die Sendung schlagzeilenträchtige Ereignisse aus der Vergangenheit auf, zeigt deren Folgen und Entwicklungen und fragt nach den Konsequenzen.',NULL,'DEU','RTL-Nachtjournal','https://s3.amazonaws.com/schedulesdirect/assets/p472490_b_h3_aa.jpg',4,NULL),('SH013659580000','\"Hoarders\' is an often painful look inside a disease that can bury its sufferer - literally at times - in its symptoms. Each hourlong episode profiles two people on the verge of a personal crisis, all caused by the fact that they are unable to part with even the tiniest possessions, and the cumulative effect becomes a mountain of junk and garbage overtaking their home or apartment. If they don\"t respond to professional help, the consequences sometimes involve eviction, kids being taken away, or even jail time.',NULL,'GBR','Hoarders','https://s3.amazonaws.com/schedulesdirect/assets/p3536666_l_h3_aa.jpg',4,NULL),('SH019461950000','Magazin mit Schlagzeilen aus der Region, interessanten Gästen im Studio und Verbrauchertipps. Die Moderatoren berichten über alles, was in Sachsen, Sachsen-Anhalt und Thüringen für Schlagzeilen sorgt und informieren über Aktuelles.',NULL,'DEU','MDR um 4: Neues von hier','https://s3.amazonaws.com/schedulesdirect/assets/p10869377_i_h3_aa.jpg',4,NULL),('SH017357350000','The breathtaking beauty of Alaska sometimes hides the fact its winters can be incredibly harsh, especially for those who live in the state\'s outlying areas. \"Alaska: The Last Frontier\' perfectly illustrates this reality, as the programme profiles life for the Kilcher family in the isolated community of Homer. For four generations the Kilchers have lived off what their 600-acre homestead has provided, but cultivating that living is never easy. Led by patriarch Atz Kilcher and his brother Otto, the family spends the short summer and fall gardening, hunting and fishing for food, gathering supplies from the land and preparing their animals for the winter. Viewers, who may or may not have a fancy phone by their side while watching on their big-screen high-def TV, also see the Kilchers living off the grid, where running water and electricity aren\"t daily staples, nor is contact with the outside world. Atz, by the way, is the father of music superstar Jewel, who does not appear on the show.',NULL,'GBR','Alaska: The Last Frontier','https://s3.amazonaws.com/schedulesdirect/assets/p8989001_l_h3_aa.jpg',4,NULL),('SH026358110000','Im Jahr 2275 führt Dante Montana ein Team von Kopfgeldjägern an, die im Universum Jagd auf Verbrecher machen. Dazu müssen sie verhindern, dass das `Divinity Cluster\' in falsche Hände gerät. Doch Dante verfolgt noch ein privates Ziel.',NULL,'DEU','Starhunter','https://s3.amazonaws.com/schedulesdirect/assets/p493717_st_h3_aa.jpg',4,NULL),('SH033344700000','Exploring the design, construction, technology and armaments of history\'s great vessels of war and peace, from ancient Viking ships to modern aircraft carriers.',NULL,'GBR','The Great Ships','https://s3.amazonaws.com/schedulesdirect/assets/p299413_i_h3_aa.jpg',4,NULL),('SH034135610000','Übertragungen von aktuellen Wettbewerben aus der Welt des Radsports.',NULL,'DEU','Bahnradsport','https://s3.amazonaws.com/schedulesdirect/assets/p361948_i_h3_ab.jpg',4,NULL),('SH029227230000','Der ehemalige Staatsanwalt Eduardo arbeitet von einem Hotel, in dem er wohnt, als Pflichtverteidiger. Er stellt den gesunden Menschenverstand über das Gesetz. Seine Assistentin Marcia, eine Roma, hat immer wieder mit Diskriminierung zu kämpfen.',NULL,'DEU','Der Lissabon-Krimi','https://s3.amazonaws.com/schedulesdirect/assets/p15282411_st_h3_aa.jpg',4,NULL),('SH028204940000','Musiksendung.',NULL,'DEU','MTV Most Wanted','https://s3.amazonaws.com/schedulesdirect/assets/p14809119_st_h3_aa.jpg',4,NULL),('SH015402790000','Die Sendung informiert über ein breites Themenspektrum, angefangen bei den großen aktuellen Themen bis hin zu alltäglichen wirtschaftlichen Ereignissen. Dabei werden die Vorgänge aus der Perspektive des Normalbürgers und Verbrauchers gezeigt. Zusätzlich liefert die Sendung vertiefende Information über alle wirtschafts- und sozialpolitische Fragen der Zuschauer. Dabei handelt es sich um klassische Magazinbeiträge, investigative Recherchen, Tests, Tipps sowie Hinweise, wie sich aufgezeigte Probleme vermeiden lassen.',NULL,'DEU','Plusminus','https://s3.amazonaws.com/schedulesdirect/assets/p9126080_b_h3_aa.jpg',4,NULL),('SH018147800000','Ree Drummond shares her secrets of home cooking and celebrating.',NULL,'GBR','The Pioneer Woman','https://s3.amazonaws.com/schedulesdirect/assets/p12567627_b_h3_aa.jpg',4,NULL),('SH028810230000','The upbeat adventures of Poppy, Branch and the rest of the residents of Troll Village, as they keep the party going in their forest.',NULL,'GBR','Trolls: The Beat Goes On!','https://s3.amazonaws.com/schedulesdirect/assets/p14940594_i_h3_aa.jpg',4,NULL),('SH019176880000','Nora verbringt ihre Zeit am liebsten mit ihrer Familie in Schweden. Doch die Idylle wird durch Mordfälle gestört. Tatkräftig unterstützt Nora die Arbeit des attraktiven Kommissars Thomas Andreasson, den sie schon aus ihrer Jugendzeit kennt.',NULL,'DEU','Mord im Mittsommer','https://s3.amazonaws.com/schedulesdirect/assets/p9599270_b_h3_ae.jpg',4,NULL),('SH016876850000','Bull riding action.',NULL,'GBR','Pro Bull Riding','https://s3.amazonaws.com/schedulesdirect/assets/p9740749_b_h3_aa.jpg',4,NULL),('SH013041830000','The adventures of Jonathan and Jennifer Hart a wealthy couple who dabble in some detective work.',NULL,'GBR','Hart to Hart','https://s3.amazonaws.com/schedulesdirect/assets/p184377_i_h3_aa.jpg',4,NULL),('SH033419250000','Looking at the different districts of London.',NULL,'GBR','London Districts','https://s3.amazonaws.com/schedulesdirect/assets/p17507974_st_h3_aa.jpg',4,NULL),('SH019758630000','Calimero ist ein niedliches, schwarzes Küken aus Palermo mit einer Eierschale auf dem Kopf. Mit seinen Freunden Priscilla, Peter und Alexander erlebt er allerlei Abenteuer. Miteinander kämpfen sie für die Gerechtigkeit in ihrer kleinen Welt.',NULL,'DEU','Calimero','https://s3.amazonaws.com/schedulesdirect/assets/p10744788_i_h3_ab.jpg',4,NULL),('SH012682700000','Timmy the little lamb heads off to nursery school and will have a lot to learn as he finds his place in the world.',NULL,'GBR','Timmy Time','https://s3.amazonaws.com/schedulesdirect/assets/p3623725_i_h3_aa.jpg',4,NULL),('SH019664380000','Wie sah die Welt vor 20 Jahren aus? Die Sendung bietet einen Einblick in die jüngere Zeitgeschichte.',NULL,'DEU','Tagesschau - Vor 20 Jahren',NULL,4,NULL),('SH013044130000','\"All Star Family Fortunes\' is a celebrity version of the long-running `Family Fortunes\" show that featured civilians answering survey questions with their families. The all-star edition of the programme pits two celebrities, joined by members of their families, battling head-to-head for a chance to win £30,000 for charity. During the game, the players try to match the most popular answers given by 100 people who were asked the same question. The family with the most money at the end of the game goes on to play the Big Money bonus round, in which they can win £10,000 for their chosen charity by two of the family members getting 200 points in five questions. If they pass the 200-point mark and provide the top answer to all five questions, the charity wins the top prize of £30,000.',NULL,'GBR','All Star Family Fortunes','https://s3.amazonaws.com/schedulesdirect/assets/p8204962_b_h3_aa.jpg',4,NULL),('SH019719720000','Die spannende Jagd der Medizin nach Beweisen für die Ursache von rätselhaften Beschwerden.',NULL,'DEU','Abenteuer Diagnose','https://s3.amazonaws.com/schedulesdirect/assets/p10969205_b_h3_aa.jpg',4,NULL),('SH020815760000','\"Air Ambulance ER\" follows British medical teams as they take to the air in emergency situations. The series goes behind the scenes to show ambulances carrying out their life-saving work from the minute an accident is reported to the moment they reach their patient. The fast-paced action and aerial filming capture the courage of the team members that are on-call throughout the UK.',NULL,'GBR','Air Ambulance ER','https://s3.amazonaws.com/schedulesdirect/assets/p11343891_i_h3_aa.jpg',4,NULL),('SH012907380000','\"Tonight\" offers national and international news, interviews with celebrities and policymakers as well as in-depth reporting on a variety of topics.',NULL,'GBR','Tonight','https://s3.amazonaws.com/schedulesdirect/assets/p8161575_b_h3_ab.jpg',4,NULL),('SH017610890000','Pirate-themed physical gameshow where a team swashbucklers win jewels for their treasure chest.',NULL,'GBR','Swashbuckle','https://s3.amazonaws.com/schedulesdirect/assets/p10062931_i_h3_aa.jpg',4,NULL),('SH020412230000','Father Brown wird leicht unterschätzt. Als Römisch-Katholischer Priester ist er im anglikanischen England eine Seltenheit. Er verrichtet seinen Dienst in der St. Mary\'s Church in Kembleford in den frühen 1950er Jahren.',NULL,'DEU','Father Brown','https://s3.amazonaws.com/schedulesdirect/assets/p12420801_i_h3_aa.jpg',4,NULL),('SH021893680000','Join Vic The Viking and friends on his adventures.',NULL,'GBR','Vic the Viking','https://s3.amazonaws.com/schedulesdirect/assets/p10715007_i_h3_aa.jpg',4,NULL),('SH016300950000','When presumed-dead billionaire playboy Oliver Queen returns home to Starling City after five years stranded on a remote island in the Pacific, he hides the changes the experience had on him, while secretly seeking reconciliation with his ex, Laurel. By day he picks up where he left off, playing the carefree philanderer he used to be, but at night he dons the alter ego of Arrow and works to right the wrongs of his family and restore the city to its former glory. Complicating his mission is Laurel\'s father, Detective Quentin Lance, who is determined to put the vigilante behind bars.',NULL,'GBR','Arrow','https://s3.amazonaws.com/schedulesdirect/assets/p9263605_l_h3_aa.jpg',4,NULL),('SH012588680000','Presented by Dara Ó Briain and Hugh Dennis, \"Mock the Week\' is a comedy programme that combines the best elements of panel show, stand-up and improvised games with two teams of comedians taking a satirical swipe at the news and world events. Regular game rounds include `Wheel of News\', where panellists are tasked with performing a stand-up bit on a randomly generated news segment, and `Picture of the Week\", where panellists are shown an image to discuss and joke about. Ó Briain is joined by permanent and guest panellists, including the likes of Andy Parsons, Frankie Boyle, Ed Byrne, Milton Jones, Josh Widdicombe and many, many more.',NULL,'GBR','Mock the Week','https://s3.amazonaws.com/schedulesdirect/assets/p8096898_l_h3_ab.jpg',4,NULL),('SH018886850000','Der in finanzieller Hinsicht abgebrannte Ex-Ermittler Kiesewetter zieht nach Lübeck, bezieht ein Zimmer bei seinen beiden Tanten und kehrt in den Polizeidienst zurück. Die neue Vorgesetzte Elke Rasmussen ist seine ehemalige Geliebte.',NULL,'DEU','Morden im Norden','https://json.schedulesdirect.org/20141201/image/assets/p10615569_i_h3_aa.jpg',4,NULL),('SH019426070000','Tägliche Nachrichtensendung, die vor allem auf jugendlichen Publikum zugeschnitten ist und sich mit den Themen der Unterhaltungsindustrie beschäftigt. Der Fokus ist auf Boulevard und Nachrichten rund um Celebrities ausgerichtet.',NULL,'DEU','RTLZWEI News','https://s3.amazonaws.com/schedulesdirect/assets/p10856298_i_h3_aa.jpg',4,NULL),('SH019563180000','Die Schweizer Nachrichtensendung informiert in Berichten, Reportagen, Porträts und Live-Gesprächen.',NULL,'DEU','10vor10','https://s3.amazonaws.com/schedulesdirect/assets/p10905661_i_h3_aa.jpg',4,NULL),('SH032948130000','Picking up after the events of March of the Oni, a new chapter in the world of Ninjago unfolds.',NULL,'GBR','Ninjago','https://s3.amazonaws.com/schedulesdirect/assets/p16973352_b_h3_aa.jpg',4,NULL),('SH024622100000','This documentary series follows the ordinary men and women who volunteer with the Royal National Lifeboat Institution (RNLI), risking their lives every day to save others who are in danger. With bases across Britain the RNLI are prepared to attend rescue calls around the clock and in any weather condition. Operating for more than 150 years, the organisation has saved over 140,000 people from life-threatening situations out at sea. During the winter months the elements become treacherous posing more risks to people venturing in the harsh waters, in turn increasing the number of challenging rescue missions for the brave volunteers.',NULL,'GBR','Saving Lives at Sea','https://s3.amazonaws.com/schedulesdirect/assets/p13040891_b_h3_aa.jpg',4,NULL),('SH025703520000','Sam and Henry are making a show about birds. Or at least they would be, if Sam could stop being so distracted.',NULL,'GBR','Sam Simmons Is Not a People Person','https://s3.amazonaws.com/schedulesdirect/assets/p13565496_st_h3_aa.jpg',4,NULL),('SH030403860000','Die Sendung berichtet über Themen aus den Bereichen Wissenschaft, Technik und Mensch. Auf unterschiedliche Fragen wird versucht, Antworten zu finden und diese auf unkomplizierte und leicht verständliche Weise zu vermitteln.',NULL,'DEU','Abenteuer Leben','https://s3.amazonaws.com/schedulesdirect/assets/p10903651_st_h3_ae.jpg',4,NULL),('SH016076680000','Highlights of proceedings in Parliament.',NULL,'GBR','Thursday in Parliament','https://s3.amazonaws.com/schedulesdirect/assets/p9433305_b_h3_aa.jpg',4,NULL),('SH028586800000','Immer wenn ihr Besitzer Bob das Haus verlässt, haben die Welpen Bingo und Rolly jede Menge Spaß. Bingo bestimmt dabei immer, wohin es geht. Ihre Katzenschwester Hissy leistet den beiden Gesellschaft auf ihren Abenteuern.',NULL,'DEU','Welpen Freunde','https://s3.amazonaws.com/schedulesdirect/assets/p13949191_i_h3_aa.jpg',4,NULL),('SH026118500000','Professor David Rothkopf charts the rapid and radical transformation of modern international diplomacy.',NULL,'GBR','Friends & Foes: A Narrative History of Diplomacy','https://s3.amazonaws.com/schedulesdirect/assets/p13764050_st_h3_aa.jpg',4,NULL),('SH033109840000','In Anlehnung an den gleichnamigen Küchenblog wird in dieser Sendung alles präsentiert, was die Küchenarbeit erleichtert. Dazu zählen zum Beispiel praktische Aufbewahrungsmöglichkeiten, funktionale Küchenhelfer und erstklassiges Kochgeschirr.',NULL,'DEU','Lieblingsküche','https://s3.amazonaws.com/schedulesdirect/assets/p17360323_st_h3_aa.jpg',4,NULL),('SH027671680000','In the PINY Institute books don\'t exist. You learn through singing, dancing and painting.',NULL,'GBR','PINY Institute of New York','https://s3.amazonaws.com/schedulesdirect/assets/p13266584_i_h3_aa.jpg',4,NULL),('SH021393670000','\"Bumblebee\' is given a mission to Earth by a vision of `Optimus Prime\'. `Bumblebee\' and his team must track down the `Decepticons\" that have been set free on Earth and prevent them from causing any harm.',NULL,'GBR','Transformers: Robots in Disguise','https://json.schedulesdirect.org/20141201/image/assets/p11563905_i_h3_aa.jpg',4,NULL),('SH013020940000','Recent recordings by Radio 3\'s \"New Generation\" artists.',NULL,'GBR','New Generation Artists','https://s3.amazonaws.com/schedulesdirect/assets/p269275_st_h3_aa.jpg',4,NULL),('SH014134770000','Raa Raa and his friends solve very noisy mysteries in the Jingly Jangly Jungle.',NULL,'GBR','Raa Raa the Noisy Lion','https://s3.amazonaws.com/schedulesdirect/assets/p8654360_i_h3_aa.jpg',4,NULL),('SH022983460000','Ginger Boxwell flies from Australia to the UK to spend the summer with four cousins she\'s never met before. What she doesn\'t realise is that Matt, Robbie, Ethan and Chris are just as nervous about it as she is.',NULL,'GBR','Secret Life of Boys','https://s3.amazonaws.com/schedulesdirect/assets/p12284677_b_h3_aa.jpg',4,NULL),('SH025581220000','In der Serie empfängt der Kabarettist, Musiker und Schauspieler Hannes Ringlstetter wöchentlich zwei illustre Gäste. Es geht um Themen der Woche, Politik, das Leben und um das, was die Gesellschaft bewegt. Die Musik kommt von der Band Ringlstetter.',NULL,'DEU','Ringlstetter','https://json.schedulesdirect.org/20141201/image/assets/p13514504_i_h3_aa.jpg',4,NULL),('SH034305610000','Architekten, Historiker, Ingenieure, Bauunternehmer und andere Experten diskutieren darüber, ob sie legendäre historische Bauten auch heute noch erschaffen könnten. Dabei wird unter anderem besprochen, ob die notwendigen Techniken noch existieren.',NULL,'DEU','Könnten wir das heute?','https://s3.amazonaws.com/schedulesdirect/assets/p17034262_i_h3_ab.jpg',4,NULL),('SH012851580000','Ben Matlock is a criminal defence attorney who along with his associates defend his clients.',NULL,'GBR','Matlock','https://s3.amazonaws.com/schedulesdirect/assets/p184228_l_h3_aa.jpg',4,NULL),('SH031622240000','In der Sendung diskutiert der Moderator mit unterschiedlichen Gästen über verschiedene Themen.',NULL,'DEU','Westpol: Eins zu eins','https://s3.amazonaws.com/schedulesdirect/assets/p16582384_st_h3_ac.jpg',4,NULL),('SH013031190000','The dartboard quiz game that tests contestants darts skills and their general knowledge.',NULL,'GBR','Bullseye','https://s3.amazonaws.com/schedulesdirect/assets/p8200080_b_h3_aa.jpg',4,NULL),('SH012793860000','In this spinoff of \"Inspector Morse,\" Inspector Robbie Lewis and his partner, DS James Hathaway, investigate more murder mysteries against the glorious backdrop of Oxford.',NULL,'GBR','Lewis','https://s3.amazonaws.com/schedulesdirect/assets/p429181_l_h3_aa.jpg',4,NULL),('SH022899640000','Meet the Go Jetters, four explorers on a global adventure! In this animated adventure comedy series, plucky heroes Xuli, Kyan, Lars and Foz travel the world with their teacher, Ubercorn - a disco-loving unicorn.',NULL,'GBR','Go Jetters','https://s3.amazonaws.com/schedulesdirect/assets/p12236919_b_h3_aa.jpg',4,NULL),('SH019559950000','Die Nachrichtensendung informiert über die Geschehnisse des Tages und andere wichtige Themen.',NULL,'DEU','kabel eins news','https://s3.amazonaws.com/schedulesdirect/assets/p10903601_b_h3_ab.jpg',4,NULL),('SH018485480000','Physiker Vince Ebert beantwortet Zuschauerfragen mit Hilfe von naturwissenschaftlichen Experimenten.',NULL,'DEU','Wissen vor acht - Werkstatt','https://json.schedulesdirect.org/20141201/image/assets/p10432272_i_h3_ab.jpg',4,NULL),('SH023090100000','Das Nachrichtenmagazin informiert über aktuelle Meldungen aus Deutschland und der Welt.',NULL,'DEU','heute','https://s3.amazonaws.com/schedulesdirect/assets/p12339826_b_h3_ay.jpg',4,NULL),('SH033750180000','Von aggressiven Passagieren bis hin zu Notlandungen, extremen Turbulenzen und Seitenwinden reichen die schrecklichsten Flugerlebnisse. Schockierende Aufnahmen beleuchten diese Momente des Horrors mit Zeugenaussagen aus erster Hand.',NULL,'DEU','Drama in der Luft','https://s3.amazonaws.com/schedulesdirect/assets/p15142842_i_h3_aa.jpg',4,NULL),('SH012984750000','Mariella Frostrup presents the books programme.',NULL,'GBR','Open Book','https://s3.amazonaws.com/schedulesdirect/assets/p8186064_b_h3_aa.jpg',4,NULL),('SH020611350000','Aus der Region für die Region: Von der harten Politik bis hin zu unterhaltsamen Heimatgeschichten - wir sind stets nah dran an den Menschen und ihren Themen.',NULL,'DEU','Niedersachsen 18.00 Uhr','https://s3.amazonaws.com/schedulesdirect/assets/p11282815_i_h3_aa.jpg',4,NULL),('SH032442250000','Berichtet wird über Unterhaltsames aus der aufregenden Kulturregion Berlin-Brandenburg.',NULL,'DEU','rbbKultur','https://json.schedulesdirect.org/20141201/image/assets/p17012536_st_h3_aa.jpg',4,NULL),('SH034418900000','Funny Man follows the mixed fortunes of an extended family of music-hall entertainers in search of their big break.',NULL,'GBR','Funny Man','https://s3.amazonaws.com/schedulesdirect/assets/p17969329_st_h3_aa.jpg',4,NULL),('SH030320100000','Die Reihe beschäftigt sich mit relevanten Themen und Entscheidungen aus Politik und Wirtschaft.',NULL,'DEU','DOK','https://s3.amazonaws.com/schedulesdirect/assets/p12718660_i_h3_aa.jpg',4,NULL),('SH019994380000','Das Politikmagazin, dessen Reportagen und Interviews sich mit Themen aus Rheinland-Pfalz befassen.',NULL,'DEU','zur Sache Rheinland-Pfalz!','https://s3.amazonaws.com/schedulesdirect/assets/p11071775_b_h3_aa.jpg',4,NULL),('SH019578550000','`DAS!\' informiert täglich über das, was im Norden Gesprächsthema ist. Zeitgleich begrüßen die Moderatoren einen prominenten Gast auf dem Roten Sofa.',NULL,'DEU','DAS!','https://s3.amazonaws.com/schedulesdirect/assets/p10910973_i_h3_aa.jpg',4,NULL),('SH030708580000','Kristina Katzer ermittelt zusammen mit ihrem Ex, Kommissar Hundt im Weimarer Revier.',NULL,'DEU','Heiter bis tödlich - Akte Ex','https://s3.amazonaws.com/schedulesdirect/assets/p10432518_i_h3_aa.jpg',4,NULL),('SH017152750000','\"Body Bizarre\' introduces viewers to people with rare and mysterious medical conditions that are so rare that experts don\"t know much about the disorders.The programme features personal interviews and footage of people with the afflictions. Among the people featured are a girl born with black spots and fur on her face and body, the first American to undergo a face transplant after being shot in the face, and a man with a facial tumour so severe that he may not survive the surgery needed to remove it.',NULL,'GBR','Body Bizarre','https://s3.amazonaws.com/schedulesdirect/assets/p9868667_i_h3_aa.jpg',4,NULL),('SH016119190000','Richard Rawlings and Aaron Kaufman deal in rusty gold. The proprietors of Gas Monkey Garage in Dallas buy and restore forgotten and fading away American cars, everything from 1931 Model A\'s to \'73 Trans Ams, before selling them at auction. As \"Fast N\' Loud\" documents, Rawlings is the mastermind, the deal-maker with an eye for the relics worth bringing back to life, and to find them the guys scour barns, swap meets and overgrown fields across Texas and surrounding states. The restorations are primarily managed by Kaufman, a fabricator and self-taught mechanic whose sharp skills and design savvy first endeared him to Rawlings and kick-started their partnership.',NULL,'GBR','Fast N\' Loud','https://s3.amazonaws.com/schedulesdirect/assets/p9256222_l_h3_aa.jpg',4,NULL),('SH019461840000','Das Ländermagazin setzt auf Informationen aus Sachsen, Sachsen-Anhalt und Thüringen.',NULL,'DEU','MDR um 11','https://s3.amazonaws.com/schedulesdirect/assets/p10869348_i_h3_aa.jpg',4,NULL),('SH019563830000','Die satirische Late-Night-Show modertiert von Jan Böhmermann und wechselnden prominenten Gästen. Immer mit an Bord ist Sprecherlegende William Cohn.',NULL,'DEU','NEO MAGAZIN','https://s3.amazonaws.com/schedulesdirect/assets/p10905803_b_h3_am.jpg',4,NULL),('SH002061390000','Die Sendung zeigt deutsche Landschaftsbilder begleitet von abwechslungsreicher Musik.',NULL,'DEU','Deutschlandbilder','https://s3.amazonaws.com/schedulesdirect/assets/p650017_b_h3_aa.jpg',4,NULL),('SH012896130000','Jean Pargetter and Lionel Hardcastle are former lovers whose lives intersect again 40 years after they lost touch with each other. Lionel is now divorced, and Jean is a widow with an adult daughter, Judith, who works in Jean\'s secretarial office. As Lionel works on a memoir with a cheerful but brash agent, Alistair, he begins to rekindle the tender romance with the woman who got away all those years ago. Cheering them on is Sandy, Judith\'s best friend and co-worker.',NULL,'GBR','As Time Goes By','https://s3.amazonaws.com/schedulesdirect/assets/p184357_i_h3_aa.jpg',4,NULL),('SH018580080000','Der kleine Caillou geht zusammen mit seiner Schwester Rosi jeden Tag auf Entdeckungstour, um Neues zu lernen und zu erleben. Seine Neugier hilft ihm, die Antworten auf seine Fragen zu bekommen.',NULL,'DEU','Caillou','https://s3.amazonaws.com/schedulesdirect/assets/p186052_i_h3_aa.jpg',4,NULL),('SH023924010000','Die Sendung informiert über aktuelle Themen aus den Bereichen Wirtschaft und Soziales.',NULL,'DEU','mehr:wert','https://s3.amazonaws.com/schedulesdirect/assets/p12723025_b_h3_aa.jpg',4,NULL),('SH029942050000','Shaun das Schaf lebt gemeinsam mit seiner Herde auf der Weide eines idyllischen Bauernhofs. Er ist jung, unerfahren und noch etwas naiv - aber sehr neugierig und verschmitzt. Er verfügt über einen ganz besonderen `Schaf-Sinn\' und findet auch für die vertracktesten Situationen eine Lösung. Auf dem Hof leben außerdem noch der Hütehund Bitzer, der Bauer und die drei fiesen Schweine, sowie einige andere Tiere. Der Bauer bekommt von dem turbulenten Leben seiner Tiere nichts mit, die sich zwar manchmal in die Wolle kriegen, aber im Großen und Ganzen wie eine glückliche Familie zusammenleben und zusammenhalten.',NULL,'DEU','Zambo - Guetnachtgschichtli','https://json.schedulesdirect.org/20141201/image/assets/p9187264_i_h3_aa.jpg',4,NULL),('SH013181620000','Weekly programme highlighting the work of a charity and appealing for donations to support its work.',NULL,'GBR','The Radio 4 Appeal','https://s3.amazonaws.com/schedulesdirect/assets/p8259274_b_h3_aa.jpg',4,NULL),('SH012608880000','Long running BBC medical drama based in a busy NHS practice. \"Doctors\" follows the turbulent lives and relationships of staff and patients at the Riverside Health Centre, and later the Mill Health Centre and Campus Surgery in the fictional Midlands town of Letherbridge. Each episode typically follows the staff as they juggle their busy work lives with their romantic relationships and other responsibilities.',NULL,'GBR','Doctors','https://s3.amazonaws.com/schedulesdirect/assets/p228067_b_h3_ac.jpg',4,NULL),('SH019579340000','Dokumentationen über Menschen und Geschichten im Sendegebiet des NDR.',NULL,'DEU','die nordstory','https://s3.amazonaws.com/schedulesdirect/assets/p10911270_i_h3_aa.jpg',4,NULL),('SH034149290000','American-born Julie Montagu, Viscountess Hinchingbrooke, visits great estates in the United Kingdom.',NULL,'GBR','An American Aristocrat\'s Guide to Great Estates','https://s3.amazonaws.com/schedulesdirect/assets/p17810810_st_h3_aa.jpg',4,NULL),('SH019432910000','Die 13-köpfige Familie Wollny wird bei ihrem Alltag von der Kamera begleitet. Dabei geben sie einen ganz privaten Einblick in sämtliche Situationen, die in einer Großfamilie entstehen. Ob Probleme oder besonders schöne Momente - sie teilen alles.',NULL,'DEU','Die Wollnys - Eine schrecklich große Familie!','https://s3.amazonaws.com/schedulesdirect/assets/p10858681_st_h3_aa.jpg',4,NULL),('SH014131770000','The adventures of Thomas the Tank Engine and his friends on the island of Sodor. Thomas is often in trouble and finds it difficult to be a useful engine.',NULL,'GBR','Thomas & Friends','https://s3.amazonaws.com/schedulesdirect/assets/p8652760_i_h3_aa.jpg',4,NULL),('SH019855910000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Dortmund.',NULL,'DEU','Lokalzeit aus Dortmund','https://s3.amazonaws.com/schedulesdirect/assets/p11024455_b_h3_ag.jpg',4,NULL),('SH015406570000','Nach Herzenslust Stauden zu shoppen ist für Gartenfreunde das Schönste. In der Gärtnerei Gaißmayer in Illertissen bei Ulm kann man wirklich aus dem Vollen schöpfen. Etwa 3.000 verschiedene Stauden sind im Angebot.',NULL,'DEU','Grünzeug','https://s3.amazonaws.com/schedulesdirect/assets/p9127617_b_h3_aa.jpg',4,NULL),('SH024626900000','Sketch trio Daphne present peculiar characters, whacky scenarios, dodgy remarks and curious observations.',NULL,'GBR','Daphne Sounds Expensive','https://s3.amazonaws.com/schedulesdirect/assets/p13042577_st_h3_aa.jpg',4,NULL),('SH012974990000','A series exploring some of the many reasons why people walk.',NULL,'GBR','Ramblings','https://s3.amazonaws.com/schedulesdirect/assets/p279720_b_h3_aa.jpg',4,NULL),('SH014080770000','Featuring action and coverage from various horse racing events.',NULL,'GBR','Live: Racing','https://s3.amazonaws.com/schedulesdirect/assets/p8631384_st_h3_aa.jpg',4,NULL),('SH018556690000','Die aktuellen Nachrichten und Servicebeiträge zu Themen wie Finanzen, Reisen und Einkaufen werden präsentiert. Außerdem beschäftigt man sich mit Sportbeiträgen und weiteren informativen Tipps.',NULL,'DEU','RTL Aktuell','https://s3.amazonaws.com/schedulesdirect/assets/p472488_st_h3_aa.jpg',4,NULL),('SH015460730000','Presented by Fi Glover. Capturing the nation in conversation.',NULL,'GBR','The Listening Project','https://s3.amazonaws.com/schedulesdirect/assets/p9152216_b_h3_aa.jpg',4,NULL),('SH019559930000','In der Sendung treten wöchentlich fünf Restaurantchefs gegeneinander an. Es gilt zu beweisen, welches Lokal das beste ist. Kriterien sind unter anderem das Essen, die Atmosphäre und der Service. Dem Gewinner winken 5.000 Euro Preisgeld.',NULL,'DEU','Mein Lokal, Dein Lokal','https://s3.amazonaws.com/schedulesdirect/assets/p10451847_i_h3_ab.jpg',4,NULL),('SH019646190000','Les Gold ist Inhaber von `American Jewelry and Loan\', des größten Pfandhauses von Detroit. Das Geschäft ist bereits in dritter Generation in der Hand der Familie. Die Serie gibt Einblicke in den Alltag des amerikanischen Pfandleihgeschäfts.',NULL,'DEU','Hardcore Pawn - Das härteste Pfandhaus Detroits','https://s3.amazonaws.com/schedulesdirect/assets/p7959226_i_h3_aa.jpg',4,NULL),('SH019580650000','Wöchentliches Wirtschaftsmagazin mit diversen Themen.',NULL,'DEU','MEX. das marktmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p10911718_i_h3_aa.jpg',4,NULL),('SH023046440000','This documentary series records the military events when the U boat menace was at it\'s height.',NULL,'GBR','The U Boat War','https://s3.amazonaws.com/schedulesdirect/assets/p12317262_st_h3_aa.jpg',4,NULL),('SH020793730000','Die beiden Freunde Mouk und Chavapa bereisen die Welt und berichten von ihren aufregenden Besuchen in Ländern wie Australien, Japan, Amerika oder Madagaskar.',NULL,'DEU','Mouk, der Weltreisebär','https://s3.amazonaws.com/schedulesdirect/assets/p8811109_b_h3_ad.jpg',4,NULL),('SH018573670000','Ein Team von forensischen Spezialisten der Polizei in Las Vegas untersucht Tatorte und arbeitet daran, grausame Verbrechen in der Stadt der Sünden aufzulösen.',NULL,'DEU','CSI: Vegas','https://s3.amazonaws.com/schedulesdirect/assets/p184657_st_h3_aa.jpg',4,NULL),('SH019826900000','Die wichtigsten Ereignisse aus Bayern, aus Deutschland und aus aller Welt.',NULL,'DEU','Rundschau-Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p11012728_b_h3_aa.jpg',4,NULL),('SH011645730000','Fernsehzuschauer können Antiquitäten kostenlos von renommierten Kunsthistorikern bewerten lassen.',NULL,'DEU','Kunst & Krempel','https://s3.amazonaws.com/schedulesdirect/assets/p3585179_b_h3_aa.jpg',4,NULL),('SH016182160000','Telling powerful stories in hourlong episodes, TLC follows medical journeys of morbidly obese people as they attempt to save their own lives. The featured individuals - each weighing more than 600 pounds (42 stones - confront lifelong emotional and physical struggles as they make the courageous decision to undergo high-risk gastric bypass surgery. In addition to drastically changing their appearances, they hope to reclaim their independence, mend relationships with friends and family, and renew their feelings of self-worth.',NULL,'GBR','My 600-Lb. Life','https://s3.amazonaws.com/schedulesdirect/assets/p9045265_i_h3_ab.jpg',4,NULL),('SH017428580000','Die Berliner Zoos öffnen Gatter-Tore und Gehege. Geschichten aus dem Zoo Berlin, dem artenreichsten Zoo der Welt, und im Tierpark Berlin, Europas größtem Landschaftstiergarten.',NULL,'DEU','Panda, Gorilla & Co.','https://s3.amazonaws.com/schedulesdirect/assets/p9987889_i_h3_aa.jpg',4,NULL),('SH017098660000','Um Rechtslagen darzustellen, wird in jeder Folge ein Streitfall vorgestellt, der durch einen Rechtsanwalt kommentiert wird. Die vorgeblichen Alltagssituationen werden von Laiendarstellern nach einem genauen Drehbuch gespielt.',NULL,'DEU','Verklag mich doch!','https://s3.amazonaws.com/schedulesdirect/assets/p9835738_st_h3_aa.jpg',4,NULL),('SH012694720000','Sisters Sharon and Tracey have absolutely nothing in common - until the day their husbands are sent to prison for armed robbery. Sharon moves out of her dreary council flat and into wealthy Tracey\'s palatial home in the suburbs. As the women get on with their lives and their husbands serve their sentences, they find help and hindrance in equal parts from Tracey\'s man-eating neighbour, Dorien, a married, middle-aged woman who has frequent affairs with younger men.',NULL,'GBR','Birds of a Feather','https://s3.amazonaws.com/schedulesdirect/assets/p341446_i_h3_aa.jpg',4,NULL),('SH015443200000','Stand Up Comedyformat aus einem Waschsalon im Herzen von Köln.',NULL,'DEU','NightWash','https://s3.amazonaws.com/schedulesdirect/assets/p9145307_b_h3_aa.jpg',4,NULL),('SH034241610000','A look at the importance of the Royal Family during wartimes.',NULL,'GBR','Royals In Wartime','https://s3.amazonaws.com/schedulesdirect/assets/p17854646_st_h3_aa.jpg',4,NULL),('SH026471290000','Zak is a young surfer who gets sucked into the Seven Seas of the Bermuda Triangle, where he becomes a captain of a ship of outcasts. Together with his magical sword, he and his crew tackle the dangers of the land.',NULL,'GBR','Zak Storm','https://s3.amazonaws.com/schedulesdirect/assets/p13495253_st_h3_ab.jpg',4,NULL),('SH017232220000','Guy Fieri visits America\'s most interesting and unique restaurants.',NULL,'GBR','Diners, Drive-Ins and Dives','https://s3.amazonaws.com/schedulesdirect/assets/p185941_l_h3_aa.jpg',4,NULL),('SH012861150000','Bravo heads to the Big Apple for this entry in its hit reality TV franchise. The New York edition follows six confident women. The featured ladies are part-time socialite and full-time mother Aviva Drescher (who is also a cousin, by marriage, of actress Fran Drescher), best-selling author and journalist Carole Radziwill, savvy businesswoman Heather Thomson, entrepreneur Ramona Singer, sassy single mother Sonja Morgan and model Kristen Taekman.',NULL,'GBR','The Real Housewives of New York City','https://s3.amazonaws.com/schedulesdirect/assets/p186003_l_h3_ab.jpg',4,NULL),('SH014267690000','Unicorn pony Twilight Sparkle is sent to Ponyville by Princess Celestia to make some friends.',NULL,'GBR','My Little Pony: Friendship Is Magic','https://s3.amazonaws.com/schedulesdirect/assets/p8307652_l_h3_aa.jpg',4,NULL),('SH029228150000','Die ehemaligen Hauptdarsteller der Originalserie verbringen gemeinsam ihren Urlaub.',NULL,'DEU','Jersey Shore: Family Vacation','https://s3.amazonaws.com/schedulesdirect/assets/p15207885_b_h3_aa.jpg',4,NULL),('SH029042750000','Die Kandidaten wagen sich in einen Hindernislauf, der dafür gemacht wurde, sie möglichst spektakulär und witzig scheitern zu lassen. Pro Folge treten 24 Teilnehmer gegeneinander an, auf den Gewinner warten 50.000 Dollar Preisgeld.',NULL,'DEU','WipeOut - Mach dich nass!','https://s3.amazonaws.com/schedulesdirect/assets/p186368_i_h3_ab.jpg',4,NULL),('SH023220780000','Das Kinomagazin präsentiert kurz und kompakt die aktuellsten Kinofilme aus aller Welt. Dazu gibt es zu jedem Film wissenswerte Hintergrundinformationen und Einblicke.',NULL,'DEU','Watch Me - das Kinomagazin','https://s3.amazonaws.com/schedulesdirect/assets/p12396287_b_h3_ab.jpg',4,NULL),('SH023288870000','Die Experten dieser Sendung präsentieren Bastelideen rund um das Osterfest.',NULL,'DEU','Basteln fürs Osterfest','https://s3.amazonaws.com/schedulesdirect/assets/p12424230_st_h3_aa.jpg',4,NULL),('SH031541560000','Four young pandas go on the adventure of a lifetime after they accidentally absorb the chi of ancient kung fu masters and convince Dragon Master Po to teach them kung fu.',NULL,'GBR','Kung Fu Panda: The Paws of Destiny','https://s3.amazonaws.com/schedulesdirect/assets/p16163002_b_h3_aa.jpg',4,NULL),('SH034267290000','Hier werden die schlimmsten Flugkatastrophen und deren Gründe nach Auswertung aller Fakten realistisch nachgestellt, mit authentischen Tonaufzeichnungen und Interviews von Überlebenden, Spezialisten, Augenzeugen und Famlienmitgliedern der Opfer.',NULL,'DEU','Drama in der Luft','https://json.schedulesdirect.org/20141201/image/assets/p9462762_i_h3_aa.jpg',4,NULL),('SH032225950000','Joko Winterscheid und Klaas Heuer-Umlauf treten diesmal nicht gegeneinander an, sondern fordern gemeinsam einen ganzen Sender heraus. Als Gewinn winkt ihnen ein 15-minütiger Live-Sendeplatz - doch wenn sie verlieren, müssen sie dem Sender dienen.',NULL,'DEU','Joko & Klaas gegen ProSieben','https://s3.amazonaws.com/schedulesdirect/assets/p16890010_st_h3_aa.jpg',4,NULL),('SH023672320000','Preschool documentary series following the lives of eight young children and their families.',NULL,'GBR','Our Family','https://s3.amazonaws.com/schedulesdirect/assets/p12605179_b_h3_aa.jpg',4,NULL),('SH021115670000','`Deutschland sucht den Kinderstar\' und junge Talente mit kreativen Songideen. Aus über 2.000 Bewerbungen wurden nun 15 junge Musiktalente ausgesucht, die ihre Kompositionen einer prominenten Jury vorstellen dürfen.',NULL,'DEU','Dein Song','https://json.schedulesdirect.org/20141201/image/assets/p11438148_i_h3_aa.jpg',4,NULL),('SH021736140000','A deliberately slow series of documentaries that follows craftsmen as they create things.',NULL,'GBR','Handmade','https://json.schedulesdirect.org/20141201/image/assets/p11725953_i_h3_aa.jpg',4,NULL),('SH029537210000','Nate and Malika arrive to school late every morning because something amazing always happens on the way - not that the principal ever believes them.',NULL,'GBR','Nate Is Late','https://s3.amazonaws.com/schedulesdirect/assets/p15427924_st_h3_ab.jpg',4,NULL),('SH016398250000','In der Sendung müssen zwei Teams aus vorgegebenen Zutaten ein komplettes Menü zaubern. In mehreren Quizrunden können sie sich weitere Zutaten erspielen, mit denen sich vielleicht der kleine, aber feine Unterschied erkochen lässt.',NULL,'DEU','Topfgeldjäger','https://s3.amazonaws.com/schedulesdirect/assets/p9563656_b_h3_aa.jpg',4,NULL),('SH032153780000','Die Welt steckt voller Gefahren. Ob Brücken, Tunnel, Schiffspassagen oder Flughäfen - die Reihe stellt die spektakulärsten Gefahrenzonen anhand monothematischer Rankings vor.',NULL,'DEU','Extreme','https://s3.amazonaws.com/schedulesdirect/assets/p10946434_i_h3_ab.jpg',4,NULL),('SH031476170000','Gary Davies spins classic 80s hits and forgotten gems.',NULL,'GBR','Sounds of the 80s with Gary Davies','https://s3.amazonaws.com/schedulesdirect/assets/p16494764_st_h3_aa.jpg',4,NULL),('SH012707030000','Ted has fallen in love. It all started when his best friend, Marshall, drops the bombshell that he plans to propose to longtime girlfriend Lily, a kindergarten teacher. Suddenly, Ted realizes that he had better get a move on if he hopes to find true love. Helping him in the quest is Barney, a friend with endless - often outrageous - opinions, a penchant for suits and a foolproof way to meet women. When Ted meets Robin, he is sure it\'s love at first sight, but the affair fizzles into friendship. Voice-over by Bob Saget (\"Full House\") tells the story through flashbacks.',NULL,'GBR','How I Met Your Mother','https://s3.amazonaws.com/schedulesdirect/assets/p185124_l_h3_aa.jpg',4,NULL),('SH020644780000','Der kleine Hase springt, immer zum Spielen, Entdecken und Lachen aufgelegt, über seine Wiese und durchs Leben. Liebevoll unterstützt wird er von seinem Vater, dem großen Hasen.',NULL,'DEU','Weißt du eigentlich wie lieb ich dich hab?','https://s3.amazonaws.com/schedulesdirect/assets/p8793955_i_h3_aa.jpg',4,NULL),('SH030968260000','Vic Reeves and Bob Mortimer provide songs, sketches and silliness in buckets.',NULL,'GBR','Vic and Bob\'s Big Night Out','https://s3.amazonaws.com/schedulesdirect/assets/p16244159_b_h3_aa.jpg',4,NULL),('SH030227000000','Reporter begleiten die Retter in der Notaufnahme des Klinikums Kassel, die Feuerwehr Offenbach, die Mediziner in der Notfallambulanz, die Piloten und Ärzte im Rettungshubschrauber und auch die Rettungssanitäter in Darmstadt.',NULL,'DEU','112 - Wir retten Hessen','https://s3.amazonaws.com/schedulesdirect/assets/p15794439_b_h3_aa.jpg',4,NULL),('SH019162480000','Die TV-Adaption der populären Smartphone-App, moderiert von Jörg Pilawa. Pro Ausgabe spielen vier Kandidaten im Studio gegen die Online-Nutzer, die als Team Deutschland antreten. Die Zuschauer werden aktive Gegner der Studio-Kandidaten.',NULL,'DEU','Quizduell','https://s3.amazonaws.com/schedulesdirect/assets/p10752040_b_h3_aa.jpg',4,NULL),('SH016507610000','A trio of angels travel the Earth, inspiring people at crossroads in their lives to turn to God. But the angels aren\'t only teaching people - they are also learning lessons themselves. Tess, a more experienced angel, assigns Monica and sometimes, Andrew (who is also the Angel of Death), to a case in each episode, usually with an eye not only toward helping the person, but to drive home a lesson to the angel as well. The people being assisted have no idea that their benefactors are angels, of course. But when the person\'s issue has been dealt with, the angels reveal themselves in a halo of light, and reassure their charges that God loves them.',NULL,'GBR','Touched by an Angel','https://s3.amazonaws.com/schedulesdirect/assets/p184104_i_h3_aa.jpg',4,NULL),('SH019466750000','Der schnelle Überblick über die wichtigsten Ereignisse in Sachsen, Sachsen-Anhalt und Thüringen.',NULL,'DEU','Länder kompakt','https://s3.amazonaws.com/schedulesdirect/assets/p10871127_b_h3_ab.jpg',4,NULL),('SH019800570000','Wunderschöne Landschaften und Städte werden in diesen Dokumentationen gezeigt.',NULL,'DEU','Bilderbuch Deutschland','https://s3.amazonaws.com/schedulesdirect/assets/p593152_b_h3_aa.jpg',4,NULL),('SH012970970000','Classic comedy with John Cleese, Bill Oddie, Graeme Garden and Tim Brooke-Taylor.',NULL,'GBR','I\'m Sorry I\'ll Read That Again','https://s3.amazonaws.com/schedulesdirect/assets/p246969_st_h3_aa.jpg',4,NULL),('SH020170940000','Österreichische Forscherinnen und Wissenschaftlerinnen gehören zu den Vordenkern - ORF 3 widmet ihnen eine eigene Gesprächsleiste.',NULL,'DEU','science.talk','https://s3.amazonaws.com/schedulesdirect/assets/p11129728_b_h3_aa.jpg',4,NULL),('SH020014790000','Das Magazin beschäftigt sich Themen rund um das Automobil und zeigt in verschiedenen Beiträgen, was Automobilisten bewegt. Dabei werden sowohl aktuelle Entwicklungen als Höhepunkte der Geschichte des Automobils betrachtet.',NULL,'DEU','WELT Drive','https://s3.amazonaws.com/schedulesdirect/assets/p11076876_st_h3_aa.jpg',4,NULL),('SH012798330000','Comedy panel show hosted by English comedian Jimmy Carr that uses statistics and a series of opinion polls as a basis for discussion. Celebrity guests from the worlds of comedy and entertainment are divided into two teams, and each team is posed with a number of topical and light-hearted questions that they then debate. The rounds of questions include simple \"true or false\" statements as well as some more open subjects, such as guessing the most popular issues discussed by the British public in a particular week.',NULL,'GBR','8 Out of 10 Cats','https://json.schedulesdirect.org/20141201/image/assets/p8129793_i_h3_ab.jpg',4,NULL),('SH019374000000','Deutsches Boulevardmagazin mit den aktuellen Ereignissen des Tages, Klatsch und Tratsch aus der Welt der Stars und Sternchen, Kino-News und Internetneuheiten sowie Expertentalks.',NULL,'DEU','taff','https://s3.amazonaws.com/schedulesdirect/assets/p10838079_i_h3_ab.jpg',4,NULL),('SH019692430000','Nachdem er mit seinem Raumschiff eine Bruchlandung durchs Garagendach hingelegt hat, nimmt Familie Tanner den Außerirdischen ALF bei sich zu Hause auf. Fortan gilt es, das Witze erzählende und Chaos stiftende Zottelvieh vor den Nachbarn und dem Militär zu verstecken und die Hauskatze vor seinem ungewöhnlichen Appetit zu beschützen. Allerdings wünscht sich der liebenswert-durchgeknallte ALF doch immer wieder ein Wiedersehen mit den anderen Überlebenden seines explodierten Heimatplaneten.',NULL,'DEU','ALF','https://s3.amazonaws.com/schedulesdirect/assets/p183925_l_h3_aa.jpg',4,NULL),('SH019088980000','Good morning, Britain. Up early and need to catch up on the latest news, weather and sports? Then this weekday morning programme is for you, offering the latest information in such areas as entertainment, health and money. \"Good Morning Britain\" is the typical morning news and talk show. It features a number of presenters, correspondents and reporters covering what you should know to start your day before heading out the door.',NULL,'GBR','Good Morning Britain','https://s3.amazonaws.com/schedulesdirect/assets/p10719947_l_h3_aa.jpg',4,NULL),('SH012597100000','A Florida team of forensics investigators use cutting-edge scientific methods and old-fashioned police work to solve crimes. Horatio Caine, a former homicide detective, heads a group of investigators who work crimes amid the steamy tropical surroundings and cultural crossroads of Miami.',NULL,'GBR','CSI: Miami','https://s3.amazonaws.com/schedulesdirect/assets/p184820_i_h3_aa.jpg',4,NULL),('SH019379550000','Als Fry aufwacht, findet er sich im tausend Jahre älteren New York wieder. Er wurde versehentlich eingefroren und muss sich mit der neuen Situation zurechtfinden. Doch schon bald findet er eine chaotische Truppe, die ihm versucht zu helfen.',NULL,'DEU','Futurama','https://s3.amazonaws.com/schedulesdirect/assets/p184499_l_h3_aa.jpg',4,NULL),('SH034332130000','Seven budding chocolatiers battle it out for a truly special prize: the chance to have their very own chocolate bar manufactured and sold by one of the biggest chocolate companies in the world.',NULL,'GBR','The Hairy Bikers Chocolate Challenge','https://json.schedulesdirect.org/20141201/image/assets/p17908455_b_h3_aa.jpg',4,NULL),('SH021543380000','Durch Zufall wird Astronaut Tony Nelson Meister eines Flaschengeistes, der ihm in Gestalt der attraktiven Blondine Jeannie jeden Wunsch erfüllt. Da Jeannie aber etwas ungeschickt zu Werke geht, muss Nelson manch verunglückten Wunsch wieder hinbiegen.',NULL,'DEU','Bezaubernde Jeannie','https://s3.amazonaws.com/schedulesdirect/assets/p184165_i_h3_aa.jpg',4,NULL),('SH019864800000','In Zeiten des wachsenden Euroskeptizismus beleuchtet Vox Pop die Probleme und Missstände in Europa.',NULL,'DEU','Vox Pop','https://json.schedulesdirect.org/20141201/image/assets/p11005627_i_h3_aa.jpg',4,NULL),('SH022708430000','Mit Odysso kann die Wissenschaftsredaktion des SWR aktueller auf das Zeitgeschehen eingehen. Das Wissensmagazin gibt die Antworten, zu denen die Zuschauer Fragen haben.',NULL,'DEU','Odysso: Wissen im SWR','https://s3.amazonaws.com/schedulesdirect/assets/p9987880_i_h3_aa.jpg',4,NULL),('SH015403430000','Das Wissensmagazin geht auf Spurensuche, zeigt erstaunliche Entdeckungen und rätselhafte Phänomene des Alltags, vermittelt unterhaltsam und zuschauernah Wissenswertes aus Forschung und Technik. Denn die Alltagswelt steckt voller Wunder.',NULL,'DEU','Alles Wissen','https://s3.amazonaws.com/schedulesdirect/assets/p9126328_b_h3_aa.jpg',4,NULL),('SH019468620000','Regionalmagazin mit aktueller Berichterstattung von Ereignissen des Tages.',NULL,'DEU','MDR Sachsen-Anhalt heute','https://s3.amazonaws.com/schedulesdirect/assets/p10871871_b_h3_aa.jpg',4,NULL),('SH021832870000','Die Reihe gibt Einblick in ein Land mit vielen Gegensätzen. Hier treffen Jahrtausende alte Kultur- und Gedenkstätten auf westlich geprägte Metropolen wie Istanbul. Die Reihe erzählt die Geschichte der Völker, die die heutige Türkei besiedelten und stellt Wirtschaft, Kultur und Natur der Türkei vor. Außerdem begegnet der Zuschauer den unterschiedlichsten Menschen, von den Nomadenvölkern bis zu den nach Veränderung strebenden Menschen in den großen Städten.',NULL,'DEU','Abenteuer Türkei','https://json.schedulesdirect.org/20141201/image/assets/p11768355_i_h3_aa.jpg',4,NULL),('SH016395030000','Der ehemalige Marineoffizier Thomas Magnum beschließt, als Privatdetektiv in Oahu auf Hawaii zu arbeiten. Im Gegenzug für seine Dienste als Sicherheitschef darf er im Gästehaus seines wohlhabenden Arbeitgebers Robin Masters wohnen.',NULL,'DEU','Magnum','https://s3.amazonaws.com/schedulesdirect/assets/p183936_b_h3_ab.jpg',4,NULL),('SH016937100000','Die Sendung rückt Bayerns junge Musikszene ins Rampenlicht. Drei ausgewählte Bands treffen ihre Idole, treten auf großen Bühnen auf und produzieren ihr eigenes Musikvideo.',NULL,'DEU','Startrampe','https://s3.amazonaws.com/schedulesdirect/assets/p9764820_b_h3_aa.jpg',4,NULL),('SH027579730000','Der Hengst Spirit wird gefangen genommen und soll gezähmt werden. Die zwölfjährige Lucky befreit und versteckt ihn, bis die Luft rein ist. Fortan sind die beiden beste Freunde und erleben gemeinsam mit zwei weiteren Mädchen spannende Abenteuer.',NULL,'DEU','Spirit: wild und frei','https://s3.amazonaws.com/schedulesdirect/assets/p14059727_i_h3_aa.jpg',4,NULL),('SH012596590000','FBI special agents investigate unexplained cases known as \"X-Files\". Though the government is convinced that the outlandish reports are false, conspiracy theorist Fox Mulder and realist Dana Scully, for most of the series, stop at nothing to prove that \"the truth is out there.\"',NULL,'GBR','The X-Files','https://s3.amazonaws.com/schedulesdirect/assets/p183870_l_h3_ab.jpg',4,NULL),('SH031184410000','Miss Jane Marple ist eine niedliche ältere Dame, die als messerscharfe Detektivin agiert und einen mysteriösen Mord nach dem anderen aufklärt. Kein Attentat bleibt ungeklärt, während Miss Marple nie ihren Humor verliert.',NULL,'DEU','Agatha Christie\'s Marple','https://json.schedulesdirect.org/20141201/image/assets/p203850_i_h3_ab.jpg',4,NULL),('SH023450480000','Molang and Piu Piu are friends who always have a great time together whether they\'re flying to the moon or merely watering the vegetable patch.',NULL,'GBR','Mölang','https://s3.amazonaws.com/schedulesdirect/assets/p12387368_b_h3_ac.jpg',4,NULL),('SH014917500000','Incisive documentaries cover the complexity of the human experience.',NULL,'GBR','Frontline','https://s3.amazonaws.com/schedulesdirect/assets/p184043_b_h3_ae.jpg',4,NULL),('SH019599530000','Comedy series making fun of technology and radio, written by Jerome Vincent and Stephen Dinsdale. Secret audio files and life logs reveal the special work of the Institute of Radiophonic Evolution.',NULL,'GBR','The Future of Radio','https://s3.amazonaws.com/schedulesdirect/assets/p10920409_st_h3_aa.jpg',4,NULL),('SH024916260000','Following the lives and loves of the men of RAF Hornet Squadron who are transferred to France at the outbreak of World War II in September 1939.',NULL,'GBR','Piece of Cake','https://s3.amazonaws.com/schedulesdirect/assets/p463990_st_h3_aa.jpg',4,NULL),('SH030355240000','A professional medium takes on a highly efficient but heartless assistant. Starring Alison Steadman and Rosie Cavaliero.',NULL,'GBR','Beyond Black','https://s3.amazonaws.com/schedulesdirect/assets/p15857571_i_h3_aa.jpg',4,NULL),('SH013854520000','The colour and adventure of Edwardian Africa is captured in the true story of a pioneer family. See Africa through an 11 year old girl\'s eyes as a bewitching and magical place.',NULL,'GBR','The Flame Trees of Thika','https://s3.amazonaws.com/schedulesdirect/assets/p505630_i_h3_aa.jpg',4,NULL),('SH030881540000','Die Sendung befasst sich mit den zentralen Fragen und Entwicklungen der Demokratie in einer unruhigen Welt. Sie geht über die Aktualität hinaus und hinterfragt unter anderem Begriffe, die täglich in den Nachrichten vorkommen.',NULL,'DEU','RESPEKT','https://s3.amazonaws.com/schedulesdirect/assets/p14717500_i_h3_aa.jpg',4,NULL),('SH029541030000','Eager, young birds flock together to help their community in an attempt to earn their wings as rescue birds.',NULL,'GBR','Top Wing','https://s3.amazonaws.com/schedulesdirect/assets/p14648331_b_h3_aa.jpg',4,NULL),('SH031906530000','Silvia und ihr Bruder nahmen als Team `Noobees\' an professionellen Gaming-Wettkämpfen teil.',NULL,'DEU','NOOBees','https://s3.amazonaws.com/schedulesdirect/assets/p15932042_b_h3_aa.jpg',4,NULL),('SH019327120000','The existence of aliens has been debated for decades in America, although to date there has been very little evidence to support the arguments made by either side of the issue. That may be changing thanks to Hangar 1, a facility that houses an archive of more than 70,000 files that have been gathered over a period of nearly 50 years. The files, maintained by independent organization MUFON (The Mutual UFO Network), have recently been opened for investigation. \"Hangar 1: The UFO Files\" digs deep into the archives in search of evidence of UFOs.The show scours the files to try to find connections, clues and evidence that could finally lead to a definitive answer about whether UFOs are real.',NULL,'GBR','Hangar 1: The UFO Files','https://s3.amazonaws.com/schedulesdirect/assets/p10472646_i_h3_aa.jpg',4,NULL),('SH012664110000','Homeowners across Britain try to complete do-it-yourself home projects on their own. But sometimes, they need help finishing the work. That\'s where presenter Nick Knowles and his team of designers and builders step in. They help homeowners complete their DIY projects gone awry.',NULL,'GBR','DIY SOS: The Big Build','https://s3.amazonaws.com/schedulesdirect/assets/p362424_i_h3_aa.jpg',4,NULL),('SH022595580000','Einer der größten Flüsse unseres Planeten ist immer noch geheimnisvoll. Auf seiner Strecke trennt der Amur Russland von China und verbindet völlig verschiedene Welten: das größte Grasland der Erde, ihre größten Urwälder und ausgedehnte Au-Gebiete.',NULL,'DEU','Amur: Asiens Amazonas','https://s3.amazonaws.com/schedulesdirect/assets/p12084180_b_h3_ad.jpg',4,NULL),('SH015402000000','Das Gesundheitsmagazin informiert über Behandlungsmethoden, Patientengeschichten und Ratschläge.',NULL,'DEU','Visite','https://s3.amazonaws.com/schedulesdirect/assets/p9125742_b_h3_aa.jpg',4,NULL),('SH019667440000','Dokumentationsreihe zu brisanten Themen aus Gesellschaft, Politik und Geschichte.',NULL,'DEU','Die Story','https://s3.amazonaws.com/schedulesdirect/assets/p10453130_b_h3_ab.jpg',4,NULL),('SH012925240000','Preschool series following inquisitive puppet Milkshake Monkey.',NULL,'GBR','Milkshake Monkey','https://s3.amazonaws.com/schedulesdirect/assets/p8167751_b_h3_aa.jpg',4,NULL),('SH030877800000','Diese Sendung begleitet versierte Mechaniker, die große Maschinen reparieren. Dabei schrecken sie vor keiner Herausforderung zurück, wie zum Beispiel einem 100 Tonnen schweren Kran, der wieder zum Laufen gebracht werden muss.',NULL,'DEU','Die Mega-Mechaniker - Retter fürs Große','https://s3.amazonaws.com/schedulesdirect/assets/p16200923_st_h3_ag.jpg',4,NULL),('SH013006400000','After meeting 25 men a woman tries to narrow them down to one man who could steal her heart.',NULL,'GBR','The Bachelorette','https://s3.amazonaws.com/schedulesdirect/assets/p9056642_i_h3_aa.jpg',4,NULL),('SH023584930000','Die Reihe zeigt Reportagen, die jeweils einem Thema nachgehen.',NULL,'DEU','Wie geht das?','https://s3.amazonaws.com/schedulesdirect/assets/p12561075_i_h3_aa.jpg',4,NULL),('SH027976490000','Die aktuellen Wettbewerbe der FIS im alpinen Skirennsport werden übertragen und kommentiert.',NULL,'DEU','Ski Alpin','https://s3.amazonaws.com/schedulesdirect/assets/p9623917_i_h3_aa.jpg',4,NULL),('SH029962240000','Arthur muss mithilfe der Geschwister Selenia und Betameche die Heimat der Minimoys vor Gefahren schützen. Doch das gestaltet sich nicht gerade als einfach, erst recht nicht, als der gesamte Stamm der Minimoys all seine Hoffnungen in ihn setzt.',NULL,'DEU','Arthur und die Minimoys','https://s3.amazonaws.com/schedulesdirect/assets/p14923660_i_h3_aa.jpg',4,NULL),('SH022518890000','Die Dokumentationsreihe zeigt Berichte über die Natur- und Kultursehenswürdigkeiten Hessens.',NULL,'DEU','Erlebnis Hessen','https://s3.amazonaws.com/schedulesdirect/assets/p12057821_i_h3_aa.jpg',4,NULL),('SH023720810000','Der Sprössling von Simba und Nala, Kion, übernimmt das Kommando der `Löwengarde\'. Die Gruppe besteht aus klugen und mutigen Tieren der Steppe, die das Königreich beschützen sollen. Kion verstößt gegen die Tradition, weil er keine Löwen aufnimmt.',NULL,'DEU','Die Garde der Löwen','https://s3.amazonaws.com/schedulesdirect/assets/p12371444_i_h3_aa.jpg',4,NULL),('SH012794060000','Journalist and TV personality Piers Morgan gets up close and personal with big name stars in in-depth celebrity interviews that cover a variety of subjects. \"Piers Morgan\'s Life Stories\" pushes the envelope with probing questions, from the deeply personal to experiences of fame, as the life of the famous subject is laid bare. The face-to-face interviews are filmed in front of a studio audience.',NULL,'GBR','Piers Morgan\'s Life Stories','https://s3.amazonaws.com/schedulesdirect/assets/p8128134_b_h3_ab.jpg',4,NULL),('SH019897220000','Vier Freunde, ein Ziel: Sie wollen ihren eigenen Style finden und wagen ein spannendes Experiment.',NULL,'DEU','Du bist STYLE!','https://s3.amazonaws.com/schedulesdirect/assets/p11040055_b_h3_aa.jpg',4,NULL),('SH021397950000','Hund Gustav und seine Freunde wohnen in einem idyllischen Blaubeerwald. Dort erleben sie gemeinsam spannende Abenteuer.',NULL,'DEU','Gustavs Welt',NULL,4,NULL),('SH027663480000','An intimate look at our deepest fantasies, exploring their deeper meanings beyond the sex. Ordinary men and women volunteered to reveal their secret fantasies in front of a camera, before a group of experts analyse what they have heard.',NULL,'GBR','My Secret Sex Fantasy','https://s3.amazonaws.com/schedulesdirect/assets/p14489287_st_h3_aa.jpg',4,NULL),('SH019369690000','Der erfolgreiche Werbejingle-Komponist Charlie Harper genießt sein Junggesellen-Leben in seinem Haus am Strand von Malibu. Doch dann zieht sein Bruder, der schüchterne, frisch geschiedene Chiropraktiker Alan gemeinsam mit seinem Sohn Jake bei ihm ein. Den beiden gegensätzlichen Brüdern fällt das Zusammenleben nicht immer leicht, doch irgendwie müssen sie sich arrangieren. Als Charlie plötzlich stirbt, kauft der etwas weltfremde Internet-Milliardär Walden Schmidt das Strandhaus und zieht bei Alan und Jake ein. Nun ist es Alan, der seinem neuen, unerfahrenen Mitbewohner in allen Lebenslagen mit Rat und Tat zur Seite steht.',NULL,'DEU','Two and a Half Men','https://s3.amazonaws.com/schedulesdirect/assets/p8218909_b_h3_aa.jpg',4,NULL),('SH019578700000','Alle zwei Wochen werden interessante Gäste zur Talkrunde aus Hamburg eingeladen.',NULL,'DEU','NDR Talk Show','https://json.schedulesdirect.org/20141201/image/assets/p10911024_i_h3_aa.jpg',4,NULL),('SH032733040000','A newly discovered substance combined with animal DNA creates the Power Rangers Beast Morphers team.',NULL,'GBR','Power Rangers: Beast Morphers','https://s3.amazonaws.com/schedulesdirect/assets/p16595885_i_h3_ab.jpg',4,NULL),('SH018442680000','Die am längsten laufende Krimiserie Deutschlands mit verschiedenen Ermittlerteams, die in unterschiedlichen deutschsprachigen Regionen tätig sind.',NULL,'DEU','Tatort','https://s3.amazonaws.com/schedulesdirect/assets/p10416816_b_h3_aa.jpg',4,NULL),('SH006921640000','Der Antiquar Georg Wilsberg ist permanent knapp bei Kasse. Oft muss er seine Freunde finanziell um Hilfe bitten. Um noch etwas dazuzuverdienen, nimmt er Aufträge als Privatdetektiv an. Bald spannt er auch seine Freunde in die Ermittlungen ein.',NULL,'DEU','Wilsberg','https://json.schedulesdirect.org/20141201/image/assets/p530512_i_h3_aa.jpg',4,NULL),('SH019426980000','Spannende Kriminalfälle werden erneut beleuchtet, um die Methoden der Aufklärung zu zeigen. Mithilfe von moderner Technik und erfahrenem Personal in der Gerichtsmedizin können selbst die schwierigsten Fälle geknackt werden.',NULL,'DEU','Autopsie - Mysteriöse Todesfälle','https://s3.amazonaws.com/schedulesdirect/assets/p10856625_b_h3_aa.jpg',4,NULL),('SH033304850000','A hapless supermarket manager tries in vain to deal with hopeless staff and haphazard customers.',NULL,'GBR','Tripper\'s Day','https://s3.amazonaws.com/schedulesdirect/assets/p17447462_st_h3_aa.jpg',4,NULL),('SH031951710000','Six overweight Brits take on six off-the-shelf diets for 28 days, and this show is all about saving money. We work out how much each diet costs them for every pound they lose - pound for pound - to see who will lose weight at the cheapest price.',NULL,'GBR','Save Money: Lose Weight','https://s3.amazonaws.com/schedulesdirect/assets/p16757463_st_h3_aa.jpg',4,NULL),('SH019871220000','Mit Ironie und Absurdität skizziert jede Folge einen Zeitgeist, der Schlagzeilen macht.',NULL,'DEU','(Fast) Die ganze Wahrheit','https://s3.amazonaws.com/schedulesdirect/assets/p11005288_i_h3_aa.jpg',4,NULL),('SH020305500000','Der Kurs bietet die Möglichkeit, vorhandene Englischkenntnisse aufzufrischen und zu vertiefen. Die Sendungen des Kurses sind rein englischsprachig. Die Begleitbücher geben aber deutschsprachige Hinweise und Anleitungen.',NULL,'DEU','TELEKOLLEG Englisch','https://s3.amazonaws.com/schedulesdirect/assets/p11176247_st_h3_aa.jpg',4,NULL),('SH012664100000','Dr Mark Sloan is chief of Internal Medicine at Community General Hospital - and sometime consultant to the local police department. When he\'s drawn into a case, he combines sleuthing and medicine to solve the crime. That crime is usually one his detective son, Steve, is working on as a member of the local police department. Dr Sloan\'s medical colleagues, including doctors Amanda Bentley, Jack Stewart and Jesse Travis, are also frequently drawn into his investigations.',NULL,'GBR','Diagnosis Murder','https://s3.amazonaws.com/schedulesdirect/assets/p184251_b_h3_aa.jpg',4,NULL),('SH031318390000','Pepi Nana and her tightly bonded family of comical toys go on adventures with a magical visitor from the Moon.',NULL,'GBR','Moon and Me','https://s3.amazonaws.com/schedulesdirect/assets/p16395288_st_h3_aa.jpg',4,NULL),('SH012730850000','Set in deep space, the programme revolves around the adventures of Dylan Hunt, captain of the Andromeda Ascendant, his crew members, and their efforts to restore the Systems Commonwealth, a government that was responsible for a time of extended peace and prosperity. The sci-fi series is based on previously unused materials written by late writer Gene Roddenberry.',NULL,'GBR','Andromeda','https://s3.amazonaws.com/schedulesdirect/assets/p184761_b_h3_aa.jpg',4,NULL),('SH022016040000','Stop-motion animation about a family of mouse-like creatures who live on, and inside, a small moon-like planet.',NULL,'GBR','Clangers','https://s3.amazonaws.com/schedulesdirect/assets/p11846780_i_h3_aa.jpg',4,NULL),('SH018558720000','Das Magazin berichtet von aktuellen Ereignissen in der Welt der Prominenten.',NULL,'DEU','Exclusiv - Das Starmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p10458817_b_h3_aa.jpg',4,NULL),('SH012977650000','Nick Cave, Little Simz, Thys and Anne Müller are in Mary Anne\'s new music selection.',NULL,'GBR','6 Music Recommends','https://s3.amazonaws.com/schedulesdirect/assets/p8183972_st_h3_aa.jpg',4,NULL),('SH015352280000','Victoria Derbyshire presents the BBC\'s daily news and current affairs programme.',NULL,'GBR','Victoria Derbyshire','https://s3.amazonaws.com/schedulesdirect/assets/p9100442_i_h3_ab.jpg',4,NULL),('SH028307820000','Die Experten dieser Sendung präsentieren die neusten und besten Artikel aus dem Baumarkt.',NULL,'DEU','Baumarkt','https://s3.amazonaws.com/schedulesdirect/assets/p14862744_st_h3_aa.jpg',4,NULL),('SH019060020000','The Moodys may not be the closest family you\'ve ever seen, but they often come together for holiday celebrations and major family events. Each episode focuses on an occasion in the course of the Moodys\' year, ranging from a wedding anniversary to an Easter trip to the coast and even a court appearance. The loveable-but-dysfunctional family includes parents Maree and Kevin, sons Dan and Sean, and hapless Uncle Terry.',NULL,'GBR','The Moodys','https://s3.amazonaws.com/schedulesdirect/assets/p10701966_b_h3_ab.jpg',4,NULL),('SH012692140000','London barrister Horace Rumpole defends in criminal cases.',NULL,'GBR','Rumpole of the Bailey','https://s3.amazonaws.com/schedulesdirect/assets/p479864_b_h3_ab.jpg',4,NULL),('SH022234250000','Olivia `Liv\' Moore hatte einen perfekten Lebensplan. Sie wollte ihr Medizinstudium mit Bravour beenden und danach die große Liebe finden. Doch nach einer Studentenparty hat sich ihr Leben schlagartig geändert. Sie kam in die Klauen von Zombies und wurde daraufhin selbst zu einem. Seitdem trägt sie ein Geheimnis mit sich mit, das sie vor Freunden und Familie bewahren muss. Nur ihr Freund Ravi, der mit ihr gemeinsam in der Pathologie arbeitet, weiß Bescheid. Dort verspeist Liv auch Gehirne, um zu überleben. Der einzige Nebeneffekt: Mit jedem Biss nimmt sie die Erinnerungen der Verstorbenen auf. Mit ihrem so erworbenen Wissen hilft sie Detective Clive Babinaux bei der Aufklärung von Morden.',NULL,'DEU','iZombie','https://s3.amazonaws.com/schedulesdirect/assets/p10781575_l_h3_aa.jpg',4,NULL),('SH029647210000','Die Bundesautobahn 2 zählt zu wichtigsten Verkehrsadern Deutschlands. Die Route verbindet große Industriestandorte im Ruhrgebiet und den Beneluxstaaten mit Osteuropa. Gezeigt werden Menschen, die in der Nähe leben und arbeiten.',NULL,'DEU','A2 - Abenteuer Autobahn','https://s3.amazonaws.com/schedulesdirect/assets/p15494227_b_h3_aa.jpg',4,NULL),('SH029850720000','Die Sendung befasst sich mit den zentralen Fragen und Entwicklungen der Demokratie in einer unruhigen Welt. Sie geht über die Aktualität hinaus und hinterfragt unter anderem Begriffe, die täglich in den Nachrichten vorkommen.',NULL,'DEU','alpha-Demokratie-Weltweit','https://s3.amazonaws.com/schedulesdirect/assets/p15604078_st_h3_aa.jpg',4,NULL),('SH027580960000','Reading books is wonderful, especially when you\'re sitting with a big cuddly Yeti! Nina and Leon, two little mice, are very lucky indeed as every day Yetily reads them a new book.',NULL,'GBR','Yeti Tales','https://s3.amazonaws.com/schedulesdirect/assets/p13576269_i_h3_aa.jpg',4,NULL),('SH021826630000','Der britische Küchenchef Gordon Ramsay besucht gastronomische Krisenherde und beseitigt wirtschaftliche und kulinarische Missstände. Dabei hat er nicht mehr als eine Woche Zeit, um das Restaurant wieder auf Vordermann zu bringen.',NULL,'DEU','In Teufels Küche mit Gordon Ramsay','https://s3.amazonaws.com/schedulesdirect/assets/p185566_i_h3_ab.jpg',4,NULL),('SH020128250000','Mike Baxter ist der Marketing-Chef einer bekannten Sportartikelfirma und ist geschäftlich viel und gern auf Reisen. Anders als in seinem beruflichem Umfeld, wo er als echter Kerl gilt, ist die Situation für den männlichen Mike allerdings zu Hause. Dort haben nämlich vier Frauen das Sagen.',NULL,'DEU','Last Man Standing','https://s3.amazonaws.com/schedulesdirect/assets/p8679132_l_h3_ab.jpg',4,NULL),('SH012608420000','The long-running children\'s magazine offers things to make, celebrity guests, music, sport, food and a whole lot more.',NULL,'GBR','Blue Peter','https://s3.amazonaws.com/schedulesdirect/assets/p342385_b_h3_ab.jpg',4,NULL),('SH034240650000','Love Monster has to deal with being the only monster in a town full of cute baby animals. Based on the \"Love Monster\" series of books by award-winning British author and illustrator Rachel Bright.',NULL,'GBR','Love Monster','https://s3.amazonaws.com/schedulesdirect/assets/p17854330_st_h3_aa.jpg',4,NULL),('SH029331620000','This observational documentary follows the people who have been affected by the UK\'s housing crisis. As house prices spiral upwards, more and more people have to rent, adding onto the already 8 million tally of tenants. On the other hand there are 2 million private landlords who buy-to-let, and this number is growing where there is the opportunity to make profit. The relationship between tenants and landlords has always been known to sometimes conflict, but with the divide becoming wider, there have been even more dramatic issues coming to the surface. The show follows eviction specialists as they attempt to remove nightmare tenants from buildings and the elite council teams as they seek out rogue landlords who are providing unsuitable living environments.',NULL,'GBR','Bad Tenants, Rogue Landlords','https://s3.amazonaws.com/schedulesdirect/assets/p15330222_b_h3_av.jpg',4,NULL),('SH012736670000','A specialised team of police officers uses newfound evidence and new technology to try and solve cold cases. Led by the temperamental Detective Superintendent Peter Boyd, the experts work on bringing justice to murder victims and their families.',NULL,'GBR','Waking the Dead','https://json.schedulesdirect.org/20141201/image/assets/p527216_i_h3_ad.jpg',4,NULL),('SH023288320000','This talent show reveals the true side of fame while helping young people get there. Young singers who think they\'ve got what it takes to be a winner will compete!',NULL,'GBR','Got What It Takes?','https://s3.amazonaws.com/schedulesdirect/assets/p12424093_i_h3_aa.jpg',4,NULL),('SH015083210000','Series set at the fictional Maplin\'s holiday camp in 1959.',NULL,'GBR','Hi-De-Hi!','https://s3.amazonaws.com/schedulesdirect/assets/p400504_i_h3_aa.jpg',4,NULL),('SH019690030000','Gemeinsam mit dem Fuchs bereist der kleine Prinz in der Serie insgesamt 24 Planeten. Auf dem Weg in ferne Galaxien folgt er der hinterlistigen Schlange, die überall Unheil sät. Der Prinz hilft den Bewohnern, die Gefahren abzuwenden.',NULL,'DEU','Der kleine Prinz','https://s3.amazonaws.com/schedulesdirect/assets/p9036350_i_h3_aa.jpg',4,NULL),('SH030381900000','Host and renovator Scott McGillivray shows homeowners with cash problems how to create rental suites in their home, as a way to generate additional revenue to defray mortgage costs. In each episode, McGillivray presents his client with two design options. After they pick the one that meets their needs, the host and his team of contractors renovate the space, with the meticulous McGillivray overseeing a sleek and cost-effective makeover.',NULL,'GBR','Income Property','https://s3.amazonaws.com/schedulesdirect/assets/p193255_l_h3_aa.jpg',4,NULL),('SH019383520000','Fünf Kandidatinnen treten an, um die Frau mit dem besten Stil zu werden. Am Anfang der jeweiligen Woche werden die Aufgabe und das Budget bekanntgegeben. Jede der Teilnehmerinnen hat vier Stunden Zeit. Dieses Mal ist Svetlana an der Reihe.',NULL,'DEU','Shopping Queen','https://s3.amazonaws.com/schedulesdirect/assets/p10842180_st_h3_aa.jpg',4,NULL),('SH031747090000','Die RTL II-Sozialreportage begleitet die Polizei beim Einsatz in deutschen Brennpunktvierteln und zeigt ihren unermüdlichen Kampf gegen die Kriminalität.',NULL,'DEU','Hartes Deutschland - Leben im Brennpunkt','https://s3.amazonaws.com/schedulesdirect/assets/p16650997_st_h3_ab.jpg',4,NULL),('SH019969210000','In der mittäglichen Service-Sendung wird gekocht, gegärtnert und gebastelt. Im wöchentlichen Wechsel geben die Moderatoren Tipps für ein schöneres Zuhause, lassen Starköche leckere Menüs zubereiten und beantworten mit Experten Zuschauerfragen.',NULL,'DEU','ARD-Buffet','https://s3.amazonaws.com/schedulesdirect/assets/p10414039_i_h3_aa.jpg',4,NULL),('SH031539610000','The United States\' National Transportation Safety Board investigates air disasters that have occurred in Alaska.',NULL,'GBR','Alaska Aircrash Investigations','https://s3.amazonaws.com/schedulesdirect/assets/p12785827_b_h3_aa.jpg',4,NULL),('SH024603180000','Der elfjährige Lincoln lebt ein chaotisches Leben. Grund dafür sind seine zehn Schwestern.',NULL,'DEU','Willkommen bei den Louds','https://s3.amazonaws.com/schedulesdirect/assets/p12753730_i_h3_aa.jpg',4,NULL),('SH026904260000','Die zwei Gastgeber Charlotte und Bear stellen Beziehungen auf die Probe, indem sie Paare und Freunde Tattoos füreinander entwerfen lassen. Sie sehen die Ergebnisse jedoch erst, wenn sie bereits auf der Haut verewigt wurden.',NULL,'DEU','Just Tattoo Of Us','https://json.schedulesdirect.org/20141201/image/assets/p13823506_i_h3_aa.jpg',4,NULL),('SH033831270000','Das Boss Baby braucht Hilfe von Tim, seinem Bruder und Verbündeten. Er tut sich schwer die richtige Work-Life-Balance zu finden, und das Familienleben mit seinem Job beim Baby Corp. Hauptquartier unter einen Hut zu bekommen.',NULL,'DEU','The Boss Baby: wieder im Geschäft','https://s3.amazonaws.com/schedulesdirect/assets/p15289801_i_h3_ac.jpg',4,NULL),('SH019691990000','Das Magazin berichtet über Entwicklungen in Politik, Gesellschaft und Kultur Sloweniens.',NULL,'DEU','Slowenien Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p10958089_b_h3_ab.jpg',4,NULL),('SH021114690000','Celebrity cooks travel across the globe to learn different recipes. Each episode follows a chef as they look into the eating habits of various cultures and their history with food. On a trip to Egypt, \"Hairy Biker\' star Dave Myers discovers the origins of some of the world\'s oldest recipes. He finds ancient farming sites on the banks of the River Nile and in Giza, Dave visits the pyramids whose builders were said to have survived on bread and beer. Elsewhere, Scottish chef Tony Singh traces the roots of his mum\"s Punjabi cooking on his travels to India.',NULL,'GBR','A Cook Abroad','https://s3.amazonaws.com/schedulesdirect/assets/p11437817_i_h3_aa.jpg',4,NULL),('SH006921700000','Die Kommissare des Polizeirufs 110 haben immer Fälle, die einer Aufklärung bedürfen. Dabei ermitteln die Polizisten eine ganze Bandbreite an Verbrechen mit den unterscheidlichsten Motiven: von Beziehungstat, Verzweiflungsakt oder Racheakt. Die Ermittler finden immer heraus, was sich hinter den Fassaden und Gartenzäunen abspielt.',NULL,'DEU','Polizeiruf 110','https://s3.amazonaws.com/schedulesdirect/assets/p466463_b_h3_aa.jpg',4,NULL),('SH019862310000','Berichtet über Kulturhighlights in Hessen, über Trends und Tendenzen, über Skandale und Flops.',NULL,'DEU','Hauptsache Kultur','https://s3.amazonaws.com/schedulesdirect/assets/p11026421_b_h3_aa.jpg',4,NULL),('SH034466520000','Ian McMillan goes on a literary tour of Yorkshire, from Barry Hines to the Brontes.',NULL,'GBR','Writing Yorkshire','https://json.schedulesdirect.org/20141201/image/assets/p17995435_st_h3_aa.jpg',4,NULL),('SH034352240000','Der kleine rote Rettungsmotorradfahrer Ricky Zoom und seine treuen und enthusiastischen Fahrradkumpels Loop, Scootio und DJ rasen über die Sportstrecke, probieren neue Stunts im Park aus und begeben sich auf große Abenteuer.',NULL,'DEU','Ricky Zoom','https://json.schedulesdirect.org/20141201/image/assets/p17232440_i_h3_aa.jpg',4,NULL),('SH025072440000','Der Physiker und ehemalige Astronaut Professor Dr. Ulrich Walter ergründet die Geheimnisse in den Tiefen des Universums. Was die Faszination am ungewissen Weiten auslöst, versucht er, mittels der Wissenschaft herauszufinden.',NULL,'DEU','Spacetime','https://s3.amazonaws.com/schedulesdirect/assets/p13261579_st_h3_aa.jpg',4,NULL),('SH019758060000','Das Wirtschaftsmagazin wirft einen eigenständigen Blick auf das Wirtschaftsleben in der Schweiz und im Ausland. Mit zahlreichen Hintergrundberichten, anschaulichen Grafiken und ausführlichen Reportagen werden aktuelle Themen vorgestellt.',NULL,'DEU','ECO','https://json.schedulesdirect.org/20141201/image/assets/p10984244_i_h3_aa.jpg',4,NULL),('SH013056510000','Series following the IMF agents as they are sent on dangerous secret missions to fight crime.',NULL,'GBR','Mission: Impossible','https://s3.amazonaws.com/schedulesdirect/assets/p183974_l_h3_aa.jpg',4,NULL),('SH021288230000','Die Vierlinge Nicky, Ricky, Dicky und Dawn haben außer ihrem Geburtsdatum und ihren Eltern nicht viel gemeinsam. Da lässt der Streit unter Geschwistern nicht lange auf sich warten. Doch wenn es sein muss, halten die vier Geschwister zusammen.',NULL,'DEU','Nicky, Ricky, Dicky & Dawn','https://s3.amazonaws.com/schedulesdirect/assets/p10916406_i_h3_aa.jpg',4,NULL),('SH020254440000','Dokumentar- und Interviewreihe mit Michel Friedman, der Menschen zu den unterschiedlichsten Themen aufsucht: mal popkultureller Art, und mal, um gesellschaftliche Probleme zu hinterfragen.',NULL,'DEU','Friedman schaut hin','https://s3.amazonaws.com/schedulesdirect/assets/p11157154_st_h3_aa.jpg',4,NULL),('SH026841680000','A secret, high-technology international agency called SHADO defends Earth from alien invaders.',NULL,'GBR','UFO','https://s3.amazonaws.com/schedulesdirect/assets/p519501_b_h3_aa.jpg',4,NULL),('SH023922950000','Fishermen attempt to catch fish that are considered impossible to catch due to their elusiveness or the roughness of the seas they live in.',NULL,'GBR','Fishing Impossible','https://s3.amazonaws.com/schedulesdirect/assets/p12722618_b_h3_ab.jpg',4,NULL),('SH029032240000','Two criminal barristers, Sasha Wass and Jeremy Dein, re-examine real historical murder cases that sent men and women to the gallows at the time but may not stand up against the forensic techniques of today. As they delve into the details of the evidence and trial, a living relative of the convicted person finds out more about their ancestor\'s life and story, discovering who they were and what might have led them to commit their crime. If Sasha and Jeremy believe they have a strong enough case, they present it to a senior Crown Court judge for the final verdict on whether the original conviction should be upheld, or if perhaps there was a miscarriage of justice.',NULL,'GBR','Murder, Mystery and My Family','https://json.schedulesdirect.org/20141201/image/assets/p15177970_i_h3_aa.jpg',4,NULL),('SH016610660000','Following the colourful personalities who make a living buying items at auctions is a favourite subject of TV producers. \"Baggage Battles\', essentially a replica of A&E Network\'s `Storage Wars\' minus the storage units, depicts the process of `auction specialists\' bidding for, buying and reselling property found in unclaimed luggage. It features three teams of bidders: Laurence and Sally Martin, who have appeared on `Storage Wars\' appraising items in their California antiques store; young entrepreneur Mark Meyer, who owns a Long Island, NY, thrift store; and Billy Leroy, the proprietor of Billy\"s Antiques and Props, a famous eclectic prop and antique store in the Bowery neighbourhood of Manhattan.',NULL,'GBR','Baggage Battles','https://s3.amazonaws.com/schedulesdirect/assets/p8967410_i_h3_aa.jpg',4,NULL),('SH016993350000','Exploring five of Britain\'s most extreme winter landscapes.',NULL,'GBR','The Great British Winter','https://s3.amazonaws.com/schedulesdirect/assets/p9788584_st_h3_aa.jpg',4,NULL),('SH027026640000','A brother and sister explore their neighbourhood and stumble into outlandish situations.',NULL,'GBR','The Bagel and Becky Show','https://s3.amazonaws.com/schedulesdirect/assets/p13730042_b_h3_aa.jpg',4,NULL),('SH012740720000','A group locks itself into a haunted location for 24 hours in order to explore the science and psychology of hauntings, as well as tangible evidence of life after death. Presenter Yvette Fielding and a team of paranormal investigators visit locations in Britain, the United Kingdom, Europe and the United States, hoping to document evidence of paranormal activity.',NULL,'GBR','Most Haunted','https://s3.amazonaws.com/schedulesdirect/assets/p185416_l_h3_aa.jpg',4,NULL),('SH012993200000','Serialised book readings, featuring works of non-fiction, biography, autobiography, travel and more.',NULL,'GBR','Book of the Week','https://s3.amazonaws.com/schedulesdirect/assets/p213857_b_h3_aa.jpg',4,NULL),('SH019334250000','Loosely based on an oral folk story of the same name, the series focuses on a little girl named Masha and a paternal bear who keeps her from disaster.',NULL,'GBR','Masha and the Bear','https://s3.amazonaws.com/schedulesdirect/assets/p794701_i_h3_aa.jpg',4,NULL),('SH012616430000','This fast-paced and stunt-filled motor show tests whether cars, both mundane and extraordinary, live up to their manufacturers\' claims. The hosts travel to locations around the world, performing extreme stunts and taking part in some unusual challenges to see what the featured cars are capable of. Celebrity guests also appear on some of the episodes to help test out the vehicles. However, things don\'t always go as planned, with broken bones and mechanical mishaps sometimes part of the experiments.',NULL,'GBR','Top Gear','https://s3.amazonaws.com/schedulesdirect/assets/p189669_i_h3_af.jpg',4,NULL),('SH022003840000','Diese Sendung zeigt die Abenteuer von Alvin und den Chipmunks. Simon, Theodore und Alvin verbreiten ständig Chaos und ganz viel Spaß. Selbst Ziehvater Dave kann den Wahnsinn nicht stoppen. Für die weibliche Note sorgen die drei Chipettes.',NULL,'DEU','Alvinnn!!! und die Chipmunks','https://s3.amazonaws.com/schedulesdirect/assets/p11563362_i_h3_ab.jpg',4,NULL),('SH012587870000','A spin-off of medical drama \"Casualty,\" this programme follows the lives of the surgeons, nurses and ancillary staff at Holby General Hospital.',NULL,'GBR','Holby City','https://s3.amazonaws.com/schedulesdirect/assets/p401842_l_h3_aa.jpg',4,NULL),('SH026279310000','Die Reihe zeigt europäische Orte, die Künstler und ihre Werke maßgeblich beeinflusst haben.',NULL,'DEU','Stadt Land Kunst','https://s3.amazonaws.com/schedulesdirect/assets/p13847903_st_h3_aa.jpg',4,NULL),('SH025057310000','Richard Diamond is an ex-cop, who uses his contacts to solve cases.',NULL,'GBR','Richard Diamond, Private Detective','https://json.schedulesdirect.org/20141201/image/assets/p476993_i_h3_aa.jpg',4,NULL),('SH029671680000','An insightful, intimate and honest look at how people buy, sell and market sex, with unprecedented access to a fascinating array of individuals working within Britain\'s multi-million pound sex industry.',NULL,'GBR','The Sex Business',NULL,4,NULL),('SH028610570000','Though some say there\'s no such thing as bad publicity, not all celebrities agree. When breaking laws, entering rehab or fudging ethics flips fame to infamy, the subject\'s PR team hurries to spin the negative press that fills media outlets. This hourlong series illuminates scandals that put celebs and their teams into full-on damage control. Robert Downey Jr., Sean Penn and Mel Gibson are among those whose reputations slid through the mud for offenses. Each episode chronicles one star\'s peccadillo, using lawyers, publicists, pop-culture disciples to explain why the public often forgives and welcomes back the transgressors.',NULL,'GBR','Celebrity Damage Control','https://s3.amazonaws.com/schedulesdirect/assets/p10810977_l_h3_aa.jpg',4,NULL),('SH006939640000','Wettervorhersage.',NULL,'DEU','Wetter','https://s3.amazonaws.com/schedulesdirect/assets/p528834_b_h3_aa.jpg',4,NULL),('SH033110740000','Featuring visits to factories and exploring the rich evolution and history of tools from their Paleolithic roots to building modern day skyscrapers.',NULL,'GBR','Toolbox','https://s3.amazonaws.com/schedulesdirect/assets/p306026_i_h3_aa.jpg',4,NULL),('SH013842320000','Based on a series of books by Terry Deary, \"Horrible Histories\" informs kids of historical events while being stuffed full of blood, battles and black humour. Each episode features sketches representing a selection of different eras and civilisations throughout history.',NULL,'GBR','Horrible Histories','https://s3.amazonaws.com/schedulesdirect/assets/p8523895_i_h3_aa.jpg',4,NULL),('SH018654570000','Harald Lesch findet überraschende Antworten auf naturwissenschaftliche Fragen.',NULL,'DEU','Leschs Kosmos','https://s3.amazonaws.com/schedulesdirect/assets/p10497073_b_h3_ac.jpg',4,NULL),('SH019202960000','All the latest news, sport and weather from around the Forces world.',NULL,'GBR','Forces World','https://s3.amazonaws.com/schedulesdirect/assets/p10771005_st_h3_aa.jpg',4,NULL),('SH027691220000','Former couples meet up for dinner and have to answer three brutally honest questions about where their relationship went wrong.',NULL,'GBR','Eating with My Ex','https://s3.amazonaws.com/schedulesdirect/assets/p14500656_b_h3_aa.jpg',4,NULL),('SH024531090000','Dr Simone and Dr Jackie discuss the difficulties they face balancing work and home life. Meanwhile, other ladies live the good life.',NULL,'GBR','Married to Medicine','https://s3.amazonaws.com/schedulesdirect/assets/p9765466_l_h3_aa.jpg',4,NULL),('SH026493980000','Series in which two artists discuss creative questions.',NULL,'GBR','Only Artists','https://s3.amazonaws.com/schedulesdirect/assets/p13958518_st_h3_aa.jpg',4,NULL),('SH019890360000','Die rbb Parlamentsberichterstatter informieren über die aktuellen Debatten und Hintergründe.',NULL,'DEU','Heute im Parlament','https://s3.amazonaws.com/schedulesdirect/assets/p11036642_b_h3_aa.jpg',4,NULL),('SH019664140000','Dieser Italienischkurs führt Anfänger in einem halben Jahr zur Beherrschung der wichtigsten Konversationsformeln und der nötigsten Grammatik. Auch zur Auffrischung von bereits vorhandenen Kenntnissen ist die Serie hervorragend geeignet.',NULL,'DEU','Avanti! Avanti!','https://s3.amazonaws.com/schedulesdirect/assets/p10946997_b_h3_aa.jpg',4,NULL),('SH030153770000','Match highlights of all the action from the EFL.',NULL,'GBR','EFL on Quest','https://s3.amazonaws.com/schedulesdirect/assets/p15758174_b_h3_ae.jpg',4,NULL),('SH019658800000','Die Sendung berichtet aktuell über Politik, Wirtschaft, Kultur und Unterhaltendes aus Hessen.',NULL,'DEU','hessenschau kompakt','https://s3.amazonaws.com/schedulesdirect/assets/p10944946_b_h3_aa.jpg',4,NULL),('SH033573420000','Fünf Paare betrachten den Beziehungsalltag der anderen und geben sich gegenseitig Noten. Der Reiz soll darin liegen, dass bei diesem Beziehungs-Check auf Herz und Nieren natürlich auch intime Beziehungsdetails auf den Prüfstand kommen.',NULL,'DEU','Du & Ich - Unverbesserlich!?','https://s3.amazonaws.com/schedulesdirect/assets/p17583545_st_h3_aa.jpg',4,NULL),('SH030692260000','Übertragungen aktueller Begegnungen im Frauen-Volleyball.',NULL,'DEU','Volleyball','https://s3.amazonaws.com/schedulesdirect/assets/p8391584_b_h3_am.jpg',4,NULL),('SH026964060000','Schon zu Highschool-Zeiten ist Flint Lockwood begeistert von der Wissenschaft und träumt davon, ein großer und genialer Erfinder zu werden. Doch wirklich erfolgreich ist der Nachwuchserfinder noch nicht, seine Experimente gehen meist schief.',NULL,'DEU','Wolkig mit Aussicht auf Fleischbällchen','https://s3.amazonaws.com/schedulesdirect/assets/p13542280_i_h3_ab.jpg',4,NULL),('SH021518800000','Highlights coverage of the X-Trial World Championship where the world\'s top riders attempt to clear a series of near-impossible obstacles in the fastest time. Fifth round comes from Spain.',NULL,'GBR','FIM X - Trial World Championship','https://s3.amazonaws.com/schedulesdirect/assets/p10781846_b_h3_ab.jpg',4,NULL),('SH017118240000','Im Bienenstock auf der Klatschmohnwiese wird eine Biene geboren, die gleich nachdem sie aus ihrer Zelle geschlüpft ist, besonders auffällt: die Biene Maja. Maja zeigt von da an, den Kindern ihre bunte Wald- und Wiesenwelt aus der Sicht der Insekten.',NULL,'DEU','Die Biene Maja','https://s3.amazonaws.com/schedulesdirect/assets/p9842561_i_h3_ab.jpg',4,NULL),('SH020064170000','Die Dokumentationen zeigen die Vielfalt der Kulturen und Ländern der Welt.',NULL,'DEU','Mein Ausland','https://json.schedulesdirect.org/20141201/image/assets/p11092457_i_h3_aa.jpg',4,NULL),('SH027380460000','Curious aliens from Planet Floog move to a suburban home on Earth.',NULL,'GBR','Floogals','https://s3.amazonaws.com/schedulesdirect/assets/p12405424_b_h3_aa.jpg',4,NULL),('SH019739350000','Das Politikmagazin liefert den Hintergrund von politischen Entscheidungen.',NULL,'DEU','Kontrovers','https://s3.amazonaws.com/schedulesdirect/assets/p10976535_b_h3_aa.jpg',4,NULL),('SH015310190000','Die Sendung beschäftigt sich mit der alltäglichen Lebenswirklichkeit von Frauen. Durch Porträts und neueste Informationen aus Medizin, Wirtschaft, Politik und Gesellschaft soll Frauen Mut gemacht werden, sie selbst zu sein.',NULL,'DEU','frauTV','https://s3.amazonaws.com/schedulesdirect/assets/p9083540_b_h3_ab.jpg',4,NULL),('SH013050000000','\"QI XL\' isn\'t your typical question-and-answer game. On this programme, most of the questions are obscure and so correct answers are unlikely to be given. To compensate for the level of difficulty, points are awarded not just for correct answers but also for `interesting\" answers, regardless of whether or not they even have anything to do with the original question asked. But contestants better be creative with their answers because they may lose points for giving an obvious joke answer. Bonus points are often given (or deducted) for various challenges or incorrect references to certain topics, which vary from episode to episode.',NULL,'GBR','QI XL','https://s3.amazonaws.com/schedulesdirect/assets/p8206942_b_h3_aa.jpg',4,NULL),('SH019658290000','Gesellschaftskritisches Magazin mit Themen aus den Bereichen Wirtschaft, Soziales und Politik.',NULL,'DEU','Umschau','https://json.schedulesdirect.org/20141201/image/assets/p10944709_i_h3_aa.jpg',4,NULL),('SH022564860000','A series that provides a glimpse into the minds of serial killers and what drove them to commit their crimes.',NULL,'GBR','Inside The Mind Of a Serial Killer','https://json.schedulesdirect.org/20141201/image/assets/p12080851_i_h3_aa.jpg',4,NULL),('SH029081550000','The motherhood of TV personalities Sam and Billie Faiers as they allow cameras into their homes to provide an inside and intimate look at their every day lives. The mums share the challenges they face along with their adorable families.',NULL,'GBR','Sam and Billie Faiers: The Mummy Diaries','https://s3.amazonaws.com/schedulesdirect/assets/p15203552_b_h3_aa.jpg',4,NULL),('SH012615430000','Viewers around the UK send in their home videos of friends, family and pets doing amusing or embarrassing things. Comedian Harry Hill narrates.',NULL,'GBR','You\'ve Been Framed!','https://s3.amazonaws.com/schedulesdirect/assets/p316744_l_h3_aa.jpg',4,NULL),('SH013234960000','Topical mix of entertainment, discussion and showbiz glamour as well as the latest fashion and more.',NULL,'GBR','Lorraine','https://s3.amazonaws.com/schedulesdirect/assets/p432180_b_h3_ac.jpg',4,NULL),('SH014822530000','Justin entertains a live audience of children with singing, dancing and comedy chaos.',NULL,'GBR','Justin\'s House','https://s3.amazonaws.com/schedulesdirect/assets/p8873313_i_h3_aa.jpg',4,NULL),('SH017560170000','The Robinson family was supposed to set off on a five-year mission to explore a distant planet, but an act of sabotage by the scheming Dr Zachary Smith - who managed to get himself trapped aboard the spaceship - leaves them adrift in space for three years. The Robinsons, pilot Don West, Dr Smith and their trusty robot move from planet to planet, always searching for a way to return to Earth.',NULL,'GBR','Lost in Space','https://s3.amazonaws.com/schedulesdirect/assets/p183883_l_h3_aa.jpg',4,NULL),('SH020364790000','Exzentrische Schauspieler, ein selbstverliebter Show-Star und ein neuer Produzent, der überall mitmischt: Diese Dinge gehören zum Arbeitsalltag von Liz Lemon, der Drehbuchautorin der Comedy-Sendung `The Girlie Show\'. Dabei kommt sich die Mitdreißigerin regelmäßig mit ihrem Vorgesetzten Jack Donaghy in die Haare. Donaghy ist sehr daran interessiert, das TV-Format umzustrukturieren. Als er den aufgedrehten Tracy Jordan mit ins Boot holt, wird die Sendung in `TGS with Tracy Jordan\' umbenannt. Wenngleich sich Liz und Jack häufig streiten, entsteht zwischen ihnen eine tiefe Freundschaft.',NULL,'DEU','30 Rock','https://json.schedulesdirect.org/20141201/image/assets/p185203_l_h3_aa.jpg',4,NULL),('SH019973300000','Die interaktive Fernsehsendung, bei der die Zuschauer via Chat während der Live-Sendung Fragen an die Gäste im Studio gestellt werden können.',NULL,'DEU','heute+','https://s3.amazonaws.com/schedulesdirect/assets/p11066742_i_h3_aa.jpg',4,NULL),('SH014905920000','As owner of one of the largest decorative salvage yards in the United Kingdom - Fabulously British Salvage - Drew Pritchard is always looking for new pieces to replenish his shop, and he has no problem scouring the countryside to find them. This series follows Drew all over the country, including some privileged estates, as he hunts for old and forgotten pieces of history. But finding them is only part of the business; Drew must then convince the owner of each item to sell it to him at a fair price, then it\'s off to the salvage yard, where his team restores it to its original shine before it can be sold for profit.',NULL,'GBR','Salvage Hunters','https://s3.amazonaws.com/schedulesdirect/assets/p8907649_b_h3_ab.jpg',4,NULL),('SH030334500000','Judith Rakers stellt verschiedene Inseln vor.',NULL,'DEU','Inselreportagen mit Judith Rakers','https://s3.amazonaws.com/schedulesdirect/assets/p15847553_b_h3_aa.jpg',4,NULL),('SH018456820000','Klara Degen, die Sekretärin von Kommissar Paul Kleinert löst die schwierigsten Fälle der Polizei.',NULL,'DEU','Alles Klara','https://s3.amazonaws.com/schedulesdirect/assets/p10422581_i_h3_ab.jpg',4,NULL),('SH012664010000','A user-friendly guide to the latest technology news, issues, gadgets and apps.',NULL,'GBR','Click','https://s3.amazonaws.com/schedulesdirect/assets/p220684_b_h3_aa.jpg',4,NULL),('SH024950070000','Eden Blackman, founder of dating site Would Like to Meet and Nadia Essex a lifestyle advisor, play matchmaker to a whole host of single celebrities in this reality dating show. Celebrities featuring in this show include TOWIE\'s own Joey Essex, Charlotte Crosby from \"Geordie Shore\', actor and television presenter Tyger Drew-Honey, Stephanie Pratt from MTV\'s `The Hills\', Kim Kardashian\'s best friend Jonathan Cheban and `Hollyoaks\" actress Jorgie Porter. These unlucky-in-love celebrities go through the highs and lows of trying to find love as they are coupled with people from the British public.',NULL,'GBR','Celebs Go Dating','https://s3.amazonaws.com/schedulesdirect/assets/p13200091_b_h3_aa.jpg',4,NULL),('SH028018690000','In der Dokumentationsreihe werden Natursehenswürdigkeiten in der Schweiz vorgestellt. Die Reise geht vom Oberengadin zum sogenannten Juwel der Voralpen, Vanil Noir, und über das Aletschgletscher, dem größten Gletscher der Alpen, zum Verzascatal.',NULL,'DEU','Unsere wilde Schweiz','https://s3.amazonaws.com/schedulesdirect/assets/p14692793_st_h3_aa.jpg',4,NULL),('SH031742850000','Three green-fingered experts help amateur gardeners to transform their rundown gardens into small patches of paradise. Monty Don, Carol Klein and Ann-Marie Powell follow a group of amateur gardeners through the horticultural year.',NULL,'GBR','Real Gardens','https://s3.amazonaws.com/schedulesdirect/assets/p473887_st_h3_ab.jpg',4,NULL),('SH025829710000','Rund um die Uhr befinden sich etwa 20 Millionen Schiffscontainer auf den Meeren weltweit. Damit verbunden ist eine kaum vorstellbare Logistikleistung. Die Sendung blickt hinter die Kulissen der Branche, in der unter enormem Zeitdruck gearbeitet wird.',NULL,'DEU','Mega Shippers - Die Profis vom Frachthafen','https://s3.amazonaws.com/schedulesdirect/assets/p12910858_i_h3_aa.jpg',4,NULL),('SH030142550000','Forty years since the Galapagos Islands were designated a Unesco site, biologist, broadcaster and conservationist Monty Halls moves with his family to the islands to experience the wonders and challenges of this awe-inspiring jewel of nature.',NULL,'GBR','My Family and the Galapagos','https://s3.amazonaws.com/schedulesdirect/assets/p15752182_b_h3_aa.jpg',4,NULL),('SH034331890000','Coverage of the official Olympic qualification series for BMX Racing.',NULL,'GBR','Olympic Qualifying BMX Racing','https://s3.amazonaws.com/schedulesdirect/assets/p17908302_st_h3_aa.jpg',4,NULL),('SH031989690000','Coverage from America\'s MLW as top ranked pro wrestlers from around the world clash at they vie for championships and domination.',NULL,'GBR','Major League Wrestling: Fusion','https://s3.amazonaws.com/schedulesdirect/assets/p15368842_b_h3_aa.jpg',4,NULL),('SH016446100000','Coverage of the Kontinental Hockey League, featuring 25 professional clubs from Belarus, China, Finland, Kazakhstan, Latvia, Russia, and Slovakia.',NULL,'GBR','Live: Kontinental Hockey League','https://s3.amazonaws.com/schedulesdirect/assets/p9582960_b_h3_aa.jpg',4,NULL),('SH021833580000','This documentary series explores the extraordinary feats of modern-day engineering and introduces the pioneers whose techniques changed the world. Each episode traces the details behind some of the most technically advanced structures, from record-breaking buildings to colossal ships, as well as the latest models of planes and trains. The mechanics and designs are explained using 3-D graphics, archived sources and specially shot footage. The show celebrates engineers throughout history for their technical breakthroughs that made it possible to create the constructions that exist today.',NULL,'GBR','Impossible Engineering','https://s3.amazonaws.com/schedulesdirect/assets/p11584693_b_h3_aa.jpg',4,NULL),('SH013867190000','The Cat in the Hat leads six-year-olds Nick and Sally on a variety of adventures.',NULL,'GBR','The Cat in the Hat Knows a Lot About That!','https://s3.amazonaws.com/schedulesdirect/assets/p8192813_l_h3_aa.jpg',4,NULL),('SH014430320000','Snooker action from the Players Championship.',NULL,'GBR','Live: Players Championship Snooker','https://s3.amazonaws.com/schedulesdirect/assets/p8778083_st_h3_aa.jpg',4,NULL),('SH030448600000','Three sisters discover they are powerful witches with a duty to battle dark forces.',NULL,'GBR','Charmed','https://s3.amazonaws.com/schedulesdirect/assets/p15533578_i_h3_aa.jpg',4,NULL),('SH013101720000','Carla Lane\'s sitcom about the escapades of a ducking and diving Liverpudlian family.',NULL,'GBR','Bread','https://s3.amazonaws.com/schedulesdirect/assets/p599739_b_h3_aa.jpg',4,NULL),('SH012691600000','The iconic series \"Star Trek\' follows the crew of the starship USS Enterprise as it completes its missions in space in the 23rd century. Captain James T. Kirk - along with half-human/half-Vulcan science officer Spock, ship Dr `Bones\' McCoy, Ensign Pavel Chekov, communications officer Lt Nyota Uhura, helmsman Lt Hikaru Zulu and chief engineer Lt Cmdr `Scotty\" Scott - confront strange alien races, friendly and hostile alike, as they explore unknown worlds.',NULL,'GBR','Star Trek','https://s3.amazonaws.com/schedulesdirect/assets/p183885_l_h3_aa.jpg',4,NULL),('SH018387870000','In this programme, Ashley Banjo sets out to tackle what Sky says is his most ambitious dance project to date. Along with his dance troupe, Diversity, Banjo heads to Stockton-on-Tees to get the whole town on its feet and dancing in the streets. Stockton once had three dance halls located within its borders but all three had closed by the 1970s. With the town now facing tough times, Banjo are Diversity are tasked with turning the townspeople\'s spirits around in just two months by bringing people together to perform dance routines as Stockton\'s high street is transformed for one day. The end result is Banjo leading the entire town in a show-stopping street dance.',NULL,'GBR','Ashley Banjo\'s Big Town Dance','https://json.schedulesdirect.org/20141201/image/assets/p10397248_i_h3_aa.jpg',4,NULL),('SH016990740000','\"Gogglebox\" is a series where regular people are filmed in their own homes while watching the highest-rated shows on British television. Each week, the recurring participants - families, friends and couples - are caught on camera with their reactions sharing their candid and often hilarious take on familiar entertainment shows and classic films. Each episode features the best and worst UK programming of the previous week. From their sofas, these opinionated viewers review everything that comes their way.',NULL,'GBR','Gogglebox','https://s3.amazonaws.com/schedulesdirect/assets/p9787374_i_h3_aa.jpg',4,NULL),('SH027846800000','In den `Goldenen 20er Jahren\', einer Zeit des Umbruchs, wird der junge Kommissar Gereon Rath aus Köln nach Berlin versetzt. Seine Ermittlungen in der Reichshauptstadt führen ihn in einen Sumpf aus Drogen, Korruption, Kunst und Extremismus.',NULL,'DEU','Babylon Berlin','https://s3.amazonaws.com/schedulesdirect/assets/p14585508_st_h3_aa.jpg',4,NULL),('SH034267470000','Neuseelands Vulkane haben einzigartige Landschaften und Tierwelten erschaffen. In Auckland, der Wirtschaftsmetropole Neuseelands, die auf rund 50 schlafenden Vulkanen gebaut wurde, haben sich Forscher in Lavahöhlen begeben.',NULL,'DEU','Vulkane in Neuseeland','https://s3.amazonaws.com/schedulesdirect/assets/p17868288_st_h3_aa.jpg',4,NULL),('SH027546560000','Pat der Hund würde alles dafür tun, um seine Besitzerin Lola glücklich zu machen. Mit seinem überragenden Hundeintellekt gelingt es ihm immer wieder, Spannung in ihrer beider Alltag zu bringen.',NULL,'DEU','Pat der Hund','https://s3.amazonaws.com/schedulesdirect/assets/p14056615_i_h3_aa.jpg',4,NULL),('SH022835500000','When Jack\'s parents bundle him off to stay with his distant cousin Tashi, the two boys become swept up in a series of wild adventures exploring a fantastical land far, far away.',NULL,'GBR','Tashi','https://s3.amazonaws.com/schedulesdirect/assets/p12204790_b_h3_aa.jpg',4,NULL),('SH019883970000','Peppa, das kleine Schweinemädchen im roten Kleid, ist neugierig und klug und stürzt sich in fast jedes neue Abenteuer. Sie liebt Schokoladenkuchen, Geburtstag feiern, Kostümfeste, Geheimnisse jeder Art, Fahrrad fahren und picknicken.',NULL,'DEU','Peppa Pig','https://s3.amazonaws.com/schedulesdirect/assets/p274928_l_h3_aa.jpg',4,NULL),('SH019585710000','Das Nachrichtenmagazin für Nordrhein-Westfalen.',NULL,'DEU','WDR aktuell','https://s3.amazonaws.com/schedulesdirect/assets/p10914395_b_h3_aa.jpg',4,NULL),('SH034269680000','Der talentierte Polizeikommissar Caïn sitzt seit einem selbst verschuldeten Motorradunfall im Rollstuhl. Während seiner Ermittlungen in Marseille nutzt der zynische Beamte seine Behinderung clever aus, um Gesetze und Regeln zu umgehen.',NULL,'DEU','Kommissar Caïn','https://s3.amazonaws.com/schedulesdirect/assets/p10144008_i_h3_aa.jpg',4,NULL),('SH034391900000','Ranger Hamza and the Ramblers go on interesting walks to find places for fun activities, discovering that there is magic and adventure everywhere, if you only look closely enough.',NULL,'GBR','Let\'s Go for a Walk','https://s3.amazonaws.com/schedulesdirect/assets/p17949752_st_h3_aa.jpg',4,NULL),('SH012681460000','Comprehensive coverage of today\'s important national and international news stories.',NULL,'GBR','Newsnight','https://s3.amazonaws.com/schedulesdirect/assets/p269693_b_h3_ad.jpg',4,NULL),('SH016391900000','Ein Wissenserlebnis-Magazin, das alltagspraktische Themen behandelt. Dabei stehen Fragen im Mittelpunkt, die aus eigenen Erlebnissen entstehen, wie das Phänomen der Sommerstürme.',NULL,'DEU','Terra Xpress','https://s3.amazonaws.com/schedulesdirect/assets/p9561766_i_h3_aa.jpg',4,NULL),('SH018118040000','Reportagen des Auslandsjournals.',NULL,'DEU','auslandsjournal - die doku','https://s3.amazonaws.com/schedulesdirect/assets/p10280418_b_h3_ab.jpg',4,NULL),('SH022626450000','This documentary series follows veterinarians Peter Wright and Julian Norton as they attend to animals in need at their practices based in North Yorkshire, England. Peter\'s practice in the town of Thirsk, Skeldale Veterinary Centre, has historical significance, as it is the surgery where British veterinary surgeon James Herriot worked and found his inspiration for his collection of semi-autobiographic writings. Julian\'s practice in nearby Boroughbridge may be comparatively new, but it is bustling with animal patients, and together with their capable teams, Peter and Julian work hard to save and improve the lives of all creatures great and small.',NULL,'GBR','The Yorkshire Vet','https://s3.amazonaws.com/schedulesdirect/assets/p12105706_b_h3_aa.jpg',4,NULL),('SH019683710000','Garfield, der faulste Kater der Welt ist zurück und erlebt noch mehr witzige Abenteuer. Dabei fallen Garfields schrullige Missgeschicke hier in der Regel derber und bizarrer aus als in der Vergangenheit.',NULL,'DEU','Garfield','https://s3.amazonaws.com/schedulesdirect/assets/p7889800_i_h3_aa.jpg',4,NULL),('SH015402100000','Täglich werden in Deutschland etwa 130 Erfindungen patentiert. Darunter sind viele Ideen, die im Haushalt helfen und der Gesundheit dienen sollen. Das Magazin stellt die genialen Erfindungen vor, die das Licht der Öffentlichkeit nicht scheuen müssen.',NULL,'DEU','Einfach genial!','https://s3.amazonaws.com/schedulesdirect/assets/p9125767_b_h3_aa.jpg',4,NULL),('SH027674930000','Friends Kim, Kate and Kylie are three ordinary girls in an extraordinary world! Top teen pop stars on a glamorous global tour full of unexpected diversions.',NULL,'GBR','K3','https://s3.amazonaws.com/schedulesdirect/assets/p12228710_i_h3_aa.jpg',4,NULL),('SH026489510000','Immer wieder tauchen auf Bildern Objekte auf, die auf den ersten Blick nicht zu erklären sind. Die Dokumentarserie geht diesen weltweiten Phänomenen auf den Grund und versucht, plausible Erklärungen dafür zu finden.',NULL,'DEU','Mysterien von oben - Rätselhafte Satellitenbilder','https://s3.amazonaws.com/schedulesdirect/assets/p11488371_i_h3_aa.jpg',4,NULL),('SH029998130000','Join Mya Go and her friends and family, as she goes on fun-filled adventures.',NULL,'GBR','Mya Go','https://s3.amazonaws.com/schedulesdirect/assets/p15682233_b_h3_aa.jpg',4,NULL),('SH018580260000','Käpt\'n Barnius, Professor Tintling und der Arzt Peso Pinguin leben gemeinsam mit ihren fünf Teamkollegen in einer Forschungsstation. Von dort aus erkunden sie den Ozean und retten Meeresbewohner, die sich in Gefahr befinden. Die Oktonauten erforschen auch das Verhalten der Tiere. Bei ihren Expeditionen begegnen ihnen viele außergewöhnliche Geschöpfe.',NULL,'DEU','Die Oktonauten','https://s3.amazonaws.com/schedulesdirect/assets/p8287494_i_h3_aa.jpg',4,NULL),('SH016391740000','Martina Seiffert, erste Hauptkommissarin der Soko, behält in kritischen Situationen stets den Überblick und die Zusammenstellung des Teams macht es möglich, dass auch die raffiniertesten Verbrechen aufgeklärt werden.',NULL,'DEU','SOKO Stuttgart','https://s3.amazonaws.com/schedulesdirect/assets/p9561680_b_h3_ae.jpg',4,NULL),('SH012584110000','Residents of Albert Square in London\'s East End deal with life, love and loss. The popular soap opera focuses on family relationships and a sense of belonging in the community, and has been known to tackle hard-hitting topics such as rape, racial prejudice, unemployment, euthanasia and homosexuality.',NULL,'GBR','EastEnders','https://s3.amazonaws.com/schedulesdirect/assets/p372238_b_h3_ab.jpg',4,NULL),('SH022829460000','Die Frankenschau aktuell berichtet werktags aus der Region. Jeden Tag sind wir in Ober-, Mittel- und Unterfranken unterwegs, um über die neuesten Ereignisse zu bereichten. Zudem werden Hintergrundinformationen zu verschiedenen Themen gezeigt.',NULL,'DEU','Frankenschau aktuell','https://s3.amazonaws.com/schedulesdirect/assets/p12202111_b_h3_aa.jpg',4,NULL),('SH018438240000','Die aktuellen finanziellen Nachrichten von der Frankfurter Börse.',NULL,'DEU','Börse vor acht','https://s3.amazonaws.com/schedulesdirect/assets/p10415619_b_h3_aa.jpg',4,NULL),('SH021765130000','Tarek und Christina El Moussa wollen mit dem Kauf, der Renovierung und dem Verkauf von Immobilien das große Geld machen. Doch jedes Projekt birgt das Risiko, sich zum großen Flop zu entwickeln.',NULL,'DEU','Die Super-Makler - Top oder Flop?','https://s3.amazonaws.com/schedulesdirect/assets/p9806566_i_h3_ac.jpg',4,NULL),('SH026290400000','Bing Bunny dramatises real-life experiences, and every day is an adventure for the lively rabbit.',NULL,'GBR','Bing','https://s3.amazonaws.com/schedulesdirect/assets/p10813749_i_h3_aa.jpg',4,NULL),('SH019579440000','Reportagen über ungewöhnliche Menschen und ungewöhnliche Orte in Norddeutschland.',NULL,'DEU','die nordreportage','https://s3.amazonaws.com/schedulesdirect/assets/p10911280_b_h3_aa.jpg',4,NULL),('SH019560630000','Die Moderatoren berichten über topaktuelle Themen aus den Bereichen Politik, Wirtschaft, Gesellschaft sowie Kultur. Außerdem werden zahlreiche nützliche Verbrauchertipps für den Alltag und die Chance auf einen Gewinn geboten.',NULL,'DEU','SAT.1-Frühstücksfernsehen','https://s3.amazonaws.com/schedulesdirect/assets/p10904244_st_h3_aa.jpg',4,NULL),('SH028499440000','Seit der Eröffnung im Jahre 1969 hat sich Arthurs oldschool Donutladen ebenso wenig verändert wie sein Besitzer. Seine neue Aushilfe, der wortgewandte Franco, konfrontiert ihn jedoch mit dem multikulturellen Chicago des 21. Jahrhunderts.',NULL,'DEU','Superior Donuts','https://json.schedulesdirect.org/20141201/image/assets/p13617649_b_h3_aa.jpg',4,NULL),('SH012896310000','Four strangers work together as a team to answer general knowledge questions on this quiz show. Their opponent? The Chaser, a ruthless quiz genius tasked with stopping the contestants from winning money, potentially thousands of pounds. The contestants take turns answering quick-fire questions in a set length of time in order to build up the team\'s pot. Each contestant then goes one-on-one against The Chaser. The Chaser follows the contestant down a game board. If the contestant gets out without being caught, the money he or she earned is added to the team\'s pot. If a contestant is caught (by answering questions incorrectly), the contestant is out of the game and no money is added to the team\'s pot. The final round features the remaining contestants in another quick-fire round in which each correct answer gets them closer to the finish line. If The Chaser catches all the contestants, they leave with nothing. If any contestants remain at the end of the game, they split the team\'s money.',NULL,'GBR','The Chase','https://s3.amazonaws.com/schedulesdirect/assets/p8158525_i_h3_aa.jpg',4,NULL),('SH018417910000','Alaska is a popular destination for reality show producers. The state\'s mostly rugged living conditions combined with residents who embrace a pioneering way of life present ready-made story lines. \"Railroad Alaska\' is a perfect example. It follows, according to Destination America, an `elite crew of workers who battle against ferocious weather and treacherous terrain to keep the state\'s critical 650-mile long railroad rolling to deliver life-sustaining supplies\'. The characters - brakemen, engineers, construction crews, mechanics and train drivers - risk their lives doing such tasks as setting off controlled avalanches to prevent catastrophes, because if one occurs that renders tracks impassable, locals won\"t get food, fuel or even home. Viewers also meet fascinating people who live off-grid, and find out why they chose a fully independent life away from civilization.',NULL,'GBR','Railroad Alaska','https://s3.amazonaws.com/schedulesdirect/assets/p10252593_l_h3_aa.jpg',4,NULL),('SH034254190000','Der Moderator Marco Schreyl diskutiert über gesellschaftlich relevante, aktuelle Themen. Um die Themen zu beleuchten, plaudert er mit wechselnden Gästen und konsultiert ein vierköpfiges Panel aus Fachexperten und Prominenten.',NULL,'DEU','Marco Schreyl','https://s3.amazonaws.com/schedulesdirect/assets/p17860659_st_h3_aa.jpg',4,NULL),('SH019451610000','Einblicke in den Alltag fremder Kulturen, die Arbeit außergewöhnlicher Menschen aus aller Welt und vieles mehr erwartet die Zuschauer in der Dokumentarreihe, die auf spannende Art und Weise die verschiedensten Themen beleuchtet.',NULL,'DEU','360° - Geo Reportage','https://s3.amazonaws.com/schedulesdirect/assets/p200805_i_h3_aa.jpg',4,NULL),('SH019743790000','Die Detektive McGarret und Danno, Teil einer Elitepolizei in Hawaii, bekämpfen die Kriminalität auf der tropischen Insel. Bei ihrer Mission werden sie von dem erfahrenen Polizisten Chin Ho Kelly und seiner schönen Nichte Kono unterstützt.',NULL,'DEU','Hawaii Five-0','https://s3.amazonaws.com/schedulesdirect/assets/p8130405_l_h3_aa.jpg',4,NULL),('SH020373850000','Der 13-jährige Henry Hart aus der Kleinstadt Smellview hat ein Geheimnis vor seinen Freunden und seiner Familie. Er erlebt als `Kid Danger\' gemeinsam mit dem Superhelden Captain Man viele aufregende Abenteuer.',NULL,'DEU','Henry Danger','https://s3.amazonaws.com/schedulesdirect/assets/p10891879_i_h3_aa.jpg',4,NULL),('SH026515980000','Micky, Donald, Goofy, Donald und Pluto veranstalten mit ihren transformierbaren Vehikeln ein Wettrenennen rund um die Welt. Währenddessen eröffnen Minnie und Daisy ein neues Geschäft und lösen die Probleme anderer Menschen.',NULL,'DEU','Micky und die flinken Flitzer','https://s3.amazonaws.com/schedulesdirect/assets/p13569321_i_h3_aa.jpg',4,NULL),('SH017566090000','Lottoziehung am Mittwoch.',NULL,'DEU','Lotto am Mittwoch: Die Gewinnzahlen','https://s3.amazonaws.com/schedulesdirect/assets/p10044372_b_h3_aa.jpg',4,NULL),('SH017742440000','Giada De Laurentiis prepares unique meals for gathering with family and friends.',NULL,'GBR','Giada at Home','https://s3.amazonaws.com/schedulesdirect/assets/p191340_i_h3_ab.jpg',4,NULL),('SH021958510000','Die Serie handelt von weibliche Straftäterinnenn, die durch ihre Tat einen Menschen getötet haben. Sie kommen selbst zu Wort und erzählen, warum sie gemordet haben.',NULL,'DEU','Snapped: Wenn Frauen töten','https://s3.amazonaws.com/schedulesdirect/assets/p189681_b_h3_at.jpg',4,NULL),('SH012595500000','House-hunting reality show where buyers are taken to visit a selection of properties in their chosen area, and broadly within their budget. Prospective buyers are often city dwellers seeking cleaner air, more space, or a complete change of lifestyle. Some are searching for a country retreat, while others are relocating to the UK, retiring, or moving back after time abroad. The host also explores the local area and finds out what else it has to offer, from sites of historical interest, to local conservation efforts and outdoor pursuits.',NULL,'GBR','Escape to the Country','https://s3.amazonaws.com/schedulesdirect/assets/p379352_i_h3_aa.jpg',4,NULL),('SH020139710000','Documenting the lives of the officers in the Canada Border Services Agency.',NULL,'GBR','Border Security: Canada\'s Front Line','https://s3.amazonaws.com/schedulesdirect/assets/p9706410_i_h3_ab.jpg',4,NULL),('SH014721980000','A sequence of great music in classic recordings.',NULL,'GBR','Essential Classics','https://s3.amazonaws.com/schedulesdirect/assets/p8830812_b_h3_aa.jpg',4,NULL),('SH012670240000','The adventures of the cheeky and spirited Zigby the Zebra.',NULL,'GBR','Zigby','https://s3.amazonaws.com/schedulesdirect/assets/p1006788_i_h3_ab.jpg',4,NULL),('SH016394760000','Jede Woche treten Hobbyköche gegeneinander an. Dabei steht ihnen jede Woche ein prominenter Kochprofi von Johannes B. Kerners Köchen zur Seite. Sechs Kandidaten sind es am Anfang und zum Schluss sind es nur noch zwei Kandidaten.',NULL,'DEU','Die Küchenschlacht','https://s3.amazonaws.com/schedulesdirect/assets/p9562465_b_h3_ab.jpg',4,NULL),('SH020425850000','Exotische Tiere, Traumstrände, endlose Natur: In Australien lockt das ganz große Abenteuer. Die Australier behaupten sogar, auf ihrem Kontinent lebten die glücklichsten Menschen. Darum nennen sie Australien stolz das \'lucky country\', das glückliche Land. Was ist an dieser Behauptung dran? Sven Furrer will es wissen und reist in der neuen sechsteiligen DOK-Serie 12\'378 Kilometer durch Australien.',NULL,'DEU','12\'378 km Australien: Sven Furrer auf Abwegen','https://s3.amazonaws.com/schedulesdirect/assets/p11221863_b_h3_aa.jpg',4,NULL),('SH034446850000','A contemporary domestic saga about a family broken open by a revelation from their Alzheimic mother, whose dementia means she is no longer able to keep a long held and shocking secret.',NULL,'GBR','Flesh and Blood','https://s3.amazonaws.com/schedulesdirect/assets/p17984331_b_h3_aa.jpg',4,NULL),('SH029628430000','Radio mini-series.',NULL,'GBR','Here\'s the Thing','https://s3.amazonaws.com/schedulesdirect/assets/p15483140_b_h3_aa.jpg',4,NULL),('SH012618300000','Swedish detective Kurt Wallander investigates a series of murders in the south of the country, near Skane, uncovering corruption at the heart of the Swedish establishment. The drama is adapted from the novels by Henning Mankell.',NULL,'GBR','Wallander','https://json.schedulesdirect.org/20141201/image/assets/p8106247_i_h3_ad.jpg',4,NULL),('SH015989650000','Kids enlist Ed and Naomi to organise the best wedding for their unmarried parents or stepparents.',NULL,'GBR','Marrying Mum and Dad','https://json.schedulesdirect.org/20141201/image/assets/p9397529_i_h3_aa.jpg',4,NULL),('SH029961620000','In Wagtail Woods one little bird, Becca, and her Bunch of friends, are ever ready for adventure. Becca, Russell, Sylvia and Pedro, always find themselves in some sticky situations but together they get through them.',NULL,'GBR','Becca\'s Bunch','https://s3.amazonaws.com/schedulesdirect/assets/p14392523_b_h3_aa.jpg',4,NULL),('SH020149790000','Der `Late Movie\', das sind sinnliche Geschichten über Liebe, Verführung und Leidenschaft mit wechselnden Darstellern und Themen.',NULL,'DEU','SPORT1 Late-Movie','https://s3.amazonaws.com/schedulesdirect/assets/p11121612_st_h3_aa.jpg',4,NULL),('SH018439100000','Kriminalgeschichten rund um das Polizeirevier im Hamburger Kiez.',NULL,'DEU','Großstadtrevier','https://s3.amazonaws.com/schedulesdirect/assets/p10415876_b_h3_ac.jpg',4,NULL),('SH027217420000','The everyday tasks and problems encountered when raising your first pet. Chloe, an energetic 7-year-old, looks after her troublesome pet triceratops, Topsy.',NULL,'GBR','My Petsaurus','https://s3.amazonaws.com/schedulesdirect/assets/p14270368_st_h3_aa.jpg',4,NULL),('SH013144420000','Have you been building up a collection of Americana over the past 50-plus years? If so, then Mike Wolfe and Frank Fritz may pay you a visit one day. The Midwestern pickers travel across America in search of rare artefacts and national treasures that they can buy from the collectors they visit and then sell in their antiques shops or, in some cases, put in their personal collections. They usually have to dig through boxes or piles filled with items that have accumulated over the years, which are often located in such places as barns or spare rooms in the owners\' homes. While the guys are willing to buy pretty much anything old, their particular interests include items having to do with the auto industry and classic toys.',NULL,'GBR','American Pickers','https://s3.amazonaws.com/schedulesdirect/assets/p7939201_l_h3_aa.jpg',4,NULL),('SH012583110000','Doctors and staff face day-to-day dilemmas in the emergency department of Holby General.',NULL,'GBR','Casualty','https://s3.amazonaws.com/schedulesdirect/assets/p217762_i_h3_ac.jpg',4,NULL),('SH012681820000','Australia\'s longest-running drama series follows the lives of the residents of Ramsay Street, a six-house cul-de-sac in the fictitious Melbourne suburb of Erinsborough.',NULL,'GBR','Neighbours','https://s3.amazonaws.com/schedulesdirect/assets/p450934_b_h3_af.jpg',4,NULL),('SH013207650000','Most quiz shows test contestants\' knowledge of important topics like history, geography and literature with the winning contestant being the one who scores the most points. \"Pointless\' isn\"t most quiz shows. Contestants try to score as few points as possible while racking their brains trying to come up with answers no one else can think of for general-knowledge questions. The contestants are asked the same questions that were previously asked of surveyed individuals with the goal of giving the correct answers that were given least frequently by the people surveyed. If a contestant provides a correct answer that was not said by anyone in the survey, known as a pointless answer, he gets no points and money is added to the jackpot, which is the grand prize a contestant can win for giving a correct pointless answer in the final round. The jackpot starts at £1,000 and keeps growing each episode until someone wins it, at which point it is reset to the original £1,000.',NULL,'GBR','Pointless','https://s3.amazonaws.com/schedulesdirect/assets/p8269893_i_h3_ab.jpg',4,NULL),('SH013342990000','James Walton takes the chair for the game of literary correctness.',NULL,'GBR','The Write Stuff','https://s3.amazonaws.com/schedulesdirect/assets/p304490_st_h3_aa.jpg',4,NULL),('SH025829010000','The NHS is facing its greatest crisis since it began, with more A&E admissions than hospitals can handle. Afforded extensive behind the scenes access, this documentary series goes inside some of the biggest and busiest NHS Trusts around the country, to show the public the true realities of the British healthcare system. Each episode delves into the lives of the patients, and the show also gives viewers a unique look into the complex decisions made by hard-working medical professionals every day.',NULL,'GBR','Hospital','https://s3.amazonaws.com/schedulesdirect/assets/p13618443_b_h3_aa.jpg',4,NULL),('SH030266790000','Nick Groff and Katrina Weidman spend 72 hours confined in the UK\'s most notorious haunted hotspots.',NULL,'GBR','Paranormal Lockdown UK','https://s3.amazonaws.com/schedulesdirect/assets/p15815183_b_h3_aa.jpg',4,NULL),('SH017730140000','\"Dallas Car Sharks\" follows all the drama and action at an auto auction in Texas. Enthusiasts around the country gather to participate in car-flipping and to bid against one another for the chance to score some incredible vehicles. In each episode, tempers and rivalries ignite as the thrill of the bid takes over, fuelling each buyer to outbid and outbuy competitors. The real work begins after they win when they discover what\'s really under the hood and just how good their skills are.',NULL,'GBR','Dallas Car Sharks','https://s3.amazonaws.com/schedulesdirect/assets/p9992277_l_h3_aa.jpg',4,NULL),('SH019570090000','M*A*S*H ist ein Feldlazarett der US Army. Dort leistet ein bunt zusammengewürfelter Haufen seinen Dienst im Korea-Krieg 1950. Unter diesen Umständen erlebt Captain Pierce und sein Team einen wahnsinnigen Alltag.',NULL,'DEU','M*A*S*H','https://s3.amazonaws.com/schedulesdirect/assets/p183880_l_h3_aa.jpg',4,NULL),('SH027581960000','Aus dem Nachrichtenstudio wird über aktuelle Ereignisse aus Deutschland und der Welt informiert.',NULL,'DEU','Nachrichten','https://s3.amazonaws.com/schedulesdirect/assets/p14454310_st_h3_aa.jpg',4,NULL),('SH030682620000','Jeden Nachmittag, wenn der Zoo schließt, machen auch Zacki, das australische Frischwasserkrokodil, und seine Freunde Feierabend. Sie öffnen heimlich ihre Käfige und nehmen das Zoo-Mobil in Richtung Heimat, wo sie viele Abenteuer erleben.',NULL,'DEU','Zacki und die Zoobande','https://s3.amazonaws.com/schedulesdirect/assets/p14471392_i_h3_aa.jpg',4,NULL),('SH018771240000','Follows the bailiffs and repo men charged with sorting out those among us who have fallen into debt.',NULL,'GBR','Can\'t Pay? We\'ll Take it Away!','https://s3.amazonaws.com/schedulesdirect/assets/p10554386_i_h3_aa.jpg',4,NULL),('SH012680300000','This series opens the doors to the only family-run pawnshop in Las Vegas, where three generations of the Harrison family use their sharp-eyed skills to assess what\'s real and what\'s fake. Objects the colourful customers bring in range from the obscure to the truly historic, and it\'s up to the guys at the Gold & Silver Pawn Shop - with help at times from their network of experts - to reveal the sometimes surprising answer to \"What\'s this worth?\".',NULL,'GBR','Pawn Stars','https://s3.amazonaws.com/schedulesdirect/assets/p3565439_l_h3_aa.jpg',4,NULL),('SH030278470000','Acht attraktive Singles wollen sich auf einer Insel näherkommen und einen romantischen Urlaub im Paradies miteinander verbringen. Doch die Idylle wird gestört, als sämtliche Ex-Partner auftauchen und die Datingshow ordentlich aufmischen.',NULL,'DEU','Ex on the Beach','https://json.schedulesdirect.org/20141201/image/assets/p15326276_b_h3_ab.jpg',4,NULL),('SH026736400000','Comedy about a psychotherapist who thinks he has the answers, if only his ex-wife and kids would listen.',NULL,'GBR','Cracking Up','https://s3.amazonaws.com/schedulesdirect/assets/p14057205_st_h3_aa.jpg',4,NULL),('SH019369320000','Mike und Molly sind ein übergewichtiges Pärchen, das sich bei den anonymen `Overeaters\'-Treffen, einer Selbsthilfegruppe für Menschen mit Essstörungen, kennenlernt und ineinander verliebt. Mike ist ein herzensguter Polizist, der ernsthaft versucht, seine Pfunde loszuwerden. Molly ist Lehrerin und eine wahre Power-Frau, findet es aber nicht so leicht, sich auf das Abnehmen zu konzentrieren. Sie lebt mit ihrer jüngeren Schwester und Mutter zusammen, die beide trotz eines guten Appetits gemeinerweise keine Probleme mit ihrer Figur haben. Gemeinsam wollen Mike und Molly ihrem Gewicht den Kampf ansagen und sich gegenseitig unterstützen - nicht nur beim Abnehmen.',NULL,'DEU','Mike & Molly','https://s3.amazonaws.com/schedulesdirect/assets/p8130329_l_h3_aa.jpg',4,NULL),('SH023114600000','Preschool art series about different art to make for amazing parties!',NULL,'GBR','Mister Maker\'s Arty Party','https://s3.amazonaws.com/schedulesdirect/assets/p12351126_i_h3_aa.jpg',4,NULL),('SH026022910000','Einige Tiere leben auf einer Schmusedecke und müssen gemeinsam ihre Probleme bewältigen. So braucht der Fisch unbedingt Wasser, das Ei des Huhns steckt fest und der böse Fuchs will alle anderen Tiere fressen.',NULL,'DEU','Meine Schmusedecke','https://s3.amazonaws.com/schedulesdirect/assets/p13705532_i_h3_aa.jpg',4,NULL),('SH028661210000','Her actual name is Sandra Lee, but she is so popular in her field of dermatology that she is known by most people as Dr. Pimple Popper. In 2015, Dr. Lee began to provide a window into her job by filming dermatological procedures -- some quite gruesome, like blackhead extractions and cyst dissections -- and posting them to her website and across other social media outlets. Lo and behold, Lee gained a prominent online fan base, including a YouTube channel with more than 3 million followers called \"Popaholics.\' Now comes a reality show on TLC, which says Lee is a `celebrity who has pioneered the fastest growing medical fascination in decades.\"',NULL,'GBR','Dr. Pimple Popper','https://s3.amazonaws.com/schedulesdirect/assets/p14945655_i_h3_aa.jpg',4,NULL),('SH034185720000','Die Sendung dokumentiert, wie verzweifelte Menschen Klarheit in ihre Vergangenheit bringen wollen. Sie konfrontieren ihre ehemaligen Liebhaber, Freunde oder Familienmitglieder und fragen sie nach der ungeschminkten Wahrheit.',NULL,'DEU','Ghosted: Verliebt und verschwunden','https://s3.amazonaws.com/schedulesdirect/assets/p17259248_i_h3_aa.jpg',4,NULL),('SH012611090000','This long-running animated comedy focuses on the eponymous family in the town of Springfield in an unnamed U.S. state. The head of the Simpson family, Homer, is not a typical family man. A nuclear-plant employee, he does his best to lead his family but often finds that they are leading him. The family includes loving, blue-haired matriarch Marge, troublemaking son Bart, overachieving daughter Lisa and baby Maggie. Other Springfield residents include the family\'s religious neighbour, Ned Flanders, family physician Dr Hibbert, Moe the bartender and police chief Clancy Wiggum.',NULL,'GBR','The Simpsons','https://s3.amazonaws.com/schedulesdirect/assets/p183872_l_h3_ab.jpg',4,NULL),('SH031010990000','Zwei Mal am Tag begrüßen Sie die Moderatorinnen und Moderatoren aus dem Bonner Studio - um 17.30 Uhr mit einer 30-minütigen Zusammenfassung und um 23.00 Uhr mit einer umfassenden 60-minütigen Rückschau auf den Tag.',NULL,'DEU','phoenix der tag','https://s3.amazonaws.com/schedulesdirect/assets/p16266031_b_h3_aa.jpg',4,NULL),('SH024705250000','Three teams of gold prospectors risk their dreams and futures in pursuit of the ultimate golden reward in Western Australia.',NULL,'GBR','Aussie Gold Hunters','https://s3.amazonaws.com/schedulesdirect/assets/p13070998_i_h3_aa.jpg',4,NULL),('SH031685700000','A new comedy series written and starring Rufus Jones deftly gets to the essence of home and family through Syrian asylum-seeker Sami (Youssef Kerkour), with Rebekah Staton.',NULL,'GBR','Home','https://s3.amazonaws.com/schedulesdirect/assets/p16616270_b_h3_aa.jpg',4,NULL),('SH012981000000','The best music and morning entertainment, and a celebrity who picks their favourite ten pop records.',NULL,'GBR','Ken Bruce','https://s3.amazonaws.com/schedulesdirect/assets/p253029_i_h3_aa.jpg',4,NULL),('SH014726380000','Starke Frauen stehen vor den Trümmern ihres Lebens und wollen sich beruflich sowie privat selbstverwirklichen. Dabei zentrieren sich unterschiedliche Beziehungsgeschichten, Intrigen, Karrieren und Familienchaos um das Hotel Drei Könige, das zugehörige Restaurant Carlas sowie das Mietshaus Rosenhaus. Inmitten des Geschehens steht immer eine Frau mit einer Vision und dem aufrichtigen Wunsch nach einem glücklichen Leben.',NULL,'DEU','Rote Rosen','https://s3.amazonaws.com/schedulesdirect/assets/p8832396_b_h3_ab.jpg',4,NULL),('SH025353820000','In dieser Sendung dreht sich alles ums Essen, um Ernährung und den damit verbundenen Genuss. Jede Folge widmet sich einem anderen Thema, zum Beispiel welche Speisen weltweit am beliebtesten sind oder welche Extreme erreicht werden.',NULL,'DEU','Top Ten! Der Geschmacks-Countdown','https://s3.amazonaws.com/schedulesdirect/assets/p13401823_st_h3_aa.jpg',4,NULL),('SH013028080000','Coverage of select committee proceedings.',NULL,'GBR','Select Committees','https://s3.amazonaws.com/schedulesdirect/assets/p484254_b_h3_aa.jpg',4,NULL),('SH019379490000','Die Familie Griffin lebt in der Kleinstadt Quahog auf Rhode Island. Angeführt wird der ganz normale amerikanische Haushalt von Peter und Lois, den Eltern von drei Kindern: Chris, Meg und Stewie. Außerdem haben sie einen sprechenden Hund, Brian, der in Wahrheit das Oberhaupt der Familie ist. Mit derbem und politisch unkorrektem Humor, Musical-Einlagen und Parodien stolpern die Mitglieder der Familie von einem Missgeschick ins nächste. Louis versucht, ganz im Sinne einer fürsorglichen Mutter, die Fehler ihres Mannes auszubügeln. Meg steckt mitten in der Pubertät und Chris ist eine nicht allzu intelligente künstlerische Seele - ganz im Gegenteil zu Baby Stewie, der hochintelligent und böse zugleich ist. Nur der Hund Brian schafft es tatsächlich, das Chaos zu überblicken und einen kühlen Kopf zu bewahren.',NULL,'DEU','Family Guy','https://s3.amazonaws.com/schedulesdirect/assets/p184483_i_h3_ab.jpg',4,NULL),('SH024029960000','Gark, a nine-year-old alien, believes that Max, a house cat, must train him to save the universe.',NULL,'GBR','Counterfeit Cat','https://s3.amazonaws.com/schedulesdirect/assets/p12752609_i_h3_aa.jpg',4,NULL),('SH019658810000','Thomas Ranft und Fridolin Frosch - das Maskottchen der Sendung - liefern Informationen, wie sich das Wetter in Hessen und der Welt entwickelt.',NULL,'DEU','alle wetter!','https://s3.amazonaws.com/schedulesdirect/assets/p10944959_b_h3_aa.jpg',4,NULL),('SH016072850000','A hundred years ago, the world of the British manor house was at its height. But what was really going on behind those stately walls?',NULL,'GBR','Secrets of the Manor House','https://json.schedulesdirect.org/20141201/image/assets/p9020042_i_h3_ab.jpg',4,NULL),('SH013883270000','Coverage from the Elite League, the top level of ice hockey in the United Kingdom.',NULL,'GBR','Elite League Ice Hockey','https://s3.amazonaws.com/schedulesdirect/assets/p8545498_b_h3_ab.jpg',4,NULL),('SH027610270000','Das Wissensquiz stellt die Alltagstauglichkeit berühmter Kandidaten auf die Probe. In Zweierteams werden Fragen aus dem täglichen Leben beantwortet. Dabei sind Kreativität und Ideenreichtum gefragt. Der Sieger spendet den Gewinn an einen guten Zweck.',NULL,'DEU','Meister des Alltags','https://s3.amazonaws.com/schedulesdirect/assets/p14467638_st_h3_aa.jpg',4,NULL),('SH018095860000','Die neuartige Bettwäsche aus Nuvolafill, einem Füllmaterial aus Mikrofaser, wird vorgestellt.',NULL,'DEU','Goldwolke: kuscheliger Schlafkomfort','https://s3.amazonaws.com/schedulesdirect/assets/p10269161_st_h3_ab.jpg',4,NULL),('SH019664330000','Viele Millionen Menschen verreisen in jedem Jahr, da geht schon mal ein Koffer verloren. Die Gepäckstücke werden dann eingelagert. Wenn sie nicht reklamiert werden, kommen sie bei Auktionen unter den Hammer. In manchen sind auch wertvolle Dinge.',NULL,'DEU','Baggage Battles - Die Koffer-Jäger','https://s3.amazonaws.com/schedulesdirect/assets/p8967410_i_h3_aa.jpg',4,NULL),('SH031932260000','Mike, a refined and sophisticated pug, is forced to defend his home from critters, including raccoons, turtles and Fluffy the Cat, at the worst possible times.',NULL,'GBR','Mighty Mike','https://s3.amazonaws.com/schedulesdirect/assets/p16566169_b_h3_aa.jpg',4,NULL),('SH015444020000','Im Mittelpunkt stehen turbulente, spannende, witzige und romantische Geschichten rund um die Irrungen und Wirrungen von Freundschaft, Liebe und Familie am Hotel Fürstenhof.',NULL,'DEU','Sturm der Liebe','https://s3.amazonaws.com/schedulesdirect/assets/p9145515_b_h3_aa.jpg',4,NULL),('SH034366170000','Der Klassiker der bayerischen Küche: Schweinebraten! Chefkoch Anton Silbernagl verrät seine Tipps für das beste Braten-Rezept mit der einfachsten Braten-Sauce zum Selberkochen zuhause. Bei jung & hungrig gibt ?s die Koch-Basics.',NULL,'DEU','Jung & hungrig','https://s3.amazonaws.com/schedulesdirect/assets/p17934426_st_h3_aa.jpg',4,NULL),('SH018580840000','Shawn Spencer verfügt über eine außergewöhnliche Beobachtungsgabe. Er achtet auf jedes noch so kleine Detail in seiner Umgebung und bemerkt Dinge, die sonst oft niemandem auffallen. Das führt dazu, dass er in Fernsehberichten von Verbrechen oft schnell Hinweise entdeckt und der Polizei so bei der Aufklärung des Falles hilft. Als er jedoch eines Tages selbst unter Mordverdacht gerät, muss er sich etwas einfallen lassen. Er gibt sich als Hellseher aus, der die Hinweise durch übersinnliche Wahrnehmungen erhalten habe. Er kann den Fall lösen und gründet daraufhin mit seinem Freund Gus die Agentur `Psych\'. Fortan hilft er der Polizei mit seinen angeblich hellseherischen Fähigkeiten immer wieder bei der Lösung schwieriger Fälle.',NULL,'DEU','Psych','https://s3.amazonaws.com/schedulesdirect/assets/p185254_i_h3_ae.jpg',4,NULL),('SH028457600000','Two budding spies go undercover with a recurring team of super spies. The Rookies will compete in a series of \"spy craft\" disciplines against the clock.',NULL,'GBR','Spy School','https://s3.amazonaws.com/schedulesdirect/assets/p14951517_st_h3_aa.jpg',4,NULL),('SH012692060000','The classic 1980s police drama set in Jersey.',NULL,'GBR','Bergerac','https://s3.amazonaws.com/schedulesdirect/assets/p339325_i_h3_ac.jpg',4,NULL),('SH013321720000','\"Catchphrase\' is the STV Productions reboot of the similarly named show presented by Roy Walker and Nick Weir. In this game show, presented by Stephen Mulhern, contestants try to identify familiar catchphrases based on computer animations - usually featuring the show\"s animated mascot, Mr Chips - shown on an on-stage screen. The animation is initially covered by nine squares, which are taken away one at a time to slowly reveal the cartoon. Several puzzles are played to determine the winner, who advances to the bonus round for a chance to win a cash prize.',NULL,'GBR','Catchphrase','https://s3.amazonaws.com/schedulesdirect/assets/p350044_i_h3_ab.jpg',4,NULL),('SH019962420000','Der New Yorker Polizist Theodoros Kojak erledigt seine Fälle so, wie er es für richtig hält. Mit zynischem Humor spürt der glatzköpfige Grieche die Schlupfwinkel dunkler Elemente selbst auf Partys der High Society auf.',NULL,'DEU','Kojak - Einsatz in Manhattan','https://s3.amazonaws.com/schedulesdirect/assets/p184158_i_h3_aa.jpg',4,NULL),('SH033080130000','Owen Grady and Claire Dearing work together to deal with the running of one of the most incredible theme parks ever made - Jurassic World.',NULL,'GBR','Jurassic World: The Legend of Isla Nublar','https://s3.amazonaws.com/schedulesdirect/assets/p17039832_i_h3_aa.jpg',4,NULL),('SH020063520000','Einmal im Monat präsentiert das Sportmagazin Athleten hautnah - im Training, im Wettkampf, aber auch von ihrer privaten Seite. Die Reporter sind dabei, wenn sich die Athleten auf ihre nächsten Wettkämpfe vorbereiten und den Ausgleich zu Hause suchen.',NULL,'DEU','Vision Gold','https://s3.amazonaws.com/schedulesdirect/assets/p11092345_st_h3_aa.jpg',4,NULL),('SH021903090000','Wer hat die Brille erfunden? Woher kommt die Brez\'n? Oder: Warum heißt die Sternschnuppe Sternschnuppe? Diese oder ähnliche Fragen stellt Willi den zwei Schulklassen aus zwei Städten in seinem unterhaltsamen Quiz-Quark-Club.',NULL,'DEU','Willis Quiz Quark Club','https://s3.amazonaws.com/schedulesdirect/assets/p11802755_i_h3_aa.jpg',4,NULL),('SH017036600000','Dom Littlewood looks at clever new methods that the police and the public are using to catch crooks.',NULL,'GBR','Caught Red Handed','https://s3.amazonaws.com/schedulesdirect/assets/p9808788_b_h3_ad.jpg',4,NULL),('SH019671070000','Die 30-minütigen Reportagen erzählen von norddeutschen Originalen.',NULL,'DEU','Typisch!','https://s3.amazonaws.com/schedulesdirect/assets/p10950256_b_h3_aa.jpg',4,NULL),('SH019952770000','Die Moderatorin Funda Vanroy entführt den Zuschauer auf eine Reise rund um den Globus. Facettenreiche und unglaubliche Themen, die uns im täglichen Leben beeinflussen, werden recherchiert und vorgestellt.',NULL,'DEU','Galileo 360°','https://s3.amazonaws.com/schedulesdirect/assets/p11060269_i_h3_aa.jpg',4,NULL),('SH028196780000','Die Frontlinie des Kalten Krieges verlagerte sich ab Ende der 1950er Jahre immer mehr in den Atlantischen Ozean, wo sich die U-Boote der Supermächte gegenseitig belauerten. Der Alltag an Bord war gefährlich und brachte die Fahrer an ihre Grenzen.',NULL,'DEU','Der geheime U-Boot-Krieg','https://s3.amazonaws.com/schedulesdirect/assets/p10358587_i_h3_aa.jpg',4,NULL),('SH022744110000','Dave Lamb narrates this animated revival of 1980s British favourite \"Danger Mouse\', a children\'s series following the adventures of the eponymous secret agent. Alexander Armstrong stars as the voice of the hero, while Kevin Eldon is the voice of Penfold, DM\"s faithful but nervous sidekick. The two best friends fight crimes in parallel universes, using the latest gadgets and protecting the world from the evil Baron Greenback, as well as other old and new foes. In each episode, the Head of the British Secret Service, Colonel K, briefs DM and Penfold on their missions from their secret London location, hidden beneath a post box.',NULL,'GBR','Danger Mouse','https://s3.amazonaws.com/schedulesdirect/assets/p12159956_i_h3_aa.jpg',4,NULL),('SH032642270000','The untold secret story of war production that shaped the Second World War.',NULL,'GBR','War Factories','https://s3.amazonaws.com/schedulesdirect/assets/p17110692_st_h3_aa.jpg',4,NULL),('SH029618550000','Ore Oduba hosts the high-tension, fast-paced quiz where contestants battle to outrun the Hardball, but if it overtakes them, it\'s game over.',NULL,'GBR','Hardball','https://s3.amazonaws.com/schedulesdirect/assets/p15476986_b_h3_aa.jpg',4,NULL),('SH019098250000','Die Dokumentationen untersuchen verschiedene geschichtliche Themen.',NULL,'DEU','Geschichte im Ersten','https://s3.amazonaws.com/schedulesdirect/assets/p10723643_b_h3_aa.jpg',4,NULL),('SH017428550000','Reporter begeben sich jeweils sieben Tage in eine für sie unbekannte Welt, z.B. in ein Altersheim, ein Kloster, auf einen Bauernhof, und lernen Menschen und Lebenswege kennen, die ihnen bisher völlig fremd waren.',NULL,'DEU','7 Tage...','https://s3.amazonaws.com/schedulesdirect/assets/p9987885_b_h3_aa.jpg',4,NULL),('SH022485210000','\"Stop, Search, Seize\' is a documentary series exploring the work of Ireland\"s customs department. The episodes are filmed at airports and ports across Ireland, including the popular regions of Cork, Dublin and Shannon. Activity at the Northern Ireland border is also captured as people attempt to smuggle contraband goods in and out of the country. Some of the cases reviewed include the illegal carrying of guns, knives and drugs. Modern security measures are explained, and the team is seen catching criminals in action.',NULL,'GBR','Stop Search Seize','https://s3.amazonaws.com/schedulesdirect/assets/p12042075_b_h3_aa.jpg',4,NULL),('SH012742270000','Archie MacDonald bears the responsibility of running his family estate in the Scottish Highlands.',NULL,'GBR','Monarch of the Glen','https://s3.amazonaws.com/schedulesdirect/assets/p444522_b_h3_ae.jpg',4,NULL),('SH032809980000','Following the life of a divorced dad living with his two lively teenage daughters.',NULL,'GBR','Father, Dear Father','https://s3.amazonaws.com/schedulesdirect/assets/p17196638_st_h3_aa.jpg',4,NULL),('SH030596860000','Stand-up series exploring British Chinese culture, from BBC New Comedy Award finalist Ken Cheng.',NULL,'GBR','Ken Cheng: Chinese Comedian','https://s3.amazonaws.com/schedulesdirect/assets/p15992118_b_h3_aa.jpg',4,NULL),('SH024882830000','Am 11. November 1918 endete der Erste Weltkrieg - ein Krieg, der zehn Millionen Soldaten und neun Millionen Zivilisten das Leben kostete. Die Dokumentation arbeitet die Geschehnisse auf, die ganze Königreiche zerstörten.',NULL,'DEU','Apokalypse - Der Erste Weltkrieg','https://s3.amazonaws.com/schedulesdirect/assets/p11237279_i_h3_aa.jpg',4,NULL),('SH014249520000','Here today, gone tomorrow. Thousands of people go missing in the United States each year, leaving behind only a mystery without any clues. Their stories are told in \"Disappeared\' through the voices of family, friends and investigators trying to solve the case, with each hourlong episode recounting the final stages that led to a person\"s disappearance. Interviews with experts including psychologists and forensic specialists provide new insights into what may have happened - whether foul play was involved or the subject simply ran away.',NULL,'GBR','Disappeared','https://s3.amazonaws.com/schedulesdirect/assets/p7946707_l_h3_aa.jpg',4,NULL),('SH026953270000','Die Serie `Airport Security: Colombia\' begleitet die Sicherheitskräfte bei ihrem Kampf gegen Drogenschmuggel, Menschenhandel und mehr. Der El Dorado-Flughafen in der kolumbianischen Hauptstadt gehört zu den wichtigsten Drehkreuzen Lateinamerikas.',NULL,'DEU','Drehkreuz des Drogenschmuggels - Flughafen Kolumbien','https://s3.amazonaws.com/schedulesdirect/assets/p11930197_i_h3_am.jpg',4,NULL),('SH018895050000','Mehrere Gegenstände. verschwinden im Aushalt. Tom und Jerry versuchen, den Dieb zu schnappen.; Toms verfasster Krimi scheint real zu werden.; Bei Toms Jagd nach Jerry, flüchtet dieser ins Naturkundemuseum. Dort verbreiten die beiden jede Menge Chaos.',NULL,'DEU','Die Tom und Jerry Show','https://s3.amazonaws.com/schedulesdirect/assets/p10478306_i_h3_aa.jpg',4,NULL),('SH019664820000','Dokumentation über den Alltag der Asphalt-Cowboys, der Könige der Autobahn: der Trucker. In tonnenschweren Lastwagen fahren sie durch ganz Europa, immer unter Zeitdruck, immer fern von zu Hause. Trotz allem würden sie ihren Job nicht tauschen wollen.',NULL,'DEU','Asphalt-Cowboys','https://s3.amazonaws.com/schedulesdirect/assets/p10947801_b_h3_aa.jpg',4,NULL),('SH019750370000','Das Umwelt- und Naturmagazin für den Südwesten.',NULL,'DEU','natürlich!','https://s3.amazonaws.com/schedulesdirect/assets/p10980595_b_h3_aa.jpg',4,NULL),('SH019468510000','Das Regionalmagazin berichtet von den wichtigsten Ereignissen im Freistaat Sachsen.',NULL,'DEU','MDR Sachsenspiegel','https://s3.amazonaws.com/schedulesdirect/assets/p10871776_b_h3_aa.jpg',4,NULL),('SH018558460000','Das Informationsmagazin zeigt sorgfältig recherchierte Hintergrundberichte zu einem breiten Themenspektrum, begonnen bei deutscher und internationaler Politik sowie Kultur bis hin zu wirtschaftlichen und gesellschaftlichen Themen.',NULL,'DEU','Spiegel TV Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p10458729_b_h3_aa.jpg',4,NULL),('SH034250430000','Using footage from bodycams, force helicopters and CCTV, getting a unique first-hand and adrenaline-fuelled perspective of the dangers police officers face around the world.',NULL,'GBR','Frontline Police 24/7','https://s3.amazonaws.com/schedulesdirect/assets/p17858726_st_h3_aa.jpg',4,NULL),('SH031540030000','Showcases historical television footage that has been restored to include colour. From the Nixon Kennedy debate, to the bombing of Pearl Harbour, and other important 20th century events.',NULL,'GBR','America in Color','https://s3.amazonaws.com/schedulesdirect/assets/p14226414_i_h3_aa.jpg',4,NULL),('SH030053650000','For the first time in more than five years, cameras have been allowed behind bars to give a rare insight into life behind the bars of Durham Prison and explore the issues that prison staff and prisoners face.',NULL,'GBR','Prison','https://s3.amazonaws.com/schedulesdirect/assets/p15708064_b_h3_aa.jpg',4,NULL),('SH029067060000','Arts documentary.',NULL,'GBR','The Art of Now','https://s3.amazonaws.com/schedulesdirect/assets/p15196090_b_h3_aa.jpg',4,NULL),('SH029168400000','In der Dokumentationsserie werden alte Schrottteile recycelt und in komplett neue Gegenstände umgewandelt.',NULL,'DEU','Die Schrott-Transformer','https://s3.amazonaws.com/schedulesdirect/assets/p12772178_i_h3_aa.jpg',4,NULL),('SH014699490000','Wartime battles produce many heroes, the brilliant generals and brave troops whose selfless acts of courage saved hundreds of thousands of lives. \"Narrow Escapes of World War II\" celebrates and honours the heroes of WWII who stood up and fought when everything else seemed lost. The series re-creates the suicidal raids, rearguard actions, and back-to-the-wall fighting it took to make sure these men made it home safely, highlighting such events as the Battle of the Bulge, Operation Hannibal, Moore\'s March, Operation Pedestal, and Gen. Wilhelm Stemmermann\'s \"Breakout Through Hell\'s Gate\'.',NULL,'GBR','Narrow Escapes of World War II','https://s3.amazonaws.com/schedulesdirect/assets/p8821801_l_h3_aa.jpg',4,NULL),('SH028004160000','Die Sendung begleitet junge Gefängniswärter und -wärterinnen in den ersten Tagen und Wochen ihrer neuen Beschäftigung in einem Staatsgefängnis in New Mexico. Füe sie alle gilt es, sich rechtzeitig zu behaupten und sich Respekt zu verschaffen.',NULL,'DEU','Der härteste Job der Welt - Ausbildung im Knast','https://s3.amazonaws.com/schedulesdirect/assets/p11935460_i_h3_aa.jpg',4,NULL),('SH003331970000','Ein Kiez in Berlin-Mitte ist Schauplatz von zahlreichen spannenden Abenteuern des Alltags. Die Serie begleitet ihre Protagonisten durch die Höhen und Tiefen des Erwachsenwerdens sowie deren Probleme im Berufs- und Liebesleben.',NULL,'DEU','Gute Zeiten, schlechte Zeiten','https://s3.amazonaws.com/schedulesdirect/assets/p397376_st_h3_aa.jpg',4,NULL),('SH019632710000','Die Talkrunde vereint prominente Gäste und Menschen mit außergewöhnlichen Geschichten.',NULL,'DEU','Kölner Treff','https://s3.amazonaws.com/schedulesdirect/assets/p10934425_b_h3_aa.jpg',4,NULL),('SH018553660000','Mystery diners check in on restaurants that need a big turnaround.',NULL,'GBR','Mystery Diners','https://s3.amazonaws.com/schedulesdirect/assets/p8982389_l_h3_aa.jpg',4,NULL),('SH029304850000','Der Oligarchensohn Alex Godman lebt in London und hat dem internationalen organisierten Verbrechen eigentlich abgeschworen, aber ungewollt holt ihn seine kriminelle Vergangenheit mit Geldwäsche, Drogenhandel und Menschenschmugglern wieder ein.',NULL,'DEU','McMafia','https://s3.amazonaws.com/schedulesdirect/assets/p14912004_i_h3_aa.jpg',4,NULL),('SH028781520000','Erfinder treten in Duellen gegeneinander an, die Zuschauer entscheiden, welche Erfindung sie nützlicher finden und auch Zuhause einsetzen würden. Dem Sieger winkt ein lukrativer Werbedeal in einer Höhe von 2,5 Millionen Euro.',NULL,'DEU','Das Ding des Jahres','https://s3.amazonaws.com/schedulesdirect/assets/p15064573_st_h3_aa.jpg',4,NULL),('SH031193860000','Schüler der `Salvatore School for the Young and Gifted\', einschließlich Hope Mikaelson and Lizzie and Josie Satlzman, schützen Mystic Falls und die Welt.',NULL,'DEU','Legacies','https://json.schedulesdirect.org/20141201/image/assets/p15533821_b_h3_ab.jpg',4,NULL),('SH013059490000','Award-winning comedy panel show \"Celebrity Juice\" is hosted by the legendary comedian Leigh Francis in the form of his alter-ego, the outrageous Keith Lemon. Keith holds nothing back as he is joined by regular team captains Holly Willoughby and Mel B, who are more often than not on the receiving end of his quirky sense of humour and mischievous antics. Holly and Mel B go head to head in a series of hilarious games and challenges about current events and the latest celebrity gossip. To add even more hilarity to the madness in the studio, celebrity guests join the panel each week.',NULL,'GBR','Celebrity Juice','https://s3.amazonaws.com/schedulesdirect/assets/p8210937_b_h3_ad.jpg',4,NULL),('SH019666900000','In der Quizsendung tritt ein Team von vier Kandidaten gegen ein Superhirn, den `Jäger\', an. Keine leichte Aufgabe, denn die Jäger sind ausgewiesene Quizprofis aus der deutschen Quiznationalmannschaft, darunter sogar der Deutsche Quizmeister. In der ersten Runde bauen die Kandidaten einzeln eine Spielsumme auf, die sie in der zweiten Runde gemeinsam gegen den Jäger verteidigen müssen, um in das Finale einzuziehen. Im Finale treten die verbliebenen Kandidaten im Team gegen den Jäger an und verteidigen das bisher erspielte Geld. Sie müssen innerhalb von zwei Minuten so viele Fragen wie möglich beantworten. Beantworten die Kandidaten mehr Fragen als der Jäger richtig, haben sie gewonnen.',NULL,'DEU','Gefragt - Gejagt','https://s3.amazonaws.com/schedulesdirect/assets/p10948433_b_h3_aa.jpg',4,NULL),('SH013033650000','YouTube is all the rage right now. \"Rude Tube\' finds the best videos available on the site, from rare gems to clips with millions of hits, and presents them to viewers, doing all the hard work in sorting through the bad stuff so viewers don\'t have to. But `Rude Tube\' doesn\'t stop at showcasing some of the Internet\'s best videos. The programme finds people featured in the viral videos and gets the backstories on the clips as well as the impact that Internet famed has had on their lives. Whether you\'re looking for guilty pleasure videos or cute animals, chances are you\'ll see it on `Rude Tube\".',NULL,'GBR','Rude Tube','https://s3.amazonaws.com/schedulesdirect/assets/p8201067_l_h3_aa.jpg',4,NULL),('SH031652180000','Florian aus Leipzig erbt von seinem Großvater einen Bauernhof in Bayern, zu dem auch Racko, der Hund des Großvaters, gehört. Nach dem Umzug auf den Bauernhof werden Florian und Racko schnell beste Freunde und erkunden zusammen die neue Heimat.',NULL,'DEU','Racko: Ein Hund für alle Fälle','https://s3.amazonaws.com/schedulesdirect/assets/p16598302_st_h3_ac.jpg',4,NULL),('SH020333740000','Die Landesschau Rheinland-Pfalz schaut ins Land, berichtet übers Land, ist fürs Land. Rheinland-Pfalz den Rheinland-Pfälzern ganz nahe bringen - das ist die Philosophie. Und dieser Anspruch wird jeden Tag aufs Neue erfüllt.',NULL,'DEU','Landesschau Rheinland-Pfalz','https://s3.amazonaws.com/schedulesdirect/assets/p11186685_b_h3_aa.jpg',4,NULL),('SH028050090000','Die sogenannte A-Gruppe, eine Sonderermittlungsgruppe der schwedischen Polizei, bekämpft Verbrechen internationaler Tragweite. Angeführt wird diese von dem bei der Polizei zu Unrecht in Ungnade gefallenen Paul Hjelm, der eine illustre Gruppe leitet.',NULL,'DEU','Arne Dahl','https://s3.amazonaws.com/schedulesdirect/assets/p14713122_st_h3_aa.jpg',4,NULL),('SH025194970000','Tinky-Winky, Dipsy, Laa Laa and Po frolic and play in the idyllic Teletubbyland, while a baby\'s face in a sun coos and laughs. The Teletubbies have televisions in their stomachs on which they watch real children. A large, pinwheel-shaped windmill begins a magical event during episodes.',NULL,'GBR','Teletubbies','https://s3.amazonaws.com/schedulesdirect/assets/p13324866_i_h3_aa.jpg',4,NULL),('SH021851650000','`Das kann doch nicht wahr sein!\' Dieser Ausruf macht Enttäuschung und Empörung Luft. Er ruft nach ausgleichender Gerechtigkeit. `Voss & Team\' widmet sich Themen mit genau diesem Aufreger-Potential: Schicksalen, Behördenwillkür, Steuerverschwendung.',NULL,'DEU','Voss & Team','https://s3.amazonaws.com/schedulesdirect/assets/p11777971_b_h3_aa.jpg',4,NULL),('SH013101510000','Professor Robert Bartlett presents a series which examines the way we thought during Medieval times.',NULL,'GBR','Inside the Medieval Mind','https://s3.amazonaws.com/schedulesdirect/assets/p8225657_st_h3_aa.jpg',4,NULL),('SH012588780000','Sleuthing adventures with Agatha Christie\'s loveable detective.',NULL,'GBR','Agatha Christie\'s Poirot','https://s3.amazonaws.com/schedulesdirect/assets/p466168_i_h3_al.jpg',4,NULL),('SH027609630000','Die Sendung nimmt frech bis spöttisch Kurs auf die Themen der Metropole und berichtet satirisch und politisch über die Geschicke der Stadt.',NULL,'DEU','Abendshow - Live aus Berlin','https://s3.amazonaws.com/schedulesdirect/assets/p14467324_st_h3_aa.jpg',4,NULL),('SH030343740000','Die neu aufgestellte Sendung wirft einen frischen Blick auf die Topthemen des Tages aus Berlin und Brandenburg und informiert kompakt in 15 Minuten über die Entwicklungen bis in den späten Abend.',NULL,'DEU','rbb24','https://s3.amazonaws.com/schedulesdirect/assets/p15852581_b_h3_aa.jpg',4,NULL),('SH015402030000','Das Magazin informiert aktuell, regional und unterhaltsam über medizinische Themen, Gesundheitsvorsorge und neue Therapieformen.',NULL,'DEU','rbb Praxis','https://s3.amazonaws.com/schedulesdirect/assets/p9125748_b_h3_ab.jpg',4,NULL),('SH031550100000','Set in the 1980s among the Scandinavian expat community in Tanzania, a parallel tale of two generations in which idealism gradually turns sour. Danish family the Knudsens arrive in Tanzania full of good intentions and a sincere wish to help others.',NULL,'GBR','Liberty','https://s3.amazonaws.com/schedulesdirect/assets/p15084924_b_h3_aa.jpg',4,NULL),('SH019831610000','Im Wechsel diskutieren Ursula Heller und Sigmund Gottlieb in dieser politischen Talksendung mit Verantwortlichen, Experten und Betroffenen aus Politik, Wirtschaft und Gesellschaft.',NULL,'DEU','Münchner Runde','https://s3.amazonaws.com/schedulesdirect/assets/p11014452_b_h3_aa.jpg',4,NULL),('SH019560340000','Der Naval Crime Investigative Service wird dann gerufen, wenn Verbrechen begangen werden, die gegen den Uniform Code of Military Justice verstoßen und innerhalb der Navy stattfinden. Das Hauptquartier befindet sich in Washington D.C. und steht unter der Leitung von Special Agent Leroy Jethro Gibbs. Er selbst ist ein Veteran aus dem Irak-Krieg und hat mit moderner Technik wenig zu tun. Aus diesem Grund ermittelt er gemeinsam mit einem Elite-Team, bestehend aus dem Ballistik-Experten Tony DiNozzo, dem Technikspezialisten Tim McGee, der Forensikspezialistin Abby Sciuto sowie dem Gerichtsmediziner Ducky Mallard.',NULL,'DEU','Navy CIS','https://s3.amazonaws.com/schedulesdirect/assets/p184930_i_h3_ae.jpg',4,NULL),('SH032619240000','Uncovering a selection of complex underground structures and how humans built them. Featuring structures in Poland, Germany and Italy, among others.',NULL,'GBR','Underground Worlds','https://s3.amazonaws.com/schedulesdirect/assets/p17100883_st_h3_ab.jpg',4,NULL),('SH022574680000','This reality show follows 14 ordinary people who must go on the run and remain undetected for a period of 28 days. On their trail is an expert team of hunters who use modern policing and security methods to find and capture the participants. The acting fugitives are given limited funds and must not enlist the help of others; on their own, they take on aliases as they do their best to become invisible amongst society. The episodes capture every detail as hackers track their targets using the latest technology, hunters go under cover and runaways flee into back streets and the wilderness.',NULL,'GBR','Hunted','https://s3.amazonaws.com/schedulesdirect/assets/p12085025_i_h3_ab.jpg',4,NULL),('SH019700510000','Eine Reportagereihe, bei der die Sorgen und Ängste der Menschen im Mittelpunkt stehen.',NULL,'DEU','Exakt - Die Story','https://s3.amazonaws.com/schedulesdirect/assets/p10961299_b_h3_ab.jpg',4,NULL),('SH016398410000','Eine Servicesendung mit Tipps für die großen und kleinen Herausforderungen des Alltags sowie einem prominenten Studiogast, mit dem am Studiotisch zwischen Kaffee und Morgenbrötchen ein Interview geführt wird.',NULL,'DEU','Volle Kanne - Service täglich','https://s3.amazonaws.com/schedulesdirect/assets/p9563697_b_h3_ab.jpg',4,NULL),('SH013268190000','Pre-school animation featuring the Bee family, who live together in Honeybee Hive.',NULL,'GBR','The Hive','https://s3.amazonaws.com/schedulesdirect/assets/p8294149_i_h3_aa.jpg',4,NULL),('SH012793970000','This lunchtime chat show features a rotating panel comprised of women from the entertainment and journalism worlds. They discuss issues from a female perspective - from politics and current affairs to the latest gossip - and meet the celebrities and faces behind the headlines.',NULL,'GBR','Loose Women','https://s3.amazonaws.com/schedulesdirect/assets/p432120_i_h3_ab.jpg',4,NULL),('SH013162310000','A mission to transform a dilapidated country cottage in Devon into the ultimate \"homemade\" home.',NULL,'GBR','Kirstie\'s Homemade Home','https://s3.amazonaws.com/schedulesdirect/assets/p8126642_b_h3_aa.jpg',4,NULL),('SH015394800000','In der Sendung werden verschiedene Elektro- und Akkuwerkzeuge für den Garten vorgestellt.',NULL,'DEU','Baricus - Gartenwerkzeuge','https://s3.amazonaws.com/schedulesdirect/assets/p9121952_st_h3_aa.jpg',4,NULL),('SH021558850000','Jeff Tracy amasses a colossal fortune and decides that he must use it to benefit others. His answer is to create International Rescue, an emergency response service with vehicles that can respond in the sea, air, land, or space.',NULL,'GBR','Thunderbirds Are Go','https://s3.amazonaws.com/schedulesdirect/assets/p11640732_b_h3_aa.jpg',4,NULL),('SH023584210000','Kids like superheroes, so what could be better for tykes than becoming superheroes themselves? That\'s what happens at night for young friends Connor, Amaya and Greg. When they put on their pyjamas and activate their animal amulets, they turn into their alter egos -- Catboy, Owlette and Gekko -- before embarking on adventures that are filled with action. Along the way, they solve mysteries and learn valuable lessons. The animated series is based on the \"Les Pyjamasques\" book series by French author Romuald Racioppo.',NULL,'GBR','PJ Masks','https://s3.amazonaws.com/schedulesdirect/assets/p12115698_b_h3_aa.jpg',4,NULL),('SH018556740000','Wettervorhersage.',NULL,'DEU','RTL Aktuell: Das Wetter','https://s3.amazonaws.com/schedulesdirect/assets/p10457997_b_h3_ab.jpg',4,NULL),('SH012606380000','As it turns out, some immovable objects are less \"immovable\" than others. Just ask the ingenious engineers who manage to relocate some of the least-mobile structures imaginable, including an eight-story smokestack and a 500-ton oil rig. This series follows the process from measurement to planning and all the way through the white-knuckle step of actually moving the structures while avoiding power lines, navigating narrow bridges and dealing with other hazards along the route.',NULL,'GBR','Mega Movers','https://json.schedulesdirect.org/20141201/image/assets/p185529_i_h3_aa.jpg',4,NULL),('SH016932800000','The men of the Jamie Davis Heavy Rescue company battle the treacherous Coquihalla Highway in British Columbia. Because it is one of the most economically important, most travelled trucking routes in North America, the crew must do whatever it takes to keep the road open. Truckers face steep hills, lethal drop-offs and major rockslides. The value of the cargo and the need for urgent delivery require the rescue crew to respond when truckers get into trouble. Owner Jamie handles the bills, the employees, keeping the clients happy, and the mighty \"Rotator\".',NULL,'GBR','Highway Thru Hell','https://s3.amazonaws.com/schedulesdirect/assets/p9388134_i_h3_aa.jpg',4,NULL),('SH019586730000','Das Wichtigste aus Politik, Kultur, Wirtschaft und Sport, die Szene-Trends und die Kiezgeschichten.',NULL,'DEU','Abendschau','https://s3.amazonaws.com/schedulesdirect/assets/p10914775_b_h3_ac.jpg',4,NULL),('SH031503490000','Voller Hoffnung bricht die junge Eliza auf, um sich in Rio de Janeiro ein besseres Leben aufzubauen. Dort lebt sie zunächst auf der Straße. Schon bald macht ihr der Geschäftsführer einer renommierten Modeagentur jedoch ein überraschendes Angebot.',NULL,'DEU','Total Dreamer - Träume werden wahr','https://s3.amazonaws.com/schedulesdirect/assets/p12309284_i_h3_aa.jpg',4,NULL),('SH032782500000','Die Dokumentation zeigt die Lichtblicke im Kampf gegen den Terror und Pläne, die rechtzeitig durchkreuzt wurden. In jeder Folge wird ein geplanter Terroranschlag dokumentiert, der unzählige Todesopfer fordern sollte, aber verhindert wurde.',NULL,'DEU','Dem Terror knapp entkommen','https://s3.amazonaws.com/schedulesdirect/assets/p15514911_i_h3_aa.jpg',4,NULL),('SH003333110000','Die Sendung gehört zu den Klassikern unter den TV-Magazinen. Auf unterhaltsame Art und Weise präsentieren die Moderatoren Boulevard-Themen, die in den Schlagezeilen sind. Außerdem werden Interviews mit prominenten Gästen durchgeführt.',NULL,'DEU','stern TV','https://json.schedulesdirect.org/20141201/image/assets/p535445_i_h3_aa.jpg',4,NULL),('SH013626350000','Series looking at people who were pioneers in their field.',NULL,'GBR','Pioneers','https://s3.amazonaws.com/schedulesdirect/assets/p8436133_st_h3_aa.jpg',4,NULL),('SH019883330000','Sam lebt in Pontypandy, einem Dorf, in dem jeder jeden kennt. Der Feuerwehrmann braucht sich keine Sorgen zu machen, dass er irgendwann nichts zu tun hat, denn es passieren so viele Dinge. Meist verbirgt sich der Junge Norman hinter den Unglücken.',NULL,'DEU','Feuerwehrmann Sam','https://s3.amazonaws.com/schedulesdirect/assets/p386604_i_h3_aa.jpg',4,NULL),('SH013771680000','Insights into the business world from those who run it.',NULL,'GBR','The Bottom Line','https://json.schedulesdirect.org/20141201/image/assets/p8496801_i_h3_aa.jpg',4,NULL),('SH012691610000','The life of a Depression-era family in Virginia\'s Blue Ridge Mountains is the subject of this wholesome series. The show is seen from the point of view of eldest son John Boy, who eventually goes to college, serves in World War II and becomes a novelist.',NULL,'GBR','The Waltons','https://s3.amazonaws.com/schedulesdirect/assets/p184293_l_h3_aa.jpg',4,NULL),('SH028225170000','Videokameras auf dem Amaturenbrett zeichnen die unglaublichsten Manöver aus dem Straßenverkehr auf. Ob Massenkarambolagen, schief gelaufene Überholmanöver oder skurrile Wutausbrüche, es wurde alles mit der Kamera gefilmt.',NULL,'DEU','Abgefahren - Die spektakulärsten Dashcam Clips','https://s3.amazonaws.com/schedulesdirect/assets/p12272725_i_h3_aa.jpg',4,NULL),('SH012613230000','Former scientist Sam Beckett finds himself trapped in time due to an experiment gone awry, leaping into the body of a different person each week. Al Calavicci, at first known only as The Observer, is Sam\'s holographic adviser - he provides Sam with some details about his new identity and gives him guidance on how to help the people affected by his presence. But with little memory to help guide him, our hero is forced to bluff his way through many a wacky situation.',NULL,'GBR','Quantum Leap','https://s3.amazonaws.com/schedulesdirect/assets/p183874_b_h3_aa.jpg',4,NULL),('SH028256840000','Behind the scenes at the Gilbert Bain in Shetland, the UK\'s most remote hospital.',NULL,'GBR','Island Medics','https://s3.amazonaws.com/schedulesdirect/assets/p14834387_st_h3_aa.jpg',4,NULL),('SH027699330000','Die beiden Schülerinnen Babe und Kenzie müssen für ein Schulprojekt zusammenarbeiten. Aus einer Spielerei von Kenzie entsteht ein Mobile-Game namens Sky Whale. Zwar gefällt das Projekt ihrem Lehrer nicht, als die beiden es aber online freigeben, entwickelt es sich rasend schnell zum größten Game-Hit des Jahres. Das ruft den Rapper Double G auf den Plan, an dessen Musik sich die beiden für ihr Schulprojekt bedient hatten. Dank Vermittlung von Doubble Gs Sohn Triple G beginnt eine Partnerschaft.',NULL,'DEU','Game Shakers - Jetzt geht\'s App','https://s3.amazonaws.com/schedulesdirect/assets/p12070761_i_h3_ab.jpg',4,NULL),('SH019855930000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Düsseldorf.',NULL,'DEU','Lokalzeit aus Düsseldorf','https://s3.amazonaws.com/schedulesdirect/assets/p11024459_b_h3_ab.jpg',4,NULL),('SH016991810000','Zwei Männer der Autobahnpolizei kämpfen gegen Verbrechen in Berlin und Nordrhein-Westfalen. Ihre Gegner sind extrem schnell und gefährlich und deshalb sind auch die Ermittler immer mit voller Geschwindigkeit unterwegs.',NULL,'DEU','Alarm für Cobra 11 - Die Autobahnpolizei','https://s3.amazonaws.com/schedulesdirect/assets/p8003912_b_h3_ai.jpg',4,NULL),('SH028233180000','Children pretending to be grown-ups in the imaginary town of Biggleton.',NULL,'GBR','Biggleton','https://s3.amazonaws.com/schedulesdirect/assets/p14823277_st_h3_aa.jpg',4,NULL),('SH029025790000','\"Killer Couples\" is in the same vein of the long-running true-crime series \"Snapped,\" which tells stories of people who commit murder or attempt murder, but with a focus on couples who commit crimes. Using re-creations and firsthand accounts, each episode digs into a case, telling the story of the couple\'s romance, how the relationship evolved from love to manipulation, and what ultimately led the couple to commit the crime. The stories range from teenage lovers who go on a multistate crime spree to lesbian lovers who want to eliminate one of their husbands.',NULL,'GBR','Killer Couples','https://s3.amazonaws.com/schedulesdirect/assets/p13125150_b_h3_aa.jpg',4,NULL),('SH021563140000','In this documentary series Alastair Sooke explores the art history of ancient Greece, taking a look at the origins and stories behind some of the masterpieces. The journey begins in Knossos, Crete, where Sooke finds The Throne Room, where the artwork depicted on the walls is used to decipher the use of the room. From there, he travels on to discover the temple ruins at Samos and the Oracle at Delphi. The \"Greek Revolution\" which saw a rapid development in classical art, is discussed and the Western civilisation\'s attraction to Greek art is followed through to modern times.',NULL,'GBR','Treasures of Ancient Greece','https://s3.amazonaws.com/schedulesdirect/assets/p11642607_b_h3_aa.jpg',4,NULL),('SH018574550000','Richter Ulrich Wetzel legt viel Wert auf ein faires Kreuzverhör in seinem Gerichtssaal. Mit im Saal die Angeklagten, der Staastanwalt und der Verteidiger. Die Zeugen werden geladen um die Wahrheit ans Licht zu bringen.',NULL,'DEU','Das Strafgericht','https://s3.amazonaws.com/schedulesdirect/assets/p10464477_b_h3_aa.jpg',4,NULL),('SH025933580000','Elena hat ihr Königreich Avalor vor einer bösen Zauberin gerettet. Doch nun muss die Sechzehnjährige lernen, wie man ein Königreich regiert. Sie erlebt viele Abenteuer, bei denen sie erfährt, dass ihre neue Rolle als Oberhaupt eine Menge fordert.',NULL,'DEU','Elena von Avalor','https://s3.amazonaws.com/schedulesdirect/assets/p12975383_i_h3_aa.jpg',4,NULL),('SH003332690000','Das Nachrichten- und Unterhaltungsmagazin beschäftigt sich mit tagesaktuellen Themen, dem Wetter, bietet nützliche Verbrauchertipps und berichtet über das Geschehen rund um den Globus. Außerdem bietet die Sendung jede Menge VIP, Klatsch und Tratsch von Prominenten und lädt die Stars und Sternchen ins Studio ein, um die Themen der Woche zu besprechen. Das Informationsmagazin berichtet zudem über die aktuellen Errungenschaften in der Welt des Sports, hat Aktionen und Gewinnspiele und eine Wettervorschau für Deutschland.',NULL,'DEU','Guten Morgen Deutschland','https://s3.amazonaws.com/schedulesdirect/assets/p397377_st_h3_aa.jpg',4,NULL),('SH021430130000','Zwei pensionierte Kommissare werden vom Polizeipräsidenten in den Dienst zurückbeordert.',NULL,'DEU','Rentnercops','https://s3.amazonaws.com/schedulesdirect/assets/p11584128_b_h3_aa.jpg',4,NULL),('SH013107230000','Nick Knowles explores the design history of homes across the UK as they undergo restoration.',NULL,'GBR','Nick Knowles\' Original Features','https://s3.amazonaws.com/schedulesdirect/assets/p8227904_i_h3_aa.jpg',4,NULL),('SH020601050000','Square befasst sich mit dem Blick der Kreativen und Künstler auf eine Welt, die sich rasant bewegt.',NULL,'DEU','Square Idee','https://s3.amazonaws.com/schedulesdirect/assets/p11278998_b_h3_aa.jpg',4,NULL),('SH019188450000','Taking a trip to France could prove to be profitable for Brits on \"French Collection\'. In each episode three people from the UK who are looking for bargains spend the day at a French market. They each have 800 euros to spend on items at the market and collectibles dealer Mark Franks is on hand to offer advice on their purchases. After leaving the market they head back to the UK, where they have one day to upcycle the purchases before selling them. The person who makes the most money on the sale wins everyone\"s cash.',NULL,'GBR','French Collection','https://s3.amazonaws.com/schedulesdirect/assets/p10764577_b_h3_aa.jpg',4,NULL),('SH019619470000','Der beste Freund der Maus verzaubert mit seiner ganz eigenen Sendung. Er erfreut seine Zuschauer mit vielen Lach- und Sachgeschichten und bringt sie damit zum Lachen und Staunen.',NULL,'DEU','Die Sendung mit dem Elefanten','https://s3.amazonaws.com/schedulesdirect/assets/p10928108_i_h3_ab.jpg',4,NULL),('SH033509300000','Die Kanalisation ist verstopft, die Straßen sind nicht geteert und in den Wohnvierteln stapelt sich Unrat, weil niemand den Müll wegräumt. Dieses bedrückende Szenario ist in Deutschland zum Glück keine Realität, weil fleißige Helfer gewissenhaft.',NULL,'DEU','Deutschland 24/7 - Ohne uns läuft nichts!','https://s3.amazonaws.com/schedulesdirect/assets/p17546592_st_h3_aa.jpg',4,NULL),('SH012851250000','A young fairy princess Holly and her best friend, Ben, go on exciting adventures and fix magical mistakes in Little Kingdom.',NULL,'GBR','Ben & Holly\'s Little Kingdom','https://s3.amazonaws.com/schedulesdirect/assets/p8146297_i_h3_aa.jpg',4,NULL),('SH014287220000','Coverage of questions to the prime minister.',NULL,'GBR','Prime Minister\'s Questions','https://s3.amazonaws.com/schedulesdirect/assets/p8715948_b_h3_aa.jpg',4,NULL),('SH018438260000','Diese Sendung präsentiert die tägliche Wettervorhersage im Ersten, mit aktuellen Prognosen.',NULL,'DEU','Wetter vor acht','https://s3.amazonaws.com/schedulesdirect/assets/p10415622_b_h3_ab.jpg',4,NULL),('SH014800140000','John Lloyd and Bill Bailey host this show in which 3 guests donate exhibits to an imaginary museum.',NULL,'GBR','The Museum of Curiosity','https://s3.amazonaws.com/schedulesdirect/assets/p8864053_st_h3_aa.jpg',4,NULL),('SH012692740000','The adventures of veteran police officer Sergeant TJ Hooker and his rookie partner Vince Romano.',NULL,'GBR','T.J. Hooker','https://s3.amazonaws.com/schedulesdirect/assets/p183984_l_h3_aa.jpg',4,NULL),('SH025112790000','Following on from \"Helicopter Heroes\', `Helicopter ER\" is a series capturing the rescue work of the Yorkshire Air Ambulance. A film crew follows the team of medics as they attend to patients in life or death situations. Stretching over thousands of square miles, the dales have beautiful but treacherous landscapes, where those needing medical assistance can find themselves in life-threatening conditions. Over the series these real-life heroes are seen performing surgery in the street, bringing back a patient from a cardiac arrest and dispensing painkillers to those in a lorry crash.',NULL,'GBR','Helicopter ER','https://s3.amazonaws.com/schedulesdirect/assets/p13284361_b_h3_aa.jpg',4,NULL),('SH022939520000','Das werktägliche Regionalmagazin mit aktuellen Informationen und Reportagen für Südbayern.',NULL,'DEU','Abendschau - Der Süden','https://s3.amazonaws.com/schedulesdirect/assets/p12261673_st_h3_aa.jpg',4,NULL),('SH015267980000','\"A Place in the Sun\' follows the warmth of the winter sun in this edition of the long-running programme, which chronicles the adventures of house hunters searching for dream properties abroad. Whether looking for a holiday home, a retirement retreat or a fresh start, the buyers in `Winter Sun\" leave behind cold, windy and wet weather and visit such destinations as Antigua, Barbados, the Canary Islands, Florida, Portugal and Grenada to tour homes for sale. The presenters include international property advisers Jasmine Harman, Jonnie Irwin, Laura Hamilton and Sara Damergi.',NULL,'GBR','A Place in the Sun: Winter Sun','https://s3.amazonaws.com/schedulesdirect/assets/p9061423_i_h3_ab.jpg',4,NULL),('SH012971890000','A round up of horse racing action.',NULL,'GBR','Racing Replay','https://s3.amazonaws.com/schedulesdirect/assets/p8182454_b_h3_aa.jpg',4,NULL),('SH024996290000','Maddie meets some furry friends and creepy crawlies.',NULL,'GBR','Maddie\'s Do You Know?','https://s3.amazonaws.com/schedulesdirect/assets/p13225301_i_h3_aa.jpg',4,NULL),('SH019003870000','Property renovator Simon O\'Brien knows how to take an old, run-down property and fix it up to make it look good. He uses his expertise to help people renovate what they believe are their dream properties in this programme. Each episode follows the transformation of a subpar dwelling into an above-average home, covering key elements of the project. The projects are often ambitious in their scope and they don\'t all necessarily make it to completion. Some successful past projects are also featured on the show.',NULL,'GBR','My Dream Derelict Home','https://s3.amazonaws.com/schedulesdirect/assets/p10673249_b_h3_aa.jpg',4,NULL),('SH027723980000','Übertragungen aktueller Wettbewerbe aus dem Reitsport.',NULL,'DEU','Springreiten','https://s3.amazonaws.com/schedulesdirect/assets/p378945_i_h3_aa.jpg',4,NULL),('SH026129130000','Singer Jane McDonald, who found fame on BBC\'s \"The Cruise\", returns to the seas in this travel series. The former cruise ship entertainer embarks on an odyssey as she boards a mega-cruise to explore the cruising life. Carrying over 4000 passengers, the vessels are seven times larger than those Jane has previously worked on. Jane immerses herself in the food, activities and community the ships have to offer. From Scandi-cruises to Australia and New Zealand, Jane does not stop until she has explored all the cruises in this ocean bound travelogue.',NULL,'GBR','Cruising with Jane McDonald','https://s3.amazonaws.com/schedulesdirect/assets/p13768963_i_h3_aa.jpg',4,NULL),('SH028383900000','Im deutschen Sprach- und Kulturinstitut in Kallalabad versuchen sechs tapfere Mitarbeiter, den Einheimischen deutsche Sprache, Kultur und Lebensart zu vermitteln. Ihr größter Gegner ist das allgemeine Desinteresse der Kisbeken.',NULL,'DEU','Das Institut - Oase des Scheiterns','https://s3.amazonaws.com/schedulesdirect/assets/p14911368_st_h3_aa.jpg',4,NULL),('SH016628550000','Coverage of the Dubai World Cup Carnival.',NULL,'GBR','Live: Dubai World Cup Carnival Horse Racing','https://s3.amazonaws.com/schedulesdirect/assets/p9646850_st_h3_aa.jpg',4,NULL),('SH031014330000','Follow the adventures of four kittens who make up a musical group called \"The Buffycats\".',NULL,'GBR','44 Cats','https://s3.amazonaws.com/schedulesdirect/assets/p16208083_i_h3_aa.jpg',4,NULL),('SH026041300000','The adventures of ten friends, in Numberland who can always count on each other. Each friend has a different ability that helps them on their adventures.',NULL,'GBR','Numberblocks','https://s3.amazonaws.com/schedulesdirect/assets/p13716932_i_h3_aa.jpg',4,NULL),('SH019580930000','Die -hessenschau- ist das Regionalmagazin im Fernsehen des Hessischen Rundfunks und ist die erfolgreichste und populärste Sendung im hr-fernsehen. Täglich wird aktuell über Politik, Kultur, Wirtschaft und Unterhaltendes aus Hessen berichtet.',NULL,'DEU','hessenschau','https://s3.amazonaws.com/schedulesdirect/assets/p10911776_i_h3_aa.jpg',4,NULL),('SH016340370000','A series about the New Zealand Customs agents.',NULL,'GBR','Border Patrol','https://s3.amazonaws.com/schedulesdirect/assets/p8603832_i_h3_aa.jpg',4,NULL),('SH014932740000','Radio 3\'s arts and ideas programme.',NULL,'GBR','Free Thinking','https://s3.amazonaws.com/schedulesdirect/assets/p8918301_st_h3_aa.jpg',4,NULL),('SH024948520000','Forty years after Stax Records closed, the Memphis soul label\'s alumni come together to tell the story of the label with all of its triumphs and disasters.',NULL,'GBR','The Story of Stax','https://s3.amazonaws.com/schedulesdirect/assets/p13199203_st_h3_aa.jpg',4,NULL),('SH033413060000','Two aspiring warrior-heroes and a lively ghost girl refine the skills they need to take the place of an ageing monster-slayer by completing his odd, supernatural chores.',NULL,'GBR','The Strange Chores','https://s3.amazonaws.com/schedulesdirect/assets/p17503344_st_h3_aa.jpg',4,NULL),('SH022708620000','Series showcasing the very best internet videos with a hilarious, family-friendly hook.',NULL,'GBR','Now That\'s Funny','https://s3.amazonaws.com/schedulesdirect/assets/p12143432_b_h3_aa.jpg',4,NULL),('SH031777650000','In 1960s Melbourne, Peregrine Fisher follows in the footsteps of her missing aunt, solving crimes with the help of The Adventuresses\' Club.',NULL,'GBR','Ms Fisher\'s Modern Murder Mysteries','https://s3.amazonaws.com/schedulesdirect/assets/p16586790_i_h3_aa.jpg',4,NULL),('SH022917380000','Von Aschaffenburg bis Passau, von Kempten bis Hof - Bayern hat viele Facetten. Die Reihe zeigt diese Vielfalt an bezaubernden Reisezielen, fast vergessenem Handwerk und bis heute erhaltenen Traditionen.',NULL,'DEU','Wir in Bayern','https://s3.amazonaws.com/schedulesdirect/assets/p11027370_i_h3_aa.jpg',4,NULL),('SH030545220000','Regular robo-kid Aki Light discovers secret programming that transforms him into Mega Man; fully charged adventures await as Aki balances his robot life with his superhero exploits.',NULL,'GBR','Mega Man: Fully Charged','https://s3.amazonaws.com/schedulesdirect/assets/p15776792_i_h3_aa.jpg',4,NULL),('SH030024180000','Shouyou Hinatas beobachtet zufällig ein Spiel der Karasuno Oberschule bei den nationalen Meisterschaften im Volleyball. Sofort ist er fasziniert von dem Sport und will selbst ein erfolgreicher Spieler werden. Er gründet eine Mannschaft.',NULL,'DEU','Haikyu!!','https://s3.amazonaws.com/schedulesdirect/assets/p10986000_b_h3_ac.jpg',4,NULL),('SH019694710000','Deutschlands erste regelmäßige Nachrichtensendung für Kinder präsentiert Themen mit aktuellem Bezug und Hintergrundinformationen perfekt für Kinder und Jugendliche aufbereitet und garantiert verständlich.',NULL,'DEU','logo! Die Welt und ich','https://s3.amazonaws.com/schedulesdirect/assets/p10959077_b_h3_aa.jpg',4,NULL),('SH014788370000','Die neuesten Produkte aus der Welt der Diamanten erfüllen den Raum mit einem luxuriös-edlen Flair.',NULL,'DEU','Welt der Diamanten','https://s3.amazonaws.com/schedulesdirect/assets/p8858238_st_h3_aa.jpg',4,NULL),('SH016114010000','Neil Oliver heads for Scandinavia to reveal the truth behind the legend of the Vikings.',NULL,'GBR','Vikings','https://json.schedulesdirect.org/20141201/image/assets/p9448807_i_h3_aa.jpg',4,NULL),('SH030518540000','Robert Peston presents a fresh, intelligent and lively perspective on the big matters of the day. Featuring major interviews with Westminster heavy hitters, topical guests and all the latest news and updates.',NULL,'GBR','Peston','https://s3.amazonaws.com/schedulesdirect/assets/p15941582_b_h3_aa.jpg',4,NULL),('SH023708800000','Connor, Amaya und Greg sind ganz normale Kinder. Doch als sie eines Tages ihre besonderen Pyjamas bekommen und Tieramulette aktivieren, werden sie zu drei Superhelden und erleben spannende Abenteuer, bei denen sie eine Menge lernen.',NULL,'DEU','PJ Masks - Pyjamahelden','https://s3.amazonaws.com/schedulesdirect/assets/p12115698_i_h3_aa.jpg',4,NULL),('SH025408040000','Tilda Apfelkern ist eine schneeweiße Kirchenmaus. Sie erlebt mit ihren Freunden Molly, dem Igel Rupert, Schnecki, dem Rotkehlchen Robin, Edna Eichhorn und deren Söhnen Billy und Benny in ihrem kleinen Heimatdorf tolle Abenteuer.',NULL,'DEU','Tilda Apfelkern','https://s3.amazonaws.com/schedulesdirect/assets/p13432813_st_h3_aa.jpg',4,NULL),('SH019672500000','Das werktägliche Kulturmagazin mischt sich in kulturelle und gesellschaftspolitische Fragen ein. `Kulturzeit\' bietet ergänzende Hintergrundinformationen, Porträts und Gespräche zu aktuellen und brisanten Fragen.',NULL,'DEU','Kulturzeit','https://s3.amazonaws.com/schedulesdirect/assets/p10950682_i_h3_aa.jpg',4,NULL),('SH019479410000','Weil er mit seinem Leben alles andere als zufrieden ist, möchte Ryan selbiges vorzeitig beenden. Der schüchterne Ryan schließt eine Freundschaft mit dem `menschlichen\' Nachbarshund Wilfred.',NULL,'DEU','Wilfred','https://json.schedulesdirect.org/20141201/image/assets/p8668180_i_h3_aa.jpg',4,NULL),('SH031598310000','A round up of today\'s Irish racing action.',NULL,'GBR','Irish Racing Replay','https://s3.amazonaws.com/schedulesdirect/assets/p16568157_b_h3_aa.jpg',4,NULL),('SH015403000000','Alle Verantwortlichen und Tierpfleger im Stuttgarter Zoo wollen ihren Tieren das Leben so angenehm wie möglich machen. `Eisbär, Affe & Co.\' erzählt die Zoogeschichten aus Stuttgart.',NULL,'DEU','Eisbär, Affe & Co.','https://s3.amazonaws.com/schedulesdirect/assets/p9126187_b_h3_ab.jpg',4,NULL),('SH012601130000','Following the enforcement teams at Heathrow Terminal 3, Calais, Dover.',NULL,'GBR','UK Border Force','https://s3.amazonaws.com/schedulesdirect/assets/p8100604_i_h3_aa.jpg',4,NULL),('SH012810840000','International boxing show with the latest big fight action and news from around the boxing world.',NULL,'GBR','KOTV Boxing Weekly','https://s3.amazonaws.com/schedulesdirect/assets/p8133551_b_h3_aa.jpg',4,NULL),('SH022513700000','Sie sind die Experten ihrer Fachbereiche und kommen zum Einsatz, wenn es für andere zu gefährlich wird: Mitarbeiter verschiedener Rettungskräfte werden im Einsatz begleitet, zum Beispiel die Wasserschutzpolizei oder Feuerwehrleute.',NULL,'DEU','Auf Streife - Die Spezialisten','https://s3.amazonaws.com/schedulesdirect/assets/p12055424_st_h3_aa.jpg',4,NULL),('SH019641710000','Die Sendung beschäftigt sich mit den Themen der Promis und der Reichen und Schönen. Annemarie Warnkross nimmt die verschiedensten Ereignisse genauer unter die Lupe und scheut auch nicht davor, den Promis persönliche Fragen zu stellen.',NULL,'DEU','red','https://s3.amazonaws.com/schedulesdirect/assets/p10938653_st_h3_aa.jpg',4,NULL),('SH012944030000','Jeremy Wade is not a fisherman; he\'s an \"extreme angler\" in search of the biggest and most dangerous freshwater fish, the kind with a taste for human flesh. This action-adventure series also features Wade illustrating how these river monsters are constructed to kill.',NULL,'GBR','River Monsters','https://s3.amazonaws.com/schedulesdirect/assets/p197719_l_h3_aa.jpg',4,NULL),('SH019560090000','Donald Eppes ist ein Special Agent beim FBI, der seinen Bruder, den Mathematikprofessor Charlie, bittet, ihm bei der Aufklärung seiner komplizierteren Fälle zu helfen. Don hat für seine Karriere einen Großteil seines Privatlebens opfern müssen, das sich inzwischen fast völlig um seinen Beruf dreht. Nur seine Familie ist ihm wichtiger als seine Arbeit beim FBI, vor allem Charlie, obwohl er dessen Art und Weise, wie er die Welt sieht, wohl nie verstehen wird.',NULL,'DEU','Numb3rs - Die Logik des Verbrechens','https://s3.amazonaws.com/schedulesdirect/assets/p185069_i_h3_aa.jpg',4,NULL),('SH032960910000','Dieses abenteuerliche Mädchen strotzt nur so von großen Träumen trotz ihrer kleinen Größe. Dabei beweist sie immer wieder, dass Größe nicht alles ist, weshalb Polly Pocket die verschiedensten Abenteuer in dieser Sendung erlebt.',NULL,'DEU','Polly Pocket','https://s3.amazonaws.com/schedulesdirect/assets/p15645697_b_h3_ac.jpg',4,NULL),('SH014466550000','Actor Dennis Farina hosts this revamped version of the vintage docudrama series that re-creates real-life cases that revolve around unsolved crimes, missing persons and unexplained paranormal phenomena.',NULL,'GBR','Unsolved Mysteries','https://s3.amazonaws.com/schedulesdirect/assets/p191315_i_h3_aa.jpg',4,NULL),('SH017191740000','If someone told the women featured on \"Wives With Knives\' to cut the men out of their lives, the women took the advice literally. The series recounts real stories of women who stabbed their significant others, some of them fatally. The motivations for committing the crimes varied -- many of the attackers reached their breaking points after years of sexual, emotional and physical abuse, while jealousy and greed were primary factors for others. The series\" host is criminologist, behavioural analyst and attorney Dr Casey Jordan, who talks with the femme fatales on the series to add depth to the stories.',NULL,'GBR','Wives With Knives','https://s3.amazonaws.com/schedulesdirect/assets/p9512349_l_h3_aa.jpg',4,NULL),('SH019578090000','Reportagereihe mit Dokumentationen über Menschen, die sich der Natur besonders verbunden fühlen.',NULL,'DEU','NaturNah','https://s3.amazonaws.com/schedulesdirect/assets/p10910775_b_h3_aa.jpg',4,NULL),('SH019585290000','Die Sendung stellt jeweils eine Region und ihre landschaftlichen und kulturellen Schönheiten vor.',NULL,'DEU','Wunderschön!','https://s3.amazonaws.com/schedulesdirect/assets/p10914161_b_h3_aa.jpg',4,NULL),('SH033740450000','A brand new show that pits Lydia Hislop against champion jockey Ruby Walsh as they mull over the latest big jumps races on both sides of the Irish Sea.',NULL,'GBR','Road to Cheltenham','https://s3.amazonaws.com/schedulesdirect/assets/p17653462_st_h3_aa.jpg',4,NULL),('SH031896000000','In Bicester, Oxfordshire, Kevin McCloud follows 10 households as they embark on an epic five-year mission to construct their own homes in Britain\'s biggest self-build project.',NULL,'GBR','Grand Designs: The Street','https://s3.amazonaws.com/schedulesdirect/assets/p16724496_st_h3_aa.jpg',4,NULL),('SH013099920000','Action drama series set within the elite force of the British Special Air Service, or SAS.',NULL,'GBR','Ultimate Force','https://s3.amazonaws.com/schedulesdirect/assets/p520025_st_h3_aa.jpg',4,NULL),('SH018630230000','Hinter die Kulissen gucken, Einblicke in den Zoo bekommen, die dem normalen Besucher verborgen bleiben - `Giraffe, Erdmännchen & Co.\' erzählt täglich Geschichten aus dem Zoo Frankfurt und dem Opel-Zoo. Der Zooalltag steht dabei im Mittelpunkt.',NULL,'DEU','Giraffe, Erdmännchen & Co.','https://s3.amazonaws.com/schedulesdirect/assets/p10491459_i_h3_aa.jpg',4,NULL),('SH024805100000','Property enthusiast and surveyor Phil Spencer travels around Britain exploring some of the country\'s finest stately homes. Each episode focuses on a particular building, discovering the hidden history behind the commission of the structure and what materials were used in its construction. The host discusses the technical challenges the labour force were likely to have faced when building at such a monumental scale. Up first, Phil uncovers the extravagant work of Elizabethan architects when visiting Burghley House in Lincolnshire.',NULL,'GBR','Phil Spencer\'s Stately Homes','https://s3.amazonaws.com/schedulesdirect/assets/p13124648_b_h3_aa.jpg',4,NULL),('SH025207040000','Even for a giant seven foot bear, it\'s not easy getting rid of pesky Lemmings but it\'s all fun seeing them constantly try to outsmart each other with cheeky plans!',NULL,'GBR','Grizzy and The Lemmings','https://s3.amazonaws.com/schedulesdirect/assets/p13330553_st_h3_aa.jpg',4,NULL),('SH022947910000','Seven unusual characters laugh, fool and trip their way through life.',NULL,'GBR','Oddbods','https://s3.amazonaws.com/schedulesdirect/assets/p11011483_i_h3_ad.jpg',4,NULL),('SH025092500000','Five sophisticated women navigate the social scene in one of the Lone Star State\'s most dynamic cities.',NULL,'GBR','The Real Housewives of Dallas','https://s3.amazonaws.com/schedulesdirect/assets/p12602931_i_h3_aa.jpg',4,NULL),('SH022073230000','A number of the UK\'s most talented tattoo designers help clients transform their tattoo mistakes into works of art. It is estimated that one in six British people who opt to go under the needle later regret their decision. Outrageous artwork, inappropriate quotes or the name of an ex-partner can be chosen in haste but the results are permanent. The talented inkers meet desperate customers at a pop-up studio for their consultations. After the meeting, the client chooses whose design ideas they like best and the artist gets to work. When the session is over, the new tattoos are revealed.',NULL,'GBR','Tattoo Fixers','https://s3.amazonaws.com/schedulesdirect/assets/p11868492_i_h3_aa.jpg',4,NULL),('SH017603140000','A mysterious man enforces law and order in 1890\'s Wyoming.',NULL,'GBR','The Virginian','https://s3.amazonaws.com/schedulesdirect/assets/p512143_b_h3_ae.jpg',4,NULL),('SH018433120000','Die Sendung vertieft die Informationen über tagesaktuelle Ereignisse und zeigt Zusammenhänge sowie Hintergründe. Häufig gibt es mehrere Beiträge zu einem Thema, in denen unterschiedliche Aspekte beleuchtet werden. Oft ergänzt ein Interview mit einem Experten oder ein Schaltgespräch mit einem Reporter die Filmberichte. In der Regel gibt es zum wichtigsten Thema des Tages einen Kommentar. Das Spektrum der Themen umfasst neben den aktuellen Hintergrundberichten auch längere Reportagen, die nicht an den Tag gebunden sind. Kultur und Kino runden die Sendung ab. Beiträge aus der Politik überwiegen aber in der Berichterstattung, gefolgt vom Themenkomplex Wirtschaft.',NULL,'DEU','Tagesthemen','https://s3.amazonaws.com/schedulesdirect/assets/p10414050_b_h3_aa.jpg',4,NULL),('SH012584290000','Members of the public are invited to try to make money out of their antiques by taking a risk at auction.',NULL,'GBR','Flog It!','https://s3.amazonaws.com/schedulesdirect/assets/p387374_i_h3_aa.jpg',4,NULL),('SH019562270000','Jonathan Smith kehrt als Engel auf die Erde zurück. Er erhält von Gott den Auftrag, den Menschen Liebe, Verständnis, Rücksichtnahme und Achtung beizubringen. Obwohl er überirdische Kräfte besitzt, kommt er meistens ohne sie aus.',NULL,'DEU','Ein Engel auf Erden','https://s3.amazonaws.com/schedulesdirect/assets/p400821_i_h3_ab.jpg',4,NULL),('SH019460040000','Zwei Familien in Ost-Berlin, die gegensätzlicher nicht sein könnten: die Kupfers, die als mächtiges Rad im DDR-System funktionieren und die Hausmanns, die aus dem eher kritischen Milieu stammen. Da verliebt sich Martin Kupfer in Julia Hausmann.',NULL,'DEU','Weissensee','https://json.schedulesdirect.org/20141201/image/assets/p10073837_i_h3_ab.jpg',4,NULL),('SH013133340000','Live coverage of a sporting event.',NULL,'GBR','Live: 5 Live Sport','https://s3.amazonaws.com/schedulesdirect/assets/p8238353_st_h3_aa.jpg',4,NULL),('SH031316040000','Movie stars talk about their life and career.',NULL,'GBR','Talking Pictures with...','https://s3.amazonaws.com/schedulesdirect/assets/p16394480_b_h3_aa.jpg',4,NULL),('SH015402430000','Reisemagazin mit vielfältigen Reportagen von ARD-Auslandskorrespondenten.',NULL,'DEU','Weltreisen','https://s3.amazonaws.com/schedulesdirect/assets/p991555_i_h3_aa.jpg',4,NULL),('SH019667870000','Planet Schule schlägt ein neues Kapitel auf. Das Projekt bietet modernes, mediengestütztes Lernen und Unterrichten - für Lehrer, für Schüler und Bildungsinteressierte. Dafür erweitern und aktualisieren wir kontinuierlich unser Angebot.',NULL,'DEU','Planet Schule','https://s3.amazonaws.com/schedulesdirect/assets/p10948934_b_h3_ab.jpg',4,NULL),('SH031781460000','The Cranmede pupils look back on four years of friendship and fun, after Mr Malone sets an online questionnaire asking them to share their views on the school experience.',NULL,'GBR','So Awkward Files','https://s3.amazonaws.com/schedulesdirect/assets/p16671038_st_h3_ab.jpg',4,NULL),('SH023434500000','Der belgische Detektiv Hercule Poirot tut alles, was in seiner Macht steht, um komplexe Verbrechen auf der Grundlage weniger Hinweise aufzudecken. Er wird bei seiner täglichen Arbeit von seinen treuen Assistenten unterstützt.',NULL,'DEU','Agatha Christies Poirot','https://s3.amazonaws.com/schedulesdirect/assets/p466168_i_h3_al.jpg',4,NULL),('SH031060170000','A collection of films about Britain\'s cultural history in the 20th century.',NULL,'GBR','A Very British History','https://s3.amazonaws.com/schedulesdirect/assets/p16290155_b_h3_aa.jpg',4,NULL),('SH012734840000','The latest news, sport, business and weather from the BBC\'s Breakfast team.',NULL,'GBR','Breakfast','https://s3.amazonaws.com/schedulesdirect/assets/p214496_i_h3_aa.jpg',4,NULL),('SH023120050000','Author Simon Sebag Montefiore presents his extensive knowledge of Spain in a bountiful three-part series that covers 2,000 years of the country\'s history. To cover the early portion, Simon travels to Cadiz with Spain\'s first invaders and visits a sacred island where the Carthaginian warrior Hannibal received the blessing of the Gods. Simon investigates the Spanish Inquisition and discovers an unsettling story about one of his own ancestors. Then, remembering Spain\'s Golden Age and the influence of King Philip II, the presenter visits the king\'s mighty palace outside Madrid. Philip\'s successors, however - with their reliance on favourites and mistresses - cannot live up to his reign.',NULL,'GBR','Blood and Gold: The Making of Spain with Simon Sebag Montefiore','https://s3.amazonaws.com/schedulesdirect/assets/p12353165_b_h3_aa.jpg',4,NULL),('SH019577750000','Der Meeresschwamm SpongeBob Schwammkopf lebt in einer umgebauten Ananas in der Unterwasserstadt Bikini Bottom. Er ist sehr freundlich, aber auch etwas naiv. Seine Freizeit verbringt er meist mit seinem besten Freund Patrick, einem Seestern.',NULL,'DEU','SpongeBob Schwammkopf','https://s3.amazonaws.com/schedulesdirect/assets/p184854_i_h3_aa.jpg',4,NULL),('SH015402260000','`nano\' ist das wochentäglich ausgestrahlte Wissenschaftsmagazin. Die Redaktion achtet auf eine hohe Aktualität und Wissenschaftlichkeit der Beiträge ebenso wie auf den praktischen Nutzen der vorgestellten Erkenntnisse.',NULL,'DEU','nano','https://s3.amazonaws.com/schedulesdirect/assets/p9125869_i_h3_aa.jpg',4,NULL),('SH019700570000','Thomas Lang präsentiert Streitigkeiten zwischen Nachbarn, die sich einfach richtig auf die Nerven gehen. Dabei kommt es auch vor, dass der Streit ausartet und die Parteien zu den skurrilsten Methoden der Rache zurückgreifen.',NULL,'DEU','Höllische Nachbarn','https://s3.amazonaws.com/schedulesdirect/assets/p10961320_st_h3_aa.jpg',4,NULL),('SH019124220000','Im Mittelpunkt des Wissenformats stehen faszinierende Erkenntnisse über Körper und Geist. Dr. med. Susanne Holst nimmt sich zentraler Fragen an, wie: Was ist der Mensch aus der Sicht der Wissenschaft? Wie hängen Körper, Psyche und Verhalten zusammen?',NULL,'DEU','Wissen vor acht - Mensch','https://s3.amazonaws.com/schedulesdirect/assets/p10733353_b_h3_aa.jpg',4,NULL),('SH027662080000','Up-cyclers Sarah Moore and Jay Blades rummage through the homes of some of the UK\'s celebrities to uncover unloved and unused gems for charity.',NULL,'GBR','Celebrity Money for Nothing','https://s3.amazonaws.com/schedulesdirect/assets/p14488400_i_h3_aa.jpg',4,NULL),('SH016076720000','Highlights of proceedings in Parliament.',NULL,'GBR','Wednesday in Parliament','https://s3.amazonaws.com/schedulesdirect/assets/p9433315_b_h3_aa.jpg',4,NULL),('SH012708730000','Mensa-fied best friends and roommates Leonard and Sheldon, physicists who work at the California Institute of Technology, may be able to tell everybody more than they want to know about quantum physics, but getting through most basic social situations, especially ones involving women, totally baffles them. How lucky, then, that babe-alicious waitress/aspiring actress Penny moves in next door. Frequently seen hanging out with Leonard and Sheldon are friends and fellow Caltech scientists Wolowitz and Koothrappali. Will worlds collide? Does Einstein theorize in the woods?',NULL,'GBR','The Big Bang Theory','https://s3.amazonaws.com/schedulesdirect/assets/p185554_l_h3_aa.jpg',4,NULL),('SH012603130000','This courtroom programme stars former family court judge Judy Sheindlin. Each episode finds Judge Judy presiding over real small-claims cases inside a televised courtroom. Her no-nonsense, wisecracking approach has been unsuccessfully copied by other TV court judges.',NULL,'GBR','Judge Judy','https://s3.amazonaws.com/schedulesdirect/assets/p184382_b_h3_aa.jpg',4,NULL),('SH019561530000','Der Rechtsanwalt Ingo Lenßen untersucht mit seinem Team aus Detektiven fiktive Kriminalfälle. Dabei wird er meist mit dem Aufklären von mittelschweren Straftaten und Verbrechen beauftragt. Und manchmal gerät auch er selbst ins Visier der Verbrecher.',NULL,'DEU','Lenßen & Partner','https://s3.amazonaws.com/schedulesdirect/assets/p9019903_st_h3_aa.jpg',4,NULL),('SH019560640000','Die Serie begleitet Polizisten bei ihren alltäglichen Einsätzen, die auf realen Fällen basieren. Dabei sind sie rund um die Uhr im Einsatz. Gezeigt werden Fälle von gewalttätigen Auseinandersetzungen, häuslicher Gewalt sowie Drogenmissbrauch. Die Bandbreite an Polizeiarbeit ist enorm. Sie beschränkt sich nicht nur auf die Bekämpfung von Verbrechen. Die Beamten auf Streife helfen auch verwirrten Menschen wie etwa Rentnern, die ihre Adresse vergessen haben oder Jugendlichen, die in ihrem pubertären Leichtsinn Vorbilder brauchen.',NULL,'DEU','Auf Streife','https://s3.amazonaws.com/schedulesdirect/assets/p10904248_b_h3_ab.jpg',4,NULL),('SH019836710000','Todd Hoffmann und seine sechs Mann starke Crew wollen in der Wildnis Alaskas, nahe der kanadischen Grenze, nach Gold schürfen. Sie hoffen auf Reichtümer. Der Alltag der Goldsucher in der verlassenen Gegend ist jedoch alles andere als leicht.',NULL,'DEU','Die Schatzsucher - Goldrausch in Alaska','https://s3.amazonaws.com/schedulesdirect/assets/p8825082_i_h3_ab.jpg',4,NULL),('SH013139780000','The adventures of the Little Princess, who lives in a rather strange castle and is always full of energy, charm and questions.',NULL,'GBR','Little Princess','https://s3.amazonaws.com/schedulesdirect/assets/p8240782_i_h3_aa.jpg',4,NULL),('SH019759590000','Einzigartige Charaktere aus ganz Großbritannien erkunden die exzentrischen, seltsamen und bizarren Facetten des Alltags. Mit dabei sind Teenager-Delinquent Vicky, die Pflegekraft Lou, der Patient Andy sowie der homosexuelle Daffyd.',NULL,'DEU','Little Britain','https://s3.amazonaws.com/schedulesdirect/assets/p185674_b_h3_aa.jpg',4,NULL),('SH012698770000','Set in Chicago, this medical drama deals with the personal and professional crises of the doctors in the emergency room at County General Hospital. From the exciting to the mundane, a day in the frantic hospital serves up many interesting dilemmas as well as heartrending choices for everyone on staff.',NULL,'GBR','ER','https://s3.amazonaws.com/schedulesdirect/assets/p183942_i_h3_ab.jpg',4,NULL),('SH012597670000','Welcome to the world of Dr Chris Brown, one of Sydney\'s busiest veterinarians.',NULL,'GBR','Bondi Vet','https://s3.amazonaws.com/schedulesdirect/assets/p7830930_i_h3_aa.jpg',4,NULL),('SH019569840000','Phineas Flynn und sein Stiefbruder Ferb Fletcher überlegen jeden Tag ihrer Sommerferien aufs Neue, was sie gegen die Langeweile tun können. Meist stellen sie dann verrückte Sachen an, die nicht selten zum totalen Chaos führen. Ein gefundenes Fressen für Candace, die Schwester der beiden, die keine Gelegenheit auslässt, ihre Brüder bei Mama anzuschwärzen - was ihr allerdings meist misslingt.',NULL,'DEU','Phineas und Ferb','https://s3.amazonaws.com/schedulesdirect/assets/p186178_b_h3_aa.jpg',4,NULL),('SH014055970000','Dramatisation of Lew Wallace\'s novel, starring Jamie Glover, Samuel West and Michael Gambon.',NULL,'GBR','Ben Hur','https://s3.amazonaws.com/schedulesdirect/assets/p210748_st_h3_aa.jpg',4,NULL),('SH013363570000','Take away all the takeaways with the help of Jamie Oliver. The chef shows viewers his unique cooking methods in which he prepares a complete meal in just 30 minutes, or the time one normally would spend on a single dish ... or buying unhealthy fast food. Oliver says being organised, working fast and using shortcuts are the key to getting his meals, which combine main course recipes with side dishes, puddings and drinks, on the table.',NULL,'GBR','Jamie\'s 30 Minute Meals','https://s3.amazonaws.com/schedulesdirect/assets/p8333504_i_h3_ab.jpg',4,NULL),('SH012594390000','This spinoff of the BBC Radio show \"Any Questions?\" features a studio audience quizzing top politicians on the events of the day. The panel surrounding presenter Fiona Bruce is composed of at least one member of the three major parties (Labour, Conservatives, and Liberal Democrats) plus significant figures in industry, the media and entertainment.',NULL,'GBR','Question Time','https://s3.amazonaws.com/schedulesdirect/assets/p279016_i_h3_aa.jpg',4,NULL),('SH022890250000','Mitch Buchannon ist ein erfahrener Rettungsschwimmer, der mit seinem Team den Strand von Malibu überwacht. An dem stark besuchten Badestrand müssen die Rettungsschwimmer spannende Einsätze und romantische Abenteuer bestehen.',NULL,'DEU','Baywatch - Die Rettungsschwimmer von Malibu','https://s3.amazonaws.com/schedulesdirect/assets/p183964_b_h3_ad.jpg',4,NULL),('SH031695470000','A look at never-before-seen colour combat footage from Marines, airmen, and sailors during the Pacific War.',NULL,'GBR','The Pacific War in Colour','https://s3.amazonaws.com/schedulesdirect/assets/p15499068_i_h3_aa.jpg',4,NULL),('SH018485680000','Geschichten aus dem Leipziger Zoo - Alltag, Sorgen, und Erfolge der Zoobewohner und ihrer Pfleger. In erster Linie geht es natürlich um die Tiere, aber auch um die Menschen, die sie besuchen kommen und um jene, die den Zoobetrieb in Gang halten.',NULL,'DEU','Elefant, Tiger & Co','https://s3.amazonaws.com/schedulesdirect/assets/p10432305_b_h3_aa.jpg',4,NULL),('SH019932500000','Der Kriminelle Neal Caffrey versteht es meisterhaft, seine Verfolger immer wieder auszutricksen, bis er eines Tages von dem FBI-Agenten Peter Burke festgenommen wird. Doch statt im Gefängnis zu landen, wird er zum Partner des Agenten.',NULL,'DEU','White Collar','https://s3.amazonaws.com/schedulesdirect/assets/p7806806_l_h3_aa.jpg',4,NULL),('SH021687960000','Property professionals Phil Spencer and Kirstie Allsopp help families who are fed up with their homes. Whether the homeowners have outgrown the space or they want a change of decor, their property no longer meets their requirements. Offering solutions on each home is Kirstie, who believes the owners can learn to \"love it\', whereas Phil thinks they should `list it\' and make the most of a rising property market. After meeting each couple, the presenters find out all they can about the family involved, how they use their current home and what they would want from a new one. With a budget equal to the cost of moving, Kirstie and a team of property developers transform each house to make it loveable once again. Meanwhile, Phil seeks out properties in the owners\" most desired locations.',NULL,'GBR','Kirstie and Phil\'s Love It or List It','https://json.schedulesdirect.org/20141201/image/assets/p11702082_i_h3_aa.jpg',4,NULL),('SH019775860000','Mit der Unterstützung seines zehnköpfigen Teams löst der Privatdetektiv Carsten Stahl zahlreiche Kriminalfälle. Seine Kollegen bilden Teams, um die Verbrecher möglichst schnell zu überführen.',NULL,'DEU','Privatdetektive im Einsatz','https://s3.amazonaws.com/schedulesdirect/assets/p10991610_i_h3_aa.jpg',4,NULL),('SH023865520000','Stay up to date on the day\'s top stories, with the latest breaking news as it happens.',NULL,'GBR','BBC Newsroom Live','https://s3.amazonaws.com/schedulesdirect/assets/p335756_b_h3_aa.jpg',4,NULL),('SH014726400000','Der Alltag der Ärzte und Schwestern in der Sachsenklinik wird hauptsächlich von den Schicksalen und Leiden ihrer Patienten bestimmt. Neben der Behandlung der Menschen entladen sich Konflikte des Klinikalltags auch mal im Privatleben des Personals.',NULL,'DEU','In aller Freundschaft','https://s3.amazonaws.com/schedulesdirect/assets/p8832399_b_h3_ac.jpg',4,NULL),('SH031649620000','Topical debate on the big issues affecting Scotland and beyond. Members of the public put their questions to a panel of politicians and other public figures about the biggest stories and the things they care about the most.',NULL,'GBR','Debate Night','https://s3.amazonaws.com/schedulesdirect/assets/p16597161_b_h3_ab.jpg',4,NULL),('SH023609770000','In dieser Sendereihe werden Informationen zum Fach Informatik/Technologie gegeben.',NULL,'DEU','TELEKOLLEG Technologie','https://s3.amazonaws.com/schedulesdirect/assets/p12574110_st_h3_aa.jpg',4,NULL),('SH034149340000','Helicopter rescue missions of the last half century.',NULL,'GBR','Helicopter Missions','https://s3.amazonaws.com/schedulesdirect/assets/p8811829_b_h3_ab.jpg',4,NULL),('SH016396210000','Live-Magazin mit landespolitischem Charakter. Ein aktueller Blick durchs Land, das Regionale steht hier im Mittelpunkt. Menschen, Land und Leute kommen zu Wort, werden unter die Lupe genommen oder porträtiert.',NULL,'DEU','drehscheibe','https://s3.amazonaws.com/schedulesdirect/assets/p9562824_b_h3_ab.jpg',4,NULL),('SH012848310000','Ash Ketchum continues his quest to become the greatest Pokémon trainer ever.',NULL,'GBR','Pokémon: DP Battle Dimension','https://s3.amazonaws.com/schedulesdirect/assets/p188595_l_h3_aa.jpg',4,NULL),('SH026984750000','Agents of the Mission Employable Agency go behind-the-scenes across a range professions.',NULL,'GBR','Mission Employable','https://s3.amazonaws.com/schedulesdirect/assets/p14167763_st_h3_aa.jpg',4,NULL),('SH014755510000','The Cannon family in their Arizona ranch during the 1870s.',NULL,'GBR','The High Chaparral','https://s3.amazonaws.com/schedulesdirect/assets/p400624_b_h3_ab.jpg',4,NULL),('SH012697430000','Armed with little more than her pocketbook and her common sense, the Lancashire housewife-turned-gumshoe has proved that she can easily match wits with the best of them - even if she has to take the bus to get to the scene of the crime.',NULL,'GBR','Hetty Wainthropp Investigates','https://s3.amazonaws.com/schedulesdirect/assets/p400446_b_h3_ac.jpg',4,NULL),('SH029354590000','Die Ärzte, Pfleger, Physiotherapeuten, Reinigungskräfte und das Küchenteam des Waldkrankenhauses in Eisenberg werden begleitet. Die Sendung wirft einen Blick in eine ganz eigene Klinikwelt und stößt auf Patienten und ihre Geschichten.',NULL,'DEU','Die Waldklinik - Echte Fälle, echte Gefühle, echte Menschen','https://s3.amazonaws.com/schedulesdirect/assets/p15349127_st_h3_aa.jpg',4,NULL),('SH029091910000','Die Dokumentationsreihe widmet sich der Geschichte und der Entwicklung weiblicher Streitkräfte. Darunter fallen unter anderem die Agooji aus Westafrika oder die `wahren Amazonen\'.',NULL,'DEU','Warrior Women','https://s3.amazonaws.com/schedulesdirect/assets/p15208986_st_h3_aa.jpg',4,NULL),('SH019576310000','Fünf angehende Ärzte und ihre Mentoren arbeiten, streiten und lieben sich im Seattle Grace Hospital. Als Assistenzärzte sind Meredith Grey, Cristina Yang, George O\'Malley, Izzie Stevens und Alex Karev zwar auf viel Drama im OP-Saal vorbereitet, doch auch außerhalb der Arbeit beginnt für die jungen Praktikanten eine wilde Achterbahnfahrt. Freundschaftsdramen und die große Liebe sind vorprogrammiert, ebenso wie schmerzvolle Verluste und krankhafter Neid. Zwar sollten Emotionen die Arbeit nicht beeinflussen, doch nur allzu oft bringt ein Patient Turbulenzen in ihr Krankenhausleben.',NULL,'DEU','Grey\'s Anatomy - Die jungen Ärzte','https://s3.amazonaws.com/schedulesdirect/assets/p185019_b_h3_as.jpg',4,NULL),('SH017805980000','The adventures of a baby monkey and his mum as they face the challenges of daily life together.',NULL,'GBR','Tee and Mo','https://s3.amazonaws.com/schedulesdirect/assets/p10141628_b_h3_aa.jpg',4,NULL),('SH022817340000','Nachrichtenmagazin mit Hintergrundbeiträgen zu den Themen der Woche sowie Kommentaren, Trends und Streitgesprächen.',NULL,'DEU','Exakt','https://s3.amazonaws.com/schedulesdirect/assets/p12196623_b_h3_aa.jpg',4,NULL),('SH019243440000','Red and his fearless avian friends must protect their eggs from the Bad Piggies.',NULL,'GBR','Angry Birds Toons','https://s3.amazonaws.com/schedulesdirect/assets/p9835465_i_h3_aa.jpg',4,NULL),('SH029259590000','Vlogger and baking ace Nikki Lilly meets celebrities and interesting people for a chat and some tasty baked goods.',NULL,'GBR','Nikki Lilly Meets','https://s3.amazonaws.com/schedulesdirect/assets/p15296190_st_h3_aa.jpg',4,NULL),('SH021143370000','Jährlich sucht Heidi Klum mit von ihr ausgewählten Gastjuroren nach dem Topmodel Deutschlands. Zwölf junge Frauen kämpfen um den Titel und einen Modelvertrag. Dabei müssen sie mehrere Tests bestehen und Aufträge ergattern.',NULL,'DEU','Germany\'s next Topmodel','https://s3.amazonaws.com/schedulesdirect/assets/p11448962_st_h3_aa.jpg',4,NULL),('SH023234070000','Die Dokumentation erkundet wenig bekannte Ecken in Vietnam, Laos und Kambodscha entlang des einstigen mehr als 16.000 Kilometer langen Ho-Chi-Minh-Pfads. In diesem Netzwerk aus breiten Straßen, Pisten, waldreichen Gebirgen und Dschungelpfaden begleitet die Reportage Biologen und Bauern, spürt Sitten und Gebräuchen einiger Bergvölker nach und zeigt, wie die Menschen den Wandel in ihren Ländern erleben und vorantreiben.',NULL,'DEU','Unterwegs auf dem Ho-Chi-Minh-Pfad','https://s3.amazonaws.com/schedulesdirect/assets/p12401270_b_h3_ac.jpg',4,NULL),('SH019714520000','Aktuelles, was die Region bewegt, News vom Tag aus Berlin und Brandenburg, Tipps für den Abend in Mark und Metropole sowie Streiflichter aus den Nachbarländern.',NULL,'DEU','rbb um 6 - Das Ländermagazin','https://s3.amazonaws.com/schedulesdirect/assets/p10967016_i_h3_aa.jpg',4,NULL),('SH012673260000','A team of explorers made up of soldiers and scientists travels through a Stargate, an ancient portal to other planets. They use the Stargate to explore new worlds, forge ties with friendly civilizations and protect Earth from hostile forces. The TV series is based on the theatrical film \"Stargate\".',NULL,'GBR','Stargate SG-1','https://s3.amazonaws.com/schedulesdirect/assets/p184337_l_h3_aa.jpg',4,NULL),('SH030382680000','A baby elephant with zebra stripes. A giraffe with peacock feathers and a pink flamingo coloured lion. These are just some of the unique animals found in Zafari, a valley at the foot of Mount Kilimanjaro.',NULL,'GBR','Zafari','https://s3.amazonaws.com/schedulesdirect/assets/p15118255_b_h3_aa.jpg',4,NULL),('SH024296700000','Eddie Huang und seine Familie stammen ursprünglich aus Taiwan und leben den Großteil ihres Lebens in Chinatown in Washington D.C. 1995 zieht Eddie jedoch zusammen mit seinem Vater Louis, seiner Mutter Jessica und seinen zwei Geschwistern Emery und Evan nach Orlando, Florida. Dort will seine Familie ein Restaurant mit Cowboy-Flair eröffnen. Der darauffolgende Kulturschock ist unvermeidbar. Nicht zuletzt ist der chinesische Bevölkerungsanteil Floridas zu dieser Zeit ein äußerst überschaubarer und der Rest der Bevölkerung propagiert in erster Linie westliche Werte - vom amerikanischen Traum ganz zu schweigen. Auch in der Schule und in der Nachbarschaft machen die kulturellen Unterschiede den Anfang nicht gerade leicht.',NULL,'DEU','Fresh Off the Boat','https://s3.amazonaws.com/schedulesdirect/assets/p10777606_l_h3_aa.jpg',4,NULL),('SH031186390000','The Jewellery Channel bring you Sankom, founded in 2003 in Switzerland and specializing in the development of health and weight management programs. Sankom hold a number of patents that are successfully marketed worldwide.',NULL,'GBR','Sankom','https://s3.amazonaws.com/schedulesdirect/assets/p16342109_st_h3_aa.jpg',4,NULL),('SH019842690000','Fox Mulder arbeitet als Special Agent beim FBI, hat dort aber den Ruf als Verschwörungstheoretiker inne. Als kleiner Junge hat er miterlebt, wie seine Schwester von Außerirdischen entführt wurde. Seitdem glaubt er an deren Existenz und beschäftigt sich mit paranormalen Phänomenen. Er arbeitet in der Abteilung für X-Akten, Kriminalfälle, die nicht erklärbar sind. Eines Tages bekommt er Dana Scully als Partnerin gestellt. Sie ist das Gegenteil von Mulder, skeptisch und unterkühlt. Gemeinsam arbeiten die beiden an mysteriösen Fälle, von Killer-Insekten bis hin zu Mutanten. Zeitgleich verfolgen sie die Aufdeckung einer Regierungsverschwörung, die versucht, die Existenz außerirdischen Lebens zu verschleiern.',NULL,'DEU','Akte X - Die unheimlichen Fälle des FBI','https://s3.amazonaws.com/schedulesdirect/assets/p183870_b_h3_aa.jpg',4,NULL),('SH026040630000','The adventures of a group of animated planes and their friends, as they deliver parcels and solve problems using their unique talents.',NULL,'GBR','Super Wings','https://s3.amazonaws.com/schedulesdirect/assets/p11545356_l_h3_aa.jpg',4,NULL),('SH018558610000','Das Magazin zeigt von Montag bis Freitag aktuelle Nachrichten zur Mittagszeit. Die Moderatorin präsentiert Informationen aus aller Welt, mit einem Schwerpunkt auf Deutschland, und spricht außerdem über Servicethemen, Lifestyle sowie das Neueste aus der Welt der Stars und Sternchen. Abgerundet wird das Sendungsprogramm mit spannenden Reportagen, die mitunter eine solche Brisanz haben, dass sie politische und wirtschaftliche Akteure zum Handeln veranlassen, und Mini-Dokumentationen, die verblüffende Einblicke in den Alltag der Deutschen geben.',NULL,'DEU','Punkt 12 - Das RTL-Mittagsjournal','https://s3.amazonaws.com/schedulesdirect/assets/p10458783_st_h3_ab.jpg',4,NULL),('SH018683780000','Nach Scheidung, schwerem Autounfall und langem Aufenthalt in einer Reha-Klinik ist Nadja Paulsen zurück, zurück in Halle, zurück im Leben. Die sympathische und selbstbewusste Frau muss ganz von vorne anfangen, und das gestaltet sich schwierig.',NULL,'DEU','Ein Fall für Nadja','https://s3.amazonaws.com/schedulesdirect/assets/p10510730_b_h3_aa.jpg',4,NULL),('SH019579470000','Verbrauchermagazin, das sich auf Produkttests und die kritische Berichterstattung konzentriert. `Markt\' gibt praktische Tipps in allen Alltagsfragen, deckt dubiose Geschäftspraktiken auf und mischt sich ein, wenn Zuschauer Ärger mit Firmen haben.',NULL,'DEU','Markt','https://s3.amazonaws.com/schedulesdirect/assets/p10911289_b_h3_aa.jpg',4,NULL),('SH019855780000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Aachen.',NULL,'DEU','Lokalzeit aus Aachen','https://s3.amazonaws.com/schedulesdirect/assets/p11024416_b_h3_ab.jpg',4,NULL),('SH031349300000','Von `Herr der Ringe\' bis zu `Harry Potter\' - die Sendung blickt auf die imposantesten Filmkulissen.',NULL,'DEU','Wilde Drehorte','https://s3.amazonaws.com/schedulesdirect/assets/p14886652_i_h3_aa.jpg',4,NULL),('SH016139740000','If your idea of an exciting aquarium is the run-of-the-mill rectangular variety with a few exotic fish thrown in, you\'re not welcome in the wet and wonderful world of Wayde King and Brett Raymer. The brothers-in-law, best friends and business partners operate Acrylic Tank Manufacturing, the biggest aquarium-building manufacturer in the US. \"Tanked\' showcases the guys, their family members who also work at ATM and the shop\'s crew as they create over-the-top aquariums for a wide array of clients, both celebrities and regular folks. The tanks range from 50 to 50,000 gallons in size, are filled with some of the world\'s most unusual, colourful and quirky fish, and are limited only by one\"s imagination.',NULL,'GBR','Tanked','https://s3.amazonaws.com/schedulesdirect/assets/p8642392_l_h3_aa.jpg',4,NULL),('SH027172160000','Actor, comedian and director Richard Ayoade plays host to this newly re-imagined game show where fearless challengers take on a series of ingenious games and devilish challenges. In this reboot of the original 90s game show of the same name, teams of five contestants battle their way through the Aztec, Medieval, Future and Industrial zones before entering the final showdown in the iconic crystal dome. Along the way, the contestants will be challenged by Adam Buxton as Jarhead in the Futuristic Zone and by Jessica Hynes as The Knight in the Medieval Zone.',NULL,'GBR','The Crystal Maze','https://s3.amazonaws.com/schedulesdirect/assets/p14250858_b_h3_aa.jpg',4,NULL),('SH012592930000','International political leaders, entertainers, corporate decision-makers and even everyday folks get the spotlight in this hard-hitting news programme.',NULL,'GBR','HARDtalk','https://s3.amazonaws.com/schedulesdirect/assets/p242121_i_h3_ab.jpg',4,NULL),('SH029068690000','Dr. Heinz-Wilhelm Esser und sein Team führen Experimente rund um Gesundheit und Ernährung durch.',NULL,'DEU','Doc Esser - Das Gesundheits-Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p12600783_i_h3_aa.jpg',4,NULL),('SH025542980000','Der riesige Grizzlybär Grizzy wird von einer Horde nervtötender Lemminge geneckt.',NULL,'DEU','Grizzy und die Lemminge','https://s3.amazonaws.com/schedulesdirect/assets/p13330553_i_h3_aa.jpg',4,NULL),('SH029051540000','Tales of the world\'s worst puppy who woofs and wags his way into the lives of a blended family. Waffle is no ordinary pup and he has many a surprising twist in his tail.',NULL,'GBR','Waffle the Wonder Dog','https://s3.amazonaws.com/schedulesdirect/assets/p15187974_st_h3_aa.jpg',4,NULL),('SH019918650000','When bears, wolves and foxes are your only neighbours, life can be pretty lonely. Add minus-60-degree days and a constant battle for the most basic necessities, and you have the daily challenges of people who live in remote corners of Alaska. This series takes viewers deep into an Alaskan winter to meet tough, resilient residents as they try to stay one step ahead of storms and man-eating beasts to survive the season. When the closest neighbour is more than 300 miles away, these Alaskans subsist solely on what is hunted and foraged. They catch fish for currency in bartering for supplies, or use their packs of sled dogs for transportation. Also highlighted is a time of year not always part of what viewers see in Alaska: spring! Ice is breaking, animals are waking, and residents face new tests before deep cold returns.',NULL,'GBR','Life Below Zero','https://s3.amazonaws.com/schedulesdirect/assets/p9895118_i_h3_aa.jpg',4,NULL),('SH012680930000','Educational programme for four to seven-year-old children with learning difficulties.',NULL,'GBR','Something Special','https://s3.amazonaws.com/schedulesdirect/assets/p289357_i_h3_aa.jpg',4,NULL),('SH019671360000','In den USA mieten manche Privatpersonen Lagerräume für ihre Sachen an. Nach drei Monaten unbezahlter Miete kommt der Inhalt des Lagers zur Auktion. Allerdings dürfen die Interessenten den Lagerraum nur kurz von außen sehen, bevor sie bieten.',NULL,'DEU','Storage Wars - Die Geschäftemacher','https://s3.amazonaws.com/schedulesdirect/assets/p8354064_i_h3_ab.jpg',4,NULL),('SH021410940000','Science documentary series tackling everyday issues that affect us all.',NULL,'GBR','The Truth About...','https://s3.amazonaws.com/schedulesdirect/assets/p11571727_b_h3_aa.jpg',4,NULL),('SH018063270000','Visits to a wide variety of beautiful gardens.',NULL,'GBR','Garden Hopping','https://s3.amazonaws.com/schedulesdirect/assets/p391676_st_h3_aa.jpg',4,NULL),('SH013378660000','Based on the accounts of Marines in World War II, this 10-part miniseries follows the intertwined journeys of three US Marines in the Pacific Theatre - Pfcs Robert Leckie and Eugene B Sledge and Sgt John Basilone - from their first battle against Japan on Guadalcanal, across the sands of Iwo Jima and the horror of Okinawa, to their ultimately triumphant return after V-J Day. The producing team behind \"The Pacific\', including Tom Hanks and Steven Spielberg, also was behind HBO\'s award-winning miniseries `Band of Brothers\".',NULL,'GBR','The Pacific','https://json.schedulesdirect.org/20141201/image/assets/p8000042_i_h3_aa.jpg',4,NULL),('SH012593120000','The high commander of an alien expedition lands on Earth - what he considers to be the least-important planet - in human form as Dick Solomon. Along for the ride are his alien compatriots Harry, Sally and Tommy - who is the eldest of the group but is now angrily trapped in a teen\'s body.',NULL,'GBR','3rd Rock From the Sun','https://s3.amazonaws.com/schedulesdirect/assets/p184146_l_h3_aa.jpg',4,NULL),('SH026088950000','Die Sendung zeigt die neuesten Nachrichten aus dem Südwesten, mit Schwerpunkt Rheinland-Pfalz.',NULL,'DEU','SWR Aktuell Rheinland-Pfalz','https://s3.amazonaws.com/schedulesdirect/assets/p13749524_b_h3_aa.jpg',4,NULL),('SH018818890000','Prepare for an onslaught of one-liners from the King of Knotty Ash and his team of funny folk.',NULL,'GBR','The Ken Dodd Show','https://s3.amazonaws.com/schedulesdirect/assets/p10573833_st_h3_aa.jpg',4,NULL),('SH019388320000','Im 16. Bezirk New Yorks kümmert sich die Polizeieinheit Special Victim Unit um ganz besonders schreckliche Verbrechen. Die Einheit beschäftigt sich hauptsächlich mit Verbrechen wie Vergewaltigungen, häusliche Gewalt, Kindesmissbrauch oder Entführungen. Detective Elliot Stabler, Olivia Benson und John Munch leiten das Team. Sie sind stets bemüht, ihre persönlichen Tragödien und Schicksale außen vor zu lassen, was allerdings nicht immer gelingt. Gemeinsam mit der Staatsanwaltschaft, Polizeicaptains, dem FBI sowie Medizinern sind sie auf der Jagd nach Sexualstraftätern und Kinderschändern.',NULL,'DEU','Law & Order: Special Victims Unit','https://s3.amazonaws.com/schedulesdirect/assets/p184536_l_h3_aa.jpg',4,NULL),('SH019798080000','Hintergrundmagazin für Sportthemen, das Geschichten jenseits der glitzernden Sportwelt erzählt.',NULL,'DEU','sport inside','https://s3.amazonaws.com/schedulesdirect/assets/p11001518_b_h3_ab.jpg',4,NULL),('SH016520760000','Das Dokumentationsformat hat den Anspruch, gesellschaftlich und politisch relevante Themen aufzugreifen. Dabei soll, auch mit investigativen Ansätzen, immer ein direkter Bezug zum Alltag der Zuschauer hergestellt werden.',NULL,'DEU','ZDFzoom','https://s3.amazonaws.com/schedulesdirect/assets/p9610305_b_h3_aa.jpg',4,NULL),('SH033589520000','Shanaz seeks inspiration whilst walking through Yorkshire. Take time to slow-down and enjoy a \"real\" walk from the comfort of home.',NULL,'GBR','Yorkshire Walks','https://s3.amazonaws.com/schedulesdirect/assets/p17588376_st_h3_aa.jpg',4,NULL),('SH013031830000','Contestants try to find which of the 100 balls conceal cash and which contain the killer balls.',NULL,'GBR','Golden Balls','https://s3.amazonaws.com/schedulesdirect/assets/p8200327_b_h3_aa.jpg',4,NULL),('SH017428530000','Dokumentationsreihe, in der die Autoren des Senders jeweils einem konkreten gesellschaftlichen Thema auf den Grund gehen. Die Reihe zeigt dabei `die Rechercheschritte, bietet Lösungen an und unterstützt so die Orientierung in einer komplexeren Welt\'.',NULL,'DEU','45 Min','https://s3.amazonaws.com/schedulesdirect/assets/p9987883_b_h3_ab.jpg',4,NULL),('SH012597990000','Two teams of amateur collectors meet at one of the many antiques fairs around the UK and compete to find bargains that will make the most profit at auction. They are given an hour to hunt for interesting items and a budget of three hundred pounds. Each team is guided by an antiques expert who can help the teams to select antiques and collectibles that will have the most chance of making a profit.',NULL,'GBR','Bargain Hunt','https://s3.amazonaws.com/schedulesdirect/assets/p8099429_i_h3_aa.jpg',4,NULL),('SH027992090000','A look at the secret network behind Queen Elizabeth I\'s 40 year reign and the world\'s first secret service run by her spymasters Robert and William Cecil.',NULL,'GBR','Elizabeth I\'s Secret Agents','https://s3.amazonaws.com/schedulesdirect/assets/p14670931_st_h3_aa.jpg',4,NULL),('SH019742880000','Spektakuläre Aufnahmen aus dem Weltall im Nachtprogramm des BR. Die schönste Serie, die es zur Zeit im Fernsehen gibt, befand der Spiegel, als am 1. Juni 1994 im Nachtprogramm des Bayerischen Fernsehens die Space Night das erste Mal auf Sendung ging.',NULL,'DEU','Space Night','https://s3.amazonaws.com/schedulesdirect/assets/p10977813_b_h3_aa.jpg',4,NULL),('SH014252480000','Mark Lamarr presents an examination of the life and times of the Godfather of Soul, James Brown.',NULL,'GBR','Get Up for James Brown','https://s3.amazonaws.com/schedulesdirect/assets/p8702878_st_h3_aa.jpg',4,NULL),('SH032820210000','Dr Emma Craythorne and her team of experts are on a mission to solve complex skin conditions. They help people whose lives have been impeded by devastating disorders and they hope Emma and their team have the solution.',NULL,'GBR','The Bad Skin Clinic','https://s3.amazonaws.com/schedulesdirect/assets/p17201202_st_h3_aa.jpg',4,NULL),('SH033562230000','Series with some advice on how to spice up your love life.',NULL,'GBR','Good Girls Guide To Kinky Sex','https://s3.amazonaws.com/schedulesdirect/assets/p17576656_st_h3_aa.jpg',4,NULL),('SH027832220000','Mark Bowe and his crew of West Virginia based craftsmen salvage antique barns and cabins before the timber can deteriorate.',NULL,'GBR','Barnwood Builders','https://s3.amazonaws.com/schedulesdirect/assets/p10253890_l_h3_ab.jpg',4,NULL),('SH012838610000','Filmed on location in New York, the drama showcases the sometimes-complex process of determining guilt or innocence, while lives hang in the balance. Often inspired by the latest headlines, the plots highlight legal, ethical or personal dilemmas to which people can relate.',NULL,'GBR','Law & Order','https://s3.amazonaws.com/schedulesdirect/assets/p183983_l_h3_aa.jpg',4,NULL),('SH019567660000','Die `Outback-Trucker\' sind in ihren gigantischen, bis zu 50 Meter langen Lastwagen in ganz Australien unterwegs. Die Fahrten führen oft über unbefestigte Pisten und bergen unvorhersehbare Gefahren. Die Doku-Serie begleitet harte Jungs bei der Arbeit.',NULL,'DEU','Outback Truckers','https://s3.amazonaws.com/schedulesdirect/assets/p9629919_i_h3_ab.jpg',4,NULL),('SH012972320000','Series of programmes debating and exploring arts and cultural topics.',NULL,'GBR','The Essay','https://s3.amazonaws.com/schedulesdirect/assets/p8182569_b_h3_aa.jpg',4,NULL),('SH018558660000','Die Sendung beschäftigt sich mit den Hintergründen der tagesaktuellen Ereignisse. Die Themen sind verbraucherfreundlich und gehen informativ, ehrlich und unterhaltsam auf alltägliche Probleme und häufig gestellte Fragen ein.',NULL,'DEU','Explosiv - Das Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p10458792_st_h3_ab.jpg',4,NULL),('SH033986750000','Andy is jetting off around the world and meeting animals living in or near the coast, rivers, lakes and even underwater.',NULL,'GBR','Andy\'s Aquatic Adventures','https://s3.amazonaws.com/schedulesdirect/assets/p17744528_st_h3_aa.jpg',4,NULL),('SH020333820000','Den Finger stets am Puls des Landes und seiner Menschen: Die Sendung zeigt Reportagen und gibt zudem Hintergrundinformationen zu aktuellen Themen in Baden-Württemberg, zu denen interessante Gäste ins Studio eingeladen werden.',NULL,'DEU','Landesschau Baden-Württemberg','https://s3.amazonaws.com/schedulesdirect/assets/p11186710_b_h3_aa.jpg',4,NULL),('SH031826890000','Es werden Themen rund um Verbraucher, Gesundheit, Ernährung, Reise, Haus und Garten beleuchtet. Die Sendung gibt Ausflugs- sowie Freizeittipps und geht unter anderem der Frage nach, welche Produkte und Dienstleistungen etwas taugen.',NULL,'DEU','Die Ratgeber','https://s3.amazonaws.com/schedulesdirect/assets/p16692178_st_h3_ab.jpg',4,NULL),('SH032992490000','Der Komiker Serdar Somuncu hackt einen Fernsehsender mit modernster Technik und präsentiert seine bösen, ironischen Clips. Der selbst ernannte Hassprediger zeigt Meinung, Haltung und Mut. Dabei schockiert, amüsiert und begeistert er zugleich.',NULL,'DEU','BÄM!','https://s3.amazonaws.com/schedulesdirect/assets/p17299874_i_h3_aa.jpg',4,NULL),('SH022041530000','Oliver Kalkofe schaut sich die verschiedensten Peinlichkeiten der Fernsehunterhaltung an und parodiert diese auf unterhaltsame Art und Weise. Als Kritiker nimmt er sich kein Blatt vor den Mund und lässt kein gutes Haar an schlechtem Entertainment.',NULL,'DEU','Kalkofes Mattscheibe','https://s3.amazonaws.com/schedulesdirect/assets/p11856885_st_h3_aa.jpg',4,NULL),('SH034417580000','Colum McCann\'s epic new novel of friendship, love, loss, and belonging.',NULL,'GBR','Apeirogon','https://s3.amazonaws.com/schedulesdirect/assets/p17968766_st_h3_aa.jpg',4,NULL),('SH019461870000','Das Mittagsmagazin informiert über Themen aus der Region, Deutschland und der ganzen Welt.',NULL,'DEU','MDR um 2','https://s3.amazonaws.com/schedulesdirect/assets/p10869363_b_h3_aa.jpg',4,NULL),('SH024895730000','Armed with technological gear, great ideas and an unfailing sense of humour, Talking Tom and his friends are on a mission to reach stardom at all costs.',NULL,'GBR','Talking Tom and Friends','https://s3.amazonaws.com/schedulesdirect/assets/p12888402_b_h3_aa.jpg',4,NULL),('SH017563030000','How to rustle up something quick using only a few ingredients in the kitchen.',NULL,'GBR','Ainsley\'s Gourmet Express','https://s3.amazonaws.com/schedulesdirect/assets/p326031_b_h3_aa.jpg',4,NULL),('SH022731290000','Ungelöste Geheimnisse und Mythen der Geschichte werden unter die Lupe genommen und erklärt.',NULL,'DEU','Rätsel der Geschichte','https://s3.amazonaws.com/schedulesdirect/assets/p309939_st_h3_ac.jpg',4,NULL),('SH015403140000','Das Reisemagazin stellt norddeutsche Landschaften, menschliche Originale, Spaß und Sport vor.',NULL,'DEU','Nordtour','https://s3.amazonaws.com/schedulesdirect/assets/p9126241_b_h3_aa.jpg',4,NULL),('SH015442760000','Die Bewohner der Lindenstraße kommen aus allen gesellschaftlichen Schichten. Die bunten Charaktere erzählen ihre Geschichten, die von Liebe, Ehe und Tod sowie von Homosexualität, Drogenmissbrauch und Gewalt geprägt sind.',NULL,'DEU','Lindenstraße','https://s3.amazonaws.com/schedulesdirect/assets/p9145197_b_h3_aa.jpg',4,NULL),('SH013658660000','A drawn line creates endless challenges and surprises for the unsuspecting little character Dipdap.',NULL,'GBR','Dipdap','https://s3.amazonaws.com/schedulesdirect/assets/p8450080_b_h3_aa.jpg',4,NULL),('SH018994480000','Lily creates a world of adventure and friendship from treasures she finds washed up on the beach.',NULL,'GBR','Lily\'s Driftwood Bay','https://s3.amazonaws.com/schedulesdirect/assets/p10668083_i_h3_ab.jpg',4,NULL),('SH018899740000','Investigating forgotten communities with tales of betrayal and murder.',NULL,'GBR','Murder Comes to Town','https://s3.amazonaws.com/schedulesdirect/assets/p10417172_i_h3_aa.jpg',4,NULL),('SH025056040000','Die Polizisten einer Spezialeinheit für Jugendkriminalität werden bei ihren Einsätzen begleitet und geben einen Einblick in ihren harten Arbeitsalltag. Dabei müssen sie in teils heiklen Situationen die Täter stellen und die Opfer schützen.',NULL,'DEU','Die Straßencops West - Jugend im Visier','https://s3.amazonaws.com/schedulesdirect/assets/p13251578_st_h3_aa.jpg',4,NULL),('SH014080750000','Live commentary on a sporting event.',NULL,'GBR','Live: Kick Off','https://s3.amazonaws.com/schedulesdirect/assets/p8631368_st_h3_aa.jpg',4,NULL),('SH034388370000','Beetle Buck and stick insect Buddy are the best of friends who like to collect unusual and interesting things from the strange world in which they live.',NULL,'GBR','Buck and Buddy','https://s3.amazonaws.com/schedulesdirect/assets/p17946300_st_h3_aa.jpg',4,NULL),('SH019578190000','Das Raumschiff Voyager wird im 24. Jahrhundert zusammen mit einem zweiten, feindlichen Raumschiff von einem fremden Wesen in einen weit entfernt liegenden Bereich der Milchstraße, den Delta-Quadranten, verschlagen. In der Notlage arbeiten die beiden ehemals gegnerischen Crews zusammen, um den langen Weg zurück zur Erde anzutreten. Im Verlauf der Heimreise muss die Voyager weite Strecken unbekannten Raums durchqueren und zahlreiche Gefahren überwinden. Dazu zählen etwa Auseinandersetzungen mit anderen Rassen, technische Probleme, Weltraum-Anomalien, Zeitreisen, moralische Dilemmas, Lebensmittel-Knappheit oder die Beschaffung von Rohstoffen. Die Crew muss dabei eine Strecke von etwa 70.000 Lichtjahren überwinden, was bei maximalem Warp ohne Unterbrechungen eine Dauer von etwa 70 Jahren bedeuten würde.',NULL,'DEU','Star Trek: Raumschiff Voyager','https://s3.amazonaws.com/schedulesdirect/assets/p183919_i_h3_aa.jpg',4,NULL),('SH013233370000','News and advice from the realm of personal finance.',NULL,'GBR','Money Box','https://s3.amazonaws.com/schedulesdirect/assets/p265163_b_h3_aa.jpg',4,NULL),('SH022890690000','Presenting duo Eamonn Holmes and Ruth Langsford explore the world of the super-rich in this documentary series. The couple meet multimillionaires and billionaires as they go about their daily activities of driving fast cars, travelling by private jet and going to exclusive parties. Ruth tries on millions of pounds worth of jewellery whilst Eamonn trials the best gadgets and gizmos money can buy. The hosts reveal challenges of extreme wealth, such as needing security, and whether happiness can really be bought.',NULL,'GBR','Eamonn and Ruth: How the Other Half Lives','https://s3.amazonaws.com/schedulesdirect/assets/p12231394_b_h3_aa.jpg',4,NULL),('SH031505960000','Normalcy in a time of peace is disrupted by a god\'s search for a powerful foe.',NULL,'GBR','Dragon Ball Super','https://json.schedulesdirect.org/20141201/image/assets/p13592228_i_h3_aa.jpg',4,NULL),('SH031484860000','Zeitnah und in aller Ausführlichkeit berichtet die Sendung über die aktuellsten Ereignisse aus Politik und Gesellschaft - national und international. In Vordergrund stehen Vor-Ort-Berichterstattungen und Studiogespräche mit Experten des Gebiets.',NULL,'DEU','phoenix vor ort','https://s3.amazonaws.com/schedulesdirect/assets/p10969221_i_h3_ab.jpg',4,NULL),('SH018486130000','Dr. Kleist, seine Kinder aus erster Ehe und seine neue Frau erleben die Höhen und Tiefen des Lebens. Ihr Familienalltag ist mit Problemen, Sorgen, aber auch Emotionen und Freude gespickt. Dabei sorgen vor allem die Kinder für Aufregung.',NULL,'DEU','Familie Dr. Kleist','https://s3.amazonaws.com/schedulesdirect/assets/p10432439_i_h3_aa.jpg',4,NULL),('SH034428350000','Nan Shepherd\'s 1928 story of a young woman\'s journey to maturity and independence.',NULL,'GBR','The Quarry Wood','https://s3.amazonaws.com/schedulesdirect/assets/p17974611_st_h3_aa.jpg',4,NULL),('SH018901990000','This magazine cuts straight to the core of London\'s food scene.',NULL,'GBR','Food Junkies','https://s3.amazonaws.com/schedulesdirect/assets/p10623151_b_h3_ab.jpg',4,NULL),('SH017507530000','\"First Dates\' is a dating show with a twist that takes advantage of modern forms of dating. Each episode documents a number of couples having dinner in a unique restaurant in which everyone is on a first date. Viewers see the daters from the moment they meet until the meal is over, sharing the highs of lows of each couple\"s date. At the end of each date, the couple talks candidly about the experience and answers the question everybody has: will the daters see each other again?',NULL,'GBR','First Dates','https://s3.amazonaws.com/schedulesdirect/assets/p10017519_b_h3_ag.jpg',4,NULL),('SH025107830000','Karin Jittenmeier hält kreativ Interessierte mit diversen Techniken und Produkten auf dem Laufenden.',NULL,'DEU','Karins Bastelclub','https://s3.amazonaws.com/schedulesdirect/assets/p13280772_st_h3_aa.jpg',4,NULL),('SH034354990000','All the best highlights from the latest round of FIH Hockey Pro League matches.',NULL,'GBR','FIH Hockey Pro League Highlights Show','https://s3.amazonaws.com/schedulesdirect/assets/p17928749_st_h3_aa.jpg',4,NULL),('SH027797140000','Glitzernd verpackte Geschenke unter Millionen von Weihnachtsbäumen - binnen weniger Tage alles Müll. Weihnachten ist Wegwerfkultur pur. Vielen nimmt das die Freude am Fest. Sie feiern fair. Es geht darum, die Welt ein Stück besser zu verlassen.',NULL,'DEU','plan b','https://s3.amazonaws.com/schedulesdirect/assets/p14559319_st_h3_aa.jpg',4,NULL),('SH029358600000','Gezeigt werden Übertragungen aktueller, internationaler Snooker-Wettbewerbe.',NULL,'DEU','Snooker:','https://s3.amazonaws.com/schedulesdirect/assets/p489879_st_h3_ab.jpg',4,NULL),('SH022239590000','Epic drama with Vineeta Rishi.',NULL,'GBR','The Far Pavilions','https://s3.amazonaws.com/schedulesdirect/assets/p11929452_st_h3_aa.jpg',4,NULL),('SH019577900000','Das Nachrichtenmagazin mit den aktuellsten Themen für die Region zwischen Nord- und Ostsee. Das Magazin berichtet über Themen in der Politik, Wirtschaft, Verkehr und Kultur.',NULL,'DEU','Schleswig-Holstein Magazin','https://s3.amazonaws.com/schedulesdirect/assets/p10910705_b_h3_aa.jpg',4,NULL),('SH026229010000','True crime series that examines some of the most notorious murderers in the United Kingdom. Each episode focuses on an infamous case in Britain, and looks into what exactly drove the killers to commit their crimes. Perpetrators who are profiled in the show include Ian Huntley, Mick Philpott, Levi Bellfield, and Stuart Hazell. As well as outlining the background behind each case, the series features interviews with family members and friends of victims. Forensic pathologists and reporters also add their own expert knowledge.',NULL,'GBR','Britain\'s Most Evil Killers','https://s3.amazonaws.com/schedulesdirect/assets/p13824281_st_h3_aa.jpg',4,NULL),('SH032742910000','Four vets from all around Australia come together to share their passion for animals, as they help domestic and wild animals who are suffering.',NULL,'GBR','Bondi Vet: Coast to Coast','https://s3.amazonaws.com/schedulesdirect/assets/p16674457_b_h3_aa.jpg',4,NULL),('SH029152330000','A problem-solving older sister, Bitz, and her younger brother, Bob, love making things, imaginary adventures and engineering. They explore their love of science, technology, engineering, art and math to invent ways to save the day.',NULL,'GBR','Bitz & Bob','https://s3.amazonaws.com/schedulesdirect/assets/p15241976_st_h3_aa.jpg',4,NULL),('SH019671390000','In Texas mieten manche Privatpersonen Lagerräume für ihre Sachen an. Nach mehrfach unbezahlter Miete kommt der Inhalt des verlassenen Lagers zur Auktion. Allerdings dürfen die Interessenten den Lagerraum nur kurz von außen sehen, bevor sie bieten.',NULL,'DEU','Storage Wars - Geschäfte in Texas','https://s3.amazonaws.com/schedulesdirect/assets/p8666432_i_h3_aa.jpg',4,NULL),('SH030864510000','Made in 1933 and first shown to an audience at the Prince Of Wales Theatre in London, this series focused on areas of interest.',NULL,'GBR','Canterbury','https://s3.amazonaws.com/schedulesdirect/assets/p16196282_b_h3_aa.jpg',4,NULL),('SH030621340000','Berichtet wird über die Entstehung diverser Filme.',NULL,'DEU','Making Of:','https://s3.amazonaws.com/schedulesdirect/assets/p16051499_st_h3_aa.jpg',4,NULL),('SH034085900000','Jason Hawes, Steve Gonsalves and Dave Tango respond to urgent calls from local paranormal investigators nationwide who have reached a dead end with their vexing personal cases.',NULL,'GBR','Ghost Nation','https://json.schedulesdirect.org/20141201/image/assets/p17276411_b_h3_ac.jpg',4,NULL),('SH012749810000','Paul Teutul and his son Paul Jr. create some of the world\'s most original custom motorcycles - Paul Sr operates Orange County Choppers, and Junior leads his staff at Paul Jr. Designs. Both shops are located a stone\'s throw from each other in Orange County, NY, but sometimes it seems as if father and son are worlds apart. They were business partners at OCC until a family feud that included a lawsuit led to their separation, both personally and professionally. This reality series follows the hot-headed Teutuls as they strive to remain on speaking terms while their shops compete to outdo each other in the designing and building of custom bikes.',NULL,'GBR','American Chopper','https://s3.amazonaws.com/schedulesdirect/assets/p185411_i_h3_aa.jpg',4,NULL),('SH020622510000','In America CNN is by and large still a cable news outlet, but a movement under the leadership of network president Jeff Zucker to provide more alternative, entertainment-based programming is clearly afoot, and \"Death Row Stories\' is a prime example. The eight-part documentary - the result of a collaboration with Academy Award-winning directors Robert Redford (`Ordinary People\') and Alex Gibney (`Taxi to the Dark Side\') - revisits compelling capital murder cases in the US, detailing the twists and turns involved in each as a thought-provoking exercise on the death penalty and the American justice system. `Dead Man Walking\' Oscar winner Susan Sarandon is the narrator. Redford\'s Sundance Productions also partnered with CNN for the documentary series `Chicagoland\".',NULL,'GBR','Death Row Stories','https://s3.amazonaws.com/schedulesdirect/assets/p10474987_l_h3_aa.jpg',4,NULL),('SH026278450000','Das Reportagemagazin berichtet monothematisch über ein europäisches Thema.',NULL,'DEU','Re:','https://s3.amazonaws.com/schedulesdirect/assets/p13848076_st_h3_aa.jpg',4,NULL),('SH015989410000','Model-turned-cook Lorraine Pascale presents this programme in which she creates amazing food from scratch in a short period of time. Lorraine\'s recipes make it accessible for busy people to be able to cook dinner without resorting to a packet or a jar. Her meals, which are ideal for entertaining, include starters, main dishes, desserts and her signature bakes for all occasions. The easy recipes allow people to spend less time in the kitchen and more time having fun with friends and family.',NULL,'GBR','Lorraine\'s Fast, Fresh and Easy Food','https://json.schedulesdirect.org/20141201/image/assets/p9397375_i_h3_aa.jpg',4,NULL),('SH012735870000','A new group of medical students arrives to learn the ropes at Sacred Heart Hospital, where J.D., Turk, Kelso, and acerbic Dr Cox are their instructors. J.D. continues to romance Elliot as he imparts wisdom to a new class, which includes Lucy, Drew, Cole and Maya.',NULL,'GBR','Scrubs','https://s3.amazonaws.com/schedulesdirect/assets/p184720_b_h3_ac.jpg',4,NULL),('SH023277870000','Die Reihe zeigt über dreißig Haiarten in ihrem natürlichen Umfeld und beleuchtet ihr soziales Leben.',NULL,'DEU','Die Welt der Haie','https://json.schedulesdirect.org/20141201/image/assets/p11716183_i_h3_aa.jpg',4,NULL),('SH024102700000','Die Schüler Marinette und Adrien erhalten die Fähigkeit, sich in die Superhelden Ladybug und Cat Noir zu verwandeln und können dadurch das Glück und das Pech manipulieren. Sie wollen dem Bösewicht Hawk Moth das Handwerk legen.',NULL,'DEU','Miraculous - Geschichten von Ladybug und Cat Noir','https://s3.amazonaws.com/schedulesdirect/assets/p12274735_i_h3_ab.jpg',4,NULL),('SH012966380000','The latest instalment of the long running drama series.',NULL,'GBR','The Archers','https://s3.amazonaws.com/schedulesdirect/assets/p296817_i_h3_aa.jpg',4,NULL),('SH031675720000','The Baby Club encourages parents, carers and their babies to explore everyday objects through discovery, play, song and story. Babies and grown-ups at home can join in too!',NULL,'GBR','The Baby Club','https://s3.amazonaws.com/schedulesdirect/assets/p16610988_i_h3_aa.jpg',4,NULL),('SH019809070000','Das Kulturmagazin nimmt ein aktuelles Thema aus Politik oder Wirtschaft unter die Lupe.',NULL,'DEU','28 Minuten','https://s3.amazonaws.com/schedulesdirect/assets/p11004614_b_h3_ab.jpg',4,NULL),('SH032868020000','Following two families from different backgrounds as they trade homes and spouses for two weeks.',NULL,'GBR','Wife Swap USA','https://s3.amazonaws.com/schedulesdirect/assets/p16692499_i_h3_aa.jpg',4,NULL),('SH019759860000','Der Archivar Eugen Köberle klärt Kriminalfälle auf.',NULL,'DEU','Köberle kommt','https://s3.amazonaws.com/schedulesdirect/assets/p10984957_st_h3_aa.jpg',4,NULL),('SH013000420000','Gaby Roslin helps house hunting celebrities.',NULL,'GBR','Celebrity Fantasy Homes','https://s3.amazonaws.com/schedulesdirect/assets/p8190552_i_h3_aa.jpg',4,NULL),('SH029846950000','Back-country builders Clint Greathouse and Todd Anderson create one-of-a-kind builds using nothing but recycled parts, outdoor ingenuity and sheer determination.',NULL,'GBR','Last Outpost','https://s3.amazonaws.com/schedulesdirect/assets/p15186226_b_h3_ac.jpg',4,NULL),('SH019424840000','Meike verliebt sich in Alex, den Besitzer einer Szenebar in der Kölner Innenstadt. Das plötzliche Auftauchen von Meike sorgt für Unruhe. Neben diesem Leitfaden wird der Alltag verschiedener Angestellter und Freunde aus der Bar dargestellt.',NULL,'DEU','Köln 50667','https://s3.amazonaws.com/schedulesdirect/assets/p10856016_st_h3_aa.jpg',4,NULL),('SH029470390000','Fünf Referendare bewerben sich um zwei freie Stellen an einer Schule. Während ihrer Ausbildung sehen sich die angehenden Lehrkräfte nicht nur mit mühsamer Unterrichtsvorbereitung und schwierigen Schülern konfrontiert, sondern auch mit Intrigen.',NULL,'DEU','Krass Schule - Die jungen Lehrer','https://s3.amazonaws.com/schedulesdirect/assets/p15371881_st_h3_ab.jpg',4,NULL),('SH034216870000','Follows six British couples as they compete for the ownership of an extraordinary home in the Alaskan wilderness. Situated over one hundred miles from the nearest road, the three storey property is the home and legacy of Duane and Rena Ose, the married couple who spent over thirty years building it. Now both in their seventies, and with their children unable to take it on, the Oses are searching for a couple to inherit their life\'s work.',NULL,'GBR','Win the Wilderness: Alaska','https://json.schedulesdirect.org/20141201/image/assets/p17845457_i_h3_aa.jpg',4,NULL),('SH026165010000','A heart-warming series that celebrates inspirational farming families and the rural events where they showcase their hard work, as they try to win the top prizes.',NULL,'GBR','The Farmers\' Country Showdown','https://s3.amazonaws.com/schedulesdirect/assets/p13789317_b_h3_aa.jpg',4,NULL),('SH003337730000','Die erotischen Sport-Clips im Nachtprogramm mit abwechselnden Damen und Schauplätzen.',NULL,'DEU','SPORT CLIPS','https://s3.amazonaws.com/schedulesdirect/assets/p492729_st_h3_aa.jpg',4,NULL),('SH014010180000','A series of adaptations of the highly popular TV sitcom.',NULL,'GBR','One Foot in the Grave','https://s3.amazonaws.com/schedulesdirect/assets/p8604721_b_h3_aa.jpg',4,NULL),('SH030936480000','Nach einer plötzlichen Wendung ist Familie Conner gezwungen, sich den täglichen Problemen des Lebens auf ungewohnte Weise zu stellen. Diese legendäre Familie zeigt weiterhin, dass man mit Lachen, Konversation und Liebe alle Hürden überwinden kann.',NULL,'DEU','Die Conners','https://s3.amazonaws.com/schedulesdirect/assets/p15661264_i_h3_aa.jpg',4,NULL),('SH016262350000','This take on Sir Arthur Conan Doyle\'s classic character has disgraced Sherlock Holmes fleeing London for present-day Manhattan after a stint in rehab. He arrives to find that his father has assigned a sober companion to live with him - Dr Joan Watson, a former surgeon whose medical licence was revoked three years earlier after she lost a patient. She now seeks penance by helping addicts stay clean. However, Holmes has his own plan for keeping on the straight and narrow, throwing himself into his work as a police consultant in New York City. The two find that they make a good team and are soon cracking some of the NYPD\'s most-difficult cases.',NULL,'GBR','Elementary','https://s3.amazonaws.com/schedulesdirect/assets/p9260095_l_h3_aa.jpg',4,NULL),('SH031418120000','Die Dokumentationsreihe widmet sich dem Frankfurter Flughafen. Sie zeigt unter anderem Menschen, die dort arbeiten, sowie auch diejenigen, die den Flughafen als Startpunkt des Urlaubs oder den Beginn einer Dienstreise nutzen.',NULL,'DEU','Mittendrin - Flughafen Frankfurt','https://s3.amazonaws.com/schedulesdirect/assets/p16458481_b_h3_aa.jpg',4,NULL),('SH012692450000','After a falling out, two rival antique dealers engage in a continuous game of one-upmanship, but are forced to deal with the romantic relationship between their children.',NULL,'GBR','Never the Twain','https://s3.amazonaws.com/schedulesdirect/assets/p451205_st_h3_aa.jpg',4,NULL),('SH030381530000','Jo Coburn and panel discuss the big issues of the day.',NULL,'GBR','Politics Live','https://s3.amazonaws.com/schedulesdirect/assets/p15870294_b_h3_aa.jpg',4,NULL),('SH030152180000','Romesh presides over genuine disagreements and metes out comic judgement in his own inimitable style. Judge Romesh brings all the drama of a court room with a triple-dose of funny.',NULL,'GBR','Judge Romesh','https://s3.amazonaws.com/schedulesdirect/assets/p15757376_b_h3_az.jpg',4,NULL),('SH029861680000','Bedeutende historische Ereignisse werden vorgestellt.',NULL,'DEU','phoenix history','https://s3.amazonaws.com/schedulesdirect/assets/p10969053_i_h3_aa.jpg',4,NULL),('SH016017230000','Combining two of Channel 4\'s favourite shows means viewers get to play along, a plus for both quiz and comedy fans alike. Jimmy Carr hosts the famous words and numbers quiz, with \"8 Out of 10 Cats\' team captains Sean Lock and Jon Richardson playing against each other. In each episode they are joined by guests from the world of comedy and entertainment, including Sarah Millican, Jason Manford, Jack Dee and Rhod Gilbert. Dictionary maven and adjudicator on `Countdown\', Susie Dent, also takes part, joined by a different guest for each episode. And mathematician Rachel Riley takes on her usual `Countdown\" role, accompanied by her assistant, Joe Wilkinson.',NULL,'GBR','8 Out of 10 Cats Does Countdown','https://s3.amazonaws.com/schedulesdirect/assets/p9408558_i_h3_aa.jpg',4,NULL),('SH021850680000','Die Abenteuer des Pinguins Maurice, der glaubt, ein Tiger zu sein, seines Kung-Fu begabten Adoptivsohnes Junior und deren unglaublichen Freunde.',NULL,'DEU','Die Dschungelhelden','https://s3.amazonaws.com/schedulesdirect/assets/p11319174_b_h3_ai.jpg',4,NULL),('SH019560520000','Die Spezialeinheit der Navy CIS L.A. ist bei Fällen der nationalen Sicherheit der Vereinigten Staaten Amerikas im Einsatz. Die hervorragend ausgebildeten Profis geben bei den gefährlichen Undercovereinsätzen ihr Bestes.',NULL,'DEU','Navy CIS: L.A','https://s3.amazonaws.com/schedulesdirect/assets/p3561420_b_h3_af.jpg',4,NULL),('SH020073300000','Bob Ross zeigt in dieser Sendung, wie einfach das Malen sein kann. Er gibt wertvolle Tipps.',NULL,'DEU','Bob Ross: The Joy of Painting','https://s3.amazonaws.com/schedulesdirect/assets/p413742_b_h3_ad.jpg',4,NULL),('SH024243280000','Lily ist fünf Jahre alt und lebt in einem Strandhaus mit ihrem Vater. Jeden Tag spült das Meer neue aufregende Dinge an den Strand, hinter denen sich tolle Geschichten verbergen. Lily erlebt mit ihren Freunden aufregende Abenteuer.',NULL,'DEU','Lilys Strandschatz Eiland','https://s3.amazonaws.com/schedulesdirect/assets/p10668083_i_h3_ab.jpg',4,NULL),('SH023226570000','Die Dokumentarreihe beschäftigt sich mit den größten Skandalen und Affären in Medien, Unternehmen und Gesellschaft, die eine Wechselwirkung mit der Politik der Zeit bewirkten. Dafür wird auch altes Archivmaterial durchleuchtet.',NULL,'DEU','Skandal!','https://s3.amazonaws.com/schedulesdirect/assets/p12398266_i_h3_aa.jpg',4,NULL),('SH022621970000','Eine Gruppe fremder Menschen lebt in einem Container zusammen und wird dabei von Kameras beobachtet. In regelmäßigen Abständen werden einzelne Bewohner gewählt, die das Haus verlassen müssen. Der letzte Bewohner gewinnt ein Preisgeld.',NULL,'DEU','Big Brother','https://s3.amazonaws.com/schedulesdirect/assets/p12103806_st_h3_aa.jpg',4,NULL),('SH023839730000','Im späten 19. Jahrhundert zieht Dr. Michaela Quinn ins ländliche Colorado Springs und muss sich dort als Ärztin behaupten. Die Menschen in dem kleinen Ort sind sehr misstrauisch gegenüber einer Frau als Medizinerin und teilweise sogar feindselig.',NULL,'DEU','Dr. Quinn - Ärztin aus Leidenschaft','https://s3.amazonaws.com/schedulesdirect/assets/p183932_i_h3_aa.jpg',4,NULL),('SH013207570000','The return of the comedy series from 1994.',NULL,'GBR','The Skivers','https://s3.amazonaws.com/schedulesdirect/assets/p303163_st_h3_aa.jpg',4,NULL),('SH020133000000','Vier Traditionsunternehmen, vier Dokumentationen: Die Reihe schildert Höhen und Tiefen norddeutscher Unternehmen. Eng verknüpft mit der Nachkriegsgeschichte erzählen sie vom wirtschaftlichen Aufschwung, aber auch von den Ängsten der Pioniere. Der Anfang macht `Tchibo - Vom Kaffeeversand zum Handelsriesen\'. Mit Kaffee fing bei Tchibo 1949, im Gründungsjahr der BRD, alles an. Er hatte ein gutes Händchen, einen guten Kaffeegeschmack, und er wusste, was er macht!',NULL,'DEU','Made in Norddeutschland','https://s3.amazonaws.com/schedulesdirect/assets/p11115453_b_h3_aa.jpg',4,NULL),('SH034390180000','Die 17-jährige Lucy Heartfilia läuft von Zuhause weg, um Magierin im zauberhaften Land `Fairy Tail\' zu werden. Auf ihrem Weg dorthin trifft sie allerlei kuriose Wegbegleiter wie einem Drachen und einer fliegenden blauen Katze.',NULL,'DEU','Fairy Tail','https://s3.amazonaws.com/schedulesdirect/assets/p17948034_st_h3_aa.jpg',4,NULL),('SH017975510000','Jamie Theakston investigates incredible tales from the annals of history.',NULL,'GBR','Forbidden History','https://s3.amazonaws.com/schedulesdirect/assets/p10215750_i_h3_aa.jpg',4,NULL),('SH033534970000','Die aktuellsten Nachrichten und Ereignisse aus den norddeutschen Bundesländern; Niedersachen, Schleswig- Holstein, Hamburg und Mecklenburg- Vorpommern.',NULL,'DEU','NDR Info','https://s3.amazonaws.com/schedulesdirect/assets/p10911204_i_h3_ac.jpg',4,NULL),('SH031248540000','Documentary series following the world\'s most elite aerobatic display team.',NULL,'GBR','Red Arrows: Kings of the Sky','https://s3.amazonaws.com/schedulesdirect/assets/p16366805_i_h3_aa.jpg',4,NULL),('SH017720230000','Von Omas Küchenschrank bis hin zum begehrten Sammlerstück wird jede Art von Trödel verkauft. Der Moderator vermittelt zwischen den Anbietern und Händlern und stellt nicht nur die oft kuriosen Gegenstände, sondern auch deren Besitzer vor.',NULL,'DEU','Bares für Rares','https://s3.amazonaws.com/schedulesdirect/assets/p10106715_b_h3_aa.jpg',4,NULL),('SH027661650000','Four famous faces go toe-to-toe testing their general knowledge skills in trivia-based games.',NULL,'GBR','Richard Osman\'s House of Games','https://s3.amazonaws.com/schedulesdirect/assets/p14488283_i_h3_aa.jpg',4,NULL),('SH012613760000','A soap opera targeted toward the younger set, \"Hollyoaks\" focuses on a group of students at a local college and their families, all of whom live in or around the nearby borough of Hollyoaks in Chester. The award-winning programme tackles such issues as rape, murder, substance abuse, psychological well being, and infidelity.',NULL,'GBR','Hollyoaks','https://s3.amazonaws.com/schedulesdirect/assets/p244784_l_h3_aa.jpg',4,NULL),('SH013761480000','The shopping quiz in which contestants can compete for a big cash prize in the super sweep.',NULL,'GBR','Supermarket Sweep','https://s3.amazonaws.com/schedulesdirect/assets/p8491917_i_h3_aa.jpg',4,NULL),('SH015402280000','Tägliche Informations- und Bildungssendung, die im wöchentlichen Wechsel aus Baden-Baden und Dortmund sendet und den Zuschauern Informationen über aktuelle Fragestellungen unterschiedlichster Lebensbereiche liefern will.',NULL,'DEU','Planet Wissen','https://s3.amazonaws.com/schedulesdirect/assets/p9125871_b_h3_aa.jpg',4,NULL),('SH019855770000','Das Lokalzeit-Studio versorgt die Zuschauer mit Nachrichten und Berichten aus Köln.',NULL,'DEU','Lokalzeit aus Köln','https://s3.amazonaws.com/schedulesdirect/assets/p11024414_b_h3_ab.jpg',4,NULL),('SH029800600000','Das perfekte Verbrechen gibt es nicht, denn die Täter hinterlassen am Tatort stets Spuren - seien sie auch noch so winzig. Das Magazin beschäftigt sich mit verschiedenen Kapitalverbrechen, die sich in Frankreich zugetragen haben.',NULL,'DEU','Täterjagd','https://s3.amazonaws.com/schedulesdirect/assets/p9954055_i_h3_aa.jpg',4,NULL),('SH019990870000','Was ist wahr an den Legenden, die sich um Gegenstände wie den Heiligen Gral, die Bundeslade oder die 13 Kristallschädel der Maya ranken? Was ist Fiktion? Die Dokumentarserie geht weltberühmten Mythen auf den Grund.',NULL,'DEU','Mythen-Jäger','https://json.schedulesdirect.org/20141201/image/assets/p9530766_i_h3_aa.jpg',4,NULL),('SH019560670000','Alexander Hold ist Richter am Amtsgericht in Kempten. Täglich muss er Entscheidungen treffen, die das Leben verschiedener Menschen beeinflussen und verändern. Dabei ist er für das ganze Spektrum der Strafbarkeit zuständig.',NULL,'DEU','Richter Alexander Hold','https://s3.amazonaws.com/schedulesdirect/assets/p881803_st_h3_aa.jpg',4,NULL),('SH013290710000','Comedy series about a married couple who have to confront the fact that he is a transvestite.',NULL,'GBR','The Change','https://s3.amazonaws.com/schedulesdirect/assets/p297784_st_h3_aa.jpg',4,NULL),('SH006839480000','`Um Himmels Willen\' spielt im fiktiven niederbayerischen Städtchen Kaltenthal. Hier dreht sich alles um die Dauerfehde zwischen Oberbürgermeister Wolfgang Wöller und der Nonne Schwester Lotte aus dem örtlichen Kloster.',NULL,'DEU','Um Himmels Willen','https://s3.amazonaws.com/schedulesdirect/assets/p520236_i_h3_ab.jpg',4,NULL),('SH019340240000','Ash Ketchum begins his journey as a Pokémon trainer.',NULL,'GBR','Pokémon the Series: Indigo League','https://s3.amazonaws.com/schedulesdirect/assets/p8310449_l_h3_aa.jpg',4,NULL),('SH020803320000','Celebrity snowboarder Max Asher recently moved to Colorado to train for the Winter Cup and lives with the family of whiz kid Alvin Ackerman - whom Max nicknames Shred. The roommates become buddies and make their way through trials of teen life, which they approach from opposite points of view. Shred\'s confident sister, Abby, enjoys teasing her brother but is always there for him when it counts. Next-door neighbour Jill - called Howie from always asking \"how?\" - is Shred\'s curious apprentice and pops in unexpectedly, usually through his window.',NULL,'GBR','Max & Shred','https://s3.amazonaws.com/schedulesdirect/assets/p11060851_b_h3_ab.jpg',4,NULL),('SH021731320000','This four-part miniseries celebrates the lives of the last survivors of the Second World War. Now in their nineties and older, those who fought or lived through the war share experiences of coping in a shattered world. In personal accounts, there are stories of heartbreak, the loss of loved ones, childhood memories and heroic acts of bravery. Interviews with the survivors, along with researched footage, piece together how a nation bonded in difficult times to fight for freedom, endure the Depression years and rebuild society for generations to come.',NULL,'GBR','Britain\'s Greatest Generation','https://s3.amazonaws.com/schedulesdirect/assets/p11724347_b_h3_aa.jpg',4,NULL),('SH019580550000','Die Rundschau informiert täglich über Nachrichten, Wetter, Sport, Verkehr und Regionales für Bayern und Umgebung und fasst die wichtigsten und aktuellsten Nachrichten zusammen.',NULL,'DEU','Rundschau','https://s3.amazonaws.com/schedulesdirect/assets/p10911702_i_h3_aa.jpg',4,NULL),('SH019729600000','In den Reportagen werden Orte in Berlin und Brandenburg erkundet, die spannende, bisher weitgehend unbekannte Zeitgeschichte aufzeigen.',NULL,'DEU','Geheimnisvolle Orte','https://s3.amazonaws.com/schedulesdirect/assets/p10972870_i_h3_aa.jpg',4,NULL),('SH018152240000','John Nettles recording of the ancient Chinese text of the Tao.',NULL,'GBR','Will Smith Presents the Tao of Bergerac','https://s3.amazonaws.com/schedulesdirect/assets/p10295484_st_h3_aa.jpg',4,NULL),('SH019765930000','Der Schüler Yu-Gi erhält von seinem Großvater das magische Spiel der Schatten, das seither ein großes Rätsel umgibt. Yu-Gi und seine Freunde machen sich an die Lösung des Rätsels und ahnen nicht, dass sie das Schicksal der Welt in den Händen halten.',NULL,'DEU','Yu-Gi-Oh!','https://s3.amazonaws.com/schedulesdirect/assets/p534172_b_h3_aa.jpg',4,NULL),('SH019562930000','Um 1870 in Walnut Grove, einem kleinen Städtchen im Norden Amerikas: Die Ingalls - das sind Vater Charles, Mutter Caroline und die drei Kinder Mary, Laura und Carrie - bewirtschaften eine kleine Farm, die die Familie mal recht, mal schlecht ernährt. Doch auch wenn es wirtschaftlich nicht so gut läuft, die Ingalls lassen sich davon nicht unterkriegen. Auch nicht durch Rückschläge im Privatleben, denn sie wissen: Solange die Familie zusammenhält, kann nicht wirklich etwas schiefgehen.',NULL,'DEU','Unsere kleine Farm','https://s3.amazonaws.com/schedulesdirect/assets/p184223_b_h3_ah.jpg',4,NULL),('SH013344650000','From their \"Octopod\' home base, a team of undersea explorers are always ready to dive into action to explore new underwater worlds, rescue amazing sea creatures and protect the ocean. They are led by Captain Barnacles the bear, and also include Kwazii the kitten, Peso the penguin, Dr Shellington the sea otter, Dashi the dog, Tweak the bunny, Professor Inkling the octopus and Tunip the `vegimal\" (part vegetable, part animal). The animated series, geared toward preschoolers, is based on a book series of the same name.',NULL,'GBR','Octonauts','https://s3.amazonaws.com/schedulesdirect/assets/p8287494_l_h3_aa.jpg',4,NULL),('SH012692730000','Mystery writer and amateur detective Jessica Fletcher - a down-to-earth, middle-aged widow - ferrets out the criminals in idyllic Cabot Cove, Maine, which apparently is the murder capital of the United States for the show\'s 12-season run. Though while travelling, she uncovers a fair number of killers as well.',NULL,'GBR','Murder, She Wrote','https://s3.amazonaws.com/schedulesdirect/assets/p184149_i_h3_aa.jpg',4,NULL),('SH027663660000','Three hopeful singles compete to win the affections of a fashion-conscious person, attempting to impress with their choices when dressing them.',NULL,'GBR','Dress to Impress','https://s3.amazonaws.com/schedulesdirect/assets/p14489372_st_h3_aa.jpg',4,NULL),('SH016388730000','Das `Mittagsmagazin\' ist eine Nachrichtensendung, die über aktuelle Themen berichtet. Die Beiträge handeln von Themenbereichen wie Sport, Wissen und Kultur.',NULL,'DEU','ARD-Mittagsmagazin','https://s3.amazonaws.com/schedulesdirect/assets/p9560150_b_h3_ab.jpg',4,NULL),('SH019576340000','Die Jagd nach Verbrechern aus zwei Perspektiven - der der Polizei und der Staatsanwaltschaft. Abwechselnde Ermittlerteams sind in und um New York im Einsatz, um Verbrecher hinter Gitter zu bringen.',NULL,'DEU','Law & Order','https://s3.amazonaws.com/schedulesdirect/assets/p183983_l_h3_aa.jpg',4,NULL),('SH013580540000','Single ladies across the UK get a chance at a dream date in this game show presented by \"matchmaker\' Paddy McGuinness. In each episode, a bachelor is put on the spot by having to impress a panel of thirty women - Paddy\'s `flirty thirty\" - through a series of videos about him followed by the contestant demonstrating a skill. If the ladies like what they see, they keep a light on along with their chances of being picked by the bachelor. The more impressive he is, the more women he has to choose from at the end of the game. If all 30 women turn off their light, the man goes home dateless.',NULL,'GBR','Take Me Out','https://s3.amazonaws.com/schedulesdirect/assets/p8419119_i_h3_ab.jpg',4,NULL),('SH019657790000','Magazin mit populärwissenschaftlichen Themen zum Staunen.',NULL,'DEU','Echt - Das Magazin zum Staunen','https://s3.amazonaws.com/schedulesdirect/assets/p10944533_b_h3_aa.jpg',4,NULL),('SH013211350000','Miss Jane Marple, an elderly lady living in a small town, uses her sharp mind to solve mysterious murders.',NULL,'GBR','Agatha Christie\'s Marple','https://s3.amazonaws.com/schedulesdirect/assets/p203850_i_h3_aa.jpg',4,NULL),('SH030370750000','A weekly review of the Italian Football League.',NULL,'GBR','Serie A Full Impact','https://s3.amazonaws.com/schedulesdirect/assets/p15849310_b_h3_ab.jpg',4,NULL),('SH013056440000','A behind the scenes look at how the FBI solves cases.',NULL,'GBR','FBI Case Files','https://json.schedulesdirect.org/20141201/image/assets/p8209666_i_h3_aa.jpg',4,NULL),('SH019563250000','Chefinspektor Alan Banks stößt auf einen Serienmörder, der vier junge Frauen getötet hat.',NULL,'DEU','Inspector Banks','https://json.schedulesdirect.org/20141201/image/assets/p8829244_i_h3_ae.jpg',4,NULL),('SH019088410000','This intriguing observational documentary series takes viewers into the private world of local GP surgeries. Now in its sixth season, \"GPs: Behind Closed Doors\' welcomes viewers into the Ridge Medical Practice in Bradford for an exclusive look into the every day lives of the doctors who work there. Due to overstretched hospital A&E departments, GPs are being asked more and more to cover the areas the hospitals can\"t. The first episode of the sixth series features an alarming case of chicken pox and a teenager with insomnia.',NULL,'GBR','GPs: Behind Closed Doors','https://s3.amazonaws.com/schedulesdirect/assets/p10719710_i_h3_aa.jpg',4,NULL),('SH018573510000','Ausführliche Wettervorhersage für Deutschland in den kommenden Tagen.',NULL,'DEU','RTL Nachtjournal - Das Wetter','https://s3.amazonaws.com/schedulesdirect/assets/p10463864_i_h3_aa.jpg',4,NULL),('SH022161470000','Rinaldo Rinaldini bekämpft als Führer einer Räuberbande in Süditalien wohlhabende Schurken und beschützt die Armen. Der Grund dafür ist die Ermordung seines Vaters durch den Marchese Cavalcanti, der Rinaldo auch um seine Erbschaft betrog.',NULL,'DEU','Rinaldo Rinaldini','https://s3.amazonaws.com/schedulesdirect/assets/p11899539_st_h3_aa.jpg',4,NULL),('SH019626540000','Atemberaubende Kulisse für Fantasyfilme wie `Herr der Ringe\', traumhafte Landschaften und eine beeindruckende kulturelle Vielfalt. Mit einzigartigen Luftaufnahmen macht sich die Reihe auf eine Reise durch fünf verschiedene Regionen Neuseelands.',NULL,'DEU','Neuseeland von oben - Ein Paradies auf Erden','https://s3.amazonaws.com/schedulesdirect/assets/p10931162_i_h3_aa.jpg',4,NULL),('SH013457520000','David Dimbleby journeys through Britain to discover the buildings that have made us who we are.',NULL,'GBR','How We Built Britain','https://s3.amazonaws.com/schedulesdirect/assets/p8372229_b_h3_aa.jpg',4,NULL),('SH023656340000','Brautprofis unterstützen zukünftige Bräute dabei, das perfekte Brautkleid zu finden. Sie beantworten Typfragen und suchen im Hochzeitsmoden-Discounter, in exklusiven Nobel-Boutiquen und Nischen-Brautläden nach dem passenden Traummodell.',NULL,'DEU','Zwischen Tüll und Tränen','https://s3.amazonaws.com/schedulesdirect/assets/p12597643_st_h3_aa.jpg',4,NULL),('SH013289800000','With his parallel universes collided, Robin is horrified at behaving nicely.',NULL,'GBR','Married','https://s3.amazonaws.com/schedulesdirect/assets/p262280_st_h3_aa.jpg',4,NULL),('SH012702020000','Kathryn Janeway is the captain of a starship that is lost in space and must find its way back home. On its way, the crew encounter different species they must deal with, but find that all their adventures only make them long for home.',NULL,'GBR','Star Trek: Voyager','https://s3.amazonaws.com/schedulesdirect/assets/p183919_i_h3_aa.jpg',4,NULL),('SH012823810000','After watching this series you may never look at ordinary objects in the same way again. A tube of toothpaste? Car tires? Tea bags? A lot of technology goes into even the simplest of consumer goods, and this program offers viewers a glimpse at just what that entails.',NULL,'GBR','How Do They Do It?','https://s3.amazonaws.com/schedulesdirect/assets/p404110_l_h3_aa.jpg',4,NULL),('SH019560660000','Die Richterin Barbara Salesch entscheidet über die Schuld der Angeklagten in fiktiven Kriminalfällen, die von Laien dargestellt werden. Dabei wird der komplette Fall besprochen und auch Zeugen werden zu den Gegebenheiten befragt.',NULL,'DEU','Richterin Barbara Salesch','https://s3.amazonaws.com/schedulesdirect/assets/p881807_st_h3_aa.jpg',4,NULL),('SH033474100000','Unique performances with BBC Orchestras, Choirs and other great orchestras from around the world.',NULL,'GBR','Afternoon Concert','https://s3.amazonaws.com/schedulesdirect/assets/p17533351_st_h3_aa.jpg',4,NULL),('SH016047780000','\"Storage Wars\' ranks as A&E\'s top-rated series of all time - `Yuuuuup!\' - so it\'s no surprise the franchise has expanded to include Texas-based characters searching for auction gold. Each half-hour episode follows a group of bidders looking to strike it rich by buying repossessed storage units. They\'re at once detectives and gamblers, as they get only a quick flashlight-aided peek inside the units before they decide if they want to make a bid, and for how much. It\"s a high-stakes game that can pay off big time ... or leave one sifting through the equivalent of trash.',NULL,'GBR','Storage Wars Texas','https://s3.amazonaws.com/schedulesdirect/assets/p8666432_i_h3_aa.jpg',4,NULL),('SH012662490000','A mix of detective work and medical emergency rescues make up the daily grind for investigators and emergency animal medical technicians at the Arizona Humane Society who do their utmost to protect the interests of animals in Phoenix.',NULL,'GBR','Animal Cops Phoenix','https://s3.amazonaws.com/schedulesdirect/assets/p197266_i_h3_aa.jpg',4,NULL),('SH030477540000','In dieser Sendung unterhält sich Jörg Thadeusz mit Menschen, die den Tag mitgeprägt oder in der Woche für Gesprächsstoff gesorgt haben. Dies können beispielsweise Forscher, Politiker, Stars, Musiker oder Schriftsteller sein.',NULL,'DEU','Talk aus Berlin','https://s3.amazonaws.com/schedulesdirect/assets/p15916579_b_h3_aa.jpg',4,NULL),('SH023001140000','Ausführliche Wettervorhersage für die kommenden Tage in Deutschland.',NULL,'DEU','RTLZWEI Wetter','https://s3.amazonaws.com/schedulesdirect/assets/p12292658_b_h3_ab.jpg',4,NULL),('SH012847870000','Long-running children\'s series following the adventures, mishaps and friendships of Peppa Pig, her brother George, their parents, and the other animal families who make up their town. Each family is a different species of animal, and Peppa\'s friends include Rebecca Rabbit, Suzy Sheep and Candy Cat. Each episode features a new adventure, and storylines often help children to understand new emotions and experiences they themselves might encounter growing up.',NULL,'GBR','Peppa Pig','https://s3.amazonaws.com/schedulesdirect/assets/p274928_l_h3_aa.jpg',4,NULL),('SH018458000000','Dan Snow and team take on the rapids of the Grand Canyon in antique wooden boats to rediscover one of the wild west\'s great adventures of discovery.',NULL,'GBR','Operation Grand Canyon With Dan Snow','https://s3.amazonaws.com/schedulesdirect/assets/p10423037_b_h3_aa.jpg',4,NULL),('SH012694170000','Featuring a bigger and better USS Enterprise, this series is set 78 years after the original series - in the 24th century. Instead of Capt James Kirk, a less volatile and more mature Capt Jean-Luc Picard heads the crew of various humans and alien creatures in their adventures in space - the final frontier.',NULL,'GBR','Star Trek: The Next Generation','https://s3.amazonaws.com/schedulesdirect/assets/p183887_i_h3_aa.jpg',4,NULL),('SH013687760000','Mark Watson\'s take on \"The Seven Deadly Sins\".',NULL,'GBR','Mark Watson Makes the World Substantially Better','https://s3.amazonaws.com/schedulesdirect/assets/p8463697_st_h3_aa.jpg',4,NULL),('SH024053230000','Animated series in which Enid Blyton\'s world-famous character becomes a detective.',NULL,'GBR','Noddy: Toyland Detective','https://s3.amazonaws.com/schedulesdirect/assets/p12778891_i_h3_ab.jpg',4,NULL),('SH012595540000','Ray Barone is a successful sports writer and family man who deals with a brother and parents, who happen to live across the street. Mom Marie loves to meddle in his life, while older brother Robert sometimes resents his success, and Dad Frank just makes comments and raids the fridge. Nevertheless, Ray manages to keep a bright outlook and a sense of humour, leaving the hard issues to his more-practical wife, Debra.',NULL,'GBR','Everybody Loves Raymond','https://s3.amazonaws.com/schedulesdirect/assets/p184243_l_h3_aa.jpg',4,NULL),('SH029624800000','Super-sized transport jobs require even bigger trucks to perform them. Lifting the lid on the heavy recovery business, featuring industrial strength trucks capable of towing and lifting the biggest and heaviest machines on the nation\'s roads.',NULL,'GBR','Trucking Hell','https://s3.amazonaws.com/schedulesdirect/assets/p15480970_b_h3_aa.jpg',4,NULL),('SH016982900000','Die toughe und sehr selbstbewusste Max arbeitet in einem schmierigen Diner in New York. Durch Zufall lernt sie Caroline kennen, deren Vater seine Millionen verloren hat, nimmt sie bei sich auf und lernt sie im Diner ein, damit diese wenigstens die Miete bezahlen kann. Zwischen den beiden entwickelt sich eine ungewöhnliche Freundschaft und die Hoffnung, zusammen ein eigenes Cupcake-Unternehmen aufzubauen - wenn sie das nötige Geld dafür aufbringen können. So wird am Ende jeder Folge der gesparte Betrag eingeblendet.',NULL,'DEU','2 Broke Girls','https://s3.amazonaws.com/schedulesdirect/assets/p8680648_l_h3_aa.jpg',4,NULL),('SH027611940000','This series takes its presenters on a journey back through the decades to a performance of the artist or band that inspired them to make their own.',NULL,'GBR','Wish You Were There','https://s3.amazonaws.com/schedulesdirect/assets/p14468508_st_h3_aa.jpg',4,NULL),('SH021099870000','An sechs Tagen der Filmfestspiele 2014 berichtet das Berlinale-Studio über das Geschehen am Potsdamer Platz. Dazu stellen Kinoexperten die wichtigsten Filme des Tages vor und zeigen die Trends und Themen der Berlinale.',NULL,'DEU','Berlinale-Studio','https://s3.amazonaws.com/schedulesdirect/assets/p11431710_b_h3_aa.jpg',4,NULL),('SH022939820000','Drei Bärenbrüdern Grizz, Panda und Eisbär versuchen, in der menschlichen Gesellschaft Anschluss zu finden und Freunde zu gewinnen. Immer wieder wird das Trio mit den Herausforderungen der digitalen Welt und der modernen Gesellschaft konfrontiert.',NULL,'DEU','We Bare Bears - Bären wie wir','https://s3.amazonaws.com/schedulesdirect/assets/p11921875_i_h3_aa.jpg',4,NULL),('SH034372420000','German Description.',NULL,'DEU','One PIece','https://s3.amazonaws.com/schedulesdirect/assets/p13030078_st_h3_aa.jpg',4,NULL),('SH015330760000','Kennen Sie das: Damit Sie sich im Haus richtig wohlfühlen können, muss auch der Garten auf Vordermann sein. Innovative Lösungen zur Pflege und Dekoration des Außenbereichs Ihre Zuhauses finden Sie in dieser Show.',NULL,'DEU','Haus & Garten','https://s3.amazonaws.com/schedulesdirect/assets/p9092498_st_h3_aa.jpg',4,NULL),('SH027600150000','Im regionalen Nachrichtenmagazin steht der Alltag von Menschen in NRW im Mittelpunkt. Neben aktuellen Berichten aus der Region gibt es auch Zeitreisen in die Vergangenheit und für Zuschauer die Möglichkeit, mit Studiogästen in Kontakt zu treten.',NULL,'DEU','Hier und heute','https://s3.amazonaws.com/schedulesdirect/assets/p14462037_st_h3_aa.jpg',4,NULL),('SH019559880000','Alpenpanorama zeigt Livebilder aus ausgewählten Urlaubsorten.',NULL,'DEU','Alpenpanorama','https://s3.amazonaws.com/schedulesdirect/assets/p10903564_b_h3_aa.jpg',4,NULL),('SH034436870000','Following the critical first two days of the investigation into the murder of 36-year-old Courtney Valentine-Brown, who was found stabbed in a flat in in Southend-on-Sea.',NULL,'GBR','Murder 24/7','https://s3.amazonaws.com/schedulesdirect/assets/p17979112_i_h3_aa.jpg',4,NULL),('SH022820390000','Documentary series joining police forces across Australia as they deal with everything from dramatic siege situations, major drug busts and murder investigations.',NULL,'GBR','Police Force: Australia','https://s3.amazonaws.com/schedulesdirect/assets/p12197808_b_h3_aa.jpg',4,NULL),('SH031269580000','Schönheit und Gesundheit gehen im Leben Hand in Hand. Deshalb dreht sich in dieser Show alles um Produkte, Expertentipps, Innovationen und Hintergrundwissen zu den Themen Pflege und Wohlbefinden. Es geht darum, wie man sich schön fühlt.',NULL,'DEU','KosMedic - Beratung. Gesundheit. Schönheit','https://s3.amazonaws.com/schedulesdirect/assets/p16376632_st_h3_ac.jpg',4,NULL),('SH019577060000','Star der Sitcom ist Tim Taylor, der als Moderator einer TV-Heimwerkersendung sein Geld verdient und auch zu Hause gerne selber Hand anlegt - was in der Regel zu Chaos und Verwüstung führt. Tim und seine Frau Jill haben drei aufgeweckte Söhne und einen kauzigen philosophierenden Nachbarn. Auch wenn handwerkliche (Un-)Fähigkeiten den Rahmen bilden, so geht es doch im Kern meist um ganz alltägliche Familienprobleme, die die Taylors mit Witz und Gefühl lösen.',NULL,'DEU','Hör mal, wer da hämmert','https://s3.amazonaws.com/schedulesdirect/assets/p183934_b_h3_ab.jpg',4,NULL),('SH026424540000','Die Dokumentationsreihe beschäftigt sich mit geschichtsträchtigen Objekten, die in Auktionshäusern zu finden sind. Einige der Gegenstände heben sich durch ihre Machart oder ihre früheren Besitzer deutlich von den anderen ab.',NULL,'DEU','Zum Ersten, zum Zweiten, zum Dritten!','https://s3.amazonaws.com/schedulesdirect/assets/p13922152_st_h3_aa.jpg',4,NULL),('SH014324590000','The magical Baby Jake giggles and gurgles his way through enchanting adventures.',NULL,'GBR','Baby Jake','https://s3.amazonaws.com/schedulesdirect/assets/p8731485_i_h3_aa.jpg',4,NULL),('SH021396030000','A single father experiences the trials and tribulations of raising a group of young chipmunks who are also famous rock stars touring the world with their best friends, the Chipettes.',NULL,'GBR','Alvinnn!!! and the Chipmunks','https://s3.amazonaws.com/schedulesdirect/assets/p11563362_b_h3_ad.jpg',4,NULL),('SH019559740000','Melinda wird von den Geistern verstorbener Menschen heimgesucht, da nur sie diese sehen und ihnen helfen kann. Doch ihre Gabe empfindet die junge Frau als Segen und als Fluch, denn ihre Beziehung zu dem Rettungssanitäter Jim Clancy leidet darunter.',NULL,'DEU','Ghost Whisperer - Stimmen aus dem Jenseits','https://s3.amazonaws.com/schedulesdirect/assets/p185120_i_h3_aa.jpg',4,NULL),('SH019656210000','Lena findet ein herrenloses Pferd und nennt es Mistral. Sie bittet ihren Vater das Tier behalten zu dürfen. Der erklärt ihr: Sollte sich nach einem Jahr kein möglicher Besitzer gemeldet haben, gehört Mistral offiziell ihr.',NULL,'DEU','Lenas Ranch','https://json.schedulesdirect.org/20141201/image/assets/p9982517_i_h3_aa.jpg',4,NULL),('SH025783280000','Überlegene Kraft, lautloses Schleichen oder perfekte Tarnung: die Strategien, mit denen Raubtiere ihrer Beute zu Leibe rücken, sind vielfältig und immer wieder überraschend.',NULL,'DEU','Tödliches Afrika','https://s3.amazonaws.com/schedulesdirect/assets/p8834983_i_h3_aa.jpg',4,NULL),('SH026908680000','Millennials have been criticised for being apathetic, self-regarding, molly-coddled wasters, but is this true? Alex Edelman, himself a millennial, sets out to defend them.',NULL,'GBR','Alex Edelman\'s Peer Group','https://s3.amazonaws.com/schedulesdirect/assets/p14132665_st_h3_aa.jpg',4,NULL),('SH015039310000','Series about Texas Ranger Cordell Walker, who tackles crime-fighting like they did in the Old West.',NULL,'GBR','Walker, Texas Ranger','https://s3.amazonaws.com/schedulesdirect/assets/p184128_b_h3_aa.jpg',4,NULL),('SH022973010000','In Modern-day Paris, Marinette and Adrien seem to be normal high school students. However, they are the chosen ones to save Paris from evil.',NULL,'GBR','Miraculous: Tales of Ladybug and Cat Noir','https://s3.amazonaws.com/schedulesdirect/assets/p12274735_i_h3_ab.jpg',4,NULL),('SH013189050000','Following the animated adventures of the clueless yet brilliant Mr Bean and his faithful sidekick Teddy.',NULL,'GBR','Mr Bean','https://s3.amazonaws.com/schedulesdirect/assets/p446157_i_h3_aa.jpg',4,NULL),('SH029401500000','Comedy about unconscious yearnings.',NULL,'GBR','Hopes and Desires','https://s3.amazonaws.com/schedulesdirect/assets/p15379993_b_h3_aa.jpg',4,NULL),('SH012600950000','This competition features amateur chefs competing against one another to see which one gives the best dinner party. The guests give each chef points, and at the end of the competition, the host with the most -- points, that is -- wins a cash prize. There\'s no end to what these contestants will do in their quest to win.',NULL,'GBR','Come Dine with Me','https://s3.amazonaws.com/schedulesdirect/assets/p221503_l_h3_aa.jpg',4,NULL),('SH016986790000','When the death of 11-year-old Danny Latimer, found bloodied and dirty on an idyllic beach, draws much interest from the media, a small community in Dorset becomes the focus of a police investigation. The investigation is led by out-of-town DI Alec Hardy, who gets the job over DS Ellie Miller, who feels the job should have been hers and now must form a professional relationship with difficult and unyielding Hardy. Members of the Broadchurch community are slowly drawn into the investigation, with a telephone engineer drawing considerable attention when he admits to having a special connection to the case. Meanwhile, Danny\'s family tries to cope with their grief and deal with the unwanted attention thrust upon them.',NULL,'GBR','Broadchurch','https://json.schedulesdirect.org/20141201/image/assets/p9785096_i_h3_ab.jpg',4,NULL),('SH030106340000','The superhuman Power Rangers are tasked with using their ninja skills in a good versus evil battle. They must prevent dark forces from destroying humankind, the Earth, and the universe.',NULL,'GBR','Power Rangers Super Ninja Steel','https://s3.amazonaws.com/schedulesdirect/assets/p15043518_l_h3_aa.jpg',4,NULL),('SH026256820000','Rebooting the hit movie franchise of the same name, \"Lethal Weapon\' is set in modern-day Los Angeles, where Detective Roger Murtaugh works on various crimes. Some of Murtaugh\"s colleagues at the LAPD include Detective Bailey, Captain Brooks Avery and a pathologist named Scorsese. Murtaugh, married to Trish, and a father of three, finds himself working with Detective Wesley Cole, a former international CIA operative who has been everywhere and seen everything. Cole must adjust to life on the West Coast while navigating his partnership with Murtaugh.',NULL,'GBR','Lethal Weapon','https://s3.amazonaws.com/schedulesdirect/assets/p12900695_i_h3_aa.jpg',4,NULL),('SH013792890000','CBS books a new version of the classic \"Hawaii Five-0\' series, with Alex O\'Loughlin in the lead role as Det Steve McGarrett and Scott Caan portraying Danno. The detectives are part of an elite task force whose mission is to eliminate crime on the beaches of the Aloha State. Assisting McGarrett and Danno is former Honolulu Police detective Chin Ho Kelly, who has been relegated to a federal security patrol after being wrongfully accused of corruption. Chin\'s fresh-out-of-the-academy cousin, Kono, also joins the team as she tries to establish herself among the department\"s elite.',NULL,'GBR','Hawaii Five-0','https://s3.amazonaws.com/schedulesdirect/assets/p8130405_l_h3_aa.jpg',4,NULL),('SH020795450000','TV-Koch Horst Lichter düst in dieser dreiteiligen Reihe durch den Südwesten und sucht nach ungewöhnlichen Geschichten rund um Oldtimer, Menschen und leckerem Essen. Dabei trifft er auf interessante Menschen und erkundet die Schönheit und Besonderheit der Region.',NULL,'DEU','Lichters Originale','https://json.schedulesdirect.org/20141201/image/assets/p11337316_b_h3_aa.jpg',4,NULL),('SH013084810000','Get ready for more animated adventures with Engie Benjy.',NULL,'GBR','Engie Benjy','https://s3.amazonaws.com/schedulesdirect/assets/p378273_b_h3_aa.jpg',4,NULL),('SH012664490000','A stand-up comedy series filmed at West London\'s renowned venue the Hammersmith Apollo. Britain\'s best loved comics and new talent perform on stage for a live audience. A guest performer hosts the evening\'s entertainment, introducing the biggest names in comedy before their sets. Those bringing the laughter and gags with them include Alan Carr, Jon Richardson, Sarah Millican, Jason Manford, Frankie Boyle, Nina Conti and Jack Dee, who also hosts the first two series.',NULL,'GBR','Live at the Apollo','https://s3.amazonaws.com/schedulesdirect/assets/p8119222_i_h3_aa.jpg',4,NULL),('SH018557200000','Der Kriminalbeamte Adrian Monk wurde aufgrund seiner besonderen Fähigkeiten in seinem Beruf schnell eine kleine Berühmtheit. Er hat ein fotografisches Gedächtnis und kann selbst aus kleinsten Hinweisen eine Spur basteln. Seit dem Tod seiner geliebten Frau Trudy durch einen mysteriösen Anschlag leidet er jedoch unter starken Ängsten und Zwangsstörungen, was zu seiner Suspendierung vom Dienst beim San Fransisco Police Department führt. Nachdem er sich daraufhin drei Jahre lang in seiner Wohnung eingesperrt hat, macht er sich schließlich als Privatdetektiv selbstständig und wird von der Polizei immer wieder um Unterstützung gebeten. Mit der Hilfe seines ehemaligen Chefs Captain Leland Stottlemeyer sowie seiner persönlicher Assistentin Sharona Fleming löst Monk seitdem die Kriminalfälle, die sonst niemand lösen kann.',NULL,'DEU','Monk','https://s3.amazonaws.com/schedulesdirect/assets/p184807_b_h3_aa.jpg',4,NULL),('SH032069840000','Multiple cameras follow serious crime investigations in real time, revealing the crucial role cutting edge forensic science now plays in bringing criminals to justice.',NULL,'GBR','Forensics: The Real CSI','https://s3.amazonaws.com/schedulesdirect/assets/p16817478_i_h3_aa.jpg',4,NULL),('SH030858310000','Übertragungen der aktuellen Wettbewerbe der UEFA Europa League.',NULL,'DEU','UEFA Europa League','https://json.schedulesdirect.org/20141201/image/assets/p7942039_i_h3_aa.jpg',4,NULL),('SH024322000000','Radio 4 comedy series.',NULL,'GBR','The Break','https://s3.amazonaws.com/schedulesdirect/assets/p12903689_st_h3_aa.jpg',4,NULL),('SH014052660000','The five ladies or men behind the menus have all come up with a three-course meal but the contestant will only be having dinner with three of them.',NULL,'GBR','Dinner Date','https://s3.amazonaws.com/schedulesdirect/assets/p8621413_i_h3_aa.jpg',4,NULL),('SH016535400000','Two plainclothes police officers tackle difficult cases.',NULL,'GBR','Starsky and Hutch','https://s3.amazonaws.com/schedulesdirect/assets/p184050_l_h3_aa.jpg',4,NULL),('SH032903410000','Eine geheim operiernde Agentur kombiniert eine neu entdeckte Substanz namens Morph-X mit tierischer DNA, um das Power Rangers Beast Morphers Team zu bilden. Die Ranger müssen einen bösen Computervirus bekämpfen, der nach Macht aus ist.',NULL,'DEU','Power Rangers: Beast Morphers','https://s3.amazonaws.com/schedulesdirect/assets/p16595885_i_h3_ab.jpg',4,NULL),('SH019384430000','Fünf Kandidaten laden sich gegenseitig nacheinander zu sich nach Hause zum Essen ein. Am Ende jeder Sendung wird der Gastgeber von den restlichen Kandidaten mit 0 bis 10 Punkten bewertet und so der Gewinner des perfekten Dinners ermittelt.',NULL,'DEU','Das perfekte Dinner','https://s3.amazonaws.com/schedulesdirect/assets/p10842374_st_h3_aa.jpg',4,NULL),('SH027573120000','Die Reihe begleitet die Autobahnpolizisten in Neuseeland. Wenn es auf den insgesamt fast 11.000 Kilometer langen State Highways zu Unfällen kommt, ist Eile geboten. Die Beamten bekommen von Blechschäden bis zu Schwerverletzen einiges zu sehen.',NULL,'DEU','Highway Cops','https://s3.amazonaws.com/schedulesdirect/assets/p9468037_i_h3_aa.jpg',4,NULL),('SH018439280000','Yoyo und Doc Croc erleben die bekanntesten Märchen mit Hilfe eines sprechenden Märchenbuchs mit.',NULL,'DEU','SimsalaGrimm','https://s3.amazonaws.com/schedulesdirect/assets/p10415916_b_h3_aa.jpg',4,NULL),('SH033588690000','New drama miniseries starring Sally Lindsay.',NULL,'GBR','Cold Call','https://s3.amazonaws.com/schedulesdirect/assets/p17587845_st_h3_aa.jpg',4,NULL),('SH023098770000','Verbrauchermagazin, das sich auf Produkttests und die kritische Berichterstattung über Verfahrensweisen der Wirtschaft konzentriert.',NULL,'DEU','markt','https://s3.amazonaws.com/schedulesdirect/assets/p12344771_st_h3_aa.jpg',4,NULL),('SH016397950000','Kritisch, investigativ und unerschrocken - das Politmagazin bietet Reportagen, Analysen und Hintergründe zu aktuellen Themen aus Politik, Wirtschaft und Gesellschaft. Die Reporter decken Missstände auf und liefern Fakten.',NULL,'DEU','Frontal 21','https://s3.amazonaws.com/schedulesdirect/assets/p9563561_b_h3_ab.jpg',4,NULL),('SH020018510000','The Furchesters make a video about the hotel, but the director sees things going wrong in every room. Can the family use their wacky creativity to solve the problems?',NULL,'GBR','The Furchester Hotel','https://s3.amazonaws.com/schedulesdirect/assets/p11077440_i_h3_aa.jpg',4,NULL),('SH012602100000','At fictional Princeton Plainsboro Teaching Hospital in New Jersey, prickly genius Dr Gregory House tackles health mysteries as would a medical Sherlock Holmes, all the while playing mind games with colleagues that include his best friend, oncologist James Wilson. House, an acerbic infectious disease specialist, solves medical puzzles with the help of a team of young diagnosticians. Flawless instincts and unconventional thinking help earn House great respect, despite his brutal honesty and antisocial tendencies.',NULL,'GBR','House','https://s3.amazonaws.com/schedulesdirect/assets/p185044_l_h3_aa.jpg',4,NULL),('SH012606120000','Based on the crime-novel series by author Caroline Graham, \"Midsomer Murders\" follows the efforts of Detective Chief Inspector John Barnaby to solve crimes that occur in the wealthy, isolated English county of Midsomer, a picturesque and peaceful place on the outside but one filled with amoral and snobbish eccentrics with all kinds of vices. His latest assistant is Detective Sergeant Jamie Winter. DCI Barnaby took over in series 14, replacing his older cousin, Chief Inspector Tom Barnaby, who retired.',NULL,'GBR','Midsomer Murders','https://s3.amazonaws.com/schedulesdirect/assets/p196903_l_h3_aa.jpg',4,NULL),('SH027195350000','Mavis navigates life without her dad, Dracula, around and discovers one of the few common human and monster truths: being a teenager bites.',NULL,'GBR','Hotel Transylvania','https://s3.amazonaws.com/schedulesdirect/assets/p14199341_i_h3_aa.jpg',4,NULL),('SH017208510000','Die qualitativen und effizienten Produkte aus dem Sortiment von Aqua Clean sorgen für eine Erleichterung in der Haushaltspflege. Die unterschiedlichen Reinigungsmittel müssen für die Anwendung lediglich mit Wasser verdünnt werden.',NULL,'DEU','Aqua Clean: Reinigen mit der Kraft des Sauerstoffs','https://s3.amazonaws.com/schedulesdirect/assets/p9897955_st_h3_aa.jpg',4,NULL),('SH012697310000','Documentary series investigating crime cases.',NULL,'GBR','Forensic Detectives','https://s3.amazonaws.com/schedulesdirect/assets/p388297_b_h3_aa.jpg',4,NULL),('SH029608370000','Examining some of the most terrifying murders which took place at British seaside resorts: locations which, despite their associations with carefree holidaymaking, have also played host to the most remarkable crimes.',NULL,'GBR','Murder by the Sea','https://s3.amazonaws.com/schedulesdirect/assets/p15471334_st_h3_aa.jpg',4,NULL),('SH027878460000','Pablo enters into an animated art world where he is able to explore things that confuse him as a child with autism. With the help of his animal friends, Pablo is free to work through things and figure them out, having lots of fun along the way.',NULL,'GBR','Pablo','https://s3.amazonaws.com/schedulesdirect/assets/p14602737_st_h3_aa.jpg',4,NULL),('SH031703900000','Dan Kouzo and his friends band together to master a game featuring battles between alien creatures.',NULL,'GBR','Bakugan: Battle Planet','https://s3.amazonaws.com/schedulesdirect/assets/p16292288_b_h3_aa.jpg',4,NULL),('SH022915380000','Featuring evening horse racing action, live from various locations.',NULL,'GBR','Live: Evening Racing','https://s3.amazonaws.com/schedulesdirect/assets/p12250644_st_h3_aa.jpg',4,NULL),('SH019576050000','Die Ärztin Addison flüchtet nach Santa Monica und beginnt in der Praxis zweier Studienfreunde.',NULL,'DEU','Private Practice','https://s3.amazonaws.com/schedulesdirect/assets/p185547_l_h3_aa.jpg',4,NULL),('SH021961970000','Challenges, celebrities, makes and adventures with Barney, Lindsey and Radzi.',NULL,'GBR','Blue Peter Bite','https://json.schedulesdirect.org/20141201/image/assets/p11825742_i_h3_aa.jpg',4,NULL),('SH030057840000','Die Dokumentationsreihe legt ihren Fokus auf einzelne herausragende Tage im Zweiten Weltkrieg, die in die Weltgeschichte eingingen, zu weiteren bedeutenden Ereignissen führten und Auswirkungen für den gesamten Globus hatten.',NULL,'DEU','Tag der Entscheidung','https://s3.amazonaws.com/schedulesdirect/assets/p15710435_st_h3_aa.jpg',4,NULL),('SH019952950000','In einem geheimen US-Militärkomplex unter der Leitung von Hammond ist das Stargate aufgebaut, ein Relikt einer jahrtausendealten Zivilisation. Auf anderen Planeten stehen Stargates, mit deren Hilfe man von einem Planeten zum anderen reisen kann.',NULL,'DEU','Stargate','https://s3.amazonaws.com/schedulesdirect/assets/p184337_b_h3_ac.jpg',4,NULL),('SH013027040000','Recorded coverage of House of Lords Questions.',NULL,'GBR','Lords Questions','https://s3.amazonaws.com/schedulesdirect/assets/p8198363_b_h3_aa.jpg',4,NULL),('SH019395240000','Das Wissensmagazin befasst sich werktäglich mit Themen aus dem Alltag und der Naturwissenschaft.',NULL,'DEU','Xenius','https://s3.amazonaws.com/schedulesdirect/assets/p10838421_i_h3_aa.jpg',4,NULL),('SH018090670000','A group of six rescue dogs, led by a tech-savvy boy named Ryder, have adventures as they work together to protect the community.',NULL,'GBR','PAW Patrol','https://s3.amazonaws.com/schedulesdirect/assets/p10077400_b_h3_ab.jpg',4,NULL),('SH015402140000','Die Fahrten der einzelnen Folgen gehen durch Wälder und Felder, über Viadukte die Flüsse und Täler überspannen, bis in die Wüste, oder dem hohen Norden, in den Schnee. Auch Modellbahnen und Modellbahnausstellungen kommen vor.',NULL,'DEU','Eisenbahn-Romantik','https://s3.amazonaws.com/schedulesdirect/assets/p9125780_i_h3_aa.jpg',4,NULL),('SH018778360000','Als Mr. McGregers Neffe das Haus seines Onkels übernimmt, werden Peter Hase, seine Schwestern und sein Cousin aus dem Garten vertrieben. Peter aber ist einfallsreich und erweist sich als würdiger und schlauer Gegner.',NULL,'DEU','Peter Hase','https://s3.amazonaws.com/schedulesdirect/assets/p9628545_i_h3_ab.jpg',4,NULL),('SH013085690000','A different story read by a special guest each night just before bedtime.',NULL,'GBR','Cbeebies Bedtime Stories','https://s3.amazonaws.com/schedulesdirect/assets/p8219273_b_h3_ac.jpg',4,NULL),('SH027789770000','Die Sendung widmet sich der Aufklärung von zahlreichen Betrugsfällen in Deutschland.',NULL,'DEU','Aktenzeichen XY - Spezial: Vorsicht Betrug!','https://s3.amazonaws.com/schedulesdirect/assets/p14554898_st_h3_aa.jpg',4,NULL),('SH032995050000','Follow the adventures of Joey and Boo, two curious ants living in the OddBods universe.',NULL,'GBR','Antiks','https://s3.amazonaws.com/schedulesdirect/assets/p17301022_st_h3_aa.jpg',4,NULL),('SH019424280000','Zwei Frauen, meist aus gegensätzlichen Verhältnissen, tauschen für zehn Tage die Familien. Sie kümmern sich um die jeweiligen Familien der anderen - alles unter Begleitung der Kamera. Anschließend tauschen sie ihre Erfahrungen miteinander aus.',NULL,'DEU','Frauentausch','https://s3.amazonaws.com/schedulesdirect/assets/p10855873_st_h3_aa.jpg',4,NULL),('SH021237750000','Die Castingshow sucht Kinder zwischen acht und vierzehn Jahren. Nach den ersten `Blind Auditions\' werden die Kandidaten gewählt und müssen sich und ihr Talent vor den Zuschauern und der Jury beweisen.',NULL,'DEU','The Voice Kids','https://s3.amazonaws.com/schedulesdirect/assets/p11491134_st_h3_aa.jpg',4,NULL),('SH013040330000','English television presenter and journalist, Michelle Ackerley meets buyers looking for their perfect home by the coast. From an award-winning children\'s author to a couple looking to move back to the UK after years living in Portugal, every buyer is looking for a relaxing seaside home, a coastal property that will make the idea of a relaxing getaway by the sea their reality. Michelle will help them find the house of their dreams in different coastal areas, while sticking to their strict budget.',NULL,'GBR','Fantasy Homes by the Sea','https://s3.amazonaws.com/schedulesdirect/assets/p234207_i_h3_aa.jpg',4,NULL),('SH020505580000','Agent Dwayne \"King\' Pride has a team out of New Orleans\' NCIS field office, investigating crimes that affect military personnel. He\'s a local guy with a drive to do the right thing and leads agents Christopher LaSalle - who plays almost as hard as he works - and Meredith `Merri\' Brody - a charismatic interrogator who has transferred to the `Big Easy\'. Eccentric coroner Dr Loretta Wade supports them on cases. Together they delve into the dark side of the colourful city that\"s a magnet for servicemen on leave.',NULL,'GBR','NCIS: New Orleans','https://s3.amazonaws.com/schedulesdirect/assets/p10779088_l_h3_aa.jpg',4,NULL),('SH014944530000','Gino visits Mexico for some local cuisine.',NULL,'GBR','Gino D\'Acampo: An Italian in Mexico','https://s3.amazonaws.com/schedulesdirect/assets/p8923316_b_h3_aa.jpg',4,NULL),('SH013316830000','Latest action from the Virgin Australia Supercars Championship, one of the world\'s premier motorsport competitions.',NULL,'GBR','Virgin Australia Championship Supercars','https://s3.amazonaws.com/schedulesdirect/assets/p8312484_b_h3_ab.jpg',4,NULL),('SH031410680000','Clip show revealing the memorable on-air moments in the world of weather.',NULL,'GBR','Extreme Weather: Caught on Camera','https://json.schedulesdirect.org/20141201/image/assets/p16454856_i_h3_aa.jpg',4,NULL),('SH025360430000','Filmed with the aid of body cameras that have been fitted to police officers, this documentary series brings viewers into the heart of the action by providing them with an insight into the demands of day-to-day police work. Be it petty crimes, violent street brawls, car thefts, home burglaries, or a more serious situation, the police must always be on hand to apprehend a suspect and enforce the law, and this series aims to reveal just what it is like to patrol the streets of a town or city as an officer in the United Kingdom.',NULL,'GBR','Cops UK: Bodycam Squad','https://s3.amazonaws.com/schedulesdirect/assets/p13405230_b_h3_aa.jpg',4,NULL),('SH012606270000','Housewife and mother Allison DuBois uses her psychic visions about dead people and the violence surrounding them to work as a part-time consultant with the local district attorney\'s office. Her husband, Joe, a science engineer, goes from being a sceptic to a bemused believer as Allison\'s gifts help solve crimes across the country.',NULL,'GBR','Medium','https://s3.amazonaws.com/schedulesdirect/assets/p185006_l_h3_aa.jpg',4,NULL),('SH019462190000','Das Sandmännchen bringt die Kinder mit einer Gute-Nacht-Geschichte ins Bett und sorgt für angenehme Träume. Mit Fabelfiguren wie Schnatterinchen, Herr Fuchs oder Frau Elster werden Geschichten aus Fantasie-Welten erzählt.',NULL,'DEU','Unser Sandmännchen','https://s3.amazonaws.com/schedulesdirect/assets/p10869475_i_h3_aa.jpg',4,NULL),('SH019587410000','Das Magazin für Gartenfreunde in Berlin und Brandenburg, mit praktischen Tipps und Hinweisen.',NULL,'DEU','rbb Gartenzeit','https://s3.amazonaws.com/schedulesdirect/assets/p10914954_b_h3_aa.jpg',4,NULL),('SH033003560000','Emily Atack and Joel Dommett present the dating reality show where five different couples press pause on their relationship to come to London and experience a summer as singletons.',NULL,'GBR','Singletown','https://s3.amazonaws.com/schedulesdirect/assets/p17306706_st_h3_aa.jpg',4,NULL),('SH019749900000','Die Dokumentationsreihe porträtiert Firmen aus der Region Südwest.',NULL,'DEU','made in Südwest','https://s3.amazonaws.com/schedulesdirect/assets/p10980312_b_h3_aa.jpg',4,NULL),('SH012608400000','NCIS stands for Naval Criminal Investigative Service. The series chronicles the operations of an elite team of special agents whose mission is to investigate any crime that has a shred of evidence connected to Navy and Marine Corps personnel, regardless of rank or position.',NULL,'GBR','NCIS','https://s3.amazonaws.com/schedulesdirect/assets/p184930_l_h3_aa.jpg',4,NULL),('SH029438090000','Die Dokumentation zeigt skurrile Verhaltensweisen und Fähigkeiten von wilden Tieren in der afrikanischen Savanne, zum Beispiel wie ein Elefant zur Welt kommt. Kommentiert werden die Szenen vom Direktor des Kölner Zoos, Theo Pagel.',NULL,'DEU','Safari-Paparazzi: Wildlife pur','https://s3.amazonaws.com/schedulesdirect/assets/p217899_i_h3_aa.jpg',4,NULL),('SH029100490000','Neun lange Monate ist der Hafen des kleinen Städtchens Nome in Alaska zugefroren. Doch wenn der Sommer kommt, pilgern Abenteurer aus der ganzen Welt an diesen entlegenen Ort, denn in den Gewässern vor der Küste verbirgt sich ein wertvoller Schatz.',NULL,'DEU','Die Schatzsucher - Goldtaucher der Beringsee','https://s3.amazonaws.com/schedulesdirect/assets/p10975776_i_h3_ab.jpg',4,NULL),('SH019570890000','Der alte Abschleppwagen Hook erzählt seinem besten Freund Lightning McQueen erstaunliche Geschichten mit tollkühnen Erlebnissen aus seinem früheren Leben, die teilweise erfunden sind, teilweise aber auch wahr sein könnten.',NULL,'DEU','Cars Toons - Hooks unglaubliche Geschichten','https://s3.amazonaws.com/schedulesdirect/assets/p7980811_i_h3_aa.jpg',4,NULL),('SH012823690000','Detective Inspector Jack Regan and Detective Sergeant George Carter fight violent crime on the streets of London as members of the Metropolitan Police\'s Flying Squad.',NULL,'GBR','The Sweeney','https://s3.amazonaws.com/schedulesdirect/assets/p511475_i_h3_aa.jpg',4,NULL); +/*!40000 ALTER TABLE series ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2020-02-26 17:38:32 +-- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64) +-- +-- Host: localhost Database: serialseries +-- ------------------------------------------------------ +-- Server version 5.7.29-0ubuntu0.18.04.1 + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8 */; +/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; +/*!40103 SET TIME_ZONE='+00:00' */; +/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; +/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; +/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; +/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; + +-- +-- Dumping data for table `user` +-- + +LOCK TABLES `user` WRITE; +/*!40000 ALTER TABLE `user` DISABLE KEYS */; +REPLACE INTO `user` (id, first_name, last_name, name, email, password, role, enabled) VALUES (0,'kadir','erucu','meinschool17@gmail.com','meinschool17@gmail.com','$2y$12$GSS3Tw1XsM4DAPB4jAKxAuNLrRjPBLCIvqFjcJCQzxAw5FeGCVNSu','USER',true),(1,'monika','messerer','monika.messerer@t-online.de','monika.messerer@t-online.de','$2y$12$oIrQ7QvF9LGsPyP5pe5ngO5vihBdOEHVvxYkfSJAlkRTnZB46/dqO','USER',true),(2,'robert','duschek','robert.duschek@gmx.net','robert.duschek@gmx.net','$2y$12$2nogtrSd6Ls.2py17qchWO6/hJN0cfa7qbLrUYwkBzj2LqWbK4qRW','USER',true),(3,'markus','heinrichs','marcuse7@gmx.de','marcuse7@gmx.de','$2y$12$Vr4sPy32kxGNYHYVU1jJ7.wW3Ca1iHmVXQ37ripi65XfPhfD/j3By','USER',true); +/*!40000 ALTER TABLE `user` ENABLE KEYS */; +UNLOCK TABLES; +/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; + +/*!40101 SET SQL_MODE=@OLD_SQL_MODE */; +/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; +/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; +/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; + +-- Dump completed on 2020-02-11 15:17:41 diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css index 662eb46..f9be2ce 100644 --- a/src/main/resources/static/css/style.css +++ b/src/main/resources/static/css/style.css @@ -5,19 +5,43 @@ body { background-color: #FFF5EE; color: #A0522D; font-family: 'Quicksand', sans-serif; + /* margin: 0 20 0 20; */ } a { color: #DD6347; text-decoration:none; } -a:visited { +/*a:visited { color: #AA8072; - } + }*/ a:hover { opacity: 0.5; } li { list-style-type:none; -} \ No newline at end of file +} + +.dropdown-left { + right: 0; + left: auto; + padding-left: 1px; + padding-right: 1px; +} + + +.series_all_card { + width:50%; + margin: 0 auto 10px auto; +} + +@media screen and (max-width: 800px) { + .series_all_card { + width: 70%; + } + +@media screen and (max-width: 500px) { + .series_all_card { + width: 90%; + } diff --git a/src/main/resources/static/images/app-entertainment-ipad-mockup-265687.jpg b/src/main/resources/static/images/app-entertainment-ipad-mockup-265687.jpg new file mode 100644 index 0000000..7c9b842 Binary files /dev/null and b/src/main/resources/static/images/app-entertainment-ipad-mockup-265687.jpg differ diff --git a/src/main/resources/static/images/man-holding-remote-control-10401601.jpg b/src/main/resources/static/images/man-holding-remote-control-10401601.jpg new file mode 100644 index 0000000..dcd73e7 Binary files /dev/null and b/src/main/resources/static/images/man-holding-remote-control-10401601.jpg differ diff --git a/src/main/resources/static/images/room-2559790_1920_600x400.jpg b/src/main/resources/static/images/room-2559790_1920_600x400.jpg new file mode 100644 index 0000000..0eba4b5 Binary files /dev/null and b/src/main/resources/static/images/room-2559790_1920_600x400.jpg differ diff --git a/src/main/resources/static/images/television-remote-control-525705_1920_600x400.jpg b/src/main/resources/static/images/television-remote-control-525705_1920_600x400.jpg new file mode 100644 index 0000000..2a62b47 Binary files /dev/null and b/src/main/resources/static/images/television-remote-control-525705_1920_600x400.jpg differ diff --git a/src/main/resources/static/js/series.js b/src/main/resources/static/js/series.js new file mode 100644 index 0000000..01ea8a0 --- /dev/null +++ b/src/main/resources/static/js/series.js @@ -0,0 +1,19 @@ +/** + * + */ + +function subscription(e) { + if (e.checked) { + $.ajax({ + url: '/series/subscribe', + data: { seriesId: e.getAttribute("data-seriesid") } + }); + } else { + $.ajax({ + url: '/series/unsubscribe', + data: { seriesId: e.getAttribute("data-seriesid") } + }); + + } + +} \ No newline at end of file diff --git a/src/main/resources/static/test/test.html b/src/main/resources/static/test/test.html new file mode 100644 index 0000000..b150be0 --- /dev/null +++ b/src/main/resources/static/test/test.html @@ -0,0 +1,14 @@ + + + + +Insert title here + + + + +

Dies ist ein Test

+Link auf die Startseite
+ + + \ No newline at end of file diff --git a/src/main/resources/templates/1.html b/src/main/resources/templates/1.html new file mode 100644 index 0000000..7c82bd9 --- /dev/null +++ b/src/main/resources/templates/1.html @@ -0,0 +1,51 @@ + + + + + + + + + Senderliste + + + + + + + + +

Station

+ + + + + + + + + + + + + + + + + + + + + + + + + + Zeige die Serien + + +
+ + + \ No newline at end of file diff --git a/src/main/resources/templates/Epsiode.html b/src/main/resources/templates/Epsiode.html new file mode 100644 index 0000000..8f37cf3 --- /dev/null +++ b/src/main/resources/templates/Epsiode.html @@ -0,0 +1,42 @@ + + + + + + + + + Station List + + + + + + + + +

Station

+ + + + + + + + + + + + + + + + + + + +
IdNameCountry
idnameSerien
+ + + \ No newline at end of file diff --git a/src/main/resources/templates/Station.html b/src/main/resources/templates/Station.html deleted file mode 100644 index 9f32881..0000000 --- a/src/main/resources/templates/Station.html +++ /dev/null @@ -1,12 +0,0 @@ - - - - -Insert title here - - - - - - - \ No newline at end of file diff --git a/src/main/resources/templates/confirm.html b/src/main/resources/templates/confirm.html new file mode 100644 index 0000000..b7dd31f --- /dev/null +++ b/src/main/resources/templates/confirm.html @@ -0,0 +1,168 @@ + + + + + + + + + + + + Registrierung bei SerialSeries + + + + + + + + + + +
+
+ +
+

Setze Dein Passwort

+ + + + + + + +
+ + + +
+ + + + + +
+ +
+ + + + + +
+
+ + + + +
+
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/customer.html b/src/main/resources/templates/customer.html new file mode 100644 index 0000000..86fe0f4 --- /dev/null +++ b/src/main/resources/templates/customer.html @@ -0,0 +1,12 @@ + + + + Kundenbereich + + +
+
+

Sie sind im Kundenbereich eingelogt

+ + + \ No newline at end of file diff --git a/src/main/resources/templates/customer/edit.html b/src/main/resources/templates/customer/edit.html new file mode 100644 index 0000000..f08bf74 --- /dev/null +++ b/src/main/resources/templates/customer/edit.html @@ -0,0 +1,31 @@ + diff --git a/src/main/resources/templates/customer/get_all.html b/src/main/resources/templates/customer/get_all.html new file mode 100644 index 0000000..5d79da8 --- /dev/null +++ b/src/main/resources/templates/customer/get_all.html @@ -0,0 +1,32 @@ + diff --git a/src/main/resources/templates/fragments/external-resources.html b/src/main/resources/templates/fragments/external-resources.html index 9fd8aff..d7f5dd1 100644 --- a/src/main/resources/templates/fragments/external-resources.html +++ b/src/main/resources/templates/fragments/external-resources.html @@ -2,17 +2,38 @@ -Serial Series - - + Serial Series + + - + + + + + + + + + + + + + + + + + + + + + + - - - - diff --git a/src/main/resources/templates/fragments/footer.html b/src/main/resources/templates/fragments/footer.html index 75ae205..14a72f8 100644 --- a/src/main/resources/templates/fragments/footer.html +++ b/src/main/resources/templates/fragments/footer.html @@ -8,11 +8,18 @@ \ No newline at end of file diff --git a/src/main/resources/templates/fragments/header.html b/src/main/resources/templates/fragments/header.html index e77342f..7b5d720 100644 --- a/src/main/resources/templates/fragments/header.html +++ b/src/main/resources/templates/fragments/header.html @@ -1,39 +1,188 @@ - + + - -Insert title here + + Insert title here + +
+ + + + +
+

Serial Series

+ + +
+ + + + + + +
\ No newline at end of file diff --git a/src/main/resources/templates/fragments/login-form.html b/src/main/resources/templates/fragments/login-form.html new file mode 100644 index 0000000..9a26797 --- /dev/null +++ b/src/main/resources/templates/fragments/login-form.html @@ -0,0 +1,40 @@ + + + + + Login + + +
+
+
+ + +
+
+ + +
+
+ + + + + + +
+ Erinnere dich an mich.

+
+ + +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/fragments/register-form.html b/src/main/resources/templates/fragments/register-form.html new file mode 100644 index 0000000..be6ea5a --- /dev/null +++ b/src/main/resources/templates/fragments/register-form.html @@ -0,0 +1,74 @@ + + + + + Register + + +
+ + + + + + + + + + + + +
+ + + + + + + +
+ +
+ + + + + +
+ +
+ + + + + + +
+ + + + + E-Mail +
+ + \ No newline at end of file diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 077861c..843b3de 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -1,31 +1,45 @@ - + -Serial Series | Home + Serial Series | Home -
-
- -
-
-

Don't miss this one!

-

Lorem ipsum dolor sit amet ...

- more -
-
-

Don't miss this one!

-

Lorem ipsum dolor sit amet ...

- more -
-
-

Don't miss this one!

-

Lorem ipsum dolor sit amet ...

- more -
-
- -
-
+
+
+Logo de Good Thymes +

+ +
+
+
+

Brooklyn Nine-Nine

+ +

Detective Jake Peralta, a talented and carefree cop with the best arrest record, has never had to follow the rules too + closely or work very hard. That changes when Ray Holt ...

+ more about Brooklyn Nine-Ninec + more about Brooklyn Nine-Nine +
+
+

Caillou

+ +

Der kleine Caillou geht zusammen mit seiner Schwester Rosi jeden Tag auf Entdeckungstour, um Neues zu lernen und zu erleben. + Seine Neugier hilft ihm, die Antworten auf seine Fragen zu bekommen.

+ mehr auf KIKA + mehr auf KIKA +
+
+

Huck

+ +

Bad Cannstatt, bevölkerungsreichster Stadtteil Stuttgarts, Industriestandort und Heimat des Privatdetektives Huck. Der ehemalige Polizist hat eindeutig ein Problem mit Autorität. Zusammen mit seinem Kumpel Cem ....

+ mehr zu Huck +
+
+
+

+
+
- + \ No newline at end of file diff --git a/src/main/resources/templates/login.html b/src/main/resources/templates/login.html new file mode 100644 index 0000000..5b48d49 --- /dev/null +++ b/src/main/resources/templates/login.html @@ -0,0 +1,16 @@ + + + + + + Please sign in + + + + +
+
+ +
+
+ \ No newline at end of file diff --git a/src/main/resources/templates/register.html b/src/main/resources/templates/register.html new file mode 100644 index 0000000..06c2a60 --- /dev/null +++ b/src/main/resources/templates/register.html @@ -0,0 +1,205 @@ + + + + + + + + + + + + Registrierung bei SerialSeries + + + + + + + + + + + + + + + +< + + +
+
+ +

Neuer Benutzer

+ +
+ + + + + + + + + + + + +
+ + + + + + + +
+ +
+ + + + + +
+ +
+ + + + + + +
+ + + + + E-Mail +
+ + +
+
+ + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/templates/schedule.html b/src/main/resources/templates/schedule.html new file mode 100644 index 0000000..48a1d5f --- /dev/null +++ b/src/main/resources/templates/schedule.html @@ -0,0 +1,89 @@ + + + +Serial Series | Programm + + + + +
+
+ +
+ + + + + + + + + + +
+ + + +

Programm des Senders -

+ + + + + + + + + + + + + + + + + +
SendezeitProgrammtitelBeschreibung
SendezeitProgrammtitelBeschreibung
+
+Zurück zur Übersicht der TV Sender +
+
+
+
+
+ +
+
+ +
+
+ +
+
+ + +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/schedules.html b/src/main/resources/templates/schedules.html new file mode 100644 index 0000000..919b81d --- /dev/null +++ b/src/main/resources/templates/schedules.html @@ -0,0 +1,68 @@ + + + +Serial Series | Programm + + + + +
+
+ +
+ + +

+ + + +
+ +

Program title by Station

+ + + + + + + + + + + + + + + + + +
broadcasting timeProgram Titledescription
Broadcasting timeProgram Titledescription
+ +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/series_all.html b/src/main/resources/templates/series_all.html new file mode 100644 index 0000000..a4562ef --- /dev/null +++ b/src/main/resources/templates/series_all.html @@ -0,0 +1,78 @@ + + + +Serial Series | All Series + + + +
+ + + + + +
+ + +
+ + +
+ +
Name
+

Beschreibung

+ +
+ + + +
+
+ + + +
+ + diff --git a/src/main/resources/templates/series_page.html b/src/main/resources/templates/series_page.html new file mode 100644 index 0000000..6e1bae4 --- /dev/null +++ b/src/main/resources/templates/series_page.html @@ -0,0 +1,82 @@ + + + + + +Serial Series | All Series + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SerieBeschreibung Deine Listen
Description${series.name}
+ +
+ Previous + + + [[${i}+1]] + [[${i}+1]] + + + Next + +
+ +
+ + + + + + + + + +
+ + diff --git a/src/main/resources/templates/series_table.html b/src/main/resources/templates/series_table.html new file mode 100644 index 0000000..5de7617 --- /dev/null +++ b/src/main/resources/templates/series_table.html @@ -0,0 +1,65 @@ + + + + + + Serial Series | Alle Serien + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SerieBeschreibung Deine Listen
Beschreibung${series.name}
+
+ + + + + + + + + +
+ + diff --git a/src/main/resources/templates/stations.html b/src/main/resources/templates/stations.html new file mode 100644 index 0000000..728f795 --- /dev/null +++ b/src/main/resources/templates/stations.html @@ -0,0 +1,37 @@ + + + +Serial Series | Senderliste + + +
+
+ + + +

Übersicht der TV-Sender

+
+
+
+ + +
+ +
+
+
+
+ + +
+
+
+
+
+
+Zurück zur Übersicht der TV-Sender +
+
+ + \ No newline at end of file diff --git a/src/main/resources/templates/stationsSeries.html b/src/main/resources/templates/stationsSeries.html new file mode 100644 index 0000000..46dd9ae --- /dev/null +++ b/src/main/resources/templates/stationsSeries.html @@ -0,0 +1,68 @@ + + + + + School Registration + + + + +
+ +

+ + + +
+

Students:

+ + + + + + + + + + + + + + + + + + + + + + + +
Idname
idname
+
+Return to school's list + + \ No newline at end of file